From c42696769561c7582df0c118dcc275a9fd2ffc3c Mon Sep 17 00:00:00 2001 From: Min Khant Kyaw Date: Thu, 22 May 2025 10:41:49 +0630 Subject: [PATCH 01/51] Update joined_communities_controller.rb --- app/controllers/api/v1/joined_communities_controller.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 From 4efd23f3b27f5f205588ff7e7296442bafc199e8 Mon Sep 17 00:00:00 2001 From: Min Khant Kyaw Date: Thu, 22 May 2025 13:22:47 +0630 Subject: [PATCH 02/51] fix:collection of newsmast --- .../api/v1/collections_controller.rb | 13 +++++++----- app/models/community.rb | 4 ++++ app/serializers/api/v1/channel_serializer.rb | 7 ++++++- .../api/v1/collection_serializer.rb | 20 ++++++++++++++++--- 4 files changed, 35 insertions(+), 9 deletions(-) diff --git a/app/controllers/api/v1/collections_controller.rb b/app/controllers/api/v1/collections_controller.rb index e491459f..7a9b2e0a 100644 --- a/app/controllers/api/v1/collections_controller.rb +++ b/app/controllers/api/v1/collections_controller.rb @@ -21,7 +21,6 @@ def newsmast_collections @all_collections = @all_collections.sort_by do |collection| NEWSMAST_CHANNELS_SORTING_ORDERS.index(collection.name) || Float::INFINITY end - render_collections(@all_collections, type: 'newsmast') end @@ -50,9 +49,13 @@ def fetch_all_channels_by_type(type:) end def extract_patchwork_collection_ids - NEWSMAST_CHANNELS.map do |channel| - channel.dig(:attributes, :patchwork_collection_id) - end.compact + if Community.has_local_newsmast_channel? + Community.filter_newsmast_channels.pluck(:patchwork_collection_id).uniq + else + NEWSMAST_CHANNELS.map do |channel| + channel.dig(:attributes, :patchwork_collection_id) + end.compact + end end def fetch_collections_by_ids(ids) @@ -138,4 +141,4 @@ def add_all_collection(collections, type:) end end end -end \ No newline at end of file +end diff --git a/app/models/community.rb b/app/models/community.rb index dbdb1d91..1d2bb022 100644 --- a/app/models/community.rb +++ b/app/models/community.rb @@ -256,6 +256,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/serializers/api/v1/channel_serializer.rb b/app/serializers/api/v1/channel_serializer.rb index 0ff61d8a..a2778779 100644 --- a/app/serializers/api/v1/channel_serializer.rb +++ b/app/serializers/api/v1/channel_serializer.rb @@ -54,10 +54,15 @@ class Api::V1::ChannelSerializer 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 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 From 176bcd3912c2c76b69e9273f91ec19f7c9249eac Mon Sep 17 00:00:00 2001 From: SithuBo Date: Fri, 23 May 2025 16:04:19 +0700 Subject: [PATCH 03/51] [fix] text for newsmast --- app/helpers/application_helper.rb | 4 ++-- app/helpers/community_helper.rb | 2 +- app/helpers/step_helper.rb | 8 ++++---- 3 files changed, 7 insertions(+), 7 deletions(-) diff --git a/app/helpers/application_helper.rb b/app/helpers/application_helper.rb index bf08cbb8..d86d7d17 100644 --- a/app/helpers/application_helper.rb +++ b/app/helpers/application_helper.rb @@ -21,7 +21,7 @@ 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' }, @@ -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/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..b35298bf 100644 --- a/app/helpers/step_helper.rb +++ b/app/helpers/step_helper.rb @@ -25,10 +25,10 @@ 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.' } From fb8e050e9d66b53b385d7b91367ed0355d1f9057 Mon Sep 17 00:00:00 2001 From: Min Khant Kyaw Date: Fri, 23 May 2025 16:28:43 +0630 Subject: [PATCH 04/51] modify migrate rake file --- lib/tasks/migrate_newsmast_channels.rake | 19 ++++++++++++++++++- 1 file changed, 18 insertions(+), 1 deletion(-) diff --git a/lib/tasks/migrate_newsmast_channels.rake b/lib/tasks/migrate_newsmast_channels.rake index 1804d2af..8cdffffd 100644 --- a/lib/tasks/migrate_newsmast_channels.rake +++ b/lib/tasks/migrate_newsmast_channels.rake @@ -57,11 +57,13 @@ 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? @@ -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? @@ -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 From 5124b9dd21df640d866cc5b58af7daa9c356e85b Mon Sep 17 00:00:00 2001 From: Min Khant Kyaw Date: Thu, 29 May 2025 23:18:13 +0630 Subject: [PATCH 05/51] feat:app-versions --- .../api/v1/app_versions_controller.rb | 52 +++++++++----- app/controllers/app_versions_controller.rb | 33 +++++---- app/helpers/app_version_helper.rb | 8 +++ app/helpers/application_helper.rb | 2 +- app/models/AppVersion.rb | 24 +++++-- app/models/user.rb | 1 + app/services/create_app_version_service.rb | 70 +++++++++++++++++++ app/views/app_versions/_form.html.haml | 11 +-- app/views/app_versions/index.html.haml | 27 ++++--- ..._add_app_name_to_patchwork_app_versions.rb | 5 ++ ...date_version_name_index_on_app_versions.rb | 10 +++ 11 files changed, 188 insertions(+), 55 deletions(-) create mode 100644 app/services/create_app_version_service.rb create mode 100644 db/migrate/20250529082427_add_app_name_to_patchwork_app_versions.rb create mode 100644 db/migrate/20250529120317_update_version_name_index_on_app_versions.rb 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/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/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 d86d7d17..82b00833 100644 --- a/app/helpers/application_helper.rb +++ b/app/helpers/application_helper.rb @@ -28,7 +28,7 @@ def sidebar_menu_items { 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' } ] diff --git a/app/models/AppVersion.rb b/app/models/AppVersion.rb index 3a9bca6b..05df123e 100644 --- a/app/models/AppVersion.rb +++ b/app/models/AppVersion.rb @@ -3,17 +3,29 @@ # 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 -# 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/user.rb b/app/models/user.rb index 0b97c6c9..ec724d72 100644 --- a/app/models/user.rb +++ b/app/models/user.rb @@ -3,6 +3,7 @@ # Table name: users # # id :bigint not null, primary key +# age_verified_at :datetime # approved :boolean default(TRUE), not null # chosen_languages :string is an Array # confirmation_sent_at :datetime 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/db/migrate/20250529082427_add_app_name_to_patchwork_app_versions.rb b/db/migrate/20250529082427_add_app_name_to_patchwork_app_versions.rb new file mode 100644 index 00000000..672cf3f2 --- /dev/null +++ b/db/migrate/20250529082427_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/20250529120317_update_version_name_index_on_app_versions.rb b/db/migrate/20250529120317_update_version_name_index_on_app_versions.rb new file mode 100644 index 00000000..5ded2fba --- /dev/null +++ b/db/migrate/20250529120317_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 From e832180560fb94701ef02bc5e401479518418e45 Mon Sep 17 00:00:00 2001 From: Min Khant Kyaw Date: Fri, 30 May 2025 10:14:42 +0630 Subject: [PATCH 06/51] config database --- config/database.yml | 6 +++++- db/schema.rb | 23 +++++++++++++++++++++++ 2 files changed, 28 insertions(+), 1 deletion(-) 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/db/schema.rb b/db/schema.rb index c0fd526d..3551b8dd 100644 --- a/db/schema.rb +++ b/db/schema.rb @@ -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 @@ -1579,6 +1601,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 From 65802d17b5d6dbe426ad6307de89ad7c0f435e7c Mon Sep 17 00:00:00 2001 From: Min Khant Kyaw Date: Fri, 30 May 2025 10:17:54 +0630 Subject: [PATCH 07/51] feat:application name --- app/models/AppVersion.rb | 4 ++++ app/models/user.rb | 1 - ...20250530082427_add_app_name_to_patchwork_app_versions.rb} | 0 ...50530120317_update_version_name_index_on_app_versions.rb} | 0 db/schema.rb | 5 +++-- 5 files changed, 7 insertions(+), 3 deletions(-) rename db/migrate/{20250529082427_add_app_name_to_patchwork_app_versions.rb => 20250530082427_add_app_name_to_patchwork_app_versions.rb} (100%) rename db/migrate/{20250529120317_update_version_name_index_on_app_versions.rb => 20250530120317_update_version_name_index_on_app_versions.rb} (100%) diff --git a/app/models/AppVersion.rb b/app/models/AppVersion.rb index 05df123e..f1911c29 100644 --- a/app/models/AppVersion.rb +++ b/app/models/AppVersion.rb @@ -8,6 +8,10 @@ # created_at :datetime not null # updated_at :datetime not null # +# Indexes +# +# 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/ diff --git a/app/models/user.rb b/app/models/user.rb index ec724d72..0b97c6c9 100644 --- a/app/models/user.rb +++ b/app/models/user.rb @@ -3,7 +3,6 @@ # Table name: users # # id :bigint not null, primary key -# age_verified_at :datetime # approved :boolean default(TRUE), not null # chosen_languages :string is an Array # confirmation_sent_at :datetime diff --git a/db/migrate/20250529082427_add_app_name_to_patchwork_app_versions.rb b/db/migrate/20250530082427_add_app_name_to_patchwork_app_versions.rb similarity index 100% rename from db/migrate/20250529082427_add_app_name_to_patchwork_app_versions.rb rename to db/migrate/20250530082427_add_app_name_to_patchwork_app_versions.rb diff --git a/db/migrate/20250529120317_update_version_name_index_on_app_versions.rb b/db/migrate/20250530120317_update_version_name_index_on_app_versions.rb similarity index 100% rename from db/migrate/20250529120317_update_version_name_index_on_app_versions.rb rename to db/migrate/20250530120317_update_version_name_index_on_app_versions.rb diff --git a/db/schema.rb b/db/schema.rb index 3551b8dd..61a29a06 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_05_30_120317) do # These are extensions that must be enabled in order to support this database enable_extension "plpgsql" @@ -830,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| From 227537cf517c8f6ad809dd8f32747eca0f19bf23 Mon Sep 17 00:00:00 2001 From: Min Khant Kyaw Date: Fri, 30 May 2025 14:01:42 +0630 Subject: [PATCH 08/51] Update _form_step3.html.haml --- app/views/communities/_form_step3.html.haml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) 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 From deebecd402b2a40bb99f5683e673c25cf4125b02 Mon Sep 17 00:00:00 2001 From: Min Khant Kyaw Date: Mon, 2 Jun 2025 17:20:47 +0630 Subject: [PATCH 09/51] refactor: streamline channel filtering and collection handling --- .../api/v1/collections_controller.rb | 112 +++++++++++------- app/models/collection.rb | 12 +- app/serializers/api/v1/channel_serializer.rb | 8 ++ 3 files changed, 89 insertions(+), 43 deletions(-) diff --git a/app/controllers/api/v1/collections_controller.rb b/app/controllers/api/v1/collections_controller.rb index 7a9b2e0a..a17a5dcf 100644 --- a/app/controllers/api/v1/collections_controller.rb +++ b/app/controllers/api/v1/collections_controller.rb @@ -6,32 +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 @@ -40,27 +54,34 @@ 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 def extract_patchwork_collection_ids - if Community.has_local_newsmast_channel? - Community.filter_newsmast_channels.pluck(:patchwork_collection_id).uniq - else - NEWSMAST_CHANNELS.map do |channel| - channel.dig(:attributes, :patchwork_collection_id) - end.compact - end + NEWSMAST_CHANNELS.map do |channel| + channel.dig(:attributes, :patchwork_collection_id) + end.compact 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:) @@ -69,22 +90,26 @@ 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] + Api::V1::ChannelSerializer.new(@channels).serializable_hash.to_json + 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 @@ -108,8 +133,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 @@ -120,9 +150,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' 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/serializers/api/v1/channel_serializer.rb b/app/serializers/api/v1/channel_serializer.rb index a2778779..1a8d9828 100644 --- a/app/serializers/api/v1/channel_serializer.rb +++ b/app/serializers/api/v1/channel_serializer.rb @@ -48,6 +48,10 @@ 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 @@ -102,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 From 857d85be762c15e9680862f80c6ccee741a5cd43 Mon Sep 17 00:00:00 2001 From: Min Khant Kyaw Date: Tue, 3 Jun 2025 16:14:17 +0630 Subject: [PATCH 10/51] Update collections_controller.rb --- app/controllers/api/v1/collections_controller.rb | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/app/controllers/api/v1/collections_controller.rb b/app/controllers/api/v1/collections_controller.rb index a17a5dcf..7937dca9 100644 --- a/app/controllers/api/v1/collections_controller.rb +++ b/app/controllers/api/v1/collections_controller.rb @@ -95,7 +95,10 @@ def serialized_channels(type:) Api::V1::ChannelSerializer.new(@channels).serializable_hash.to_json else if Community.has_local_newsmast_channel? && params[:type] == COLLECTION_TYPES[:newsmast] - Api::V1::ChannelSerializer.new(@channels).serializable_hash.to_json + 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 From 393cb29b5211cf30fd62e2c5c2f2038fd3af0d08 Mon Sep 17 00:00:00 2001 From: Min Khant Kyaw Date: Wed, 4 Jun 2025 17:15:23 +0630 Subject: [PATCH 11/51] refactor: enhance Sidekiq configuration for production and development environments --- config/initializers/sidekiq.rb | 44 ++++++++++++++++++++++++---------- 1 file changed, 31 insertions(+), 13 deletions(-) diff --git a/config/initializers/sidekiq.rb b/config/initializers/sidekiq.rb index 5c815d88..5973fbe2 100644 --- a/config/initializers/sidekiq.rb +++ b/config/initializers/sidekiq.rb @@ -2,20 +2,38 @@ require 'sidekiq/web' require 'sidekiq-scheduler' -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 +# 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 + +if Rails.env.production? + Sidekiq.configure_server do |config| + config.redis = { + url: "redis://#{ENV['REDIS_HOST']}:#{ENV['REDIS_PORT']}", + password: ENV['REDIS_PASSWORD'] + } + end -Sidekiq.configure_server do |config| - config.redis = { - url: redis_url - } + Sidekiq.configure_client do |config| + config.redis = { + url: "redis://#{ENV['REDIS_HOST']}:#{ENV['REDIS_PORT']}", + password: ENV['REDIS_PASSWORD'] + } + end end -Sidekiq.configure_client do |config| - config.redis = { - url: redis_url - } +if Rails.env.development? + Sidekiq.configure_server do |config| + config.redis = { + url: "redis://#{ENV['REDIS_HOST']}:#{ENV['REDIS_PORT']}" + } + end + + Sidekiq.configure_client do |config| + config.redis = { + url: "redis://#{ENV['REDIS_HOST']}:#{ENV['REDIS_PORT']}" + } + end end \ No newline at end of file From 752b99f26eae799d34bfbb434348fc86d4d10930 Mon Sep 17 00:00:00 2001 From: Min Khant Kyaw Date: Wed, 4 Jun 2025 17:19:47 +0630 Subject: [PATCH 12/51] fix:sidekiq config --- config/initializers/sidekiq.rb | 52 ++++++++++++---------------------- 1 file changed, 18 insertions(+), 34 deletions(-) diff --git a/config/initializers/sidekiq.rb b/config/initializers/sidekiq.rb index 5973fbe2..c2572cf2 100644 --- a/config/initializers/sidekiq.rb +++ b/config/initializers/sidekiq.rb @@ -1,39 +1,23 @@ require 'sidekiq' require 'sidekiq/web' require 'sidekiq-scheduler' - -# 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 - -if Rails.env.production? - Sidekiq.configure_server do |config| - config.redis = { - url: "redis://#{ENV['REDIS_HOST']}:#{ENV['REDIS_PORT']}", - password: ENV['REDIS_PASSWORD'] - } - end - - Sidekiq.configure_client do |config| - config.redis = { - url: "redis://#{ENV['REDIS_HOST']}:#{ENV['REDIS_PORT']}", - password: ENV['REDIS_PASSWORD'] - } - end +require 'uri' + +redis_url = if ENV['REDIS_PASSWORD'].present? + encoded_password = URI.encode_www_form_component(ENV['REDIS_PASSWORD']) + "redis://:#{encoded_password}@#{ENV['REDIS_HOST']}:#{ENV['REDIS_PORT']}" +else + "redis://#{ENV['REDIS_HOST']}:#{ENV['REDIS_PORT']}" end - -if Rails.env.development? - Sidekiq.configure_server do |config| - config.redis = { - url: "redis://#{ENV['REDIS_HOST']}:#{ENV['REDIS_PORT']}" - } - end - - Sidekiq.configure_client do |config| - config.redis = { - url: "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 + } end \ No newline at end of file From 16dd377e82f2b3ac324c92251f3e8717b251fb83 Mon Sep 17 00:00:00 2001 From: Min Khant Kyaw Date: Wed, 4 Jun 2025 17:37:31 +0630 Subject: [PATCH 13/51] Rollback sidekiq setting --- config/initializers/sidekiq.rb | 1 - 1 file changed, 1 deletion(-) diff --git a/config/initializers/sidekiq.rb b/config/initializers/sidekiq.rb index c2572cf2..d0d8e035 100644 --- a/config/initializers/sidekiq.rb +++ b/config/initializers/sidekiq.rb @@ -4,7 +4,6 @@ require 'uri' redis_url = if ENV['REDIS_PASSWORD'].present? - encoded_password = URI.encode_www_form_component(ENV['REDIS_PASSWORD']) "redis://:#{encoded_password}@#{ENV['REDIS_HOST']}:#{ENV['REDIS_PORT']}" else "redis://#{ENV['REDIS_HOST']}:#{ENV['REDIS_PORT']}" From 90cd4cf4c0f2e0cff93865a1b3a2e072d8b619ec Mon Sep 17 00:00:00 2001 From: Aung Kyaw Phyo Date: Wed, 4 Jun 2025 18:19:43 +0700 Subject: [PATCH 14/51] Just pass the password without encoding --- config/initializers/sidekiq.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/initializers/sidekiq.rb b/config/initializers/sidekiq.rb index d0d8e035..8cc5579d 100644 --- a/config/initializers/sidekiq.rb +++ b/config/initializers/sidekiq.rb @@ -4,7 +4,7 @@ require 'uri' redis_url = if ENV['REDIS_PASSWORD'].present? - "redis://:#{encoded_password}@#{ENV['REDIS_HOST']}:#{ENV['REDIS_PORT']}" + "redis://:#{ENV['REDIS_PASSWORD']}@#{ENV['REDIS_HOST']}:#{ENV['REDIS_PORT']}" else "redis://#{ENV['REDIS_HOST']}:#{ENV['REDIS_PORT']}" end From b50ba3070b557b912fea60ba5c8e368610c98f41 Mon Sep 17 00:00:00 2001 From: Aung Kyaw Phyo Date: Tue, 10 Jun 2025 16:45:29 +0700 Subject: [PATCH 15/51] Lock and unlock to boost bot account --- app/services/community_post_service.rb | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/app/services/community_post_service.rb b/app/services/community_post_service.rb index 3b9b1f88..4718d0d1 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}") @@ -193,6 +194,13 @@ 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 @content_type.group_channel? + boost_bot_account.update(locked: true) + else + boost_bot_account.update(locked: false) + end end def custom_condition_value From 87ae556109e7a5a35b0a0fd4c3028f30794239e5 Mon Sep 17 00:00:00 2001 From: Min Khant Kyaw Date: Tue, 10 Jun 2025 16:45:57 +0630 Subject: [PATCH 16/51] Update community_post_service.rb --- app/services/community_post_service.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/services/community_post_service.rb b/app/services/community_post_service.rb index 4718d0d1..2672f9d2 100644 --- a/app/services/community_post_service.rb +++ b/app/services/community_post_service.rb @@ -196,7 +196,7 @@ def create_content_type ) boost_bot_account = Account.find_by(id: @community&.community_admins&.where(is_boost_bot: true)&.first&.account_id) - if @content_type.group_channel? + if content_type.group_channel? boost_bot_account.update(locked: true) else boost_bot_account.update(locked: false) From b19b1394f9acb84a59a47f3437ac93c2603a722d Mon Sep 17 00:00:00 2001 From: Min Khant Kyaw Date: Wed, 11 Jun 2025 12:13:58 +0630 Subject: [PATCH 17/51] refactor: improve table column widths and structure --- app/views/communities/index.html.haml | 32 +++++++++++++-------------- 1 file changed, 16 insertions(+), 16 deletions(-) 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") From e2353efd0b4c0e0ac0b00ec0195e77e35a3813ce Mon Sep 17 00:00:00 2001 From: Min Khant Kyaw Date: Thu, 12 Jun 2025 10:12:28 +0630 Subject: [PATCH 18/51] fix:null exception for bot --- app/services/community_admin_post_service.rb | 4 +++- app/services/community_post_service.rb | 12 ++++++------ 2 files changed, 9 insertions(+), 7 deletions(-) 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 2672f9d2..55a27af8 100644 --- a/app/services/community_post_service.rb +++ b/app/services/community_post_service.rb @@ -116,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" @@ -194,12 +193,13 @@ 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 content_type.group_channel? - boost_bot_account.update(locked: true) - else - boost_bot_account.update(locked: false) + 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 From 066b2fa717ebe6f9448951d92fe5e9d8e092396d Mon Sep 17 00:00:00 2001 From: Min Khant Kyaw Date: Thu, 12 Jun 2025 11:10:18 +0630 Subject: [PATCH 19/51] fix:duplication of name --- app/models/community.rb | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/app/models/community.rb b/app/models/community.rb index 1d2bb022..fe481a52 100644 --- a/app/models/community.rb +++ b/app/models/community.rb @@ -66,7 +66,9 @@ 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, From 0591c7259444c730011eb9113e072b9689e4e735 Mon Sep 17 00:00:00 2001 From: Min Khant Kyaw Date: Thu, 12 Jun 2025 11:10:31 +0630 Subject: [PATCH 20/51] Update community.rb --- app/models/community.rb | 1 - 1 file changed, 1 deletion(-) diff --git a/app/models/community.rb b/app/models/community.rb index fe481a52..40d53d22 100644 --- a/app/models/community.rb +++ b/app/models/community.rb @@ -69,7 +69,6 @@ class Community < ApplicationRecord 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, too_short: "must be at least %{count} characters", From eed943c7d3c11e8374d1bb7ca6120cbdecfc811c Mon Sep 17 00:00:00 2001 From: Min Khant Kyaw Date: Tue, 17 Jun 2025 11:12:53 +0630 Subject: [PATCH 21/51] fix:bluesky account --- app/services/bluesky_service.rb | 40 ++++++++++++++++++++++++--------- 1 file changed, 29 insertions(+), 11 deletions(-) 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 From ff024d4c48214241d38b36c8519b54110b673a1a Mon Sep 17 00:00:00 2001 From: Min Khant Kyaw Date: Tue, 17 Jun 2025 13:52:00 +0630 Subject: [PATCH 22/51] Update bluesky_account_bridge_hleper.rb --- app/helpers/bluesky_account_bridge_hleper.rb | 30 ++++++++++++++++++-- 1 file changed, 28 insertions(+), 2 deletions(-) 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 From daf539aa5c921af4a7435db8acb5fe0d2bf5b249 Mon Sep 17 00:00:00 2001 From: Min Khant Kyaw Date: Tue, 17 Jun 2025 14:56:22 +0630 Subject: [PATCH 23/51] fix:organisation_admin login --- app/controllers/users/sessions_controller.rb | 35 ++++++++++++++------ 1 file changed, 25 insertions(+), 10 deletions(-) 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 From 634f946916922a3c308d467c1128a5ffc663d75c Mon Sep 17 00:00:00 2001 From: Min Khant Kyaw Date: Thu, 19 Jun 2025 11:44:59 +0630 Subject: [PATCH 24/51] feat:theme color --- app/controllers/api/v1/settings_controller.rb | 88 +++++++++++++++++++ app/models/account.rb | 1 + app/models/setting.rb | 31 +++++++ config/routes/api_v1.rb | 6 ++ .../20250618065354_patchwork_settings.rb | 10 +++ ...0618093728_remove_integer_from_settings.rb | 6 ++ db/schema.rb | 12 ++- 7 files changed, 153 insertions(+), 1 deletion(-) create mode 100644 app/controllers/api/v1/settings_controller.rb create mode 100644 app/models/setting.rb create mode 100644 db/migrate/20250618065354_patchwork_settings.rb create mode 100644 db/migrate/20250618093728_remove_integer_from_settings.rb 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/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/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/config/routes/api_v1.rb b/config/routes/api_v1.rb index 452b9504..e93a9592 100644 --- a/config/routes/api_v1.rb +++ b/config/routes/api_v1.rb @@ -83,6 +83,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/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/schema.rb b/db/schema.rb index 61a29a06..772a8e8a 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_30_120317) do +ActiveRecord::Schema[7.1].define(version: 2025_06_18_093728) do # These are extensions that must be enabled in order to support this database enable_extension "plpgsql" @@ -1043,6 +1043,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" @@ -1669,6 +1678,7 @@ add_foreign_key "patchwork_joined_communities", "accounts" add_foreign_key "patchwork_joined_communities", "patchwork_communities" 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 From 3f95e2f2a22a92bed351d6d4542f543b08a999c5 Mon Sep 17 00:00:00 2001 From: Min Khant Kyaw Date: Tue, 24 Jun 2025 17:27:31 +0630 Subject: [PATCH 25/51] fix: update environment variables --- .env.sample | 50 +++++++++++++++++------ db/seeds/01_server_setttings.rb | 70 ++++++++++++++++----------------- db/seeds/community_user_role.rb | 2 - 3 files changed, 72 insertions(+), 50 deletions(-) diff --git a/.env.sample b/.env.sample index e45561bd..2aa5a1d1 100644 --- a/.env.sample +++ b/.env.sample @@ -2,25 +2,51 @@ 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 +PATCHWORK_DASHBOARD_URL=https://dashboard.channel.org -CREATE_CHANNEL_LAMBDA_URL=https://lambda_url -CREATE_CHANNEL_LAMBDA_API_KEY=lambda_api_key +# 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/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] }, From bff5bf1e1968fd08ee01534b7e23d70f0d49fd95 Mon Sep 17 00:00:00 2001 From: Aung Kyaw Phyo Date: Wed, 25 Jun 2025 11:39:58 +0700 Subject: [PATCH 26/51] Update the env file --- .env.sample | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.env.sample b/.env.sample index 2aa5a1d1..383507e6 100644 --- a/.env.sample +++ b/.env.sample @@ -15,7 +15,9 @@ DB_PORT=5432 # Patchwork Hub(central dashboard) PATCHWORK_HUB_URL=https://hub.patchwork.online -PATCHWORK_DASHBOARD_URL=https://dashboard.channel.org + +# Your hosted Patchwork Dashboard URL +PATCHWORK_DASHBOARD_URL=https://localhost:3001 # Mastodon Credentials # Obtain these from your Mastodon instance under "Development" settings. From 75b61c82e87544246ab5c8e845eaac5f9ff8e4ff Mon Sep 17 00:00:00 2001 From: Min Khant Kyaw Date: Wed, 25 Jun 2025 16:35:18 +0630 Subject: [PATCH 27/51] fix: update foreign key constraints for community rules --- app/models/community_rule.rb | 2 +- .../20250625095953_add_foreign_key_to_community_rules.rb | 6 ++++++ db/schema.rb | 4 ++-- 3 files changed, 9 insertions(+), 3 deletions(-) create mode 100644 db/migrate/20250625095953_add_foreign_key_to_community_rules.rb 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/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/schema.rb b/db/schema.rb index 772a8e8a..ecf7b337 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_06_18_093728) do +ActiveRecord::Schema[7.1].define(version: 2025_06_25_095953) do # These are extensions that must be enabled in order to support this database enable_extension "plpgsql" @@ -1672,7 +1672,7 @@ 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" From 187c51413b2b6d85c14b1224885bbdb4b0e50122 Mon Sep 17 00:00:00 2001 From: Min Khant Kyaw Date: Wed, 25 Jun 2025 16:35:18 +0630 Subject: [PATCH 28/51] fix: update foreign key constraints for community rules --- app/models/community_rule.rb | 2 +- .../20250625095953_add_foreign_key_to_community_rules.rb | 6 ++++++ db/schema.rb | 4 ++-- 3 files changed, 9 insertions(+), 3 deletions(-) create mode 100644 db/migrate/20250625095953_add_foreign_key_to_community_rules.rb 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/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/schema.rb b/db/schema.rb index 772a8e8a..ecf7b337 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_06_18_093728) do +ActiveRecord::Schema[7.1].define(version: 2025_06_25_095953) do # These are extensions that must be enabled in order to support this database enable_extension "plpgsql" @@ -1672,7 +1672,7 @@ 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" From 7230800ff256f6c0bc6edb01c845cb183f5616bc Mon Sep 17 00:00:00 2001 From: Nyan Lin Htut Date: Thu, 26 Jun 2025 12:07:09 +0630 Subject: [PATCH 29/51] added: post's default visibility setting --- app/controllers/communities_controller.rb | 3 +- app/models/community.rb | 3 + app/views/communities/_form_step6.html.haml | 66 ++++++++++++++++ ...3704_add_post_visibility_to_communities.rb | 5 ++ db/schema.rb | 77 +++++++++++++++---- 5 files changed, 136 insertions(+), 18 deletions(-) create mode 100644 db/migrate/20250619053704_add_post_visibility_to_communities.rb 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/models/community.rb b/app/models/community.rb index 40d53d22..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 @@ -230,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 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/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/schema.rb b/db/schema.rb index ecf7b337..127a31c1 100644 --- a/db/schema.rb +++ b/db/schema.rb @@ -259,6 +259,7 @@ t.datetime "updated_at", precision: nil, null: false t.datetime "published_at", precision: nil t.bigint "status_ids", array: true + t.datetime "notification_sent_at" end create_table "annual_report_statuses_per_account_counts", force: :cascade do |t| @@ -475,6 +476,32 @@ t.index ["domain"], name: "index_email_domain_blocks_on_domain", unique: true end + create_table "fasp_debug_callbacks", force: :cascade do |t| + t.bigint "fasp_provider_id", null: false + t.string "ip", null: false + t.text "request_body", null: false + t.datetime "created_at", null: false + t.datetime "updated_at", null: false + t.index ["fasp_provider_id"], name: "index_fasp_debug_callbacks_on_fasp_provider_id" + end + + create_table "fasp_providers", force: :cascade do |t| + t.boolean "confirmed", default: false, null: false + t.string "name", null: false + t.string "base_url", null: false + t.string "sign_in_url" + t.string "remote_identifier", null: false + t.string "provider_public_key_pem", null: false + t.string "server_private_key_pem", null: false + t.jsonb "capabilities", default: [], null: false + t.jsonb "privacy_policy" + t.string "contact_email" + t.string "fediverse_account" + t.datetime "created_at", null: false + t.datetime "updated_at", null: false + t.index ["base_url"], name: "index_fasp_providers_on_base_url", unique: true + end + create_table "favourites", force: :cascade do |t| t.datetime "created_at", precision: nil, null: false t.datetime "updated_at", precision: nil, null: false @@ -559,19 +586,6 @@ t.index ["user_id"], name: "index_identities_on_user_id" end - create_table "imports", force: :cascade do |t| - t.integer "type", null: false - t.boolean "approved", default: false, null: false - t.datetime "created_at", precision: nil, null: false - t.datetime "updated_at", precision: nil, null: false - t.string "data_file_name" - t.string "data_content_type" - t.integer "data_file_size" - t.datetime "data_updated_at", precision: nil - t.bigint "account_id", null: false - t.boolean "overwrite", default: false, null: false - end - create_table "invites", force: :cascade do |t| t.bigint "user_id", null: false t.string "code", default: "", null: false @@ -883,6 +897,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" @@ -1174,6 +1189,24 @@ t.string "url" end + create_table "quotes", id: :bigint, default: -> { "timestamp_id('quotes'::text)" }, force: :cascade do |t| + t.bigint "account_id", null: false + t.bigint "status_id", null: false + t.bigint "quoted_status_id" + t.bigint "quoted_account_id" + t.integer "state", default: 0, null: false + t.string "approval_uri" + t.string "activity_uri" + t.datetime "created_at", null: false + t.datetime "updated_at", null: false + t.index ["account_id", "quoted_account_id"], name: "index_quotes_on_account_id_and_quoted_account_id" + t.index ["activity_uri"], name: "index_quotes_on_activity_uri", unique: true, where: "(activity_uri IS NOT NULL)" + t.index ["approval_uri"], name: "index_quotes_on_approval_uri", where: "(approval_uri IS NOT NULL)" + t.index ["quoted_account_id"], name: "index_quotes_on_quoted_account_id" + t.index ["quoted_status_id"], name: "index_quotes_on_quoted_status_id" + t.index ["status_id"], name: "index_quotes_on_status_id", unique: true + end + create_table "relationship_severance_events", force: :cascade do |t| t.integer "type", null: false t.string "target_name", null: false @@ -1321,6 +1354,7 @@ t.text "media_descriptions", array: true t.string "poll_options", array: true t.boolean "sensitive" + t.bigint "quote_id" t.index ["account_id"], name: "index_status_edits_on_account_id" t.index ["status_id"], name: "index_status_edits_on_status_id" end @@ -1380,11 +1414,13 @@ t.datetime "edited_at", precision: nil t.boolean "trendable" t.bigint "ordered_media_attachment_ids", array: true + t.datetime "fetched_replies_at" + t.integer "quote_approval_policy", default: 0, null: false t.index ["account_id", "id", "visibility", "updated_at"], name: "index_statuses_20190820", order: { id: :desc }, where: "(deleted_at IS NULL)" t.index ["account_id"], name: "index_statuses_on_account_id" t.index ["deleted_at"], name: "index_statuses_on_deleted_at", where: "(deleted_at IS NOT NULL)" t.index ["id", "account_id"], name: "index_statuses_local_20190824", order: { id: :desc }, where: "((local OR (uri IS NULL)) AND (deleted_at IS NULL) AND (visibility = 0) AND (reblog_of_id IS NULL) AND ((NOT reply) OR (in_reply_to_account_id = account_id)))" - t.index ["id", "account_id"], name: "index_statuses_public_20200119", order: { id: :desc }, where: "((deleted_at IS NULL) AND (visibility = 0) AND (reblog_of_id IS NULL) AND ((NOT reply) OR (in_reply_to_account_id = account_id)))" + t.index ["id", "language", "account_id"], name: "index_statuses_public_20250129", order: { id: :desc }, where: "((deleted_at IS NULL) AND (visibility = 0) AND (reblog_of_id IS NULL) AND ((NOT reply) OR (in_reply_to_account_id = account_id)))" t.index ["in_reply_to_account_id"], name: "index_statuses_on_in_reply_to_account_id", where: "(in_reply_to_account_id IS NOT NULL)" t.index ["in_reply_to_id"], name: "index_statuses_on_in_reply_to_id", where: "(in_reply_to_id IS NOT NULL)" t.index ["reblog_of_id", "account_id"], name: "index_statuses_on_reblog_of_id_and_account_id" @@ -1438,6 +1474,8 @@ t.datetime "notification_sent_at" t.datetime "created_at", null: false t.datetime "updated_at", null: false + t.date "effective_date" + t.index ["effective_date"], name: "index_terms_of_services_on_effective_date", unique: true, where: "(effective_date IS NOT NULL)" end create_table "tombstones", force: :cascade do |t| @@ -1512,6 +1550,7 @@ t.text "settings" t.string "time_zone" t.string "otp_secret" + t.datetime "age_verified_at" t.index ["account_id"], name: "index_users_on_account_id" t.index ["confirmation_token"], name: "index_users_on_confirmation_token", unique: true t.index ["created_by_application_id"], name: "index_users_on_created_by_application_id", where: "(created_by_application_id IS NOT NULL)" @@ -1528,8 +1567,8 @@ t.json "data" t.datetime "created_at", precision: nil, null: false t.datetime "updated_at", precision: nil, null: false - t.bigint "access_token_id" - t.bigint "user_id" + t.bigint "access_token_id", null: false + t.bigint "user_id", null: false t.boolean "standard", default: false, null: false t.index ["access_token_id"], name: "index_web_push_subscriptions_on_access_token_id", where: "(access_token_id IS NOT NULL)" t.index ["user_id"], name: "index_web_push_subscriptions_on_user_id" @@ -1613,6 +1652,7 @@ 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 "fasp_debug_callbacks", "fasp_providers" add_foreign_key "favourites", "accounts", name: "fk_5eb6c2b873", on_delete: :cascade add_foreign_key "favourites", "statuses", name: "fk_b0e856845e", on_delete: :cascade add_foreign_key "featured_tags", "accounts", on_delete: :cascade @@ -1626,7 +1666,6 @@ add_foreign_key "follows", "accounts", name: "fk_32ed1b5560", on_delete: :cascade add_foreign_key "generated_annual_reports", "accounts" add_foreign_key "identities", "users", name: "fk_bea040f377", on_delete: :cascade - add_foreign_key "imports", "accounts", name: "fk_6db1b6e408", on_delete: :cascade add_foreign_key "invites", "users", on_delete: :cascade add_foreign_key "keyword_filter_groups", "server_settings", on_delete: :cascade add_foreign_key "keyword_filters", "keyword_filter_groups", on_delete: :cascade @@ -1687,6 +1726,10 @@ add_foreign_key "post_hashtags_communities", "patchwork_communities", on_delete: :cascade add_foreign_key "preview_card_trends", "preview_cards", on_delete: :cascade add_foreign_key "preview_cards", "accounts", column: "author_account_id", on_delete: :nullify + add_foreign_key "quotes", "accounts", column: "quoted_account_id", on_delete: :nullify + add_foreign_key "quotes", "accounts", on_delete: :cascade + add_foreign_key "quotes", "statuses", column: "quoted_status_id", on_delete: :nullify + add_foreign_key "quotes", "statuses", on_delete: :cascade add_foreign_key "report_notes", "accounts", on_delete: :cascade add_foreign_key "report_notes", "reports", on_delete: :cascade add_foreign_key "reports", "accounts", column: "action_taken_by_account_id", name: "fk_bca45b75fd", on_delete: :nullify From 508c7aff0dcf133b5c1ec4401388677b62e5c014 Mon Sep 17 00:00:00 2001 From: Min Khant Kyaw Date: Thu, 26 Jun 2025 13:35:21 +0630 Subject: [PATCH 30/51] add:foreign key to joined_communities --- app/models/joined_community.rb | 4 +- ...4_add_foreign_key_to_joined_communities.rb | 8 ++ db/schema.rb | 82 +++++-------------- 3 files changed, 30 insertions(+), 64 deletions(-) create mode 100644 db/migrate/20250626070014_add_foreign_key_to_joined_communities.rb 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/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 127a31c1..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_06_25_095953) 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" @@ -259,7 +259,6 @@ t.datetime "updated_at", precision: nil, null: false t.datetime "published_at", precision: nil t.bigint "status_ids", array: true - t.datetime "notification_sent_at" end create_table "annual_report_statuses_per_account_counts", force: :cascade do |t| @@ -476,32 +475,6 @@ t.index ["domain"], name: "index_email_domain_blocks_on_domain", unique: true end - create_table "fasp_debug_callbacks", force: :cascade do |t| - t.bigint "fasp_provider_id", null: false - t.string "ip", null: false - t.text "request_body", null: false - t.datetime "created_at", null: false - t.datetime "updated_at", null: false - t.index ["fasp_provider_id"], name: "index_fasp_debug_callbacks_on_fasp_provider_id" - end - - create_table "fasp_providers", force: :cascade do |t| - t.boolean "confirmed", default: false, null: false - t.string "name", null: false - t.string "base_url", null: false - t.string "sign_in_url" - t.string "remote_identifier", null: false - t.string "provider_public_key_pem", null: false - t.string "server_private_key_pem", null: false - t.jsonb "capabilities", default: [], null: false - t.jsonb "privacy_policy" - t.string "contact_email" - t.string "fediverse_account" - t.datetime "created_at", null: false - t.datetime "updated_at", null: false - t.index ["base_url"], name: "index_fasp_providers_on_base_url", unique: true - end - create_table "favourites", force: :cascade do |t| t.datetime "created_at", precision: nil, null: false t.datetime "updated_at", precision: nil, null: false @@ -586,6 +559,19 @@ t.index ["user_id"], name: "index_identities_on_user_id" end + create_table "imports", force: :cascade do |t| + t.integer "type", null: false + t.boolean "approved", default: false, null: false + t.datetime "created_at", precision: nil, null: false + t.datetime "updated_at", precision: nil, null: false + t.string "data_file_name" + t.string "data_content_type" + t.integer "data_file_size" + t.datetime "data_updated_at", precision: nil + t.bigint "account_id", null: false + t.boolean "overwrite", default: false, null: false + end + create_table "invites", force: :cascade do |t| t.bigint "user_id", null: false t.string "code", default: "", null: false @@ -1189,24 +1175,6 @@ t.string "url" end - create_table "quotes", id: :bigint, default: -> { "timestamp_id('quotes'::text)" }, force: :cascade do |t| - t.bigint "account_id", null: false - t.bigint "status_id", null: false - t.bigint "quoted_status_id" - t.bigint "quoted_account_id" - t.integer "state", default: 0, null: false - t.string "approval_uri" - t.string "activity_uri" - t.datetime "created_at", null: false - t.datetime "updated_at", null: false - t.index ["account_id", "quoted_account_id"], name: "index_quotes_on_account_id_and_quoted_account_id" - t.index ["activity_uri"], name: "index_quotes_on_activity_uri", unique: true, where: "(activity_uri IS NOT NULL)" - t.index ["approval_uri"], name: "index_quotes_on_approval_uri", where: "(approval_uri IS NOT NULL)" - t.index ["quoted_account_id"], name: "index_quotes_on_quoted_account_id" - t.index ["quoted_status_id"], name: "index_quotes_on_quoted_status_id" - t.index ["status_id"], name: "index_quotes_on_status_id", unique: true - end - create_table "relationship_severance_events", force: :cascade do |t| t.integer "type", null: false t.string "target_name", null: false @@ -1354,7 +1322,6 @@ t.text "media_descriptions", array: true t.string "poll_options", array: true t.boolean "sensitive" - t.bigint "quote_id" t.index ["account_id"], name: "index_status_edits_on_account_id" t.index ["status_id"], name: "index_status_edits_on_status_id" end @@ -1414,13 +1381,11 @@ t.datetime "edited_at", precision: nil t.boolean "trendable" t.bigint "ordered_media_attachment_ids", array: true - t.datetime "fetched_replies_at" - t.integer "quote_approval_policy", default: 0, null: false t.index ["account_id", "id", "visibility", "updated_at"], name: "index_statuses_20190820", order: { id: :desc }, where: "(deleted_at IS NULL)" t.index ["account_id"], name: "index_statuses_on_account_id" t.index ["deleted_at"], name: "index_statuses_on_deleted_at", where: "(deleted_at IS NOT NULL)" t.index ["id", "account_id"], name: "index_statuses_local_20190824", order: { id: :desc }, where: "((local OR (uri IS NULL)) AND (deleted_at IS NULL) AND (visibility = 0) AND (reblog_of_id IS NULL) AND ((NOT reply) OR (in_reply_to_account_id = account_id)))" - t.index ["id", "language", "account_id"], name: "index_statuses_public_20250129", order: { id: :desc }, where: "((deleted_at IS NULL) AND (visibility = 0) AND (reblog_of_id IS NULL) AND ((NOT reply) OR (in_reply_to_account_id = account_id)))" + t.index ["id", "account_id"], name: "index_statuses_public_20200119", order: { id: :desc }, where: "((deleted_at IS NULL) AND (visibility = 0) AND (reblog_of_id IS NULL) AND ((NOT reply) OR (in_reply_to_account_id = account_id)))" t.index ["in_reply_to_account_id"], name: "index_statuses_on_in_reply_to_account_id", where: "(in_reply_to_account_id IS NOT NULL)" t.index ["in_reply_to_id"], name: "index_statuses_on_in_reply_to_id", where: "(in_reply_to_id IS NOT NULL)" t.index ["reblog_of_id", "account_id"], name: "index_statuses_on_reblog_of_id_and_account_id" @@ -1474,8 +1439,6 @@ t.datetime "notification_sent_at" t.datetime "created_at", null: false t.datetime "updated_at", null: false - t.date "effective_date" - t.index ["effective_date"], name: "index_terms_of_services_on_effective_date", unique: true, where: "(effective_date IS NOT NULL)" end create_table "tombstones", force: :cascade do |t| @@ -1550,7 +1513,6 @@ t.text "settings" t.string "time_zone" t.string "otp_secret" - t.datetime "age_verified_at" t.index ["account_id"], name: "index_users_on_account_id" t.index ["confirmation_token"], name: "index_users_on_confirmation_token", unique: true t.index ["created_by_application_id"], name: "index_users_on_created_by_application_id", where: "(created_by_application_id IS NOT NULL)" @@ -1567,8 +1529,8 @@ t.json "data" t.datetime "created_at", precision: nil, null: false t.datetime "updated_at", precision: nil, null: false - t.bigint "access_token_id", null: false - t.bigint "user_id", null: false + t.bigint "access_token_id" + t.bigint "user_id" t.boolean "standard", default: false, null: false t.index ["access_token_id"], name: "index_web_push_subscriptions_on_access_token_id", where: "(access_token_id IS NOT NULL)" t.index ["user_id"], name: "index_web_push_subscriptions_on_user_id" @@ -1652,7 +1614,6 @@ 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 "fasp_debug_callbacks", "fasp_providers" add_foreign_key "favourites", "accounts", name: "fk_5eb6c2b873", on_delete: :cascade add_foreign_key "favourites", "statuses", name: "fk_b0e856845e", on_delete: :cascade add_foreign_key "featured_tags", "accounts", on_delete: :cascade @@ -1666,6 +1627,7 @@ add_foreign_key "follows", "accounts", name: "fk_32ed1b5560", on_delete: :cascade add_foreign_key "generated_annual_reports", "accounts" add_foreign_key "identities", "users", name: "fk_bea040f377", on_delete: :cascade + add_foreign_key "imports", "accounts", name: "fk_6db1b6e408", on_delete: :cascade add_foreign_key "invites", "users", on_delete: :cascade add_foreign_key "keyword_filter_groups", "server_settings", on_delete: :cascade add_foreign_key "keyword_filters", "keyword_filter_groups", on_delete: :cascade @@ -1714,8 +1676,8 @@ 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 @@ -1726,10 +1688,6 @@ add_foreign_key "post_hashtags_communities", "patchwork_communities", on_delete: :cascade add_foreign_key "preview_card_trends", "preview_cards", on_delete: :cascade add_foreign_key "preview_cards", "accounts", column: "author_account_id", on_delete: :nullify - add_foreign_key "quotes", "accounts", column: "quoted_account_id", on_delete: :nullify - add_foreign_key "quotes", "accounts", on_delete: :cascade - add_foreign_key "quotes", "statuses", column: "quoted_status_id", on_delete: :nullify - add_foreign_key "quotes", "statuses", on_delete: :cascade add_foreign_key "report_notes", "accounts", on_delete: :cascade add_foreign_key "report_notes", "reports", on_delete: :cascade add_foreign_key "reports", "accounts", column: "action_taken_by_account_id", name: "fk_bca45b75fd", on_delete: :nullify From 0765abd3fafe0935f5af32d552b4b65e338787f7 Mon Sep 17 00:00:00 2001 From: Nyan Lin Htut Date: Mon, 30 Jun 2025 11:21:53 +0630 Subject: [PATCH 31/51] fix: desc banner image, falsh msg on create admin --- app/controllers/community_admins_controller.rb | 9 ++++++++- app/helpers/step_helper.rb | 4 ++-- app/views/communities/_form_step1.html.haml | 6 ++++-- 3 files changed, 14 insertions(+), 5 deletions(-) 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/helpers/step_helper.rb b/app/helpers/step_helper.rb index b35298bf..8c7af65e 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.' } @@ -31,7 +31,7 @@ def community_steps 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.' } 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 From 5129bc2a7ab0b8c565266594db3045a1564220e0 Mon Sep 17 00:00:00 2001 From: Nyan Lin Htut Date: Mon, 30 Jun 2025 16:55:47 +0630 Subject: [PATCH 32/51] fix: community info title --- app/helpers/step_helper.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/helpers/step_helper.rb b/app/helpers/step_helper.rb index 8c7af65e..7748de03 100644 --- a/app/helpers/step_helper.rb +++ b/app/helpers/step_helper.rb @@ -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 From a509de834e32e210aef7bd465a2836430ea0b33f Mon Sep 17 00:00:00 2001 From: Min Khant Kyaw Date: Thu, 3 Jul 2025 16:54:32 +0630 Subject: [PATCH 33/51] feat:Newsmast account migration --- app/jobs/migrate_newsmast_accounts_job.rb | 107 ++++++++++++++++++++++ lib/tasks/migrate_newsmast_accounts.rake | 9 ++ 2 files changed, 116 insertions(+) create mode 100644 app/jobs/migrate_newsmast_accounts_job.rb create mode 100644 lib/tasks/migrate_newsmast_accounts.rake diff --git a/app/jobs/migrate_newsmast_accounts_job.rb b/app/jobs/migrate_newsmast_accounts_job.rb new file mode 100644 index 00000000..155d1a4b --- /dev/null +++ b/app/jobs/migrate_newsmast_accounts_job.rb @@ -0,0 +1,107 @@ +require 'csv' + +class MigrateNewsmastAccountsJob < ApplicationJob + queue_as :default + BATCH_SIZE = 100 + + def perform(csv_path = Rails.root.join('user_community_export.csv')) + 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}" + + batch = [] + CSV.foreach(csv_path, headers: true) do |row| + batch << row + if batch.size >= BATCH_SIZE + process_batch(batch) + batch = [] + end + end + process_batch(batch) if batch.any? + end + + private + + def process_batch(rows) + # Preload communities + slugs = rows.map { |r| r['slug'] } + names = rows.map { |r| r['name'] } + communities = Community.where(slug: slugs, name: names).index_by { |c| [c.slug, c.name] } + + # Prepare account queries + acct_queries = rows.map { |r| "@#{r['username']}@#{r['domain']}" }.uniq + account_id_map = {} + acct_queries.each do |acct| + account_id_map[acct] = search_target_account_id(acct, @owner_token) + end + accounts = Account.where(id: account_id_map.values.compact).index_by(&:id) + rows.each do |row| + username, domain, name, slug, is_primary = row.values_at('username', 'domain', 'name', 'slug', 'is_primary') + community = communities[[slug, name]] + unless community + Rails.logger.error "Community not found: #{name} (#{slug}) for user acct: #{username}@#{domain}" + next + end + + acct = "@#{username}@#{domain}" + target_account_id = account_id_map[acct] + target_account = accounts[target_account_id.to_i] + unless target_account + Rails.logger.error "Account not found for user acct: #{username}@#{domain}" + next + end + + is_primary_bool = ActiveModel::Type::Boolean.new.cast(is_primary) + joined_community = JoinedCommunity.find_by(account_id: target_account.id, patchwork_community_id: community.id) + if joined_community + if is_primary_bool + JoinedCommunity.where(account_id: target_account.id).where.not(id: joined_community.id).update_all(is_primary: false) + end + joined_community.update(is_primary: is_primary_bool) + Rails.logger.info "Updated joined_community for account #{username}@#{domain} in community #{name} (#{slug})" + else + if is_primary_bool + JoinedCommunity.where(account_id: target_account.id).update_all(is_primary: false) + end + JoinedCommunity.create!( + account_id: target_account.id, + patchwork_community_id: community.id, + is_primary: is_primary_bool + ) + Rails.logger.info "Created joined_community for account #{username}@#{domain} in community #{name} (#{slug})" + end + end + end + + def search_target_account_id(query, owner_token) + @account_id_cache ||= {} + return @account_id_cache[query] if @account_id_cache.key?(query) + + retries = 5 + result = nil + while retries >= 0 + result = ContributorSearchService.new( + query, + url: ENV['MASTODON_INSTANCE_URL'], + token: owner_token + ).call + if result.any? + @account_id_cache[query] = result.last['id'] + return result.last['id'] + end + retries -= 1 + end + @account_id_cache[query] = nil + nil + end + + def fetch_oauth_token(user_id) + token_service = GenerateAdminAccessTokenService.new(user_id) + token_service.call + end +end 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 From 4cbbb7e85562fe9f5e89fa73b92a72ec18aa911e Mon Sep 17 00:00:00 2001 From: Min Khant Kyaw Date: Fri, 4 Jul 2025 15:07:50 +0630 Subject: [PATCH 34/51] Update migrate_newsmast_channels.rake --- lib/tasks/migrate_newsmast_channels.rake | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/tasks/migrate_newsmast_channels.rake b/lib/tasks/migrate_newsmast_channels.rake index 8cdffffd..74296127 100644 --- a/lib/tasks/migrate_newsmast_channels.rake +++ b/lib/tasks/migrate_newsmast_channels.rake @@ -122,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 @@ -149,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 From 1c27cc212a95f7aeb321439ef6d3c55a9a70db87 Mon Sep 17 00:00:00 2001 From: Min Khant Kyaw Date: Fri, 4 Jul 2025 17:09:29 +0630 Subject: [PATCH 35/51] change userAdmin to NewsmastAdmin --- lib/tasks/migrate_newsmast_channels.rake | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/tasks/migrate_newsmast_channels.rake b/lib/tasks/migrate_newsmast_channels.rake index 74296127..82e3694b 100644 --- a/lib/tasks/migrate_newsmast_channels.rake +++ b/lib/tasks/migrate_newsmast_channels.rake @@ -68,7 +68,7 @@ def find_or_create_community_admin(community, admin_username) 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'), From 41173ab8c0a81ccfd2318ae2e353a183dcfcb4f7 Mon Sep 17 00:00:00 2001 From: Min Khant Kyaw Date: Sat, 5 Jul 2025 16:04:04 +0630 Subject: [PATCH 36/51] fix custom domain js error --- app/javascript/custom_js/custom_domain.js | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/app/javascript/custom_js/custom_domain.js b/app/javascript/custom_js/custom_domain.js index d7123879..6bf8ec71 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); } From 58ca0591d652579ba6f9dcc441a3681e9c761240 Mon Sep 17 00:00:00 2001 From: Min Khant Kyaw Date: Sat, 5 Jul 2025 16:56:00 +0630 Subject: [PATCH 37/51] Update _form_step1.html.haml --- app/views/communities/_form_step1.html.haml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/views/communities/_form_step1.html.haml b/app/views/communities/_form_step1.html.haml index 364490eb..e1706df6 100644 --- a/app/views/communities/_form_step1.html.haml +++ b/app/views/communities/_form_step1.html.haml @@ -5,7 +5,7 @@ - channel_type_info = is_channel_feed ? 'Channel' : is_channel ? 'Community' : is_hub ? 'Hub' : 'Newsmast' - ip_address = @community&.ip_address_id.present? ? IpAddress.find_by(id: @community.ip_address_id) : IpAddress.valid_ip -.container-fluid{ 'data-is-channel-feed' => is_channel_feed } +.container-fluid{ 'data-is-channel-feed' => is_channel_feed || is_newsmast} .row-md-12.my-4 .col = carousel_indicators From 1c9977a8513a27aaacbf6cce0db8cab0d5eecd82 Mon Sep 17 00:00:00 2001 From: Min Khant Kyaw Date: Sat, 5 Jul 2025 17:26:45 +0630 Subject: [PATCH 38/51] enable continue --- app/javascript/custom_js/custom_domain.js | 2 +- app/views/communities/_form_step1.html.haml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/app/javascript/custom_js/custom_domain.js b/app/javascript/custom_js/custom_domain.js index 6bf8ec71..aa1fd100 100644 --- a/app/javascript/custom_js/custom_domain.js +++ b/app/javascript/custom_js/custom_domain.js @@ -215,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/views/communities/_form_step1.html.haml b/app/views/communities/_form_step1.html.haml index e1706df6..364490eb 100644 --- a/app/views/communities/_form_step1.html.haml +++ b/app/views/communities/_form_step1.html.haml @@ -5,7 +5,7 @@ - channel_type_info = is_channel_feed ? 'Channel' : is_channel ? 'Community' : is_hub ? 'Hub' : 'Newsmast' - ip_address = @community&.ip_address_id.present? ? IpAddress.find_by(id: @community.ip_address_id) : IpAddress.valid_ip -.container-fluid{ 'data-is-channel-feed' => is_channel_feed || is_newsmast} +.container-fluid{ 'data-is-channel-feed' => is_channel_feed } .row-md-12.my-4 .col = carousel_indicators From 24fab11cb7536f8919fc1b6d8dc0db0ca7284672 Mon Sep 17 00:00:00 2001 From: Min Khant Kyaw Date: Mon, 7 Jul 2025 11:20:17 +0630 Subject: [PATCH 39/51] feat:fetch bridged account info --- app/controllers/api/v1/communities_controller.rb | 15 ++++++++++++++- config/routes/api_v1.rb | 1 + 2 files changed, 15 insertions(+), 1 deletion(-) diff --git a/app/controllers/api/v1/communities_controller.rb b/app/controllers/api/v1/communities_controller.rb index b62f99f0..b0613c81 100644 --- a/app/controllers/api/v1/communities_controller.rb +++ b/app/controllers/api/v1/communities_controller.rb @@ -2,10 +2,11 @@ module Api module V1 class CommunitiesController < ApiController skip_before_action :verify_key! - before_action :authenticate_user_from_header + before_action :authenticate_user_from_header, except: %i[bridge_information] 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 @@ -132,6 +133,18 @@ def fetch_ip_address 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 community_params diff --git a/config/routes/api_v1.rb b/config/routes/api_v1.rb index e93a9592..8d9bd676 100644 --- a/config/routes/api_v1.rb +++ b/config/routes/api_v1.rb @@ -56,6 +56,7 @@ get 'mute_contributor_list' post 'set_visibility' get 'fetch_ip_address' + get 'bridge_information' end member do patch :manage_additional_information From 5fb0765be6e13e1a20d7056ff0361f7887b91ea1 Mon Sep 17 00:00:00 2001 From: Min Khant Kyaw Date: Mon, 7 Jul 2025 13:42:02 +0630 Subject: [PATCH 40/51] feat:bridged account info --- app/controllers/api/v1/channels_controller.rb | 12 ++++++++++++ app/controllers/api/v1/communities_controller.rb | 14 +------------- config/routes/api_v1.rb | 2 +- 3 files changed, 14 insertions(+), 14 deletions(-) diff --git a/app/controllers/api/v1/channels_controller.rb b/app/controllers/api/v1/channels_controller.rb index ce5dc32d..de5369a9 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/communities_controller.rb b/app/controllers/api/v1/communities_controller.rb index b0613c81..ce5fcc69 100644 --- a/app/controllers/api/v1/communities_controller.rb +++ b/app/controllers/api/v1/communities_controller.rb @@ -2,7 +2,7 @@ module Api module V1 class CommunitiesController < ApiController skip_before_action :verify_key! - before_action :authenticate_user_from_header, except: %i[bridge_information] + before_action :authenticate_user_from_header 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] @@ -133,18 +133,6 @@ def fetch_ip_address 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 community_params diff --git a/config/routes/api_v1.rb b/config/routes/api_v1.rb index 8d9bd676..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 @@ -56,7 +57,6 @@ get 'mute_contributor_list' post 'set_visibility' get 'fetch_ip_address' - get 'bridge_information' end member do patch :manage_additional_information From 7530dae5e5229000ab0a40add7dd3835061d3781 Mon Sep 17 00:00:00 2001 From: Min Khant Kyaw Date: Mon, 7 Jul 2025 14:32:23 +0630 Subject: [PATCH 41/51] Update sidekiq.yml --- config/sidekiq.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/config/sidekiq.yml b/config/sidekiq.yml index 90371060..1750721a 100644 --- a/config/sidekiq.yml +++ b/config/sidekiq.yml @@ -15,10 +15,10 @@ development: every: '5m' class: Scheduler::FetchSpamKeywordScheduler queue: dashboard_development_scheduler - FollowBlueskyBotScheduler: - every: '10m' - class: Scheduler::FollowBlueskyBotScheduler - queue: dashboard_development_scheduler + # FollowBlueskyBotScheduler: + # every: '10m' + # class: Scheduler::FollowBlueskyBotScheduler + # queue: dashboard_development_scheduler staging: :verbose: true From b9077616a96a067874743b2495169a6b3129ad18 Mon Sep 17 00:00:00 2001 From: Min Khant Kyaw Date: Mon, 7 Jul 2025 17:16:47 +0630 Subject: [PATCH 42/51] Update channels_controller.rb --- app/controllers/api/v1/channels_controller.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/controllers/api/v1/channels_controller.rb b/app/controllers/api/v1/channels_controller.rb index de5369a9..2c745a2f 100644 --- a/app/controllers/api/v1/channels_controller.rb +++ b/app/controllers/api/v1/channels_controller.rb @@ -66,7 +66,7 @@ def bridge_information if community.nil? render json: { error: 'Community not found' }, status: :not_found and return end - bluesky_info = BlueskyService.new(@community).fetch_bluesky_account + bluesky_info = BlueskyService.new(community).fetch_bluesky_account render json: { community: community, bluesky_info: bluesky_info, From 0e5940c9e9012724b5609837a5bc0d5c31a1ed91 Mon Sep 17 00:00:00 2001 From: Min Khant Kyaw Date: Mon, 7 Jul 2025 22:38:34 +0630 Subject: [PATCH 43/51] Update sidekiq.yml --- config/sidekiq.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/config/sidekiq.yml b/config/sidekiq.yml index 1750721a..90371060 100644 --- a/config/sidekiq.yml +++ b/config/sidekiq.yml @@ -15,10 +15,10 @@ development: every: '5m' class: Scheduler::FetchSpamKeywordScheduler queue: dashboard_development_scheduler - # FollowBlueskyBotScheduler: - # every: '10m' - # class: Scheduler::FollowBlueskyBotScheduler - # queue: dashboard_development_scheduler + FollowBlueskyBotScheduler: + every: '10m' + class: Scheduler::FollowBlueskyBotScheduler + queue: dashboard_development_scheduler staging: :verbose: true From 7c34ea59380e97effdb48872e580fc879d31d8cd Mon Sep 17 00:00:00 2001 From: Aung Kyaw Phyo Date: Tue, 8 Jul 2025 13:10:03 +0700 Subject: [PATCH 44/51] Fix issue of underscore --- app/jobs/migrate_newsmast_accounts_job.rb | 8 +- user_community_export.csv | 24846 ++++++++++++++++++++ 2 files changed, 24850 insertions(+), 4 deletions(-) create mode 100644 user_community_export.csv diff --git a/app/jobs/migrate_newsmast_accounts_job.rb b/app/jobs/migrate_newsmast_accounts_job.rb index 155d1a4b..1a94e6f6 100644 --- a/app/jobs/migrate_newsmast_accounts_job.rb +++ b/app/jobs/migrate_newsmast_accounts_job.rb @@ -29,9 +29,9 @@ def perform(csv_path = Rails.root.join('user_community_export.csv')) def process_batch(rows) # Preload communities - slugs = rows.map { |r| r['slug'] } + slugs = rows.map { |r| r['slug'].tr('_', '-') } names = rows.map { |r| r['name'] } - communities = Community.where(slug: slugs, name: names).index_by { |c| [c.slug, c.name] } + communities = Community.where(slug: slugs, name: names, channel_type: 'newsmast').index_by { |c| [c.slug, c.name] } # Prepare account queries acct_queries = rows.map { |r| "@#{r['username']}@#{r['domain']}" }.uniq @@ -42,9 +42,9 @@ def process_batch(rows) accounts = Account.where(id: account_id_map.values.compact).index_by(&:id) rows.each do |row| username, domain, name, slug, is_primary = row.values_at('username', 'domain', 'name', 'slug', 'is_primary') - community = communities[[slug, name]] + community = communities[[slug.tr('_', '-'), name]] unless community - Rails.logger.error "Community not found: #{name} (#{slug}) for user acct: #{username}@#{domain}" + Rails.logger.error "Community not found: #{name} (#{slug.tr('_', '-')}) for user acct: #{username}@#{domain}" next end diff --git a/user_community_export.csv b/user_community_export.csv new file mode 100644 index 00000000..625df804 --- /dev/null +++ b/user_community_export.csv @@ -0,0 +1,24846 @@ +username,domain,name,slug,is_primary +daniel_mckeon,newsmast.social,TV & Radio,tv_radio,false +alice11,newsmast.social,Humour,humour,false +JayAySevenTwo,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false +Stephen,newsmast.social,Journalism & Comment,news_comment_data,false +jannus,newsmast.social,Technology,technology,false +mariana_b,newsmast.social,Nature & Wildlife,nature_wildlife,false +dannyweller,newsmast.social,Sport,sport,false +Kayleigh,newsmast.social,Disabled Voices,disabled_voices,false +Headfort,newsmast.social,Government & Policy,government_policy,false +zerotwo,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,true +askchefdennis,newsmast.social,Breaking News,breaking_news,false +orianavmatos,newsmast.social,Government & Policy,government_policy,true +icey_mark,newsmast.social,Government & Policy,government_policy,false +seb_bw,newsmast.social,Government & Policy,government_policy,true +Kayleigh,newsmast.social,Humanities,humanities,false +PolGeoNow,newsmast.social,Government & Policy,government_policy,false +JackMoulton,newsmast.social,Government & Policy,government_policy,false +Dragonholley,mastodon.social,Nature & Wildlife,nature_wildlife,false +Kayleigh,newsmast.social,Government & Policy,government_policy,false +Dragonholley,mastodon.social,Performing Arts,performing_arts,false +Nyein,newsmast.social,Workers Rights,workers_rights,false +clairejuliaart,newsmast.social,Activism & Civil Rights,activism_civil_rights,false +EV_Musings,newsmast.social,Technology,technology,true +SustMeme,newsmast.social,Technology,technology,false +JulieSpray,newsmast.social,Government & Policy,government_policy,false +GraceReckers,newsmast.social,Government & Policy,government_policy,false +simonerochembe,newsmast.social,Technology,technology,false +samf,newsmast.social,Government & Policy,government_policy,false +candice_chirwa,newsmast.social,Government & Policy,government_policy,false +zerotwo,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false +enangha,newsmast.social,Ukraine Invasion,ukraine_invasion,false +MarieGeneste,newsmast.social,Technology,technology,false +peter,newsmast.social,Technology,technology,false +Thomas,newsmast.social,Philosophy,philosophy,false +Thomas,newsmast.social,Activism & Civil Rights,activism_civil_rights,false +Thomas,newsmast.social,Ukraine Invasion,ukraine_invasion,true +Crof,newsmast.social,Government & Policy,government_policy,false +luisaropio,newsmast.social,Government & Policy,government_policy,false +zerotwo,newsmast.social,Climate change,climate_change,false +jessa,newsmast.social,Government & Policy,government_policy,true +FrontSeatPhil,newsmast.social,Technology,technology,true +zerotwo,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +Dr_Finbar,newsmast.social,Technology,technology,false +zerotwo,newsmast.social,Energy & Pollution,energy_pollution,false +zerotwo,newsmast.social,Environment,environment,false +seb_bw,newsmast.social,Technology,technology,false +indiajade_68,newsmast.social,Technology,technology,false +akp,newsmast.social,Space,space,false +dianashurman,newsmast.social,Markets & Finance,markets_finance,false +SithuBo,newsmast.social,Biology,biology,false +dianashurman,newsmast.social,AI,ai,true +dianashurman,newsmast.social,Government & Policy,government_policy,false +ianwalker,newsmast.social,Technology,technology,false +RachelBranson,newsmast.social,Technology,technology,false +zerotwo,newsmast.social,Healthcare,healthcare,false +Roamancing,newsmast.social,Government & Policy,government_policy,false +zerotwo,newsmast.social,Poverty & Inequality,poverty_inequality,false +Bell,newsmast.social,Government & Policy,government_policy,false +askchefdennis,newsmast.social,Technology,technology,true +zerotwo,newsmast.social,Law & Justice,law_justice,false +zerotwo,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false +zerotwo,newsmast.social,Journalism & Comment,news_comment_data,false +zerotwo,newsmast.social,Politics,politics,false +YuliaMHersey,newsmast.social,Technology,technology,false +IZMartinez86,newsmast.social,Government & Policy,government_policy,false +mariana_b,newsmast.social,Government & Policy,government_policy,false +nyeinBinarylab,newsmast.social,Activism & Civil Rights,activism_civil_rights,false +nyeinBinarylab,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false +zerotwo,newsmast.social,Ukraine Invasion,ukraine_invasion,false +nyeinBinarylab,newsmast.social,Black Voices,black_voices,false +zerotwo,newsmast.social,Weather,weather,false +JamesNewsMast,newsmast.social,Gaming,gaming,false +JamesNewsMast,newsmast.social,Food & Drink,food_drink,false +JamesNewsMast,newsmast.social,Government & Policy,government_policy,false +nyeinBinarylab,newsmast.social,Breaking News,breaking_news,false +JamesNewsMast,newsmast.social,Space,space,true +nyeinBinarylab,newsmast.social,Climate change,climate_change,false +eve,newsmast.social,Creative Arts,creative_arts,false +sandy,newsmast.social,Chemistry,chemistry,false +jomaan123,newsmast.social,Politics,politics,false +sabah,newsmast.social,Performing Arts,performing_arts,false +enangha,newsmast.social,Journalism & Comment,news_comment_data,true +mariana_b,newsmast.social,Movies,movies,false +nyeinBinarylab,newsmast.social,Creative Arts,creative_arts,false +mariana_b,newsmast.social,Philosophy,philosophy,false +mariana_b,newsmast.social,Activism & Civil Rights,activism_civil_rights,false +mariana_b,newsmast.social,LGBTQ+,lgbtq,false +mariana_b,newsmast.social,Journalism & Comment,news_comment_data,true +JackMoulton,newsmast.social,Breaking News,breaking_news,false +JackMoulton,newsmast.social,Music,music,false +JackMoulton,newsmast.social,TV & Radio,tv_radio,false +JackMoulton,newsmast.social,Gaming,gaming,false +JackMoulton,newsmast.social,Journalism & Comment,news_comment_data,true +orianavmatos,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false +akp,newsmast.social,Technology,technology,false +max_chaudhary,newsmast.social,Academia & Research,academia_research,false +max_chaudhary,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +max_chaudhary,newsmast.social,Healthcare,healthcare,false +wildlife,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false +max_chaudhary,newsmast.social,History,history,false +max_chaudhary,newsmast.social,Law & Justice,law_justice,false +max_chaudhary,newsmast.social,Politics,politics,false +max_chaudhary,newsmast.social,US Politics,us_politics,false +JayAySevenTwo,newsmast.social,Ukraine Invasion,ukraine_invasion,false +AnnaJ,newsmast.social,Movies,movies,false +AnnaJ,newsmast.social,Activism & Civil Rights,activism_civil_rights,false +AnnaJ,newsmast.social,Journalism & Comment,news_comment_data,true +DannSy18,newsmast.social,Ukraine Invasion,ukraine_invasion,false +eve,newsmast.social,Environment,environment,false +nyeinBinarylab,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +enangha,newsmast.social,Social Sciences,social_sciences,false +Dragonholley,mastodon.social,Pets,pets,false +ErichWeikert,newsmast.social,Social Sciences,social_sciences,false +eve,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false +eve,newsmast.social,Journalism & Comment,news_comment_data,true +delyan,newsmast.social,Breaking News,breaking_news,false +delyan,newsmast.social,Journalism & Comment,news_comment_data,false +delyan,newsmast.social,Creative Arts,creative_arts,false +delyan,newsmast.social,Photography,photography,false +delyan,newsmast.social,Travel,travel,false +delyan,newsmast.social,Performing Arts,performing_arts,false +delyan,newsmast.social,Politics,politics,false +delyan,newsmast.social,Humour,humour,false +delyan,newsmast.social,Humanities,humanities,false +delyan,newsmast.social,Social Sciences,social_sciences,false +delyan,newsmast.social,Gaming,gaming,false +delyan,newsmast.social,Music,music,false +delyan,newsmast.social,Football,football,false +delyan,newsmast.social,TV & Radio,tv_radio,false +delyan,newsmast.social,Sport,sport,false +delyan,newsmast.social,LGBTQ+,lgbtq,false +delyan,newsmast.social,Workers Rights,workers_rights,false +delyan,newsmast.social,Disabled Voices,disabled_voices,false +delyan,newsmast.social,Visual Arts,visual_arts,false +delyan,newsmast.social,AI,ai,false +delyan,newsmast.social,Activism & Civil Rights,activism_civil_rights,false +delyan,newsmast.social,Government & Policy,government_policy,false +delyan,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +Dragonholley,mastodon.social,Photography,photography,false +nyeinBinarylab,newsmast.social,Disabled Voices,disabled_voices,false +chamkaurghag,newsmast.social,Social Sciences,social_sciences,false +delyan,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false +delyan,newsmast.social,Movies,movies,true +orianavictoria,newsmast.social,Environment,environment,false +orianavictoria,newsmast.social,Movies,movies,false +orianavictoria,newsmast.social,Politics,politics,false +orianavictoria,newsmast.social,Food & Drink,food_drink,false +orianavictoria,newsmast.social,Journalism & Comment,news_comment_data,true +enangha,newsmast.social,Science,science,false +janerockhouse,newsmast.social,Social Sciences,social_sciences,false +enangha,newsmast.social,Government & Policy,government_policy,false +enangha,newsmast.social,Mathematics,mathematics,false +nyeinBinarylab,newsmast.social,Energy & Pollution,energy_pollution,false +kamran,newsmast.social,Government & Policy,government_policy,false +enangha,newsmast.social,Biology,biology,false +enangha,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false +enangha,newsmast.social,Activism & Civil Rights,activism_civil_rights,false +enangha,newsmast.social,Black Voices,black_voices,false +enangha,newsmast.social,Women’s Voices,women_voices,false +nyeinBinarylab,newsmast.social,Environment,environment,false +enangha,newsmast.social,Pets,pets,false +Kayleigh,newsmast.social,Journalism & Comment,news_comment_data,false +Kayleigh,newsmast.social,Women’s Voices,women_voices,false +Kayleigh,newsmast.social,LGBTQ+,lgbtq,false +Kayleigh,newsmast.social,Black Voices,black_voices,false +SuperScienceGrl,newsmast.social,Social Sciences,social_sciences,false +Kayleigh,newsmast.social,Business,business,false +Dragonholley,mastodon.social,Physics,physics,false +Kayleigh,newsmast.social,Books & Literature,books_literature,true +enangha,newsmast.social,Healthcare,healthcare,false +dianashurman,newsmast.social,Humanities,humanities,false +emilyjd,newsmast.social,Travel,travel,false +emilyjd,newsmast.social,Environment,environment,false +emilyjd,newsmast.social,Movies,movies,false +emilyjd,newsmast.social,Poverty & Inequality,poverty_inequality,false +ipsc48,newsmast.social,Government & Policy,government_policy,false +emilyjd,newsmast.social,Humanities,humanities,false +emilyjd,newsmast.social,Social Sciences,social_sciences,false +Phebe,newsmast.social,Architecture & Design,architecture_design,false +muzaffarab,newsmast.social,Government & Policy,government_policy,false +emilyjd,newsmast.social,Music,music,false +emilyjd,newsmast.social,Space,space,false +emilyjd,newsmast.social,TV & Radio,tv_radio,false +emilyjd,newsmast.social,LGBTQ+,lgbtq,false +emilyjd,newsmast.social,Women’s Voices,women_voices,false +emilyjd,newsmast.social,Visual Arts,visual_arts,false +emilyjd,newsmast.social,Books & Literature,books_literature,false +robotmaths,newsmast.social,Government & Policy,government_policy,false +emilyjd,newsmast.social,Climate change,climate_change,false +BostonAbrams,newsmast.social,History,history,false +nyeinBinarylab,newsmast.social,Food & Drink,food_drink,false +nyeinBinarylab,newsmast.social,Government & Policy,government_policy,false +emilyjd,newsmast.social,Food & Drink,food_drink,false +emilyjd,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false +emilyjd,newsmast.social,Journalism & Comment,news_comment_data,true +chloeariellle,newsmast.social,Social Sciences,social_sciences,true +daniel_mckeon,newsmast.social,Chemistry,chemistry,false +mariana_b,newsmast.social,Travel,travel,false +thosgood,newsmast.social,Social Sciences,social_sciences,false +sandy,newsmast.social,Social Sciences,social_sciences,false +mariana_b,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false +nyeinBinarylab,newsmast.social,Healthcare,healthcare,false +sophiecunningham,newsmast.social,Environment,environment,false +sophiecunningham,newsmast.social,Science,science,false +BostonAbrams,newsmast.social,Humanities,humanities,false +IlCava,mastodon.uno,Humour,humour,false +sophiecunningham,newsmast.social,Journalism & Comment,news_comment_data,true +mariana_b,newsmast.social,History,history,false +mariana_b,newsmast.social,Pets,pets,false +enangha,newsmast.social,Poverty & Inequality,poverty_inequality,false +jomaan123,newsmast.social,Breaking News,breaking_news,false +jomaan123,newsmast.social,Journalism & Comment,news_comment_data,false +jomaan123,newsmast.social,History,history,false +jomaan123,newsmast.social,Humanities,humanities,false +orianavictoria,newsmast.social,Technology,technology,false +saskia,newsmast.social,Pets,pets,false +saskia,newsmast.social,Humour,humour,false +FreddieJ,newsmast.social,Movies,movies,false +DannSy18,newsmast.social,AI,ai,false +DannSy18,newsmast.social,Government & Policy,government_policy,true +lucygreenwold,newsmast.social,Creative Arts,creative_arts,false +lucygreenwold,newsmast.social,Journalism & Comment,news_comment_data,false +lucygreenwold,newsmast.social,Performing Arts,performing_arts,false +lucygreenwold,newsmast.social,Travel,travel,false +09SHEEHANM,newsmast.social,Breaking News,breaking_news,false +lucygreenwold,newsmast.social,Music,music,false +lucygreenwold,newsmast.social,Indigenous Peoples,indigenous_peoples,false +lucygreenwold,newsmast.social,Women’s Voices,women_voices,false +lucygreenwold,newsmast.social,LGBTQ+,lgbtq,false +dianashurman,newsmast.social,Social Sciences,social_sciences,false +lucygreenwold,newsmast.social,Visual Arts,visual_arts,false +lucygreenwold,newsmast.social,Activism & Civil Rights,activism_civil_rights,false +pennywalker,newsmast.social,Government & Policy,government_policy,false +lucygreenwold,newsmast.social,Philosophy,philosophy,false +lucygreenwold,newsmast.social,Climate change,climate_change,false +lucygreenwold,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +Janet_O,newsmast.social,Government & Policy,government_policy,false +09SHEEHANM,newsmast.social,Business,business,false +nyeinBinarylab,newsmast.social,Humour,humour,false +lucygreenwold,newsmast.social,Nature & Wildlife,nature_wildlife,false +lucygreenwold,newsmast.social,Books & Literature,books_literature,true +dannyweller,newsmast.social,Government & Policy,government_policy,false +09SHEEHANM,newsmast.social,Government & Policy,government_policy,false +Hayfa_Sdiri,newsmast.social,Government & Policy,government_policy,true +dannyweller,newsmast.social,Workers Rights,workers_rights,false +dannyweller,newsmast.social,Music,music,false +mental_health,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,true +dannyweller,newsmast.social,Travel,travel,false +dannyweller,newsmast.social,Creative Arts,creative_arts,false +dannyweller,newsmast.social,Movies,movies,false +dannyweller,newsmast.social,Breaking News,breaking_news,false +dannyweller,newsmast.social,Journalism & Comment,news_comment_data,true +FreddieJ,newsmast.social,Politics,politics,false +FreddieJ,newsmast.social,History,history,false +clairejuliaart,newsmast.social,Disabled Voices,disabled_voices,false +Tasha,newsmast.social,Breaking News,breaking_news,false +Tasha,newsmast.social,Journalism & Comment,news_comment_data,false +Tasha,newsmast.social,Creative Arts,creative_arts,false +Tasha,newsmast.social,Photography,photography,false +Tasha,newsmast.social,Pets,pets,false +Tasha,newsmast.social,Physics,physics,false +Hayfa_Sdiri,newsmast.social,Social Sciences,social_sciences,false +dltj,newsmast.social,Government & Policy,government_policy,false +peter,newsmast.social,Social Sciences,social_sciences,false +Tasha,newsmast.social,Healthcare,healthcare,false +Tasha,newsmast.social,Movies,movies,false +Tasha,newsmast.social,Science,science,false +nyeinBinarylab,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false +QasimRashid,newsmast.social,Social Sciences,social_sciences,false +Tasha,newsmast.social,Engineering,engineering,false +lspar002,newsmast.social,AI,ai,false +mariana_b,newsmast.social,Politics,politics,false +tderyugina,newsmast.social,Social Sciences,social_sciences,true +AFalcon,newsmast.social,Government & Policy,government_policy,false +zerotwo,newsmast.social,Breaking News,breaking_news,false +Phebe,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false +Phebe,newsmast.social,Poverty & Inequality,poverty_inequality,false +Phebe,newsmast.social,Movies,movies,false +Phebe,newsmast.social,Journalism & Comment,news_comment_data,true +zainabismail,newsmast.social,Breaking News,breaking_news,false +zainabismail,newsmast.social,Travel,travel,false +zainabismail,newsmast.social,Politics,politics,false +zainabismail,newsmast.social,Activism & Civil Rights,activism_civil_rights,false +Thomas,newsmast.social,Government & Policy,government_policy,false +zainabismail,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false +zainabismail,newsmast.social,Journalism & Comment,news_comment_data,true +nyeinBinarylab,newsmast.social,Immigrants Rights,immigrants_rights,false +dianashurman,newsmast.social,Pets,pets,false +priyal,newsmast.social,Environment,environment,false +priyal,newsmast.social,Movies,movies,false +priyal,newsmast.social,Books & Literature,books_literature,false +priyal,newsmast.social,Climate change,climate_change,false +nyeinBinarylab,newsmast.social,Indigenous Peoples,indigenous_peoples,false +priyal,newsmast.social,History,history,false +priyal,newsmast.social,Journalism & Comment,news_comment_data,true +daniel_mckeon,newsmast.social,Journalism & Comment,news_comment_data,false +zerotwo,newsmast.social,Creative Arts,creative_arts,false +jomaan123,newsmast.social,Pets,pets,true +daniel_mckeon,newsmast.social,Social Sciences,social_sciences,false +daniel_mckeon,newsmast.social,Physics,physics,true +sabah,newsmast.social,Creative Arts,creative_arts,false +sabah,newsmast.social,Social Sciences,social_sciences,false +sabah,newsmast.social,Music,music,false +sabah,newsmast.social,Visual Arts,visual_arts,false +sabah,newsmast.social,Journalism & Comment,news_comment_data,true +jacklscanlan,newsmast.social,Government & Policy,government_policy,false +kenweber,mastodon.social,AI,ai,false +nyeinBinarylab,newsmast.social,Law & Justice,law_justice,false +katieharbath,newsmast.social,Government & Policy,government_policy,false +ProfTJCurry,newsmast.social,Government & Policy,government_policy,false +PAAwarenessUK,newsmast.social,Government & Policy,government_policy,false +Iyad_Abumoghli,newsmast.social,Government & Policy,government_policy,false +Ed_Rempel,newsmast.social,Social Sciences,social_sciences,false +mariana_b,newsmast.social,Social Sciences,social_sciences,false +Crates,mastodon.social,Biology,biology,false +wingingittravel,newsmast.social,Activism & Civil Rights,activism_civil_rights,false +tderyugina,newsmast.social,Government & Policy,government_policy,false +09SHEEHANM,newsmast.social,Journalism & Comment,news_comment_data,false +Stephen,newsmast.social,Movies,movies,false +Stephen,newsmast.social,Music,music,false +Stephen,newsmast.social,Gaming,gaming,false +Stephen,newsmast.social,TV & Radio,tv_radio,false +Stephen,newsmast.social,Law & Justice,law_justice,false +Stephen,newsmast.social,Visual Arts,visual_arts,true +BostonAbrams,newsmast.social,Journalism & Comment,news_comment_data,false +saskia,newsmast.social,LGBTQ+,lgbtq,false +saskia,newsmast.social,Movies,movies,false +saskia,newsmast.social,Breaking News,breaking_news,false +saskia,newsmast.social,Photography,photography,false +saskia,newsmast.social,Gaming,gaming,false +saskia,newsmast.social,Space,space,false +saskia,newsmast.social,Sport,sport,false +mombian,newsmast.social,Government & Policy,government_policy,false +saskia,newsmast.social,Books & Literature,books_literature,false +saskia,newsmast.social,Football,football,true +kamran,newsmast.social,Breaking News,breaking_news,false +ccgh,newsmast.social,Government & Policy,government_policy,false +kamran,newsmast.social,Politics,politics,false +kamran,newsmast.social,Ukraine Invasion,ukraine_invasion,false +JURISTnews,newsmast.social,Social Sciences,social_sciences,false +kamran,newsmast.social,Mathematics,mathematics,false +kamran,newsmast.social,Journalism & Comment,news_comment_data,true +JackMoulton,newsmast.social,Movies,movies,false +sandy,newsmast.social,Creative Arts,creative_arts,false +nyeinBinarylab,newsmast.social,LGBTQ+,lgbtq,false +nyeinBinarylab,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false +sandy,newsmast.social,Humour,humour,false +sandy,newsmast.social,Humanities,humanities,false +sandy,newsmast.social,LGBTQ+,lgbtq,false +sandy,newsmast.social,Philosophy,philosophy,false +sandy,newsmast.social,Journalism & Comment,news_comment_data,true +christina88,newsmast.social,Books & Literature,books_literature,false +TasmanianTimes,newsmast.social,Government & Policy,government_policy,false +mariana_b,newsmast.social,Books & Literature,books_literature,false +MotorcycleGuy,newsmast.social,Government & Policy,government_policy,false +ilovefilm,newsmast.social,Government & Policy,government_policy,false +matt_cary,newsmast.social,Government & Policy,government_policy,false +alawriedejesus,newsmast.social,Government & Policy,government_policy,false +alice11,newsmast.social,Movies,movies,false +alice11,newsmast.social,Pets,pets,false +alice11,newsmast.social,Photography,photography,false +alice11,newsmast.social,Creative Arts,creative_arts,false +alice11,newsmast.social,Journalism & Comment,news_comment_data,false +alice11,newsmast.social,Performing Arts,performing_arts,false +alice11,newsmast.social,Travel,travel,false +alice11,newsmast.social,TV & Radio,tv_radio,false +alice11,newsmast.social,LGBTQ+,lgbtq,false +alice11,newsmast.social,Weather,weather,false +alice11,newsmast.social,Music,music,true +Tasha,newsmast.social,Performing Arts,performing_arts,false +Tasha,newsmast.social,Travel,travel,false +Tasha,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false +Tasha,newsmast.social,Poverty & Inequality,poverty_inequality,false +jannus,newsmast.social,Social Sciences,social_sciences,false +nyeinBinarylab,newsmast.social,Nature & Wildlife,nature_wildlife,false +nyeinBinarylab,newsmast.social,Journalism & Comment,news_comment_data,false +Tasha,newsmast.social,Politics,politics,false +Tasha,newsmast.social,History,history,false +Tasha,newsmast.social,Humour,humour,false +newsmast,newsmast.social,Activism & Civil Rights,activism_civil_rights,false +Tasha,newsmast.social,Humanities,humanities,false +Tasha,newsmast.social,Social Sciences,social_sciences,false +christina88,newsmast.social,Government & Policy,government_policy,false +Tasha,newsmast.social,Indigenous Peoples,indigenous_peoples,false +Tasha,newsmast.social,Music,music,false +Tasha,newsmast.social,Gaming,gaming,false +Tasha,newsmast.social,Technology,technology,false +Tasha,newsmast.social,Space,space,false +Tasha,newsmast.social,TV & Radio,tv_radio,false +Tasha,newsmast.social,Sport,sport,false +Hedvig1Lindahl,newsmast.social,Social Sciences,social_sciences,false +Tasha,newsmast.social,Ukraine Invasion,ukraine_invasion,false +TVPsychologist,newsmast.social,Social Sciences,social_sciences,true +09SHEEHANM,newsmast.social,Ukraine Invasion,ukraine_invasion,true +nowinaminute,newsmast.social,Social Sciences,social_sciences,false +Tasha,newsmast.social,LGBTQ+,lgbtq,false +Tasha,newsmast.social,Women’s Voices,women_voices,false +Tasha,newsmast.social,Disabled Voices,disabled_voices,false +Tasha,newsmast.social,Workers Rights,workers_rights,false +Tasha,newsmast.social,Visual Arts,visual_arts,false +Tasha,newsmast.social,Black Voices,black_voices,false +Tasha,newsmast.social,AI,ai,false +Tasha,newsmast.social,Activism & Civil Rights,activism_civil_rights,false +Tasha,newsmast.social,Chemistry,chemistry,false +Tasha,newsmast.social,Biology,biology,false +Tasha,newsmast.social,Books & Literature,books_literature,false +Tasha,newsmast.social,Weather,weather,false +petenothing,newsmast.social,Food & Drink,food_drink,false +Tasha,newsmast.social,Energy & Pollution,energy_pollution,false +chrisfrench,newsmast.social,Social Sciences,social_sciences,true +PAAwarenessUK,newsmast.social,Social Sciences,social_sciences,false +MarieGeneste,newsmast.social,Social Sciences,social_sciences,false +BostonAbrams,newsmast.social,Philosophy,philosophy,false +Tasha,newsmast.social,Philosophy,philosophy,false +Tasha,newsmast.social,Business,business,false +Tasha,newsmast.social,Climate change,climate_change,false +Tasha,newsmast.social,Markets & Finance,markets_finance,false +ChinHuaLu,newsmast.social,Social Sciences,social_sciences,false +Kayleigh,newsmast.social,Activism & Civil Rights,activism_civil_rights,false +jeremygodwin,newsmast.social,LGBTQ+,lgbtq,false +eve,newsmast.social,Humour,humour,false +MKandHerBC,newsmast.social,Social Sciences,social_sciences,false +tomy,newsmast.social,Social Sciences,social_sciences,false +KittyInTheMitty,newsmast.social,Social Sciences,social_sciences,false +orianavictoria,newsmast.social,Markets & Finance,markets_finance,false +sophiecunningham,newsmast.social,Energy & Pollution,energy_pollution,false +dannyweller,newsmast.social,AI,ai,false +Player2,newsmast.social,Energy & Pollution,energy_pollution,false +GraceReckers,newsmast.social,Energy & Pollution,energy_pollution,false +Kayleigh,newsmast.social,Markets & Finance,markets_finance,false +minkhantkyaw35,newsmast.social,Breaking News,breaking_news,false +vegannutrition,newsmast.social,Energy & Pollution,energy_pollution,false +CBhattacharji,newsmast.social,Energy & Pollution,energy_pollution,true +minkhantkyaw35,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,true +dannyweller,newsmast.social,Science,science,false +Kayleigh,newsmast.social,Music,music,false +Kayleigh,newsmast.social,TV & Radio,tv_radio,false +Kayleigh,newsmast.social,Pets,pets,false +Kayleigh,newsmast.social,Philosophy,philosophy,false +saskia,newsmast.social,Music,music,false +JenniferLawson,newsmast.social,Energy & Pollution,energy_pollution,false +Iyad_Abumoghli,newsmast.social,Energy & Pollution,energy_pollution,false +minkhantkyaw35,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +TasmanianTimes,newsmast.social,Energy & Pollution,energy_pollution,false +minkhantkyaw35,newsmast.social,Poverty & Inequality,poverty_inequality,false +arg02,newsmast.social,Energy & Pollution,energy_pollution,true +minkhantkyaw35,newsmast.social,Journalism & Comment,news_comment_data,false +minkhantkyaw35,newsmast.social,Politics,politics,false +JURISTnews,newsmast.social,Energy & Pollution,energy_pollution,false +Thomas,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false +karlienoon,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false +minkhantkyaw35,newsmast.social,Ukraine Invasion,ukraine_invasion,false +minkhantkyaw35,newsmast.social,Weather,weather,false +petenothing,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false +eve,newsmast.social,Breaking News,breaking_news,false +Themontyproject,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false +BostonAbrams,newsmast.social,Social Media,social_media,false +BostonAbrams,newsmast.social,Breaking News,breaking_news,true +stephieduffy,newsmast.social,Journalism & Comment,news_comment_data,false +stephieduffy,newsmast.social,Performing Arts,performing_arts,true +jeremygodwin,newsmast.social,Philosophy,philosophy,false +RachelBranson,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false +akp,newsmast.social,Breaking News,breaking_news,true +aungmyatmoe,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false +ilovefilm,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false +han_smith,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false +asausagehastwo,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false +nyeinBinarylab,newsmast.social,Pets,pets,false +Dragonholley,mastodon.social,Programming,programming,false +TexasHistoryL,newsmast.social,Books & Literature,books_literature,false +nyeinBinarylab,newsmast.social,Politics,politics,false +vpatel,newsmast.social,Business,business,false +vpatel,newsmast.social,Journalism & Comment,news_comment_data,false +vpatel,newsmast.social,Philosophy,philosophy,true +Kayleigh,newsmast.social,Immigrants Rights,immigrants_rights,false +Kayleigh,newsmast.social,Workers Rights,workers_rights,false +keithramsey,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false +Kayleigh,newsmast.social,Gaming,gaming,false +Kayleigh,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false +nyeinBinarylab,newsmast.social,Poverty & Inequality,poverty_inequality,false +Kayleigh,newsmast.social,Breaking News,breaking_news,false +Janet_O,newsmast.social,Photography,photography,false +Janet_O,newsmast.social,Black Voices,black_voices,false +Janet_O,newsmast.social,Journalism & Comment,news_comment_data,false +nyeinBinarylab,newsmast.social,Puzzles,puzzles,false +Janet_O,newsmast.social,Breaking News,breaking_news,true +nyeinBinarylab,newsmast.social,Social Media,social_media,false +Tasha,newsmast.social,Nature & Wildlife,nature_wildlife,false +Tasha,newsmast.social,Food & Drink,food_drink,false +Tasha,newsmast.social,Puzzles,puzzles,false +aungmyatmoe,newsmast.social,Activism & Civil Rights,activism_civil_rights,false +stephieduffy,newsmast.social,Breaking News,breaking_news,false +Sushmitapanda,newsmast.social,Healthcare,healthcare,true +vespula,newsmast.social,Biology,biology,false +stephieduffy,newsmast.social,Pets,pets,false +AnnaJ,newsmast.social,AI,ai,false +AnnaJ,newsmast.social,Books & Literature,books_literature,false +stephieduffy,newsmast.social,Creative Arts,creative_arts,false +stephieduffy,newsmast.social,Travel,travel,false +stephieduffy,newsmast.social,Humour,humour,false +stephieduffy,newsmast.social,Humanities,humanities,false +Alan_Moran,newsmast.social,Journalism & Comment,news_comment_data,false +stephieduffy,newsmast.social,Music,music,false +Alan_Moran,newsmast.social,Politics,politics,false +stephieduffy,newsmast.social,LGBTQ+,lgbtq,false +stephieduffy,newsmast.social,Women’s Voices,women_voices,false +stephieduffy,newsmast.social,Disabled Voices,disabled_voices,false +Alan_Moran,newsmast.social,Ukraine Invasion,ukraine_invasion,false +stephieduffy,newsmast.social,Books & Literature,books_literature,false +stephieduffy,newsmast.social,Activism & Civil Rights,activism_civil_rights,false +sophiecunningham,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false +vespula,newsmast.social,Engineering,engineering,false +stephieduffy,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false +lucygreenwold,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false +icey_mark,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false +akp,newsmast.social,Journalism & Comment,news_comment_data,false +pam_palmater,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false +akp,newsmast.social,Weather,weather,false +akp,newsmast.social,Politics,politics,false +aungmyatmoe,newsmast.social,Black Voices,black_voices,false +aungmyatmoe,newsmast.social,Disabled Voices,disabled_voices,false +aungmyatmoe,newsmast.social,Healthcare,healthcare,false +aungmyatmoe,newsmast.social,Immigrants Rights,immigrants_rights,false +aungmyatmoe,newsmast.social,Indigenous Peoples,indigenous_peoples,false +aungmyatmoe,newsmast.social,Law & Justice,law_justice,false +aungmyatmoe,newsmast.social,LGBTQ+,lgbtq,false +aungmyatmoe,newsmast.social,Women’s Voices,women_voices,false +aungmyatmoe,newsmast.social,Workers Rights,workers_rights,false +jannus,newsmast.social,AI,ai,false +dannyweller,newsmast.social,History,history,false +mattskal,newsmast.social,AI,ai,false +Hope,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false +Dragonholley,mastodon.social,Puzzles,puzzles,false +francisco_blaha,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,true +kenweber,mastodon.social,Football,football,false +kenweber,mastodon.social,Humour,humour,false +sithu_dev3,newsmast.social,Journalism & Comment,news_comment_data,false +Hayfa_Sdiri,newsmast.social,Business,business,false +nyeinBinarylab,newsmast.social,Travel,travel,false +sithu_dev3,newsmast.social,Creative Arts,creative_arts,false +dev_sithu,newsmast.social,Journalism & Comment,news_comment_data,false +dev_sithu,newsmast.social,Politics,politics,false +dev_sithu,newsmast.social,Ukraine Invasion,ukraine_invasion,false +dev_sithu,newsmast.social,Weather,weather,false +dev_sithu,newsmast.social,Breaking News,breaking_news,true +newsmast,newsmast.social,AI,ai,false +clairejuliaart,newsmast.social,Immigrants Rights,immigrants_rights,false +lspar002,newsmast.social,Pets,pets,false +lspar002,newsmast.social,Science,science,false +lspar002,newsmast.social,Social Sciences,social_sciences,false +lspar002,newsmast.social,Breaking News,breaking_news,true +SustMeme,newsmast.social,Business,business,false +dadonthemoveph,newsmast.social,Performing Arts,performing_arts,false +dadonthemoveph,newsmast.social,Humour,humour,false +newsmast,newsmast.social,Architecture & Design,architecture_design,false +StephenScouted,newsmast.social,History,history,false +StephenScouted,newsmast.social,Sport,sport,false +Dragonholley,mastodon.social,Science,science,false +Dragonholley,mastodon.social,Space,space,false +Dragonholley,mastodon.social,Sport,sport,false +Dragonholley,mastodon.social,Technology,technology,false +Dragonholley,mastodon.social,Travel,travel,false +Dragonholley,mastodon.social,TV & Radio,tv_radio,false +Dragonholley,mastodon.social,US Sport,us_sport,false +Tasha,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false +Kayleigh,newsmast.social,Indigenous Peoples,indigenous_peoples,false +Kayleigh,newsmast.social,Poverty & Inequality,poverty_inequality,false +MarieGeneste,newsmast.social,Business,business,false +peter,newsmast.social,Business,business,false +Kayleigh,newsmast.social,Movies,movies,false +nyeinBinarylab,newsmast.social,Ukraine Invasion,ukraine_invasion,false +Kayleigh,newsmast.social,Healthcare,healthcare,false +arlettecontrers,newsmast.social,Social Sciences,social_sciences,false +AlasdairGold,newsmast.social,Movies,movies,false +StephenScouted,newsmast.social,Travel,travel,false +Tasha,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +Dhiraj,newsmast.social,Business,business,false +orianavictoria,newsmast.social,Business,business,false +StephenScouted,newsmast.social,Football,football,true +newsmast,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false +AnnaJ,newsmast.social,Humanities,humanities,false +nyeinBinarylab,newsmast.social,US Politics,us_politics,false +eve,newsmast.social,Climate change,climate_change,false +mariana_b,newsmast.social,Music,music,false +newsmast,newsmast.social,Biology,biology,false +akp,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false +akp,newsmast.social,Poverty & Inequality,poverty_inequality,false +EV_Musings,newsmast.social,Business,business,false +samf,newsmast.social,Business,business,false +business,newsmast.social,Business,business,false +Sinobabble,newsmast.social,Markets & Finance,markets_finance,false +newsmast,newsmast.social,Black Voices,black_voices,false +nyeinBinarylab,newsmast.social,Weather,weather,false +vijay,newsmast.social,AI,ai,true +AlasdairGold,newsmast.social,Sport,sport,false +aungmyatmoe,newsmast.social,Government & Policy,government_policy,true +AlasdairGold,newsmast.social,Travel,travel,false +jenandreacchi,newsmast.social,Social Sciences,social_sciences,false +AlasdairGold,newsmast.social,TV & Radio,tv_radio,false +AlasdairGold,newsmast.social,Football,football,true +protein,newsmast.social,Activism & Civil Rights,activism_civil_rights,false +protein,newsmast.social,AI,ai,false +protein,newsmast.social,Architecture & Design,architecture_design,false +protein,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false +SoeMyinHtel_dev,newsmast.social,Breaking News,breaking_news,false +eve,newsmast.social,Social Sciences,social_sciences,false +nyeinBinarylab,newsmast.social,Women’s Voices,women_voices,false +nyeinBinarylab,newsmast.social,Workers Rights,workers_rights,false +nyeinBinarylab,newsmast.social,Academia & Research,academia_research,true +SoeMyinHtel_dev,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false +SoeMyinHtel_dev,newsmast.social,Poverty & Inequality,poverty_inequality,false +JackMoulton,newsmast.social,Law & Justice,law_justice,false +SoeMyinHtel_dev,newsmast.social,Journalism & Comment,news_comment_data,false +SoeMyinHtel_dev,newsmast.social,Politics,politics,false +docwinters,newsmast.social,Law & Justice,law_justice,false +Headfort,newsmast.social,Law & Justice,law_justice,false +saralimback,newsmast.social,Law & Justice,law_justice,false +SoeMyinHtel_dev,newsmast.social,Ukraine Invasion,ukraine_invasion,false +SoeMyinHtel_dev,newsmast.social,Weather,weather,false +SoeMyinHtel_dev,newsmast.social,Democracy & Human Rights,democracy_human_rights,true +protein,newsmast.social,Biology,biology,false +protein,newsmast.social,Black Voices,black_voices,false +protein,newsmast.social,Books & Literature,books_literature,false +protein,newsmast.social,Breaking News,breaking_news,false +newsmast,newsmast.social,Books & Literature,books_literature,false +Kevin_Healey,newsmast.social,Law & Justice,law_justice,false +wildlife,newsmast.social,Climate change,climate_change,false +wildlife,newsmast.social,Environment,environment,false +siji,newsmast.social,Law & Justice,law_justice,false +mitchell_ab,newsmast.social,Law & Justice,law_justice,false +Lawrence,newsmast.social,AI,ai,false +Lawrence,newsmast.social,Breaking News,breaking_news,false +akp,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +minkhantkyawygn,newsmast.social,Breaking News,breaking_news,false +esgcsrpodcastalert,newsmast.social,Business,business,true +macroliter,newsmast.social,Markets & Finance,markets_finance,false +Hayfa_Sdiri,newsmast.social,Markets & Finance,markets_finance,false +minkhantkyawygn,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +vegannutrition,newsmast.social,Markets & Finance,markets_finance,false +minkhantkyawygn,newsmast.social,Poverty & Inequality,poverty_inequality,false +MKandHerBC,newsmast.social,Markets & Finance,markets_finance,false +minkhantkyawygn,newsmast.social,Journalism & Comment,news_comment_data,false +minkhantkyawygn,newsmast.social,Politics,politics,false +Tarden7,newsmast.social,Markets & Finance,markets_finance,false +FemalesNFinance,newsmast.social,Markets & Finance,markets_finance,true +mweinbach,newsmast.social,Markets & Finance,markets_finance,false +minkhantkyawygn,newsmast.social,Ukraine Invasion,ukraine_invasion,false +minkhantkyawygn,newsmast.social,Weather,weather,false +stephieduffy,newsmast.social,Movies,movies,false +Dragonholley,mastodon.social,Visual Arts,visual_arts,false +dannyweller,newsmast.social,Performing Arts,performing_arts,false +dannyweller,newsmast.social,Photography,photography,false +Fitwirr,newsmast.social,Markets & Finance,markets_finance,false +akp,newsmast.social,Indigenous Peoples,indigenous_peoples,false +JenniferLawson,newsmast.social,Books & Literature,books_literature,false +minkhantkyawygn,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,true +akp,newsmast.social,TV & Radio,tv_radio,false +vijay,newsmast.social,Markets & Finance,markets_finance,false +clairejuliaart,newsmast.social,LGBTQ+,lgbtq,false +EdBowers101,newsmast.social,Markets & Finance,markets_finance,false +mariana_b,newsmast.social,Markets & Finance,markets_finance,false +Headfort,newsmast.social,Activism & Civil Rights,activism_civil_rights,false +zerotwo,newsmast.social,Government & Policy,government_policy,false +TexasHistoryL,newsmast.social,Humanities,humanities,false +lucygreenwold,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false +sithu_dev3,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false +Lawrence,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false +avalio77,newsmast.social,Law & Justice,law_justice,false +princessbamboo,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false +NineBall,newsmast.social,AI,ai,false +Bekash,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false +CharityNews,newsmast.social,Law & Justice,law_justice,false +lawyer,newsmast.social,Law & Justice,law_justice,true +NineBall,newsmast.social,Journalism & Comment,news_comment_data,false +NineBall,newsmast.social,Politics,politics,false +NineBall,newsmast.social,Technology,technology,false +NineBall,newsmast.social,Ukraine Invasion,ukraine_invasion,false +NineBall,newsmast.social,Weather,weather,false +NineBall,newsmast.social,Breaking News,breaking_news,true +S33J,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false +DerrickEMugisha,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false +IlCava,mastodon.uno,Government & Policy,government_policy,false +orianavmatos,newsmast.social,Food & Drink,food_drink,false +thepopblog,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false +healthygfasian,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false +islifearecipe,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false +EasternBorder,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false +morefunwithjuan,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false +manii,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false +christina88,newsmast.social,Law & Justice,law_justice,false +IZMartinez86,newsmast.social,Law & Justice,law_justice,false +saturn,newsmast.social,Activism & Civil Rights,activism_civil_rights,false +saturn,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false +saturn,newsmast.social,Black Voices,black_voices,false +saturn,newsmast.social,Climate change,climate_change,false +saturn,newsmast.social,Disabled Voices,disabled_voices,false +saturn,newsmast.social,Energy & Pollution,energy_pollution,false +saturn,newsmast.social,Immigrants Rights,immigrants_rights,false +saturn,newsmast.social,Indigenous Peoples,indigenous_peoples,false +saturn,newsmast.social,LGBTQ+,lgbtq,false +saturn,newsmast.social,Women’s Voices,women_voices,false +saturn,newsmast.social,Workers Rights,workers_rights,false +saturn,newsmast.social,Environment,environment,true +TashaA,newsmast.social,Government & Policy,government_policy,false +TashaA,newsmast.social,Healthcare,healthcare,false +TashaA,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false +TashaA,newsmast.social,Immigrants Rights,immigrants_rights,false +TashaA,newsmast.social,Indigenous Peoples,indigenous_peoples,false +TashaA,newsmast.social,Poverty & Inequality,poverty_inequality,false +TashaA,newsmast.social,Law & Justice,law_justice,false +TashaA,newsmast.social,LGBTQ+,lgbtq,false +TashaA,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false +TashaA,newsmast.social,Women’s Voices,women_voices,false +TashaA,newsmast.social,Workers Rights,workers_rights,false +TashaA,newsmast.social,Creative Arts,creative_arts,false +TashaA,newsmast.social,Food & Drink,food_drink,false +TashaA,newsmast.social,Humour,humour,false +TashaA,newsmast.social,Nature & Wildlife,nature_wildlife,false +TashaA,newsmast.social,Pets,pets,false +TashaA,newsmast.social,Puzzles,puzzles,false +TashaA,newsmast.social,Travel,travel,false +TashaA,newsmast.social,Architecture & Design,architecture_design,false +TashaA,newsmast.social,Gaming,gaming,false +TashaA,newsmast.social,Movies,movies,false +TashaA,newsmast.social,Music,music,false +TashaA,newsmast.social,Performing Arts,performing_arts,false +TashaA,newsmast.social,Photography,photography,false +TashaA,newsmast.social,TV & Radio,tv_radio,false +TashaA,newsmast.social,Visual Arts,visual_arts,false +TashaA,newsmast.social,Humanities,humanities,false +TashaA,newsmast.social,Books & Literature,books_literature,false +TashaA,newsmast.social,History,history,false +mkk_newsmast,newsmast.social,Journalism & Comment,news_comment_data,true +kazwan,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false +Zamzam,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false +sithu_dev3,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,true +sithu_dev3,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +DrECSkirmuntt,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false +sithu_dev3,newsmast.social,Poverty & Inequality,poverty_inequality,false +BriannaABaker,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false +DisabledWorld,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false +sithu_dev3,newsmast.social,Politics,politics,false +TexasHistoryL,newsmast.social,Movies,movies,false +liharris30,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false +siji,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false +savenues,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false +thelmzkitchen,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false +Roncaglia,newsmast.social,Books & Literature,books_literature,false +ChinHuaLu,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false +MummyMatters,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,true +natashaklondon,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,true +sithu_dev3,newsmast.social,Ukraine Invasion,ukraine_invasion,false +sithu_dev3,newsmast.social,Weather,weather,false +ghutchis,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false +CharityNews,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false +ANT_LCFC,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false +Roncaglia,newsmast.social,History,history,false +lawyer,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false +Thiha,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false +dadonthemoveph,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false +Andy,newsmast.social,Weather,weather,false +joanathx,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false +KevinWagar,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false +TexasHistoryL,newsmast.social,Music,music,false +TexasHistoryL,newsmast.social,Social Sciences,social_sciences,false +TexasHistoryL,newsmast.social,Visual Arts,visual_arts,false +dadonthemoveph,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false +uthi,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false +JulieAtkinson,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,true +Aysegul,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,true +clairejuliaart,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false +EdBowers101,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false +Randee,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false +shubhambutola,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false +vijay,newsmast.social,Ukraine Invasion,ukraine_invasion,false +vijay,newsmast.social,Activism & Civil Rights,activism_civil_rights,false +TexasHistoryL,newsmast.social,History,history,true +esgcsrpodcastalert,newsmast.social,Markets & Finance,markets_finance,false +O_makanjuola,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false +emilyjd,newsmast.social,Creative Arts,creative_arts,false +priyal,newsmast.social,Creative Arts,creative_arts,false +Kayleigh,newsmast.social,Creative Arts,creative_arts,false +Test_App,newsmast.social,AI,ai,false +mariana_b,newsmast.social,Breaking News,breaking_news,false +TashaA,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false +TashaA,newsmast.social,Black Voices,black_voices,false +TashaA,newsmast.social,Climate change,climate_change,false +mkk_newsmast,newsmast.social,Breaking News,breaking_news,false +mkk_newsmast,newsmast.social,Politics,politics,false +mkk_newsmast,newsmast.social,Ukraine Invasion,ukraine_invasion,false +mkk_newsmast,newsmast.social,Weather,weather,false +TashaA,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +TashaA,newsmast.social,Disabled Voices,disabled_voices,false +TashaA,newsmast.social,Energy & Pollution,energy_pollution,false +TashaA,newsmast.social,Environment,environment,false +TashaA,newsmast.social,Philosophy,philosophy,false +TashaA,newsmast.social,Sport,sport,false +TashaA,newsmast.social,Football,football,false +TashaA,newsmast.social,Social Sciences,social_sciences,false +vijay,newsmast.social,Black Voices,black_voices,false +TashaA,newsmast.social,Science,science,false +TashaA,newsmast.social,Biology,biology,false +TashaA,newsmast.social,Chemistry,chemistry,false +TashaA,newsmast.social,Engineering,engineering,false +TashaA,newsmast.social,Mathematics,mathematics,false +TashaA,newsmast.social,Physics,physics,false +TashaA,newsmast.social,Space,space,false +TashaA,newsmast.social,Technology,technology,false +TashaA,newsmast.social,AI,ai,false +MichaelCaines,newsmast.social,Humanities,humanities,false +TashaA,newsmast.social,Business,business,false +orianavmatos,newsmast.social,Creative Arts,creative_arts,false +sonbish,newsmast.social,Creative Arts,creative_arts,false +TashaA,newsmast.social,Journalism & Comment,news_comment_data,false +TashaA,newsmast.social,Breaking News,breaking_news,false +Stutsies,newsmast.social,Creative Arts,creative_arts,false +TashaA,newsmast.social,Politics,politics,false +TashaA,newsmast.social,Ukraine Invasion,ukraine_invasion,false +TashaA,newsmast.social,Weather,weather,false +morefunwithjuan,newsmast.social,Creative Arts,creative_arts,false +Lawrence,newsmast.social,Creative Arts,creative_arts,false +DrECSkirmuntt,newsmast.social,Creative Arts,creative_arts,false +TVPsychologist,newsmast.social,Creative Arts,creative_arts,false +discerningcat,newsmast.social,Creative Arts,creative_arts,false +HRWright,newsmast.social,Creative Arts,creative_arts,false +Lawrence,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +FreddieJ,newsmast.social,Indigenous Peoples,indigenous_peoples,false +savenues,newsmast.social,Creative Arts,creative_arts,false +Alastair,mastodon.me.uk,AI,ai,false +Lawrence,newsmast.social,Food & Drink,food_drink,false +thelmzkitchen,newsmast.social,Creative Arts,creative_arts,false +poverty,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false +natashaklondon,newsmast.social,Creative Arts,creative_arts,false +refugeescommunityupdate,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false +refugeescommunityupdate,newsmast.social,Poverty & Inequality,poverty_inequality,false +hopheim,newsmast.social,Creative Arts,creative_arts,false +chrysalismama,newsmast.social,Creative Arts,creative_arts,false +elisexavier,newsmast.social,Creative Arts,creative_arts,false +nancymangano,newsmast.social,Creative Arts,creative_arts,true +YuliaMHersey,newsmast.social,Creative Arts,creative_arts,false +poverty,newsmast.social,Poverty & Inequality,poverty_inequality,true +Calmsage,newsmast.social,Creative Arts,creative_arts,false +JamesNewsMast,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false +vijay,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false +allaroundoz,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false +sabah,newsmast.social,Poverty & Inequality,poverty_inequality,false +sonbish,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,true +orianavmatos,newsmast.social,Space,space,false +orianavmatos,newsmast.social,Science,science,false +stephieduffy,newsmast.social,Philosophy,philosophy,false +stephieduffy,newsmast.social,TV & Radio,tv_radio,false +Stevivor,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false +TVPsychologist,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false +vegannutrition,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,true +Unwanted_Life,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false +enangha,newsmast.social,Breaking News,breaking_news,false +orianavmatos,newsmast.social,Nature & Wildlife,nature_wildlife,false +orianavmatos,newsmast.social,Pets,pets,false +healthcare,newsmast.social,Government & Policy,government_policy,false +Test_App,newsmast.social,Technology,technology,true +healthcare,newsmast.social,Law & Justice,law_justice,false +healthcare,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false +healthcare,newsmast.social,Healthcare,healthcare,true +Pyae,newsmast.social,Activism & Civil Rights,activism_civil_rights,false +Pyae,newsmast.social,Business,business,false +Pyae,newsmast.social,Environment,environment,false +Test_App,newsmast.social,Nature & Wildlife,nature_wildlife,false +Pyae,newsmast.social,Humanities,humanities,false +Pyae,newsmast.social,Journalism & Comment,news_comment_data,false +Pyae,newsmast.social,Social Sciences,social_sciences,false +Pyae,newsmast.social,Technology,technology,false +Pyae,newsmast.social,Government & Policy,government_policy,true +lgbtq,newsmast.social,Black Voices,black_voices,false +lgbtq,newsmast.social,Disabled Voices,disabled_voices,false +lgbtq,newsmast.social,Immigrants Rights,immigrants_rights,false +lgbtq,newsmast.social,Indigenous Peoples,indigenous_peoples,false +lgbtq,newsmast.social,LGBTQ+,lgbtq,false +lgbtq,newsmast.social,Women’s Voices,women_voices,false +lgbtq,newsmast.social,Workers Rights,workers_rights,false +lgbtq,newsmast.social,Activism & Civil Rights,activism_civil_rights,true +FreddieJ,newsmast.social,Environment,environment,false +FreddieJ,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false +FreddieJ,newsmast.social,Climate change,climate_change,false +FreddieJ,newsmast.social,Disabled Voices,disabled_voices,false +FreddieJ,newsmast.social,Immigrants Rights,immigrants_rights,false +FreddieJ,newsmast.social,Workers Rights,workers_rights,false +FreddieJ,newsmast.social,Books & Literature,books_literature,false +FreddieJ,newsmast.social,Humanities,humanities,false +FreddieJ,newsmast.social,Visual Arts,visual_arts,false +DeliSaavedra,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,true +Dolores,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,true +vijay,newsmast.social,Disabled Voices,disabled_voices,false +FreddieJ,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +faithbenson,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,true +Lawrence,newsmast.social,History,history,false +Nancie,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false +Lawrence,newsmast.social,Humanities,humanities,false +vijay,newsmast.social,Immigrants Rights,immigrants_rights,false +Lawrence,newsmast.social,Journalism & Comment,news_comment_data,false +Lawrence,newsmast.social,Philosophy,philosophy,false +Tarden7,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false +Lawrence,newsmast.social,Technology,technology,true +Freddie3,newsmast.social,Women’s Voices,women_voices,false +Roncaglia,newsmast.social,Humanities,humanities,false +Roncaglia,newsmast.social,Space,space,false +infobl,newsmast.social,Breaking News,breaking_news,false +hopheim,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,true +vijay,newsmast.social,Indigenous Peoples,indigenous_peoples,false +vijay,newsmast.social,Humour,humour,false +newsmast,newsmast.social,Breaking News,breaking_news,false +infobl,newsmast.social,Politics,politics,false +infobl,newsmast.social,Technology,technology,false +infobl,newsmast.social,Ukraine Invasion,ukraine_invasion,false +infobl,newsmast.social,Weather,weather,false +infobl,newsmast.social,AI,ai,true +Tasha,newsmast.social,Government & Policy,government_policy,false +Tasha,newsmast.social,Law & Justice,law_justice,false +orianavmatos,newsmast.social,Mathematics,mathematics,false +orianavmatos,newsmast.social,Chemistry,chemistry,false +Roncaglia,newsmast.social,AI,ai,true +thisisqueerly,newsmast.social,Movies,movies,false +Ed_Rempel,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false +Fitwirr,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,true +RachelBranson,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,true +chrysalismama,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false +allaroundoz,newsmast.social,Food & Drink,food_drink,false +MichaelCaines,newsmast.social,Music,music,false +allaroundoz,newsmast.social,Nature & Wildlife,nature_wildlife,false +allaroundoz,newsmast.social,Puzzles,puzzles,false +allaroundoz,newsmast.social,Travel,travel,true +PriyankaJoshi,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,true +travelpast50,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false +thepetsnet,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false +chloeariellle,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false +YuliaMHersey,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false +MichaelCaines,newsmast.social,Performing Arts,performing_arts,false +sonbish,newsmast.social,Food & Drink,food_drink,false +patnawomens,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false +sonbish,newsmast.social,Humour,humour,false +patnawomens,newsmast.social,Energy & Pollution,energy_pollution,false +mbarbatti,newsmast.social,Biology,biology,false +mbarbatti,newsmast.social,Engineering,engineering,false +mbarbatti,newsmast.social,Mathematics,mathematics,false +mbarbatti,newsmast.social,Physics,physics,false +jacklscanlan,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false +jacklscanlan,newsmast.social,Biology,biology,false +monicareinagel,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,true +Calmsage,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,true +jacklscanlan,newsmast.social,Science,science,true +mbarbatti,newsmast.social,Science,science,false +mbarbatti,newsmast.social,Space,space,false +mbarbatti,newsmast.social,Chemistry,chemistry,true +Thomas,newsmast.social,Nature & Wildlife,nature_wildlife,false +zerotwo,newsmast.social,Nature & Wildlife,nature_wildlife,false +eve,newsmast.social,Nature & Wildlife,nature_wildlife,false +sophiecunningham,newsmast.social,Nature & Wildlife,nature_wildlife,false +dianashurman,newsmast.social,Nature & Wildlife,nature_wildlife,false +Sushmitapanda,newsmast.social,Nature & Wildlife,nature_wildlife,false +DeliSaavedra,newsmast.social,Activism & Civil Rights,activism_civil_rights,false +sethlazar,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +sethlazar,newsmast.social,Government & Policy,government_policy,false +sethlazar,newsmast.social,Poverty & Inequality,poverty_inequality,false +sethlazar,newsmast.social,Technology,technology,false +sethlazar,newsmast.social,AI,ai,true +DeliSaavedra,newsmast.social,Breaking News,breaking_news,false +DeliSaavedra,newsmast.social,Climate change,climate_change,false +DeliSaavedra,newsmast.social,Energy & Pollution,energy_pollution,false +DeliSaavedra,newsmast.social,Environment,environment,false +Stutsies,newsmast.social,Breaking News,breaking_news,false +Stutsies,newsmast.social,Food & Drink,food_drink,false +Stutsies,newsmast.social,Movies,movies,false +Stutsies,newsmast.social,Music,music,false +Stutsies,newsmast.social,Performing Arts,performing_arts,false +Stutsies,newsmast.social,Travel,travel,false +Stutsies,newsmast.social,Gaming,gaming,true +DeliSaavedra,newsmast.social,Indigenous Peoples,indigenous_peoples,false +DeliSaavedra,newsmast.social,Poverty & Inequality,poverty_inequality,false +DeliSaavedra,newsmast.social,LGBTQ+,lgbtq,false +DeliSaavedra,newsmast.social,Journalism & Comment,news_comment_data,false +DeliSaavedra,newsmast.social,Politics,politics,false +DeliSaavedra,newsmast.social,Ukraine Invasion,ukraine_invasion,false +phylis,newsmast.social,Architecture & Design,architecture_design,false +phylis,newsmast.social,Biology,biology,false +phylis,newsmast.social,Chemistry,chemistry,false +phylis,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +phylis,newsmast.social,Engineering,engineering,false +phylis,newsmast.social,Gaming,gaming,false +phylis,newsmast.social,Government & Policy,government_policy,false +phylis,newsmast.social,AI,ai,true +FreddieJ,newsmast.social,Poverty & Inequality,poverty_inequality,false +wildlife,newsmast.social,Nature & Wildlife,nature_wildlife,true +saturn,newsmast.social,Nature & Wildlife,nature_wildlife,false +mati,moth.social,Social Media,social_media,false +patnawomens,newsmast.social,Government & Policy,government_policy,false +patnawomens,newsmast.social,Law & Justice,law_justice,false +vijay,newsmast.social,Breaking News,breaking_news,false +thisisqueerly,newsmast.social,Music,music,false +DerrickEMugisha,newsmast.social,Breaking News,breaking_news,false +DerrickEMugisha,newsmast.social,Business,business,false +akp,newsmast.social,Nature & Wildlife,nature_wildlife,false +DeliSaavedra,newsmast.social,Nature & Wildlife,nature_wildlife,false +dianajspencer,newsmast.social,Nature & Wildlife,nature_wildlife,false +thisisqueerly,newsmast.social,Journalism & Comment,news_comment_data,false +thisisqueerly,newsmast.social,Travel,travel,false +JenniferLawson,newsmast.social,History,history,false +patnawomens,newsmast.social,Academia & Research,academia_research,true +stephenreid,newsmast.social,Nature & Wildlife,nature_wildlife,false +MichaelMarshall,newsmast.social,Nature & Wildlife,nature_wildlife,false +Stevivor,newsmast.social,Creative Arts,creative_arts,false +vijay,newsmast.social,Journalism & Comment,news_comment_data,false +Stevivor,newsmast.social,LGBTQ+,lgbtq,false +womens_voices,newsmast.social,Activism & Civil Rights,activism_civil_rights,false +womens_voices,newsmast.social,Black Voices,black_voices,false +womens_voices,newsmast.social,Disabled Voices,disabled_voices,false +womens_voices,newsmast.social,Immigrants Rights,immigrants_rights,false +womens_voices,newsmast.social,Indigenous Peoples,indigenous_peoples,false +womens_voices,newsmast.social,LGBTQ+,lgbtq,false +womens_voices,newsmast.social,Workers Rights,workers_rights,false +womens_voices,newsmast.social,Women’s Voices,women_voices,true +Freddie3,newsmast.social,Nature & Wildlife,nature_wildlife,false +Tasha,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false +macroliter,newsmast.social,Nature & Wildlife,nature_wildlife,false +Freddie3,newsmast.social,Breaking News,breaking_news,false +docip,newsmast.social,Nature & Wildlife,nature_wildlife,false +Freddie3,newsmast.social,Journalism & Comment,news_comment_data,false +Freddie3,newsmast.social,Ukraine Invasion,ukraine_invasion,false +dadonthemoveph,newsmast.social,Nature & Wildlife,nature_wildlife,false +Freddie3,newsmast.social,Politics,politics,true +saskia,newsmast.social,History,history,false +vijay,newsmast.social,Social Media,social_media,false +vijay,newsmast.social,Weather,weather,false +vijay,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +mervecaldiran,newsmast.social,Nature & Wildlife,nature_wildlife,false +mati,moth.social,Journalism & Comment,news_comment_data,false +orianavmatos,newsmast.social,Business,business,false +timakimoff,newsmast.social,Nature & Wildlife,nature_wildlife,true +orianavmatos,newsmast.social,Markets & Finance,markets_finance,false +sallyhawkins,newsmast.social,Nature & Wildlife,nature_wildlife,false +ajj65,newsmast.social,Nature & Wildlife,nature_wildlife,false +vijay,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false +RonCharles,newsmast.social,Breaking News,breaking_news,false +Stevivor,newsmast.social,Technology,technology,false +Stevivor,newsmast.social,Journalism & Comment,news_comment_data,true +vijay,newsmast.social,Chemistry,chemistry,false +RonCharles,newsmast.social,Social Media,social_media,false +princessbamboo,newsmast.social,Pets,pets,false +Bekash,newsmast.social,Creative Arts,creative_arts,false +RonCharles,newsmast.social,Ukraine Invasion,ukraine_invasion,false +Bekash,newsmast.social,Food & Drink,food_drink,false +princessbamboo,newsmast.social,Travel,travel,false +Bekash,newsmast.social,Humour,humour,false +RonCharles,newsmast.social,Weather,weather,false +Bekash,newsmast.social,Nature & Wildlife,nature_wildlife,false +Bekash,newsmast.social,Pets,pets,false +Bekash,newsmast.social,Puzzles,puzzles,false +Bekash,newsmast.social,Sport,sport,false +Bekash,newsmast.social,Travel,travel,false +Bekash,newsmast.social,Football,football,true +incnews,newsmast.social,Academia & Research,academia_research,false +incnews,newsmast.social,Breaking News,breaking_news,false +princessbamboo,newsmast.social,Food & Drink,food_drink,true +incnews,newsmast.social,Business,business,false +aishiterutokyo,newsmast.social,Gaming,gaming,false +aishiterutokyo,newsmast.social,Journalism & Comment,news_comment_data,false +aishiterutokyo,newsmast.social,Sport,sport,false +aishiterutokyo,newsmast.social,TV & Radio,tv_radio,false +aishiterutokyo,newsmast.social,Football,football,true +incnews,newsmast.social,Government & Policy,government_policy,false +incnews,newsmast.social,Healthcare,healthcare,false +incnews,newsmast.social,Law & Justice,law_justice,false +incnews,newsmast.social,Markets & Finance,markets_finance,false +S33J,newsmast.social,Biology,biology,false +S33J,newsmast.social,Environment,environment,false +S33J,newsmast.social,Food & Drink,food_drink,false +incnews,newsmast.social,Politics,politics,false +S33J,newsmast.social,Nature & Wildlife,nature_wildlife,false +S33J,newsmast.social,Performing Arts,performing_arts,false +S33J,newsmast.social,Science,science,false +S33J,newsmast.social,Sport,sport,false +S33J,newsmast.social,Visual Arts,visual_arts,false +AnnaJ,newsmast.social,Women’s Voices,women_voices,false +AnnaJ,newsmast.social,LGBTQ+,lgbtq,false +AnnaJ,newsmast.social,Black Voices,black_voices,false +jannus,newsmast.social,Climate change,climate_change,false +docwinters,newsmast.social,Books & Literature,books_literature,false +docwinters,newsmast.social,Humanities,humanities,false +docwinters,newsmast.social,Philosophy,philosophy,false +docwinters,newsmast.social,History,history,true +jannus,newsmast.social,Energy & Pollution,energy_pollution,false +phylis,newsmast.social,Healthcare,healthcare,false +calebijioma,newsmast.social,Nature & Wildlife,nature_wildlife,false +phylis,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false +phylis,newsmast.social,Poverty & Inequality,poverty_inequality,false +AldridgePhoto,newsmast.social,Nature & Wildlife,nature_wildlife,false +indiajade_68,newsmast.social,Nature & Wildlife,nature_wildlife,false +phylis,newsmast.social,Law & Justice,law_justice,false +phylis,newsmast.social,Mathematics,mathematics,false +phylis,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false +phylis,newsmast.social,Movies,movies,false +phylis,newsmast.social,Music,music,false +phylis,newsmast.social,Performing Arts,performing_arts,false +phylis,newsmast.social,Photography,photography,false +phylis,newsmast.social,Physics,physics,false +drvolts,newsmast.social,Nature & Wildlife,nature_wildlife,false +peter,newsmast.social,Nature & Wildlife,nature_wildlife,false +rewildingsam,newsmast.social,Nature & Wildlife,nature_wildlife,false +phylis,newsmast.social,Science,science,false +phylis,newsmast.social,Space,space,false +tillathenun,newsmast.social,Nature & Wildlife,nature_wildlife,false +phylis,newsmast.social,Technology,technology,false +phylis,newsmast.social,TV & Radio,tv_radio,false +phylis,newsmast.social,Visual Arts,visual_arts,false +Sushmitapanda,newsmast.social,Architecture & Design,architecture_design,false +Sushmitapanda,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false +Sushmitapanda,newsmast.social,Biology,biology,false +Sushmitapanda,newsmast.social,Breaking News,breaking_news,false +Sushmitapanda,newsmast.social,Business,business,false +RhondaAlbom,newsmast.social,Nature & Wildlife,nature_wildlife,false +Sushmitapanda,newsmast.social,Chemistry,chemistry,false +aliegilbert,newsmast.social,Nature & Wildlife,nature_wildlife,false +Anneliese,newsmast.social,Nature & Wildlife,nature_wildlife,false +Sushmitapanda,newsmast.social,Climate change,climate_change,false +zhichangliu,newsmast.social,AI,ai,false +zhichangliu,newsmast.social,Breaking News,breaking_news,false +zhichangliu,newsmast.social,Energy & Pollution,energy_pollution,false +ScharSchool,newsmast.social,Nature & Wildlife,nature_wildlife,false +zhichangliu,newsmast.social,Chemistry,chemistry,true +vijay,newsmast.social,Poverty & Inequality,poverty_inequality,false +vijay,newsmast.social,Government & Policy,government_policy,false +Sushmitapanda,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +vijay,newsmast.social,Academia & Research,academia_research,false +Sushmitapanda,newsmast.social,Energy & Pollution,energy_pollution,false +Sushmitapanda,newsmast.social,Engineering,engineering,false +Sushmitapanda,newsmast.social,Environment,environment,false +vijay,newsmast.social,Healthcare,healthcare,false +vijay,newsmast.social,Law & Justice,law_justice,false +Sushmitapanda,newsmast.social,Gaming,gaming,false +Sushmitapanda,newsmast.social,Government & Policy,government_policy,false +DerrickEMugisha,newsmast.social,Climate change,climate_change,false +vijay,newsmast.social,Politics,politics,false +Sushmitapanda,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false +Sushmitapanda,newsmast.social,Poverty & Inequality,poverty_inequality,false +vijay,newsmast.social,US Politics,us_politics,false +vijay,newsmast.social,Environment,environment,false +Sushmitapanda,newsmast.social,Law & Justice,law_justice,false +Sushmitapanda,newsmast.social,Markets & Finance,markets_finance,false +Sushmitapanda,newsmast.social,Mathematics,mathematics,false +Sushmitapanda,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false +Sushmitapanda,newsmast.social,Movies,movies,false +Sushmitapanda,newsmast.social,Music,music,false +Sushmitapanda,newsmast.social,Journalism & Comment,news_comment_data,false +quincyocharles,newsmast.social,AI,ai,false +quincyocharles,newsmast.social,Biology,biology,false +quincyocharles,newsmast.social,Breaking News,breaking_news,false +quincyocharles,newsmast.social,Business,business,false +quincyocharles,newsmast.social,Chemistry,chemistry,false +vijay,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false +vijay,newsmast.social,Climate change,climate_change,false +quincyocharles,newsmast.social,Engineering,engineering,false +vijay,newsmast.social,Energy & Pollution,energy_pollution,false +vijay,newsmast.social,LGBTQ+,lgbtq,false +vijay,newsmast.social,Women’s Voices,women_voices,false +quincyocharles,newsmast.social,Markets & Finance,markets_finance,false +quincyocharles,newsmast.social,Mathematics,mathematics,false +quincyocharles,newsmast.social,Journalism & Comment,news_comment_data,false +vijay,newsmast.social,Business,business,false +quincyocharles,newsmast.social,Physics,physics,false +quincyocharles,newsmast.social,Politics,politics,false +quincyocharles,newsmast.social,Science,science,false +quincyocharles,newsmast.social,Space,space,false +quincyocharles,newsmast.social,Sport,sport,false +quincyocharles,newsmast.social,Technology,technology,false +quincyocharles,newsmast.social,Ukraine Invasion,ukraine_invasion,false +quincyocharles,newsmast.social,Weather,weather,false +quincyocharles,newsmast.social,Football,football,true +Sushmitapanda,newsmast.social,Performing Arts,performing_arts,false +vijay,newsmast.social,Workers Rights,workers_rights,false +Sushmitapanda,newsmast.social,Photography,photography,false +Sushmitapanda,newsmast.social,Physics,physics,false +Sushmitapanda,newsmast.social,Politics,politics,false +vijay,newsmast.social,Programming,programming,false +vijay,newsmast.social,Science,science,false +vijay,newsmast.social,Biology,biology,false +vijay,newsmast.social,Engineering,engineering,false +vijay,newsmast.social,Mathematics,mathematics,false +Sushmitapanda,newsmast.social,Science,science,false +Sushmitapanda,newsmast.social,Space,space,false +vijay,newsmast.social,Physics,physics,false +Sushmitapanda,newsmast.social,TV & Radio,tv_radio,false +Sushmitapanda,newsmast.social,Ukraine Invasion,ukraine_invasion,false +Sushmitapanda,newsmast.social,Visual Arts,visual_arts,false +vijay,newsmast.social,Space,space,false +Sushmitapanda,newsmast.social,Weather,weather,false +vijay,newsmast.social,Humanities,humanities,false +vijay,newsmast.social,Social Sciences,social_sciences,false +vijay,newsmast.social,History,history,false +vijay,newsmast.social,Philosophy,philosophy,false +jannus,newsmast.social,Physics,physics,false +vijay,newsmast.social,Architecture & Design,architecture_design,false +WildCard,newsmast.social,Nature & Wildlife,nature_wildlife,false +jannus,newsmast.social,Space,space,false +hopheim,newsmast.social,Nature & Wildlife,nature_wildlife,false +jannus,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,true +DerrickEMugisha,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +DerrickEMugisha,newsmast.social,Energy & Pollution,energy_pollution,false +DerrickEMugisha,newsmast.social,Environment,environment,false +Lamech,newsmast.social,Nature & Wildlife,nature_wildlife,false +DerrickEMugisha,newsmast.social,Football,football,false +vijay,newsmast.social,Books & Literature,books_literature,false +ShaggyShepherd,newsmast.social,Nature & Wildlife,nature_wildlife,false +DerrickEMugisha,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false +MichaelCaines,newsmast.social,Photography,photography,false +DerrickEMugisha,newsmast.social,Poverty & Inequality,poverty_inequality,false +PlantInitiative,newsmast.social,Nature & Wildlife,nature_wildlife,false +vijay,newsmast.social,Music,music,false +DerrickEMugisha,newsmast.social,Nature & Wildlife,nature_wildlife,false +DerrickEMugisha,newsmast.social,Pets,pets,false +Joan_Kem,newsmast.social,Activism & Civil Rights,activism_civil_rights,false +Joan_Kem,newsmast.social,Black Voices,black_voices,false +Kyaw,newsmast.social,Nature & Wildlife,nature_wildlife,false +pennywalker,newsmast.social,Nature & Wildlife,nature_wildlife,false +Joan_Kem,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +sustainabilityx,newsmast.social,Nature & Wildlife,nature_wildlife,false +Joan_Kem,newsmast.social,Poverty & Inequality,poverty_inequality,false +arg02,newsmast.social,Nature & Wildlife,nature_wildlife,false +benogeh,newsmast.social,Nature & Wildlife,nature_wildlife,false +Joan_Kem,newsmast.social,Women’s Voices,women_voices,false +Joan_Kem,newsmast.social,Workers Rights,workers_rights,false +TasmanianTimes,newsmast.social,Nature & Wildlife,nature_wildlife,false +mongabay,newsmast.social,Nature & Wildlife,nature_wildlife,false +han_smith,newsmast.social,Nature & Wildlife,nature_wildlife,false +RewildScotland,newsmast.social,Nature & Wildlife,nature_wildlife,false +DerrickEMugisha,newsmast.social,Science,science,false +DerrickEMugisha,newsmast.social,Sport,sport,false +mikea,newsmast.social,Nature & Wildlife,nature_wildlife,false +DerrickEMugisha,newsmast.social,Travel,travel,false +gnasralla,newsmast.social,Nature & Wildlife,nature_wildlife,false +DerrickEMugisha,newsmast.social,Weather,weather,false +vijay,newsmast.social,Performing Arts,performing_arts,false +thepopblog,newsmast.social,Creative Arts,creative_arts,false +MichaelCaines,newsmast.social,Visual Arts,visual_arts,false +vijay,newsmast.social,Photography,photography,false +thepopblog,newsmast.social,Movies,movies,false +thepopblog,newsmast.social,TV & Radio,tv_radio,false +thepopblog,newsmast.social,Music,music,true +DerrickEMugisha,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,true +stephenreid,newsmast.social,AI,ai,false +Sebsb,newsmast.social,AI,ai,false +Sebsb,newsmast.social,Architecture & Design,architecture_design,false +Sebsb,newsmast.social,Breaking News,breaking_news,false +dennisfparker,newsmast.social,Nature & Wildlife,nature_wildlife,false +aliciahaydenart,newsmast.social,Nature & Wildlife,nature_wildlife,true +akptest007,newsmast.social,Nature & Wildlife,nature_wildlife,false +Sebsb,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +vijay,newsmast.social,TV & Radio,tv_radio,false +vijay,newsmast.social,Visual Arts,visual_arts,false +stephenreid,newsmast.social,Architecture & Design,architecture_design,false +Sebsb,newsmast.social,Gaming,gaming,false +DrGCrisp,newsmast.social,Nature & Wildlife,nature_wildlife,false +Sebsb,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false +Sebsb,newsmast.social,Poverty & Inequality,poverty_inequality,false +Joan_Kem,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,true +WestWeather,newsmast.social,Nature & Wildlife,nature_wildlife,false +vijay,newsmast.social,Sport,sport,false +vijay,newsmast.social,Football,football,false +vijay,newsmast.social,US Sport,us_sport,false +vijay,newsmast.social,Creative Arts,creative_arts,false +vijay,newsmast.social,Nature & Wildlife,nature_wildlife,false +vijay,newsmast.social,Pets,pets,false +vijay,newsmast.social,Puzzles,puzzles,false +vijay,newsmast.social,Travel,travel,false +posts,newsmast.social,Journalism & Comment,news_comment_data,false +posts,newsmast.social,Social Media,social_media,false +posts,newsmast.social,Ukraine Invasion,ukraine_invasion,false +posts,newsmast.social,Weather,weather,false +posts,newsmast.social,Breaking News,breaking_news,true +healthygfasian,newsmast.social,AI,ai,false +healthygfasian,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false +healthygfasian,newsmast.social,Business,business,false +sai_myo_1993,newsmast.social,Climate change,climate_change,false +healthygfasian,newsmast.social,Climate change,climate_change,false +healthygfasian,newsmast.social,Creative Arts,creative_arts,false +healthygfasian,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +healthygfasian,newsmast.social,Disabled Voices,disabled_voices,false +healthygfasian,newsmast.social,Energy & Pollution,energy_pollution,false +healthygfasian,newsmast.social,Environment,environment,false +sai_myo_1993,newsmast.social,Engineering,engineering,false +sai_myo_1993,newsmast.social,Environment,environment,false +sai_myo_1993,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false +healthygfasian,newsmast.social,Humour,humour,false +healthygfasian,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false +healthygfasian,newsmast.social,Immigrants Rights,immigrants_rights,false +healthygfasian,newsmast.social,Poverty & Inequality,poverty_inequality,false +healthygfasian,newsmast.social,Markets & Finance,markets_finance,false +healthygfasian,newsmast.social,Nature & Wildlife,nature_wildlife,false +healthygfasian,newsmast.social,Pets,pets,false +healthygfasian,newsmast.social,Puzzles,puzzles,false +healthygfasian,newsmast.social,Technology,technology,false +healthygfasian,newsmast.social,Travel,travel,false +vijay,newsmast.social,Food & Drink,food_drink,false +healthygfasian,newsmast.social,Women’s Voices,women_voices,false +healthygfasian,newsmast.social,Food & Drink,food_drink,true +jessicanewmast,newsmast.social,Activism & Civil Rights,activism_civil_rights,false +Sebsb,newsmast.social,Movies,movies,false +Sebsb,newsmast.social,Music,music,false +Sebsb,newsmast.social,Journalism & Comment,news_comment_data,false +Sebsb,newsmast.social,Performing Arts,performing_arts,false +Sebsb,newsmast.social,Photography,photography,false +Sebsb,newsmast.social,Politics,politics,false +jessicanewmast,newsmast.social,Black Voices,black_voices,false +jessicanewmast,newsmast.social,Business,business,false +Sebsb,newsmast.social,Sport,sport,false +Sebsb,newsmast.social,Technology,technology,false +Sebsb,newsmast.social,TV & Radio,tv_radio,false +Sebsb,newsmast.social,Ukraine Invasion,ukraine_invasion,false +Sebsb,newsmast.social,Visual Arts,visual_arts,false +Sebsb,newsmast.social,Weather,weather,false +Sebsb,newsmast.social,Football,football,true +newsmast,newsmast.social,Business,business,false +jessicanewmast,newsmast.social,Disabled Voices,disabled_voices,false +newsmast,newsmast.social,Chemistry,chemistry,false +jessicanewmast,newsmast.social,Energy & Pollution,energy_pollution,false +jessicanewmast,newsmast.social,Engineering,engineering,false +newsmast,newsmast.social,Climate change,climate_change,false +newsmast,newsmast.social,Creative Arts,creative_arts,false +jessicanewmast,newsmast.social,Environment,environment,false +MichaelCaines,newsmast.social,Books & Literature,books_literature,true +Freddie3,newsmast.social,Law & Justice,law_justice,false +jessicanewmast,newsmast.social,Immigrants Rights,immigrants_rights,false +Freddie3,newsmast.social,Healthcare,healthcare,false +jessicanewmast,newsmast.social,Indigenous Peoples,indigenous_peoples,false +jessicanewmast,newsmast.social,LGBTQ+,lgbtq,false +jessicanewmast,newsmast.social,Markets & Finance,markets_finance,false +Freddie3,newsmast.social,Government & Policy,government_policy,false +jessicanewmast,newsmast.social,Programming,programming,false +jessicanewmast,newsmast.social,Technology,technology,false +jessicanewmast,newsmast.social,Women’s Voices,women_voices,false +Freddie3,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +jessicanewmast,newsmast.social,Climate change,climate_change,true +Freddie3,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false +Freddie3,newsmast.social,Poverty & Inequality,poverty_inequality,false +sitothebo,newsmast.social,AI,ai,false +max_chaudhary,newsmast.social,Government & Policy,government_policy,true +newsmast,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +newsmast,newsmast.social,Disabled Voices,disabled_voices,false +TimBlack,newsmast.social,Black Voices,black_voices,false +Abrikosoff,newsmast.social,AI,ai,false +TimBlack,newsmast.social,Breaking News,breaking_news,false +Freddie3,newsmast.social,Performing Arts,performing_arts,false +TimBlack,newsmast.social,Journalism & Comment,news_comment_data,false +Freddie3,newsmast.social,Visual Arts,visual_arts,false +Tasha,newsmast.social,Football,football,false +wingingittravel,newsmast.social,AI,ai,false +wingingittravel,newsmast.social,Books & Literature,books_literature,false +wingingittravel,newsmast.social,Food & Drink,food_drink,false +wingingittravel,newsmast.social,Humour,humour,false +wingingittravel,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false +wingingittravel,newsmast.social,Music,music,false +wingingittravel,newsmast.social,Philosophy,philosophy,false +wingingittravel,newsmast.social,Technology,technology,false +Hedvig1Lindahl,newsmast.social,Football,football,true +wingingittravel,newsmast.social,Travel,travel,true +Serious_Feather,newsmast.social,History,history,false +Serious_Feather,newsmast.social,Philosophy,philosophy,false +Serious_Feather,newsmast.social,Social Sciences,social_sciences,false +islifearecipe,newsmast.social,Music,music,false +islifearecipe,newsmast.social,Travel,travel,false +islifearecipe,newsmast.social,Food & Drink,food_drink,true +DeliSaavedra,newsmast.social,Weather,weather,false +DeliSaavedra,newsmast.social,Women’s Voices,women_voices,false +DeliSaavedra,newsmast.social,Workers Rights,workers_rights,false +Hedvig1Lindahl,newsmast.social,Breaking News,breaking_news,false +Hedvig1Lindahl,newsmast.social,Climate change,climate_change,false +Hedvig1Lindahl,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +Hedvig1Lindahl,newsmast.social,Poverty & Inequality,poverty_inequality,false +Hedvig1Lindahl,newsmast.social,Movies,movies,false +Hedvig1Lindahl,newsmast.social,Politics,politics,false +maketheswitchAU,newsmast.social,Activism & Civil Rights,activism_civil_rights,false +maketheswitchAU,newsmast.social,AI,ai,false +maketheswitchAU,newsmast.social,Black Voices,black_voices,false +maketheswitchAU,newsmast.social,Disabled Voices,disabled_voices,false +maketheswitchAU,newsmast.social,Immigrants Rights,immigrants_rights,false +maketheswitchAU,newsmast.social,Indigenous Peoples,indigenous_peoples,false +maketheswitchAU,newsmast.social,LGBTQ+,lgbtq,false +maketheswitchAU,newsmast.social,TV & Radio,tv_radio,false +maketheswitchAU,newsmast.social,Women’s Voices,women_voices,false +maketheswitchAU,newsmast.social,Movies,movies,true +EasternBorder,newsmast.social,AI,ai,false +EasternBorder,newsmast.social,Architecture & Design,architecture_design,false +EasternBorder,newsmast.social,Books & Literature,books_literature,false +EasternBorder,newsmast.social,Breaking News,breaking_news,false +EasternBorder,newsmast.social,Creative Arts,creative_arts,false +EasternBorder,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +EasternBorder,newsmast.social,Engineering,engineering,false +theshescribe,newsmast.social,Academia & Research,academia_research,false +EasternBorder,newsmast.social,Food & Drink,food_drink,false +EasternBorder,newsmast.social,Football,football,false +EasternBorder,newsmast.social,Gaming,gaming,false +EasternBorder,newsmast.social,Government & Policy,government_policy,false +EasternBorder,newsmast.social,Healthcare,healthcare,false +EasternBorder,newsmast.social,History,history,false +posts2,newsmast.social,AI,ai,false +EasternBorder,newsmast.social,Humanities,humanities,false +EasternBorder,newsmast.social,Humour,humour,false +posts2,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false +posts2,newsmast.social,Biology,biology,false +EasternBorder,newsmast.social,Law & Justice,law_justice,false +EasternBorder,newsmast.social,Mathematics,mathematics,false +EasternBorder,newsmast.social,Movies,movies,false +EasternBorder,newsmast.social,Nature & Wildlife,nature_wildlife,false +EasternBorder,newsmast.social,Philosophy,philosophy,false +EasternBorder,newsmast.social,Photography,photography,false +EasternBorder,newsmast.social,Politics,politics,false +posts2,newsmast.social,Chemistry,chemistry,false +posts2,newsmast.social,Climate change,climate_change,false +posts2,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +EasternBorder,newsmast.social,Science,science,false +EasternBorder,newsmast.social,Social Sciences,social_sciences,false +EasternBorder,newsmast.social,Space,space,false +EasternBorder,newsmast.social,Sport,sport,false +EasternBorder,newsmast.social,Technology,technology,false +EasternBorder,newsmast.social,Travel,travel,false +EasternBorder,newsmast.social,TV & Radio,tv_radio,false +EasternBorder,newsmast.social,Ukraine Invasion,ukraine_invasion,false +EasternBorder,newsmast.social,Weather,weather,false +EasternBorder,newsmast.social,Journalism & Comment,news_comment_data,true +stephenreid,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false +stephenreid,newsmast.social,Breaking News,breaking_news,false +stephenreid,newsmast.social,Business,business,false +posts2,newsmast.social,Energy & Pollution,energy_pollution,false +stephenreid,newsmast.social,Climate change,climate_change,false +theshescribe,newsmast.social,Activism & Civil Rights,activism_civil_rights,false +posts2,newsmast.social,Engineering,engineering,false +stephenreid,newsmast.social,Energy & Pollution,energy_pollution,false +stephenreid,newsmast.social,Environment,environment,false +posts2,newsmast.social,Environment,environment,false +posts2,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false +posts2,newsmast.social,Mathematics,mathematics,false +newsmast,newsmast.social,Energy & Pollution,energy_pollution,false +newsmast,newsmast.social,Engineering,engineering,false +newsmast,newsmast.social,Environment,environment,false +dianajspencer,newsmast.social,AI,ai,false +dianajspencer,newsmast.social,Architecture & Design,architecture_design,false +dianajspencer,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false +dianajspencer,newsmast.social,Books & Literature,books_literature,false +theshescribe,newsmast.social,Architecture & Design,architecture_design,false +dianajspencer,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +dianajspencer,newsmast.social,Environment,environment,false +posts2,newsmast.social,Journalism & Comment,news_comment_data,false +dianajspencer,newsmast.social,History,history,false +dianajspencer,newsmast.social,Movies,movies,false +dianajspencer,newsmast.social,Philosophy,philosophy,false +dianajspencer,newsmast.social,Photography,photography,false +dianajspencer,newsmast.social,Physics,physics,false +posts2,newsmast.social,Physics,physics,false +dianajspencer,newsmast.social,Science,science,false +dianajspencer,newsmast.social,Space,space,false +posts2,newsmast.social,Poverty & Inequality,poverty_inequality,false +dianajspencer,newsmast.social,Technology,technology,false +dianajspencer,newsmast.social,Visual Arts,visual_arts,false +posts2,newsmast.social,Programming,programming,false +dianajspencer,newsmast.social,Humanities,humanities,true +Freddie3,newsmast.social,Workers Rights,workers_rights,false +posts2,newsmast.social,Science,science,false +Freddie3,newsmast.social,Indigenous Peoples,indigenous_peoples,false +Freddie3,newsmast.social,Immigrants Rights,immigrants_rights,false +Freddie3,newsmast.social,Disabled Voices,disabled_voices,false +Freddie3,newsmast.social,Black Voices,black_voices,false +Freddie3,newsmast.social,Activism & Civil Rights,activism_civil_rights,false +posts2,newsmast.social,Social Media,social_media,false +posts2,newsmast.social,Space,space,false +posts2,newsmast.social,Technology,technology,false +newsmast,newsmast.social,Food & Drink,food_drink,false +posts2,newsmast.social,Ukraine Invasion,ukraine_invasion,false +Freddie3,newsmast.social,Humour,humour,false +newsmast,newsmast.social,Football,football,false +newsmast,newsmast.social,Gaming,gaming,false +newsmast,newsmast.social,Government & Policy,government_policy,false +posts2,newsmast.social,Weather,weather,false +Freddie3,newsmast.social,Movies,movies,false +newsmast,newsmast.social,Healthcare,healthcare,false +posts2,newsmast.social,Breaking News,breaking_news,true +theshescribe,newsmast.social,Black Voices,black_voices,false +S33J,newsmast.social,Football,football,false +sonia_sna0002,newsmast.social,Ukraine Invasion,ukraine_invasion,false +sonia_sna0002,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false +sonia_sna0002,newsmast.social,Breaking News,breaking_news,false +morefunwithjuan,newsmast.social,Architecture & Design,architecture_design,false +morefunwithjuan,newsmast.social,Food & Drink,food_drink,false +morefunwithjuan,newsmast.social,Movies,movies,false +morefunwithjuan,newsmast.social,Music,music,false +morefunwithjuan,newsmast.social,Nature & Wildlife,nature_wildlife,false +morefunwithjuan,newsmast.social,Visual Arts,visual_arts,false +morefunwithjuan,newsmast.social,Weather,weather,false +morefunwithjuan,newsmast.social,Travel,travel,true +Sinobabble,newsmast.social,AI,ai,false +Sinobabble,newsmast.social,Books & Literature,books_literature,false +Sinobabble,newsmast.social,Breaking News,breaking_news,false +Sinobabble,newsmast.social,Business,business,false +Sinobabble,newsmast.social,History,history,false +Sinobabble,newsmast.social,Journalism & Comment,news_comment_data,false +rozenberg,newsmast.social,Law & Justice,law_justice,true +Sinobabble,newsmast.social,Philosophy,philosophy,false +Sinobabble,newsmast.social,Technology,technology,false +Sinobabble,newsmast.social,Humanities,humanities,true +stephenreid,newsmast.social,Gaming,gaming,false +theshescribe,newsmast.social,Books & Literature,books_literature,false +stephenreid,newsmast.social,Markets & Finance,markets_finance,false +stephenreid,newsmast.social,Movies,movies,false +stephenreid,newsmast.social,Music,music,false +stephenreid,newsmast.social,Journalism & Comment,news_comment_data,false +EV_Musings,newsmast.social,Climate change,climate_change,false +EV_Musings,newsmast.social,Engineering,engineering,false +theshescribe,newsmast.social,Breaking News,breaking_news,false +theshescribe,newsmast.social,Business,business,false +EV_Musings,newsmast.social,Physics,physics,false +EV_Musings,newsmast.social,Travel,travel,false +theshescribe,newsmast.social,Creative Arts,creative_arts,false +stephenreid,newsmast.social,Performing Arts,performing_arts,false +theshescribe,newsmast.social,Disabled Voices,disabled_voices,false +stephenreid,newsmast.social,Photography,photography,false +stephenreid,newsmast.social,Politics,politics,false +theshescribe,newsmast.social,Food & Drink,food_drink,false +theshescribe,newsmast.social,Gaming,gaming,false +stephenreid,newsmast.social,TV & Radio,tv_radio,false +stephenreid,newsmast.social,Ukraine Invasion,ukraine_invasion,false +stephenreid,newsmast.social,Visual Arts,visual_arts,false +sonia_sna0002,newsmast.social,Climate change,climate_change,false +stephenreid,newsmast.social,Weather,weather,false +NoisyBits,newsmast.social,Activism & Civil Rights,activism_civil_rights,false +NoisyBits,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +NoisyBits,newsmast.social,History,history,false +samarpahwa,newsmast.social,Government & Policy,government_policy,true +NoisyBits,newsmast.social,Poverty & Inequality,poverty_inequality,false +NoisyBits,newsmast.social,LGBTQ+,lgbtq,false +NoisyBits,newsmast.social,Philosophy,philosophy,false +NoisyBits,newsmast.social,Social Sciences,social_sciences,false +NoisyBits,newsmast.social,Visual Arts,visual_arts,false +NoisyBits,newsmast.social,Humanities,humanities,true +stephenreid,newsmast.social,Technology,technology,true +newsmast,newsmast.social,History,history,false +sonia_sna0002,newsmast.social,Energy & Pollution,energy_pollution,false +newsmast,newsmast.social,Humanities,humanities,false +newsmast,newsmast.social,Humour,humour,false +newsmast,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false +newsmast,newsmast.social,Immigrants Rights,immigrants_rights,false +breakingnews,newsmast.social,Journalism & Comment,news_comment_data,false +newsmast,newsmast.social,Indigenous Peoples,indigenous_peoples,false +newsmast,newsmast.social,Poverty & Inequality,poverty_inequality,false +Tasha,newsmast.social,Environment,environment,true +sonia_sna0002,newsmast.social,Environment,environment,false +sonia_sna0002,newsmast.social,History,history,false +sonia_sna0002,newsmast.social,Humanities,humanities,false +sonia_sna0002,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false +sonia_sna0002,newsmast.social,Journalism & Comment,news_comment_data,false +sonia_sna0002,newsmast.social,Philosophy,philosophy,false +sonia_sna0002,newsmast.social,Poverty & Inequality,poverty_inequality,false +sonia_sna0002,newsmast.social,Social Media,social_media,false +sonia_sna0002,newsmast.social,Social Sciences,social_sciences,false +rozenberg,newsmast.social,Books & Literature,books_literature,false +rozenberg,newsmast.social,Breaking News,breaking_news,false +sonia_sna0002,newsmast.social,Weather,weather,false +rozenberg,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +rozenberg,newsmast.social,Government & Policy,government_policy,false +rozenberg,newsmast.social,History,history,false +sonia_sna0002,newsmast.social,Democracy & Human Rights,democracy_human_rights,true +rozenberg,newsmast.social,Humanities,humanities,false +breakingnews,newsmast.social,Social Media,social_media,false +breakingnews,newsmast.social,Ukraine Invasion,ukraine_invasion,false +rozenberg,newsmast.social,Journalism & Comment,news_comment_data,false +rozenberg,newsmast.social,Philosophy,philosophy,false +rozenberg,newsmast.social,Politics,politics,false +breakingnews,newsmast.social,Weather,weather,false +rozenberg,newsmast.social,Workers Rights,workers_rights,false +breakingnews,newsmast.social,Breaking News,breaking_news,true +theshescribe,newsmast.social,Government & Policy,government_policy,false +theshescribe,newsmast.social,Healthcare,healthcare,false +UniverseMoment,newsmast.social,Biology,biology,false +samarpahwa,newsmast.social,Breaking News,breaking_news,false +samarpahwa,newsmast.social,Business,business,false +theshescribe,newsmast.social,History,history,false +theshescribe,newsmast.social,Humanities,humanities,false +samarpahwa,newsmast.social,Creative Arts,creative_arts,false +samarpahwa,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +samarpahwa,newsmast.social,Food & Drink,food_drink,false +samarpahwa,newsmast.social,Healthcare,healthcare,false +samarpahwa,newsmast.social,Humour,humour,false +samarpahwa,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false +UniverseMoment,newsmast.social,Chemistry,chemistry,false +UniverseMoment,newsmast.social,Engineering,engineering,false +UniverseMoment,newsmast.social,Mathematics,mathematics,false +UniverseMoment,newsmast.social,Physics,physics,false +UniverseMoment,newsmast.social,Space,space,false +UniverseMoment,newsmast.social,Science,science,true +Freddie3,newsmast.social,Social Sciences,social_sciences,false +Freddie3,newsmast.social,Humanities,humanities,false +Freddie3,newsmast.social,History,history,false +Freddie3,newsmast.social,Environment,environment,false +Freddie3,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false +Freddie3,newsmast.social,Climate change,climate_change,false +Freddie3,newsmast.social,Energy & Pollution,energy_pollution,false +samarpahwa,newsmast.social,Poverty & Inequality,poverty_inequality,false +theshescribe,newsmast.social,Humour,humour,false +theshescribe,newsmast.social,Immigrants Rights,immigrants_rights,false +samarpahwa,newsmast.social,Law & Justice,law_justice,false +theshescribe,newsmast.social,Indigenous Peoples,indigenous_peoples,false +samarpahwa,newsmast.social,Markets & Finance,markets_finance,false +samarpahwa,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false +samarpahwa,newsmast.social,Nature & Wildlife,nature_wildlife,false +samarpahwa,newsmast.social,Journalism & Comment,news_comment_data,false +theshescribe,newsmast.social,Law & Justice,law_justice,false +samarpahwa,newsmast.social,Pets,pets,false +samarpahwa,newsmast.social,Politics,politics,false +maungchawnwe,newsmast.social,Engineering,engineering,true +theshescribe,newsmast.social,LGBTQ+,lgbtq,false +samarpahwa,newsmast.social,Puzzles,puzzles,false +theshescribe,newsmast.social,Markets & Finance,markets_finance,false +theshescribe,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false +samarpahwa,newsmast.social,Travel,travel,false +samarpahwa,newsmast.social,Ukraine Invasion,ukraine_invasion,false +samarpahwa,newsmast.social,Weather,weather,false +thisisqueerly,newsmast.social,TV & Radio,tv_radio,false +thisisqueerly,newsmast.social,LGBTQ+,lgbtq,true +Alan_Moran,newsmast.social,Weather,weather,false +Alan_Moran,newsmast.social,Breaking News,breaking_news,true +mattskal,newsmast.social,Business,business,false +petenothing,newsmast.social,Football,football,false +mervecaldiran,newsmast.social,Journalism & Comment,news_comment_data,false +mervecaldiran,newsmast.social,Performing Arts,performing_arts,false +protein,newsmast.social,Business,business,false +protein,newsmast.social,Chemistry,chemistry,false +protein,newsmast.social,Climate change,climate_change,false +protein,newsmast.social,Creative Arts,creative_arts,false +protein,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +protein,newsmast.social,Disabled Voices,disabled_voices,false +protein,newsmast.social,Energy & Pollution,energy_pollution,false +protein,newsmast.social,Engineering,engineering,false +protein,newsmast.social,Environment,environment,false +maungchawnwe,newsmast.social,Academia & Research,academia_research,false +maungchawnwe,newsmast.social,AI,ai,false +protein,newsmast.social,Food & Drink,food_drink,false +mervecaldiran,newsmast.social,Philosophy,philosophy,false +protein,newsmast.social,Gaming,gaming,false +protein,newsmast.social,Government & Policy,government_policy,false +maungchawnwe,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false +protein,newsmast.social,Healthcare,healthcare,false +protein,newsmast.social,History,history,false +maungchawnwe,newsmast.social,Biology,biology,false +protein,newsmast.social,Humanities,humanities,false +protein,newsmast.social,Humour,humour,false +protein,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false +protein,newsmast.social,Immigrants Rights,immigrants_rights,false +protein,newsmast.social,Indigenous Peoples,indigenous_peoples,false +protein,newsmast.social,Poverty & Inequality,poverty_inequality,false +maungchawnwe,newsmast.social,Breaking News,breaking_news,false +maungchawnwe,newsmast.social,Chemistry,chemistry,false +protein,newsmast.social,Law & Justice,law_justice,false +protein,newsmast.social,LGBTQ+,lgbtq,false +maungchawnwe,newsmast.social,Climate change,climate_change,false +protein,newsmast.social,Markets & Finance,markets_finance,false +protein,newsmast.social,Mathematics,mathematics,false +MichaelMarshall,newsmast.social,Architecture & Design,architecture_design,false +MichaelMarshall,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false +MichaelMarshall,newsmast.social,Biology,biology,false +MichaelMarshall,newsmast.social,Books & Literature,books_literature,false +MichaelMarshall,newsmast.social,Breaking News,breaking_news,false +maungchawnwe,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +MichaelMarshall,newsmast.social,Chemistry,chemistry,false +maungchawnwe,newsmast.social,Energy & Pollution,energy_pollution,false +MichaelMarshall,newsmast.social,Climate change,climate_change,false +maungchawnwe,newsmast.social,Environment,environment,false +MichaelMarshall,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +maungchawnwe,newsmast.social,Government & Policy,government_policy,false +MichaelMarshall,newsmast.social,Energy & Pollution,energy_pollution,false +MichaelMarshall,newsmast.social,Engineering,engineering,false +MichaelMarshall,newsmast.social,Environment,environment,false +maungchawnwe,newsmast.social,Healthcare,healthcare,false +MichaelMarshall,newsmast.social,Gaming,gaming,false +MichaelMarshall,newsmast.social,Government & Policy,government_policy,false +MichaelMarshall,newsmast.social,Healthcare,healthcare,false +MichaelMarshall,newsmast.social,History,history,false +maungchawnwe,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false +MichaelMarshall,newsmast.social,Humanities,humanities,false +MichaelMarshall,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false +MichaelMarshall,newsmast.social,Poverty & Inequality,poverty_inequality,false +maungchawnwe,newsmast.social,Law & Justice,law_justice,false +maungchawnwe,newsmast.social,Mathematics,mathematics,false +MichaelMarshall,newsmast.social,Law & Justice,law_justice,false +MichaelMarshall,newsmast.social,Mathematics,mathematics,false +MichaelMarshall,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false +MichaelMarshall,newsmast.social,Movies,movies,false +maungchawnwe,newsmast.social,Journalism & Comment,news_comment_data,false +maungchawnwe,newsmast.social,Physics,physics,false +maungchawnwe,newsmast.social,Politics,politics,false +maungchawnwe,newsmast.social,Poverty & Inequality,poverty_inequality,false +maungchawnwe,newsmast.social,Programming,programming,false +maungchawnwe,newsmast.social,Science,science,false +MichaelMarshall,newsmast.social,Music,music,false +MichaelMarshall,newsmast.social,Journalism & Comment,news_comment_data,false +MichaelMarshall,newsmast.social,Performing Arts,performing_arts,false +MichaelMarshall,newsmast.social,Philosophy,philosophy,false +MichaelMarshall,newsmast.social,Photography,photography,false +MichaelMarshall,newsmast.social,Physics,physics,false +MichaelMarshall,newsmast.social,Politics,politics,false +theshescribe,newsmast.social,Movies,movies,false +theshescribe,newsmast.social,Music,music,false +theshescribe,newsmast.social,Nature & Wildlife,nature_wildlife,false +ThomasFoster,newsmast.social,Academia & Research,academia_research,false +ThomasFoster,newsmast.social,Activism & Civil Rights,activism_civil_rights,false +MichaelMarshall,newsmast.social,Space,space,false +ThomasFoster,newsmast.social,Gaming,gaming,false +MichaelMarshall,newsmast.social,TV & Radio,tv_radio,false +MichaelMarshall,newsmast.social,Ukraine Invasion,ukraine_invasion,false +MichaelMarshall,newsmast.social,Visual Arts,visual_arts,false +ThomasFoster,newsmast.social,Immigrants Rights,immigrants_rights,false +MichaelMarshall,newsmast.social,Weather,weather,false +ThomasFoster,newsmast.social,Indigenous Peoples,indigenous_peoples,false +MichaelMarshall,newsmast.social,Science,science,true +ThomasFoster,newsmast.social,Ukraine Invasion,ukraine_invasion,false +newsmast,newsmast.social,Law & Justice,law_justice,false +theshescribe,newsmast.social,Journalism & Comment,news_comment_data,false +dadonthemoveph,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false +Andy,newsmast.social,Politics,politics,false +newsmast,newsmast.social,LGBTQ+,lgbtq,false +ThomasFoster,newsmast.social,Workers Rights,workers_rights,false +lorenaflag,newsmast.social,Activism & Civil Rights,activism_civil_rights,false +ThomasFoster,newsmast.social,Movies,movies,true +lorenaflag,newsmast.social,Photography,photography,false +lorenaflag,newsmast.social,Social Sciences,social_sciences,false +lorenaflag,newsmast.social,Technology,technology,false +lorenaflag,newsmast.social,TV & Radio,tv_radio,false +lorenaflag,newsmast.social,Visual Arts,visual_arts,false +lorenaflag,newsmast.social,Women’s Voices,women_voices,true +theshescribe,newsmast.social,Performing Arts,performing_arts,false +newsmast,newsmast.social,Markets & Finance,markets_finance,false +maungchawnwe,newsmast.social,Social Media,social_media,false +Omega_RF,newsmast.social,Democracy & Human Rights,democracy_human_rights,true +maungchawnwe,newsmast.social,Space,space,false +maungchawnwe,newsmast.social,Technology,technology,false +maungchawnwe,newsmast.social,Ukraine Invasion,ukraine_invasion,false +maungchawnwe,newsmast.social,US Politics,us_politics,false +maungchawnwe,newsmast.social,Weather,weather,false +nayyaung9,newsmast.social,Performing Arts,performing_arts,true +Omega_RF,newsmast.social,Activism & Civil Rights,activism_civil_rights,false +andrewfeinstein,newsmast.social,Breaking News,breaking_news,false +theshescribe,newsmast.social,Pets,pets,false +andrewfeinstein,newsmast.social,Journalism & Comment,news_comment_data,false +andrewfeinstein,newsmast.social,Ukraine Invasion,ukraine_invasion,false +andrewfeinstein,newsmast.social,Weather,weather,false +andrewfeinstein,newsmast.social,Politics,politics,true +Omega_RF,newsmast.social,Breaking News,breaking_news,false +theshescribe,newsmast.social,Philosophy,philosophy,false +theshescribe,newsmast.social,Photography,photography,false +theshescribe,newsmast.social,Politics,politics,false +Omega_RF,newsmast.social,Government & Policy,government_policy,false +manii,newsmast.social,LGBTQ+,lgbtq,false +theshescribe,newsmast.social,Puzzles,puzzles,false +manii,newsmast.social,Sport,sport,false +manii,newsmast.social,Technology,technology,false +manii,newsmast.social,Breaking News,breaking_news,true +theshescribe,newsmast.social,Social Media,social_media,false +theshescribe,newsmast.social,Social Sciences,social_sciences,false +Omega_RF,newsmast.social,Law & Justice,law_justice,false +Omega_RF,newsmast.social,Journalism & Comment,news_comment_data,false +Omega_RF,newsmast.social,Politics,politics,false +vividbiology,newsmast.social,Biology,biology,false +vividbiology,newsmast.social,Chemistry,chemistry,false +vividbiology,newsmast.social,Technology,technology,false +vividbiology,newsmast.social,Visual Arts,visual_arts,false +vividbiology,newsmast.social,Science,science,true +theshescribe,newsmast.social,Travel,travel,false +theshescribe,newsmast.social,TV & Radio,tv_radio,false +theshescribe,newsmast.social,Ukraine Invasion,ukraine_invasion,false +orel,newsmast.social,Books & Literature,books_literature,false +orel,newsmast.social,Poverty & Inequality,poverty_inequality,false +orel,newsmast.social,Social Sciences,social_sciences,false +orel,newsmast.social,History,history,true +Headfort,newsmast.social,Technology,technology,false +JulieSpray,newsmast.social,Activism & Civil Rights,activism_civil_rights,false +JulieSpray,newsmast.social,AI,ai,false +JulieSpray,newsmast.social,Black Voices,black_voices,false +JulieSpray,newsmast.social,Breaking News,breaking_news,false +JulieSpray,newsmast.social,Disabled Voices,disabled_voices,false +JulieSpray,newsmast.social,Healthcare,healthcare,false +JulieSpray,newsmast.social,Immigrants Rights,immigrants_rights,false +JulieSpray,newsmast.social,Indigenous Peoples,indigenous_peoples,false +JulieSpray,newsmast.social,Poverty & Inequality,poverty_inequality,false +JulieSpray,newsmast.social,Law & Justice,law_justice,false +JulieSpray,newsmast.social,LGBTQ+,lgbtq,false +JulieSpray,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false +JulieSpray,newsmast.social,Journalism & Comment,news_comment_data,false +JulieSpray,newsmast.social,Politics,politics,false +theshescribe,newsmast.social,US Politics,us_politics,false +theshescribe,newsmast.social,Visual Arts,visual_arts,false +JulieSpray,newsmast.social,Science,science,false +JulieSpray,newsmast.social,Technology,technology,false +JulieSpray,newsmast.social,TV & Radio,tv_radio,false +JulieSpray,newsmast.social,Ukraine Invasion,ukraine_invasion,false +JulieSpray,newsmast.social,Visual Arts,visual_arts,false +JulieSpray,newsmast.social,Women’s Voices,women_voices,false +JulieSpray,newsmast.social,Workers Rights,workers_rights,false +JulieSpray,newsmast.social,Social Sciences,social_sciences,true +theshescribe,newsmast.social,Weather,weather,false +petenothing,newsmast.social,History,history,false +macroliter,newsmast.social,Activism & Civil Rights,activism_civil_rights,false +macroliter,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false +macroliter,newsmast.social,Biology,biology,false +nowinaminute,newsmast.social,Activism & Civil Rights,activism_civil_rights,false +nowinaminute,newsmast.social,AI,ai,false +nowinaminute,newsmast.social,Humour,humour,false +Zamzam,newsmast.social,Black Voices,black_voices,false +Zamzam,newsmast.social,Climate change,climate_change,false +Supantha,newsmast.social,Breaking News,breaking_news,false +sithudev,newsmast.social,Academia & Research,academia_research,false +sithudev,newsmast.social,Activism & Civil Rights,activism_civil_rights,false +sithudev,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false +Supantha,newsmast.social,Government & Policy,government_policy,false +sithudev,newsmast.social,Black Voices,black_voices,false +Supantha,newsmast.social,Journalism & Comment,news_comment_data,false +Supantha,newsmast.social,Politics,politics,false +Supantha,newsmast.social,Technology,technology,false +Supantha,newsmast.social,Ukraine Invasion,ukraine_invasion,false +Supantha,newsmast.social,Weather,weather,false +Supantha,newsmast.social,AI,ai,true +Zamzam,newsmast.social,Creative Arts,creative_arts,false +mervecaldiran,newsmast.social,Activism & Civil Rights,activism_civil_rights,false +mervecaldiran,newsmast.social,Architecture & Design,architecture_design,false +mervecaldiran,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false +mervecaldiran,newsmast.social,Black Voices,black_voices,false +mervecaldiran,newsmast.social,Books & Literature,books_literature,false +mervecaldiran,newsmast.social,Breaking News,breaking_news,false +sithudev,newsmast.social,Climate change,climate_change,false +mervecaldiran,newsmast.social,Climate change,climate_change,false +sithudev,newsmast.social,Disabled Voices,disabled_voices,false +Player2,newsmast.social,Breaking News,breaking_news,false +sithudev,newsmast.social,Energy & Pollution,energy_pollution,false +Player2,newsmast.social,Football,football,false +Player2,newsmast.social,Journalism & Comment,news_comment_data,false +Player2,newsmast.social,Politics,politics,false +sithudev,newsmast.social,Environment,environment,false +Player2,newsmast.social,Sport,sport,false +Player2,newsmast.social,Ukraine Invasion,ukraine_invasion,false +Player2,newsmast.social,Weather,weather,false +kazwan,newsmast.social,Technology,technology,true +sithudev,newsmast.social,Government & Policy,government_policy,false +mervecaldiran,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +sithudev,newsmast.social,Healthcare,healthcare,false +mervecaldiran,newsmast.social,Energy & Pollution,energy_pollution,false +sithudev,newsmast.social,Immigrants Rights,immigrants_rights,false +mervecaldiran,newsmast.social,Government & Policy,government_policy,false +mervecaldiran,newsmast.social,History,history,false +Player2,newsmast.social,Movies,movies,false +sithudev,newsmast.social,Indigenous Peoples,indigenous_peoples,false +protein,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false +protein,newsmast.social,Movies,movies,false +protein,newsmast.social,Music,music,false +protein,newsmast.social,Nature & Wildlife,nature_wildlife,false +protein,newsmast.social,Journalism & Comment,news_comment_data,false +protein,newsmast.social,Performing Arts,performing_arts,false +sithudev,newsmast.social,Law & Justice,law_justice,false +protein,newsmast.social,Pets,pets,false +mervecaldiran,newsmast.social,Environment,environment,true +sithudev,newsmast.social,LGBTQ+,lgbtq,false +Player2,newsmast.social,Books & Literature,books_literature,false +sithudev,newsmast.social,Journalism & Comment,news_comment_data,false +Player2,newsmast.social,Gaming,gaming,true +sithudev,newsmast.social,Politics,politics,false +kazwan,newsmast.social,AI,ai,false +kazwan,newsmast.social,Breaking News,breaking_news,false +sithudev,newsmast.social,Social Media,social_media,false +kazwan,newsmast.social,Food & Drink,food_drink,false +sithudev,newsmast.social,Ukraine Invasion,ukraine_invasion,false +sithudev,newsmast.social,US Politics,us_politics,false +kazwan,newsmast.social,Humour,humour,false +sithudev,newsmast.social,Weather,weather,false +kazwan,newsmast.social,Journalism & Comment,news_comment_data,false +kazwan,newsmast.social,Space,space,false +sithudev,newsmast.social,Women’s Voices,women_voices,false +kazwan,newsmast.social,Travel,travel,false +sithudev,newsmast.social,Breaking News,breaking_news,true +icey_mark,newsmast.social,Breaking News,breaking_news,false +icey_mark,newsmast.social,Energy & Pollution,energy_pollution,false +icey_mark,newsmast.social,Environment,environment,false +icey_mark,newsmast.social,Football,football,false +icey_mark,newsmast.social,History,history,false +icey_mark,newsmast.social,Poverty & Inequality,poverty_inequality,false +icey_mark,newsmast.social,Journalism & Comment,news_comment_data,false +icey_mark,newsmast.social,Physics,physics,false +icey_mark,newsmast.social,Space,space,false +icey_mark,newsmast.social,Ukraine Invasion,ukraine_invasion,false +icey_mark,newsmast.social,Climate change,climate_change,true +protein,newsmast.social,Philosophy,philosophy,false +protein,newsmast.social,Photography,photography,false +protein,newsmast.social,Physics,physics,false +protein,newsmast.social,Politics,politics,false +protein,newsmast.social,Technology,technology,true +luked522,newsmast.social,Academia & Research,academia_research,false +theshescribe,newsmast.social,Workers Rights,workers_rights,false +protein,newsmast.social,Puzzles,puzzles,false +reverb,newsmast.social,Academia & Research,academia_research,false +reverb,newsmast.social,Activism & Civil Rights,activism_civil_rights,false +protein,newsmast.social,Science,science,false +protein,newsmast.social,Social Sciences,social_sciences,false +protein,newsmast.social,Space,space,false +protein,newsmast.social,Travel,travel,false +protein,newsmast.social,TV & Radio,tv_radio,false +protein,newsmast.social,Ukraine Invasion,ukraine_invasion,false +protein,newsmast.social,Visual Arts,visual_arts,false +reverb,newsmast.social,Architecture & Design,architecture_design,false +protein,newsmast.social,Weather,weather,false +reverb,newsmast.social,Biology,biology,false +protein,newsmast.social,Women’s Voices,women_voices,false +protein,newsmast.social,Workers Rights,workers_rights,false +reverb,newsmast.social,Black Voices,black_voices,false +Zamzam,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +Zamzam,newsmast.social,Environment,environment,false +reverb,newsmast.social,Books & Literature,books_literature,false +reverb,newsmast.social,Breaking News,breaking_news,false +reverb,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +Zamzam,newsmast.social,Humour,humour,false +Zamzam,newsmast.social,Immigrants Rights,immigrants_rights,false +Zamzam,newsmast.social,Poverty & Inequality,poverty_inequality,false +reverb,newsmast.social,Disabled Voices,disabled_voices,false +reverb,newsmast.social,Engineering,engineering,false +Zamzam,newsmast.social,Travel,travel,false +Zamzam,newsmast.social,Activism & Civil Rights,activism_civil_rights,true +reverb,newsmast.social,Football,football,false +reverb,newsmast.social,Gaming,gaming,false +reverb,newsmast.social,Government & Policy,government_policy,false +reverb,newsmast.social,Healthcare,healthcare,false +reverb,newsmast.social,History,history,false +reverb,newsmast.social,Humanities,humanities,false +reverb,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false +reverb,newsmast.social,Immigrants Rights,immigrants_rights,false +reverb,newsmast.social,Indigenous Peoples,indigenous_peoples,false +reverb,newsmast.social,Law & Justice,law_justice,false +Academistry,newsmast.social,Biology,biology,false +Academistry,newsmast.social,Breaking News,breaking_news,false +reverb,newsmast.social,Movies,movies,false +reverb,newsmast.social,Music,music,false +Academistry,newsmast.social,Government & Policy,government_policy,false +Academistry,newsmast.social,Healthcare,healthcare,false +Academistry,newsmast.social,Poverty & Inequality,poverty_inequality,false +reverb,newsmast.social,Journalism & Comment,news_comment_data,false +Academistry,newsmast.social,Journalism & Comment,news_comment_data,false +Academistry,newsmast.social,Politics,politics,false +reverb,newsmast.social,Photography,photography,false +Academistry,newsmast.social,Science,science,false +Academistry,newsmast.social,Chemistry,chemistry,true +reverb,newsmast.social,AI,ai,true +marianaa,newsmast.social,Business,business,false +marianaa,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +DrECSkirmuntt,newsmast.social,AI,ai,false +DrECSkirmuntt,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false +DrECSkirmuntt,newsmast.social,Biology,biology,false +DrECSkirmuntt,newsmast.social,Breaking News,breaking_news,false +DrECSkirmuntt,newsmast.social,Food & Drink,food_drink,false +DrECSkirmuntt,newsmast.social,Gaming,gaming,false +DrECSkirmuntt,newsmast.social,Movies,movies,false +DrECSkirmuntt,newsmast.social,Nature & Wildlife,nature_wildlife,false +DrECSkirmuntt,newsmast.social,Journalism & Comment,news_comment_data,false +DrECSkirmuntt,newsmast.social,Pets,pets,false +DrECSkirmuntt,newsmast.social,Space,space,false +DrECSkirmuntt,newsmast.social,Travel,travel,false +DrECSkirmuntt,newsmast.social,Weather,weather,false +DrECSkirmuntt,newsmast.social,Science,science,true +TVPsychologist,newsmast.social,Journalism & Comment,news_comment_data,false +TVPsychologist,newsmast.social,Politics,politics,false +TVPsychologist,newsmast.social,TV & Radio,tv_radio,false +JustinWeinberg,newsmast.social,AI,ai,false +JustinWeinberg,newsmast.social,Environment,environment,false +JustinWeinberg,newsmast.social,Humanities,humanities,false +JustinWeinberg,newsmast.social,Music,music,false +JustinWeinberg,newsmast.social,Science,science,false +JustinWeinberg,newsmast.social,Social Sciences,social_sciences,false +JustinWeinberg,newsmast.social,Visual Arts,visual_arts,false +JustinWeinberg,newsmast.social,Philosophy,philosophy,true +Tasha,newsmast.social,Immigrants Rights,immigrants_rights,false +Tasha,newsmast.social,Mathematics,mathematics,false +Tasha,newsmast.social,Architecture & Design,architecture_design,false +FinlandatWar,newsmast.social,Books & Literature,books_literature,false +FinlandatWar,newsmast.social,Breaking News,breaking_news,false +FinlandatWar,newsmast.social,Gaming,gaming,false +FinlandatWar,newsmast.social,Humanities,humanities,false +FinlandatWar,newsmast.social,Movies,movies,false +FinlandatWar,newsmast.social,Journalism & Comment,news_comment_data,false +FinlandatWar,newsmast.social,TV & Radio,tv_radio,false +FinlandatWar,newsmast.social,Ukraine Invasion,ukraine_invasion,false +FinlandatWar,newsmast.social,History,history,true +ErichWeikert,newsmast.social,AI,ai,false +ErichWeikert,newsmast.social,Architecture & Design,architecture_design,false +ErichWeikert,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false +ErichWeikert,newsmast.social,Chemistry,chemistry,false +ErichWeikert,newsmast.social,Energy & Pollution,energy_pollution,false +ErichWeikert,newsmast.social,Engineering,engineering,false +ErichWeikert,newsmast.social,Environment,environment,false +theshescribe,newsmast.social,Women’s Voices,women_voices,true +reverb,newsmast.social,Physics,physics,false +ErichWeikert,newsmast.social,Photography,photography,false +ErichWeikert,newsmast.social,Physics,physics,false +reverb,newsmast.social,Politics,politics,false +reverb,newsmast.social,Poverty & Inequality,poverty_inequality,false +reverb,newsmast.social,Science,science,false +ErichWeikert,newsmast.social,Science,science,false +ErichWeikert,newsmast.social,Space,space,false +ErichWeikert,newsmast.social,Technology,technology,false +ErichWeikert,newsmast.social,Visual Arts,visual_arts,false +ErichWeikert,newsmast.social,Humanities,humanities,true +macroliter,newsmast.social,Climate change,climate_change,false +macroliter,newsmast.social,Environment,environment,false +reverb,newsmast.social,Social Sciences,social_sciences,false +reverb,newsmast.social,Space,space,false +macroliter,newsmast.social,Science,science,false +reverb,newsmast.social,Technology,technology,false +katieharbath,newsmast.social,Business,business,false +katieharbath,newsmast.social,Food & Drink,food_drink,false +katieharbath,newsmast.social,Journalism & Comment,news_comment_data,false +reverb,newsmast.social,TV & Radio,tv_radio,false +katieharbath,newsmast.social,Technology,technology,false +katieharbath,newsmast.social,Democracy & Human Rights,democracy_human_rights,true +BriannaABaker,newsmast.social,Activism & Civil Rights,activism_civil_rights,false +BriannaABaker,newsmast.social,Breaking News,breaking_news,false +BriannaABaker,newsmast.social,Creative Arts,creative_arts,false +reverb,newsmast.social,US Politics,us_politics,false +BriannaABaker,newsmast.social,Humour,humour,false +BriannaABaker,newsmast.social,Poverty & Inequality,poverty_inequality,false +vidit,newsmast.social,AI,ai,false +vidit,newsmast.social,Biology,biology,false +vidit,newsmast.social,Breaking News,breaking_news,false +vidit,newsmast.social,Business,business,false +vidit,newsmast.social,Chemistry,chemistry,false +reverb,newsmast.social,US Sport,us_sport,false +reverb,newsmast.social,Visual Arts,visual_arts,false +reverb,newsmast.social,Weather,weather,false +reverb,newsmast.social,Women’s Voices,women_voices,false +vidit,newsmast.social,Engineering,engineering,false +putuu,newsmast.social,Breaking News,breaking_news,false +putuu,newsmast.social,Social Media,social_media,false +putuu,newsmast.social,Ukraine Invasion,ukraine_invasion,false +vidit,newsmast.social,Government & Policy,government_policy,false +vidit,newsmast.social,Healthcare,healthcare,false +luked522,newsmast.social,Architecture & Design,architecture_design,false +putuu,newsmast.social,Weather,weather,false +vidit,newsmast.social,Law & Justice,law_justice,false +vidit,newsmast.social,Markets & Finance,markets_finance,false +vidit,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false +vidit,newsmast.social,Journalism & Comment,news_comment_data,false +putuu,newsmast.social,Journalism & Comment,news_comment_data,true +vidit,newsmast.social,Physics,physics,false +vidit,newsmast.social,Politics,politics,false +luked522,newsmast.social,Biology,biology,false +vidit,newsmast.social,Science,science,false +vidit,newsmast.social,Space,space,false +vidit,newsmast.social,Technology,technology,false +vidit,newsmast.social,Ukraine Invasion,ukraine_invasion,false +vidit,newsmast.social,Weather,weather,false +vidit,newsmast.social,Mathematics,mathematics,true +luked522,newsmast.social,Gaming,gaming,false +BriannaABaker,newsmast.social,Journalism & Comment,news_comment_data,false +BriannaABaker,newsmast.social,Politics,politics,false +docip,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false +docip,newsmast.social,Climate change,climate_change,false +luked522,newsmast.social,Government & Policy,government_policy,false +luked522,newsmast.social,Humanities,humanities,false +docip,newsmast.social,Energy & Pollution,energy_pollution,false +docip,newsmast.social,Environment,environment,false +luked522,newsmast.social,LGBTQ+,lgbtq,false +luked522,newsmast.social,Philosophy,philosophy,false +luked522,newsmast.social,Photography,photography,false +docip,newsmast.social,Social Sciences,social_sciences,false +luked522,newsmast.social,Politics,politics,false +luked522,newsmast.social,Science,science,false +docip,newsmast.social,Indigenous Peoples,indigenous_peoples,true +discerningcat,newsmast.social,Food & Drink,food_drink,false +discerningcat,newsmast.social,Nature & Wildlife,nature_wildlife,false +discerningcat,newsmast.social,Travel,travel,false +discerningcat,newsmast.social,Pets,pets,true +DisabledWorld,newsmast.social,AI,ai,false +DisabledWorld,newsmast.social,Biology,biology,false +DisabledWorld,newsmast.social,Books & Literature,books_literature,false +canvasoul,newsmast.social,Humanities,humanities,false +canvasoul,newsmast.social,Music,music,false +DisabledWorld,newsmast.social,Engineering,engineering,false +canvasoul,newsmast.social,Philosophy,philosophy,false +canvasoul,newsmast.social,Space,space,false +canvasoul,newsmast.social,Photography,photography,true +DisabledWorld,newsmast.social,Humanities,humanities,false +DisabledWorld,newsmast.social,Poverty & Inequality,poverty_inequality,false +luked522,newsmast.social,Space,space,false +DisabledWorld,newsmast.social,Nature & Wildlife,nature_wildlife,false +DisabledWorld,newsmast.social,Physics,physics,false +luked522,newsmast.social,TV & Radio,tv_radio,false +luked522,newsmast.social,Social Sciences,social_sciences,true +TimBlack,newsmast.social,Social Media,social_media,false +BriannaABaker,newsmast.social,Social Sciences,social_sciences,false +BriannaABaker,newsmast.social,Women’s Voices,women_voices,false +BriannaABaker,newsmast.social,Black Voices,black_voices,true +Mihajlo,newsmast.social,AI,ai,false +Mihajlo,newsmast.social,Breaking News,breaking_news,false +Mihajlo,newsmast.social,Football,football,false +nowinaminute,newsmast.social,LGBTQ+,lgbtq,false +nowinaminute,newsmast.social,Mathematics,mathematics,false +nowinaminute,newsmast.social,Pets,pets,false +TimBlack,newsmast.social,TV & Radio,tv_radio,false +nowinaminute,newsmast.social,Science,science,false +Lessig,newsmast.social,AI,ai,false +nico,newsmast.social,AI,ai,false +nico,newsmast.social,Football,football,false +nico,newsmast.social,Government & Policy,government_policy,false +nico,newsmast.social,Mathematics,mathematics,false +nico,newsmast.social,Science,science,false +nico,newsmast.social,Sport,sport,false +nico,newsmast.social,Technology,technology,true +Lessig,newsmast.social,Government & Policy,government_policy,false +Lessig,newsmast.social,Science,science,false +Lessig,newsmast.social,Technology,technology,false +Lessig,newsmast.social,Ukraine Invasion,ukraine_invasion,false +Nadeem,newsmast.social,Breaking News,breaking_news,false +incnews,newsmast.social,Social Media,social_media,false +Nadeem,newsmast.social,Journalism & Comment,news_comment_data,false +Nadeem,newsmast.social,Weather,weather,false +Nadeem,newsmast.social,Politics,politics,true +Lessig,newsmast.social,Law & Justice,law_justice,true +nowinaminute,newsmast.social,Technology,technology,false +nowinaminute,newsmast.social,Women’s Voices,women_voices,false +nowinaminute,newsmast.social,Journalism & Comment,news_comment_data,true +incnews,newsmast.social,Ukraine Invasion,ukraine_invasion,false +incnews,newsmast.social,US Politics,us_politics,false +eve,newsmast.social,Energy & Pollution,energy_pollution,false +ftalk,newsmast.social,Travel,travel,false +mervecaldiran,newsmast.social,Humanities,humanities,false +mervecaldiran,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false +mervecaldiran,newsmast.social,Immigrants Rights,immigrants_rights,false +mervecaldiran,newsmast.social,Indigenous Peoples,indigenous_peoples,false +mervecaldiran,newsmast.social,Poverty & Inequality,poverty_inequality,false +ftalk,newsmast.social,US Sport,us_sport,false +mervecaldiran,newsmast.social,Law & Justice,law_justice,false +mervecaldiran,newsmast.social,LGBTQ+,lgbtq,false +mervecaldiran,newsmast.social,Movies,movies,false +seb_bw,newsmast.social,AI,ai,false +seb_bw,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false +seb_bw,newsmast.social,Climate change,climate_change,false +seb_bw,newsmast.social,Energy & Pollution,energy_pollution,false +seb_bw,newsmast.social,Environment,environment,false +enangha,newsmast.social,Philosophy,philosophy,false +mervecaldiran,newsmast.social,Music,music,false +James_Shield,newsmast.social,Politics,politics,false +ipsc48,newsmast.social,Indigenous Peoples,indigenous_peoples,false +James_Shield,newsmast.social,Social Sciences,social_sciences,false +James_Shield,newsmast.social,Sport,sport,false +James_Shield,newsmast.social,Football,football,true +gavinjmaguire,newsmast.social,Breaking News,breaking_news,false +gavinjmaguire,newsmast.social,Business,business,false +raachotrekkers,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false +raachotrekkers,newsmast.social,Energy & Pollution,energy_pollution,false +raachotrekkers,newsmast.social,Environment,environment,false +raachotrekkers,newsmast.social,Politics,politics,false +gavinjmaguire,newsmast.social,Climate change,climate_change,false +raachotrekkers,newsmast.social,Climate change,climate_change,true +raachotrekkers,newsmast.social,Travel,travel,false +raachotrekkers,newsmast.social,Nature & Wildlife,nature_wildlife,false +dadonthemoveph,newsmast.social,Environment,environment,false +dadonthemoveph,newsmast.social,Food & Drink,food_drink,false +dadonthemoveph,newsmast.social,Movies,movies,false +dadonthemoveph,newsmast.social,Journalism & Comment,news_comment_data,false +dadonthemoveph,newsmast.social,Science,science,false +gavinjmaguire,newsmast.social,Creative Arts,creative_arts,false +dadonthemoveph,newsmast.social,Travel,travel,true +DisabledWorld,newsmast.social,Science,science,false +DisabledWorld,newsmast.social,Social Sciences,social_sciences,false +DisabledWorld,newsmast.social,Space,space,false +DisabledWorld,newsmast.social,Technology,technology,false +chrisfrench,newsmast.social,Breaking News,breaking_news,false +chrisfrench,newsmast.social,Government & Policy,government_policy,false +chrisfrench,newsmast.social,Movies,movies,false +chrisfrench,newsmast.social,Journalism & Comment,news_comment_data,false +chrisfrench,newsmast.social,Performing Arts,performing_arts,false +chrisfrench,newsmast.social,Politics,politics,false +chrisfrench,newsmast.social,Science,science,false +chrisfrench,newsmast.social,Space,space,false +chrisfrench,newsmast.social,TV & Radio,tv_radio,false +davidwees,newsmast.social,Activism & Civil Rights,activism_civil_rights,false +davidwees,newsmast.social,Climate change,climate_change,false +davidwees,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +davidwees,newsmast.social,LGBTQ+,lgbtq,false +davidwees,newsmast.social,Journalism & Comment,news_comment_data,false +davidwees,newsmast.social,Space,space,false +davidwees,newsmast.social,Mathematics,mathematics,true +mervecaldiran,newsmast.social,Photography,photography,false +mervecaldiran,newsmast.social,Politics,politics,false +nayyaung9,newsmast.social,Physics,physics,false +mervecaldiran,newsmast.social,Social Sciences,social_sciences,false +mervecaldiran,newsmast.social,Sport,sport,false +mervecaldiran,newsmast.social,TV & Radio,tv_radio,false +mervecaldiran,newsmast.social,Ukraine Invasion,ukraine_invasion,false +mervecaldiran,newsmast.social,Visual Arts,visual_arts,false +mervecaldiran,newsmast.social,Women’s Voices,women_voices,false +mervecaldiran,newsmast.social,Workers Rights,workers_rights,false +jdp23,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +ajj65,newsmast.social,Activism & Civil Rights,activism_civil_rights,false +ajj65,newsmast.social,AI,ai,false +ajj65,newsmast.social,Architecture & Design,architecture_design,false +ajj65,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false +ajj65,newsmast.social,Biology,biology,false +ajj65,newsmast.social,Black Voices,black_voices,false +ajj65,newsmast.social,Business,business,false +ajj65,newsmast.social,Chemistry,chemistry,false +marianaa,newsmast.social,Markets & Finance,markets_finance,false +ajj65,newsmast.social,Climate change,climate_change,false +marianaa,newsmast.social,Women’s Voices,women_voices,false +ajj65,newsmast.social,Disabled Voices,disabled_voices,false +ajj65,newsmast.social,Energy & Pollution,energy_pollution,false +ajj65,newsmast.social,Engineering,engineering,false +dollarbureau,newsmast.social,AI,ai,false +timakimoff,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false +timakimoff,newsmast.social,Biology,biology,false +timakimoff,newsmast.social,Books & Literature,books_literature,false +timakimoff,newsmast.social,Climate change,climate_change,false +timakimoff,newsmast.social,Energy & Pollution,energy_pollution,false +timakimoff,newsmast.social,Environment,environment,false +timakimoff,newsmast.social,History,history,false +timakimoff,newsmast.social,Philosophy,philosophy,false +timakimoff,newsmast.social,Physics,physics,false +marianaa,newsmast.social,LGBTQ+,lgbtq,true +timakimoff,newsmast.social,Science,science,false +timakimoff,newsmast.social,Social Sciences,social_sciences,false +timakimoff,newsmast.social,Space,space,false +TimBlack,newsmast.social,Politics,politics,true +SithuBo,newsmast.social,Chemistry,chemistry,false +dollarbureau,newsmast.social,Breaking News,breaking_news,false +dollarbureau,newsmast.social,Business,business,false +ftalk,newsmast.social,AI,ai,false +dollarbureau,newsmast.social,Humour,humour,false +ftalk,newsmast.social,Creative Arts,creative_arts,false +dollarbureau,newsmast.social,Markets & Finance,markets_finance,false +dollarbureau,newsmast.social,Journalism & Comment,news_comment_data,false +ftalk,newsmast.social,Engineering,engineering,false +dollarbureau,newsmast.social,Technology,technology,false +dollarbureau,newsmast.social,Travel,travel,true +ajj65,newsmast.social,Environment,environment,false +Hayfa_Sdiri,newsmast.social,AI,ai,false +ftalk,newsmast.social,Food & Drink,food_drink,false +ftalk,newsmast.social,Football,football,false +Hayfa_Sdiri,newsmast.social,Indigenous Peoples,indigenous_peoples,false +ftalk,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false +ftalk,newsmast.social,Nature & Wildlife,nature_wildlife,false +ftalk,newsmast.social,Pets,pets,false +ftalk,newsmast.social,Programming,programming,false +ftalk,newsmast.social,Puzzles,puzzles,false +Hayfa_Sdiri,newsmast.social,Technology,technology,false +ftalk,newsmast.social,Sport,sport,false +saralimback,newsmast.social,Activism & Civil Rights,activism_civil_rights,false +saralimback,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false +saralimback,newsmast.social,Biology,biology,false +saralimback,newsmast.social,Black Voices,black_voices,false +saralimback,newsmast.social,Books & Literature,books_literature,false +saralimback,newsmast.social,Climate change,climate_change,false +saralimback,newsmast.social,Creative Arts,creative_arts,false +ftalk,newsmast.social,Technology,technology,false +saralimback,newsmast.social,Disabled Voices,disabled_voices,false +ftalk,newsmast.social,Travel,travel,false +saralimback,newsmast.social,Energy & Pollution,energy_pollution,false +saralimback,newsmast.social,Environment,environment,false +ftalk,newsmast.social,US Sport,us_sport,false +saralimback,newsmast.social,Food & Drink,food_drink,false +saralimback,newsmast.social,History,history,false +saralimback,newsmast.social,Humanities,humanities,false +saralimback,newsmast.social,Immigrants Rights,immigrants_rights,false +saralimback,newsmast.social,Indigenous Peoples,indigenous_peoples,false +karlienoon,newsmast.social,Climate change,climate_change,false +ftalk,newsmast.social,Humour,humour,true +karlienoon,newsmast.social,Energy & Pollution,energy_pollution,false +karlienoon,newsmast.social,Environment,environment,false +karlienoon,newsmast.social,Gaming,gaming,false +karlienoon,newsmast.social,Poverty & Inequality,poverty_inequality,false +karlienoon,newsmast.social,Law & Justice,law_justice,false +karlienoon,newsmast.social,Mathematics,mathematics,false +karlienoon,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false +karlienoon,newsmast.social,Physics,physics,false +DrMikeWatts,newsmast.social,Biology,biology,false +DrMikeWatts,newsmast.social,Climate change,climate_change,false +saralimback,newsmast.social,LGBTQ+,lgbtq,false +DrMikeWatts,newsmast.social,Programming,programming,false +incnews,newsmast.social,Weather,weather,false +karlienoon,newsmast.social,Science,science,false +karlienoon,newsmast.social,Space,space,true +jdp23,newsmast.social,Black Voices,black_voices,false +jasonreiduk,newsmast.social,Activism & Civil Rights,activism_civil_rights,false +jdp23,newsmast.social,Immigrants Rights,immigrants_rights,false +jdp23,newsmast.social,Indigenous Peoples,indigenous_peoples,false +ajj65,newsmast.social,Gaming,gaming,false +aung,newsmast.social,Breaking News,breaking_news,false +jdp23,newsmast.social,Law & Justice,law_justice,false +jdp23,newsmast.social,LGBTQ+,lgbtq,false +muzaffarab,newsmast.social,Poverty & Inequality,poverty_inequality,false +jdp23,newsmast.social,Philosophy,philosophy,false +muzaffarab,newsmast.social,Democracy & Human Rights,democracy_human_rights,true +jdp23,newsmast.social,Social Media,social_media,false +ajj65,newsmast.social,Immigrants Rights,immigrants_rights,false +jdp23,newsmast.social,Social Sciences,social_sciences,false +jdp23,newsmast.social,Technology,technology,false +jdp23,newsmast.social,US Politics,us_politics,false +jdp23,newsmast.social,Women’s Voices,women_voices,false +jdp23,newsmast.social,Activism & Civil Rights,activism_civil_rights,true +incnews,newsmast.social,Workers Rights,workers_rights,false +incnews,newsmast.social,Journalism & Comment,news_comment_data,true +SithuBo,newsmast.social,Football,football,false +SithuBo,newsmast.social,Mathematics,mathematics,false +chamkaurghag,newsmast.social,AI,ai,false +chamkaurghag,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false +chamkaurghag,newsmast.social,Biology,biology,false +chamkaurghag,newsmast.social,Chemistry,chemistry,false +chamkaurghag,newsmast.social,Climate change,climate_change,false +Laurens,newsmast.social,AI,ai,false +chamkaurghag,newsmast.social,Energy & Pollution,energy_pollution,false +chamkaurghag,newsmast.social,Engineering,engineering,false +chamkaurghag,newsmast.social,Environment,environment,false +chamkaurghag,newsmast.social,Mathematics,mathematics,false +Laurens,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false +chamkaurghag,newsmast.social,Science,science,false +chamkaurghag,newsmast.social,Space,space,false +chamkaurghag,newsmast.social,Physics,physics,true +Laurens,newsmast.social,Breaking News,breaking_news,false +Laurens,newsmast.social,Climate change,climate_change,false +Laurens,newsmast.social,Energy & Pollution,energy_pollution,false +Laurens,newsmast.social,Engineering,engineering,false +Laurens,newsmast.social,Environment,environment,false +Laurens,newsmast.social,History,history,false +Laurens,newsmast.social,Humanities,humanities,false +Kevin_Healey,newsmast.social,Disabled Voices,disabled_voices,false +Kevin_Healey,newsmast.social,Journalism & Comment,news_comment_data,false +Kevin_Healey,newsmast.social,Technology,technology,false +Shali,newsmast.social,Activism & Civil Rights,activism_civil_rights,false +Shali,newsmast.social,Breaking News,breaking_news,false +Shali,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +Shali,newsmast.social,Government & Policy,government_policy,false +Shali,newsmast.social,Poverty & Inequality,poverty_inequality,false +Shali,newsmast.social,Law & Justice,law_justice,false +Shali,newsmast.social,Journalism & Comment,news_comment_data,false +Shali,newsmast.social,Social Sciences,social_sciences,false +Shali,newsmast.social,Ukraine Invasion,ukraine_invasion,false +Shali,newsmast.social,Politics,politics,true +Kevin_Healey,newsmast.social,Breaking News,breaking_news,false +S33J,newsmast.social,Social Sciences,social_sciences,false +GraceReckers,newsmast.social,Activism & Civil Rights,activism_civil_rights,false +GraceReckers,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false +GraceReckers,newsmast.social,Black Voices,black_voices,false +GraceReckers,newsmast.social,Climate change,climate_change,false +GraceReckers,newsmast.social,Disabled Voices,disabled_voices,false +GraceReckers,newsmast.social,Environment,environment,false +GraceReckers,newsmast.social,Healthcare,healthcare,false +GraceReckers,newsmast.social,Immigrants Rights,immigrants_rights,false +GraceReckers,newsmast.social,Indigenous Peoples,indigenous_peoples,false +GraceReckers,newsmast.social,Law & Justice,law_justice,false +GraceReckers,newsmast.social,LGBTQ+,lgbtq,false +GraceReckers,newsmast.social,Music,music,false +GraceReckers,newsmast.social,Photography,photography,false +GraceReckers,newsmast.social,Social Sciences,social_sciences,false +GraceReckers,newsmast.social,TV & Radio,tv_radio,false +GraceReckers,newsmast.social,Women’s Voices,women_voices,false +GraceReckers,newsmast.social,Workers Rights,workers_rights,true +TerriGerstein,newsmast.social,Activism & Civil Rights,activism_civil_rights,false +TerriGerstein,newsmast.social,Government & Policy,government_policy,false +TerriGerstein,newsmast.social,Immigrants Rights,immigrants_rights,false +TerriGerstein,newsmast.social,Law & Justice,law_justice,false +TerriGerstein,newsmast.social,Women’s Voices,women_voices,false +TerriGerstein,newsmast.social,Workers Rights,workers_rights,true +catcafesandiego,newsmast.social,Business,business,false +catcafesandiego,newsmast.social,Journalism & Comment,news_comment_data,false +catcafesandiego,newsmast.social,Photography,photography,false +catcafesandiego,newsmast.social,Travel,travel,false +catcafesandiego,newsmast.social,Pets,pets,true +dgainz,newsmast.social,Government & Policy,government_policy,false +dgainz,newsmast.social,Journalism & Comment,news_comment_data,false +dgainz,newsmast.social,Physics,physics,false +dgainz,newsmast.social,Science,science,false +dgainz,newsmast.social,Space,space,false +dgainz,newsmast.social,Breaking News,breaking_news,true +Diamond1,newsmast.social,Biology,biology,false +Diamond1,newsmast.social,Chemistry,chemistry,false +Diamond1,newsmast.social,Football,football,false +Diamond1,newsmast.social,Science,science,false +Diamond1,newsmast.social,Physics,physics,true +sallyhawkins,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,true +Unwanted_Life,newsmast.social,Social Sciences,social_sciences,true +aung,newsmast.social,Politics,politics,false +aung,newsmast.social,Ukraine Invasion,ukraine_invasion,false +LaurelOld,newsmast.social,AI,ai,false +KenShirriff,newsmast.social,Architecture & Design,architecture_design,false +KenShirriff,newsmast.social,Biology,biology,false +KenShirriff,newsmast.social,Books & Literature,books_literature,false +KenShirriff,newsmast.social,Chemistry,chemistry,false +KenShirriff,newsmast.social,Engineering,engineering,false +KenShirriff,newsmast.social,History,history,false +KenShirriff,newsmast.social,Mathematics,mathematics,false +KenShirriff,newsmast.social,Physics,physics,false +KenShirriff,newsmast.social,Science,science,false +KenShirriff,newsmast.social,Space,space,false +KenShirriff,newsmast.social,Technology,technology,true +saralimback,newsmast.social,Music,music,false +saralimback,newsmast.social,Philosophy,philosophy,false +saralimback,newsmast.social,Photography,photography,false +LaurelOld,newsmast.social,Breaking News,breaking_news,false +saralimback,newsmast.social,Social Sciences,social_sciences,false +LaurelOld,newsmast.social,Chemistry,chemistry,false +saralimback,newsmast.social,Women’s Voices,women_voices,false +janerockhouse,newsmast.social,Activism & Civil Rights,activism_civil_rights,false +janerockhouse,newsmast.social,Breaking News,breaking_news,false +minkhantBL,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +minkhantBL,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false +minkhantBL,newsmast.social,Journalism & Comment,news_comment_data,false +janerockhouse,newsmast.social,Music,music,false +janerockhouse,newsmast.social,Photography,photography,false +janerockhouse,newsmast.social,Politics,politics,false +janerockhouse,newsmast.social,Women’s Voices,women_voices,false +janerockhouse,newsmast.social,Journalism & Comment,news_comment_data,true +saralimback,newsmast.social,Workers Rights,workers_rights,false +saralimback,newsmast.social,Nature & Wildlife,nature_wildlife,true +minkhantBL,newsmast.social,Poverty & Inequality,poverty_inequality,false +minkhantBL,newsmast.social,Social Media,social_media,false +minkhantBL,newsmast.social,Ukraine Invasion,ukraine_invasion,false +minkhantBL,newsmast.social,Weather,weather,false +minkhantBL,newsmast.social,Breaking News,breaking_news,true +sitothebo,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +ajj65,newsmast.social,Indigenous Peoples,indigenous_peoples,false +ajj65,newsmast.social,Poverty & Inequality,poverty_inequality,false +LaurelOld,newsmast.social,Engineering,engineering,false +ajj65,newsmast.social,Markets & Finance,markets_finance,false +ajj65,newsmast.social,Mathematics,mathematics,false +ajj65,newsmast.social,Music,music,false +TuesdayReviewAU,newsmast.social,Books & Literature,books_literature,false +ajj65,newsmast.social,Photography,photography,false +indianhistory,newsmast.social,Architecture & Design,architecture_design,false +indianhistory,newsmast.social,Books & Literature,books_literature,false +indianhistory,newsmast.social,Breaking News,breaking_news,false +TuesdayReviewAU,newsmast.social,Breaking News,breaking_news,false +indianhistory,newsmast.social,Gaming,gaming,false +indianhistory,newsmast.social,Humanities,humanities,false +indianhistory,newsmast.social,Movies,movies,false +indianhistory,newsmast.social,Music,music,false +indianhistory,newsmast.social,Performing Arts,performing_arts,false +indianhistory,newsmast.social,Photography,photography,false +indianhistory,newsmast.social,TV & Radio,tv_radio,false +indianhistory,newsmast.social,Visual Arts,visual_arts,false +indianhistory,newsmast.social,Weather,weather,false +indianhistory,newsmast.social,History,history,true +ajj65,newsmast.social,Physics,physics,false +TuesdayReviewAU,newsmast.social,Gaming,gaming,false +TuesdayReviewAU,newsmast.social,Humanities,humanities,false +TuesdayReviewAU,newsmast.social,Journalism & Comment,news_comment_data,false +TuesdayReviewAU,newsmast.social,Philosophy,philosophy,false +TuesdayReviewAU,newsmast.social,Social Media,social_media,false +TuesdayReviewAU,newsmast.social,Technology,technology,false +TuesdayReviewAU,newsmast.social,TV & Radio,tv_radio,false +TuesdayReviewAU,newsmast.social,Visual Arts,visual_arts,false +TuesdayReviewAU,newsmast.social,Movies,movies,true +LaurelOld,newsmast.social,Journalism & Comment,news_comment_data,false +LaurelOld,newsmast.social,Science,science,false +LaurelOld,newsmast.social,Biology,biology,true +DrMikeWatts,newsmast.social,Science,science,false +DrMikeWatts,newsmast.social,AI,ai,true +ThirdTime,newsmast.social,Journalism & Comment,news_comment_data,false +vegannutrition,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false +vegannutrition,newsmast.social,Biology,biology,false +vegannutrition,newsmast.social,Climate change,climate_change,false +vegannutrition,newsmast.social,Environment,environment,false +vegannutrition,newsmast.social,Food & Drink,food_drink,false +vegannutrition,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false +vegannutrition,newsmast.social,Poverty & Inequality,poverty_inequality,false +vegannutrition,newsmast.social,Nature & Wildlife,nature_wildlife,false +vegannutrition,newsmast.social,Science,science,false +Unwanted_Life,newsmast.social,Black Voices,black_voices,false +Unwanted_Life,newsmast.social,Disabled Voices,disabled_voices,false +DrCarpineti,newsmast.social,Activism & Civil Rights,activism_civil_rights,false +DrCarpineti,newsmast.social,Breaking News,breaking_news,false +DrCarpineti,newsmast.social,LGBTQ+,lgbtq,false +DrCarpineti,newsmast.social,Journalism & Comment,news_comment_data,false +DrCarpineti,newsmast.social,Physics,physics,false +DrCarpineti,newsmast.social,Science,science,false +DrCarpineti,newsmast.social,Technology,technology,false +DrCarpineti,newsmast.social,Space,space,true +sallyhawkins,newsmast.social,Environment,environment,false +sallyhawkins,newsmast.social,History,history,false +sallyhawkins,newsmast.social,Indigenous Peoples,indigenous_peoples,false +sallyhawkins,newsmast.social,Philosophy,philosophy,false +sallyhawkins,newsmast.social,Social Sciences,social_sciences,false +sallyhawkins,newsmast.social,Women’s Voices,women_voices,false +mati,moth.social,LGBTQ+,lgbtq,false +petenothing,newsmast.social,Humanities,humanities,false +SustMeme,newsmast.social,Environment,environment,true +Gymbag4u,newsmast.social,Breaking News,breaking_news,false +Gymbag4u,newsmast.social,Creative Arts,creative_arts,false +Gymbag4u,newsmast.social,Humour,humour,false +ajj65,newsmast.social,Science,science,false +ajj65,newsmast.social,Space,space,false +MattSaltmarsh,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +ajj65,newsmast.social,Technology,technology,false +MattSaltmarsh,newsmast.social,Government & Policy,government_policy,false +MattSaltmarsh,newsmast.social,Journalism & Comment,news_comment_data,false +ajj65,newsmast.social,Women’s Voices,women_voices,false +ajj65,newsmast.social,Workers Rights,workers_rights,false +MattSaltmarsh,newsmast.social,Politics,politics,false +MattSaltmarsh,newsmast.social,Breaking News,breaking_news,true +Gymbag4u,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false +Gymbag4u,newsmast.social,Nature & Wildlife,nature_wildlife,false +Gymbag4u,newsmast.social,Pets,pets,false +Gymbag4u,newsmast.social,Travel,travel,false +Gymbag4u,newsmast.social,Food & Drink,food_drink,true +SustMeme,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false +SustMeme,newsmast.social,Climate change,climate_change,false +SustMeme,newsmast.social,Energy & Pollution,energy_pollution,false +SustMeme,newsmast.social,Engineering,engineering,false +flipflop,newsmast.social,Humour,humour,false +ifonlycom,newsmast.social,Technology,technology,false +ifonlycom,newsmast.social,US Politics,us_politics,false +SustMeme,newsmast.social,Science,science,false +flipflop,newsmast.social,Mathematics,mathematics,false +flipflop,newsmast.social,Physics,physics,false +brasmus,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false +flipflop,newsmast.social,Science,science,false +flipflop,newsmast.social,Space,space,false +flipflop,newsmast.social,Technology,technology,false +flipflop,newsmast.social,TV & Radio,tv_radio,false +brasmus,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +flipflop,newsmast.social,Puzzles,puzzles,true +brasmus,newsmast.social,Environment,environment,false +RonCharles,newsmast.social,Journalism & Comment,news_comment_data,true +brasmus,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false +brasmus,newsmast.social,Journalism & Comment,news_comment_data,false +brasmus,newsmast.social,Physics,physics,false +brasmus,newsmast.social,Science,science,false +brasmus,newsmast.social,Weather,weather,false +If_This_Goes_On,newsmast.social,LGBTQ+,lgbtq,false +If_This_Goes_On,newsmast.social,Movies,movies,false +If_This_Goes_On,newsmast.social,Music,music,false +jperlow,newsmast.social,AI,ai,false +jperlow,newsmast.social,Biology,biology,false +Hurns,newsmast.social,AI,ai,false +Hurns,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false +Hurns,newsmast.social,Breaking News,breaking_news,false +Hurns,newsmast.social,Energy & Pollution,energy_pollution,false +Hurns,newsmast.social,Environment,environment,false +Hurns,newsmast.social,Climate change,climate_change,true +jperlow,newsmast.social,Breaking News,breaking_news,false +jperlow,newsmast.social,Chemistry,chemistry,false +jperlow,newsmast.social,Engineering,engineering,false +jperlow,newsmast.social,Mathematics,mathematics,false +If_This_Goes_On,newsmast.social,Performing Arts,performing_arts,false +jperlow,newsmast.social,Physics,physics,false +jperlow,newsmast.social,Programming,programming,false +If_This_Goes_On,newsmast.social,Philosophy,philosophy,false +If_This_Goes_On,newsmast.social,Photography,photography,false +fs0c131y,newsmast.social,Breaking News,breaking_news,false +fs0c131y,newsmast.social,Politics,politics,false +fs0c131y,newsmast.social,Technology,technology,false +fs0c131y,newsmast.social,Ukraine Invasion,ukraine_invasion,false +liharris30,newsmast.social,Business,business,false +liharris30,newsmast.social,Humanities,humanities,false +liharris30,newsmast.social,Technology,technology,false +Dolores,newsmast.social,Indigenous Peoples,indigenous_peoples,false +Dolores,newsmast.social,Women’s Voices,women_voices,false +VAVEL,newsmast.social,Breaking News,breaking_news,false +VAVEL,newsmast.social,Journalism & Comment,news_comment_data,false +VAVEL,newsmast.social,Sport,sport,false +VAVEL,newsmast.social,Football,football,true +HRWright,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +HRWright,newsmast.social,LGBTQ+,lgbtq,false +HRWright,newsmast.social,Journalism & Comment,news_comment_data,false +HRWright,newsmast.social,Travel,travel,false +HRWright,newsmast.social,Food & Drink,food_drink,true +Ann_Aguirre,newsmast.social,LGBTQ+,lgbtq,false +Ann_Aguirre,newsmast.social,Social Sciences,social_sciences,false +Ann_Aguirre,newsmast.social,Space,space,false +Ann_Aguirre,newsmast.social,Women’s Voices,women_voices,true +sitothebo,newsmast.social,Engineering,engineering,false +DanielGilbert,newsmast.social,Social Sciences,social_sciences,true +jrmartin,newsmast.social,Architecture & Design,architecture_design,false +jrmartin,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false +jrmartin,newsmast.social,Books & Literature,books_literature,false +Mihajlo,newsmast.social,Movies,movies,false +jrmartin,newsmast.social,Environment,environment,false +jrmartin,newsmast.social,History,history,false +jrmartin,newsmast.social,Photography,photography,false +mattskal,newsmast.social,Movies,movies,false +jrmartin,newsmast.social,Travel,travel,true +ajj65,newsmast.social,LGBTQ+,lgbtq,true +Dailyscandi,newsmast.social,Poverty & Inequality,poverty_inequality,false +lestermouse,newsmast.social,Breaking News,breaking_news,false +Mihajlo,newsmast.social,Music,music,false +lestermouse,newsmast.social,Politics,politics,false +lestermouse,newsmast.social,Ukraine Invasion,ukraine_invasion,false +lestermouse,newsmast.social,Weather,weather,false +lestermouse,newsmast.social,Journalism & Comment,news_comment_data,true +Mihajlo,newsmast.social,Social Media,social_media,false +Dailyscandi,newsmast.social,Democracy & Human Rights,democracy_human_rights,true +mattskal,newsmast.social,Performing Arts,performing_arts,false +petenothing,newsmast.social,Architecture & Design,architecture_design,false +newsmast,newsmast.social,Mathematics,mathematics,false +petenothing,newsmast.social,Creative Arts,creative_arts,false +Joshmcc_05,newsmast.social,Breaking News,breaking_news,false +Joshmcc_05,newsmast.social,Journalism & Comment,news_comment_data,false +Joshmcc_05,newsmast.social,Sport,sport,false +Joshmcc_05,newsmast.social,Football,football,true +Mihajlo,newsmast.social,Technology,technology,false +calebijioma,newsmast.social,Democracy & Human Rights,democracy_human_rights,true +drbradtucker,newsmast.social,AI,ai,false +drbradtucker,newsmast.social,Physics,physics,false +drbradtucker,newsmast.social,Science,science,false +drbradtucker,newsmast.social,Social Sciences,social_sciences,false +drbradtucker,newsmast.social,Space,space,true +DanielGilbert,newsmast.social,Science,science,false +Mihajlo,newsmast.social,TV & Radio,tv_radio,false +Mihajlo,newsmast.social,Weather,weather,false +Mihajlo,newsmast.social,Sport,sport,true +forgottenxi,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +JayFIO,newsmast.social,Breaking News,breaking_news,false +JayFIO,newsmast.social,Government & Policy,government_policy,false +JayFIO,newsmast.social,Law & Justice,law_justice,false +JayFIO,newsmast.social,LGBTQ+,lgbtq,false +JayFIO,newsmast.social,Journalism & Comment,news_comment_data,false +JayFIO,newsmast.social,Weather,weather,false +JayFIO,newsmast.social,Activism & Civil Rights,activism_civil_rights,true +S33J,newsmast.social,Journalism & Comment,news_comment_data,true +sai_myo_1993,newsmast.social,Programming,programming,true +PetsMag,newsmast.social,AI,ai,false +PetsMag,newsmast.social,Architecture & Design,architecture_design,false +PetsMag,newsmast.social,Biology,biology,false +PetsMag,newsmast.social,Books & Literature,books_literature,false +PetsMag,newsmast.social,Breaking News,breaking_news,false +PetsMag,newsmast.social,Chemistry,chemistry,false +PetsMag,newsmast.social,Creative Arts,creative_arts,false +PetsMag,newsmast.social,Engineering,engineering,false +PetsMag,newsmast.social,Food & Drink,food_drink,false +PetsMag,newsmast.social,Gaming,gaming,false +PetsMag,newsmast.social,Humour,humour,false +PetsMag,newsmast.social,Mathematics,mathematics,false +PetsMag,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false +PetsMag,newsmast.social,Movies,movies,false +PetsMag,newsmast.social,Music,music,false +PetsMag,newsmast.social,Nature & Wildlife,nature_wildlife,false +PetsMag,newsmast.social,Journalism & Comment,news_comment_data,false +PetsMag,newsmast.social,Performing Arts,performing_arts,false +PetsMag,newsmast.social,Photography,photography,false +PetsMag,newsmast.social,Pets,pets,true +calebijioma,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false +calebijioma,newsmast.social,Climate change,climate_change,false +calebijioma,newsmast.social,Energy & Pollution,energy_pollution,false +calebijioma,newsmast.social,Environment,environment,false +calebijioma,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false +calebijioma,newsmast.social,Poverty & Inequality,poverty_inequality,false +siji,newsmast.social,AI,ai,false +siji,newsmast.social,Books & Literature,books_literature,false +siji,newsmast.social,Creative Arts,creative_arts,false +siji,newsmast.social,Food & Drink,food_drink,false +siji,newsmast.social,History,history,false +siji,newsmast.social,Humanities,humanities,false +siji,newsmast.social,Humour,humour,false +siji,newsmast.social,Philosophy,philosophy,false +siji,newsmast.social,Puzzles,puzzles,false +siji,newsmast.social,Travel,travel,false +siji,newsmast.social,Technology,technology,true +OpsMatters,newsmast.social,AI,ai,false +OpsMatters,newsmast.social,Breaking News,breaking_news,false +OpsMatters,newsmast.social,Business,business,false +OpsMatters,newsmast.social,Engineering,engineering,false +OpsMatters,newsmast.social,Environment,environment,false +OpsMatters,newsmast.social,Technology,technology,true +JeffreyPeel,newsmast.social,Activism & Civil Rights,activism_civil_rights,false +JeffreyPeel,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +JeffreyPeel,newsmast.social,Government & Policy,government_policy,false +JeffreyPeel,newsmast.social,Healthcare,healthcare,false +JeffreyPeel,newsmast.social,Technology,technology,false +JeffreyPeel,newsmast.social,Politics,politics,true +faithbenson,newsmast.social,AI,ai,false +faithbenson,newsmast.social,Creative Arts,creative_arts,false +forgottenxi,newsmast.social,Football,football,false +forgottenxi,newsmast.social,Poverty & Inequality,poverty_inequality,false +JenniferLawson,newsmast.social,Humanities,humanities,true +AldridgePhoto,newsmast.social,Breaking News,breaking_news,false +AldridgePhoto,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,true +AldridgePhoto,newsmast.social,Climate change,climate_change,false +AldridgePhoto,newsmast.social,Energy & Pollution,energy_pollution,false +AldridgePhoto,newsmast.social,Environment,environment,false +AldridgePhoto,newsmast.social,Journalism & Comment,news_comment_data,false +Gymbag4u,newsmast.social,Markets & Finance,markets_finance,false +Laurens,newsmast.social,Journalism & Comment,news_comment_data,false +Laurens,newsmast.social,Philosophy,philosophy,false +sean,newsmast.social,Activism & Civil Rights,activism_civil_rights,false +mattskal,newsmast.social,Technology,technology,true +newsmast,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false +sean,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false +sean,newsmast.social,Biology,biology,false +sean,newsmast.social,Books & Literature,books_literature,false +sean,newsmast.social,Climate change,climate_change,false +sean,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +sean,newsmast.social,Energy & Pollution,energy_pollution,false +benwritesthings,newsmast.social,Architecture & Design,architecture_design,false +benwritesthings,newsmast.social,Books & Literature,books_literature,false +sean,newsmast.social,Environment,environment,false +benwritesthings,newsmast.social,History,history,false +benwritesthings,newsmast.social,Humanities,humanities,false +benwritesthings,newsmast.social,Performing Arts,performing_arts,false +benwritesthings,newsmast.social,Workers Rights,workers_rights,false +benwritesthings,newsmast.social,LGBTQ+,lgbtq,true +sean,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false +sean,newsmast.social,Indigenous Peoples,indigenous_peoples,false +sean,newsmast.social,LGBTQ+,lgbtq,false +sean,newsmast.social,Movies,movies,false +sean,newsmast.social,Music,music,false +sean,newsmast.social,Photography,photography,false +historian1914,newsmast.social,Books & Literature,books_literature,false +historian1914,newsmast.social,Business,business,false +sean,newsmast.social,Poverty & Inequality,poverty_inequality,false +historian1914,newsmast.social,Gaming,gaming,false +historian1914,newsmast.social,Government & Policy,government_policy,false +historian1914,newsmast.social,Humanities,humanities,false +historian1914,newsmast.social,Markets & Finance,markets_finance,false +historian1914,newsmast.social,Sport,sport,false +historian1914,newsmast.social,History,history,true +jasonreiduk,newsmast.social,Breaking News,breaking_news,false +sean,newsmast.social,Science,science,false +jasonreiduk,newsmast.social,Journalism & Comment,news_comment_data,false +jasonreiduk,newsmast.social,LGBTQ+,lgbtq,true +ProfTJCurry,newsmast.social,Healthcare,healthcare,false +ProfTJCurry,newsmast.social,Humanities,humanities,false +ProfTJCurry,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false +sean,newsmast.social,Space,space,false +ProfTJCurry,newsmast.social,Philosophy,philosophy,true +JenniferLawson,newsmast.social,Philosophy,philosophy,false +ksetiya,newsmast.social,Activism & Civil Rights,activism_civil_rights,false +ksetiya,newsmast.social,AI,ai,false +ksetiya,newsmast.social,Architecture & Design,architecture_design,false +simonerochembe,newsmast.social,AI,ai,false +simonerochembe,newsmast.social,Business,business,false +sean,newsmast.social,Technology,technology,false +Laurens,newsmast.social,Social Media,social_media,false +sean,newsmast.social,Sport,sport,false +simonerochembe,newsmast.social,Women’s Voices,women_voices,true +ksetiya,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false +ksetiya,newsmast.social,Biology,biology,false +ksetiya,newsmast.social,Black Voices,black_voices,false +ksetiya,newsmast.social,Books & Literature,books_literature,false +ksetiya,newsmast.social,Breaking News,breaking_news,false +ksetiya,newsmast.social,Business,business,false +Laurens,newsmast.social,Social Sciences,social_sciences,false +ksetiya,newsmast.social,Chemistry,chemistry,false +SWCWomen,newsmast.social,Black Voices,black_voices,false +SWCWomen,newsmast.social,Books & Literature,books_literature,false +SWCWomen,newsmast.social,Disabled Voices,disabled_voices,false +SWCWomen,newsmast.social,Government & Policy,government_policy,false +SWCWomen,newsmast.social,History,history,false +SWCWomen,newsmast.social,Humanities,humanities,false +SWCWomen,newsmast.social,Immigrants Rights,immigrants_rights,false +SWCWomen,newsmast.social,Law & Justice,law_justice,false +SWCWomen,newsmast.social,LGBTQ+,lgbtq,false +SWCWomen,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false +SWCWomen,newsmast.social,Journalism & Comment,news_comment_data,false +SWCWomen,newsmast.social,Philosophy,philosophy,false +SWCWomen,newsmast.social,Politics,politics,false +SWCWomen,newsmast.social,Social Sciences,social_sciences,false +SWCWomen,newsmast.social,Workers Rights,workers_rights,false +SWCWomen,newsmast.social,Women’s Voices,women_voices,true +eve,newsmast.social,Engineering,engineering,false +robotmaths,newsmast.social,Movies,movies,false +robotmaths,newsmast.social,Journalism & Comment,news_comment_data,false +robotmaths,newsmast.social,TV & Radio,tv_radio,false +robotmaths,newsmast.social,Mathematics,mathematics,true +savenues,newsmast.social,Breaking News,breaking_news,false +savenues,newsmast.social,Food & Drink,food_drink,false +savenues,newsmast.social,Humour,humour,false +savenues,newsmast.social,Nature & Wildlife,nature_wildlife,false +savenues,newsmast.social,Travel,travel,true +indiajade_68,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,true +indiajade_68,newsmast.social,Architecture & Design,architecture_design,false +indiajade_68,newsmast.social,Biology,biology,false +sitothebo,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false +indiajade_68,newsmast.social,Chemistry,chemistry,false +indiajade_68,newsmast.social,Climate change,climate_change,false +CakeBoy,newsmast.social,Breaking News,breaking_news,false +indiajade_68,newsmast.social,Energy & Pollution,energy_pollution,false +indiajade_68,newsmast.social,Environment,environment,false +CakeBoy,newsmast.social,Creative Arts,creative_arts,false +CakeBoy,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +indiajade_68,newsmast.social,Photography,photography,false +CakeBoy,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false +CakeBoy,newsmast.social,Nature & Wildlife,nature_wildlife,false +indiajade_68,newsmast.social,Science,science,false +CakeBoy,newsmast.social,Journalism & Comment,news_comment_data,false +indiajade_68,newsmast.social,Visual Arts,visual_arts,false +CakeBoy,newsmast.social,Poverty & Inequality,poverty_inequality,false +CakeBoy,newsmast.social,Social Media,social_media,false +CakeBoy,newsmast.social,Travel,travel,false +CakeBoy,newsmast.social,Weather,weather,false +CakeBoy,newsmast.social,Food & Drink,food_drink,true +vijaysingh,newsmast.social,Academia & Research,academia_research,false +vijaysingh,newsmast.social,Government & Policy,government_policy,false +vijaysingh,newsmast.social,Healthcare,healthcare,false +vijaysingh,newsmast.social,Law & Justice,law_justice,false +vijaysingh,newsmast.social,US Politics,us_politics,false +vijaysingh,newsmast.social,Politics,politics,true +Gymbag4u,newsmast.social,Business,business,false +gavinjmaguire,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +gavinjmaguire,newsmast.social,Food & Drink,food_drink,false +gavinjmaguire,newsmast.social,Football,football,false +gavinjmaguire,newsmast.social,Government & Policy,government_policy,false +gavinjmaguire,newsmast.social,Humour,humour,false +gavinjmaguire,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false +gavinjmaguire,newsmast.social,Markets & Finance,markets_finance,false +gavinjmaguire,newsmast.social,Nature & Wildlife,nature_wildlife,false +sarahhengel,newsmast.social,Chemistry,chemistry,false +sarahhengel,newsmast.social,Engineering,engineering,false +sarahhengel,newsmast.social,Mathematics,mathematics,false +sarahhengel,newsmast.social,Physics,physics,false +sarahhengel,newsmast.social,Science,science,false +sarahhengel,newsmast.social,Space,space,false +sarahhengel,newsmast.social,Biology,biology,true +CBhattacharji,newsmast.social,Business,business,false +CBhattacharji,newsmast.social,Climate change,climate_change,false +gavinjmaguire,newsmast.social,Poverty & Inequality,poverty_inequality,false +gavinjmaguire,newsmast.social,Travel,travel,false +AndreCMonteiro,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +gavinjmaguire,newsmast.social,US Politics,us_politics,false +AndreCMonteiro,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false +AndreCMonteiro,newsmast.social,Poverty & Inequality,poverty_inequality,false +gavinjmaguire,newsmast.social,Energy & Pollution,energy_pollution,true +sheckmo,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false +sheckmo,newsmast.social,Energy & Pollution,energy_pollution,false +sheckmo,newsmast.social,Environment,environment,false +sheckmo,newsmast.social,Science,science,false +CBhattacharji,newsmast.social,History,history,false +sheckmo,newsmast.social,US Politics,us_politics,false +CBhattacharji,newsmast.social,Science,science,false +sheckmo,newsmast.social,Climate change,climate_change,true +flipflop,newsmast.social,Breaking News,breaking_news,false +enangha,newsmast.social,Environment,environment,false +boroguide,newsmast.social,Music,music,false +boroguide,newsmast.social,Photography,photography,false +boroguide,newsmast.social,Sport,sport,false +boroguide,newsmast.social,Travel,travel,false +boroguide,newsmast.social,Football,football,true +ksetiya,newsmast.social,Climate change,climate_change,false +ksetiya,newsmast.social,Creative Arts,creative_arts,false +actualbenj,newsmast.social,Government & Policy,government_policy,false +actualbenj,newsmast.social,LGBTQ+,lgbtq,false +actualbenj,newsmast.social,Politics,politics,false +actualbenj,newsmast.social,Science,science,false +actualbenj,newsmast.social,Social Sciences,social_sciences,false +actualbenj,newsmast.social,Ukraine Invasion,ukraine_invasion,false +actualbenj,newsmast.social,Women’s Voices,women_voices,false +actualbenj,newsmast.social,Workers Rights,workers_rights,false +actualbenj,newsmast.social,Journalism & Comment,news_comment_data,true +ksetiya,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +ksetiya,newsmast.social,Disabled Voices,disabled_voices,false +PAAwarenessUK,newsmast.social,Poverty & Inequality,poverty_inequality,false +PAAwarenessUK,newsmast.social,Law & Justice,law_justice,false +PAAwarenessUK,newsmast.social,Politics,politics,false +Radwa,newsmast.social,Breaking News,breaking_news,false +Radwa,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +Radwa,newsmast.social,Politics,politics,false +Radwa,newsmast.social,Social Sciences,social_sciences,false +Radwa,newsmast.social,Technology,technology,false +Radwa,newsmast.social,Journalism & Comment,news_comment_data,false +S33J,newsmast.social,Creative Arts,creative_arts,false +S33J,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false +Destiny,newsmast.social,Food & Drink,food_drink,false +Destiny,newsmast.social,Football,football,false +Destiny,newsmast.social,Humour,humour,false +Destiny,newsmast.social,Mathematics,mathematics,false +Destiny,newsmast.social,Journalism & Comment,news_comment_data,false +Destiny,newsmast.social,Physics,physics,false +Destiny,newsmast.social,Sport,sport,false +Destiny,newsmast.social,Travel,travel,false +Destiny,newsmast.social,Space,space,true +jeremygodwin,newsmast.social,Social Sciences,social_sciences,true +faithbenson,newsmast.social,Science,science,false +faithbenson,newsmast.social,Technology,technology,false +JenniferLawson,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false +JenniferLawson,newsmast.social,Law & Justice,law_justice,false +JenniferLawson,newsmast.social,Climate change,climate_change,false +JenniferLawson,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +JenniferLawson,newsmast.social,Disabled Voices,disabled_voices,false +JenniferLawson,newsmast.social,Environment,environment,false +JenniferLawson,newsmast.social,Government & Policy,government_policy,false +JenniferLawson,newsmast.social,Healthcare,healthcare,false +JenniferLawson,newsmast.social,Immigrants Rights,immigrants_rights,false +JenniferLawson,newsmast.social,Indigenous Peoples,indigenous_peoples,false +JenniferLawson,newsmast.social,LGBTQ+,lgbtq,false +JenniferLawson,newsmast.social,Mathematics,mathematics,false +JenniferLawson,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false +JenniferLawson,newsmast.social,Journalism & Comment,news_comment_data,false +JenniferLawson,newsmast.social,Physics,physics,false +JenniferLawson,newsmast.social,Politics,politics,false +aadyrocker,newsmast.social,Football,football,false +aadyrocker,newsmast.social,Journalism & Comment,news_comment_data,false +JenniferLawson,newsmast.social,Science,science,false +JenniferLawson,newsmast.social,Social Sciences,social_sciences,false +aadyrocker,newsmast.social,Sport,sport,false +JenniferLawson,newsmast.social,Weather,weather,false +JenniferLawson,newsmast.social,Women’s Voices,women_voices,false +JenniferLawson,newsmast.social,Workers Rights,workers_rights,false +contessalouise,newsmast.social,Black Voices,black_voices,false +petenothing,newsmast.social,LGBTQ+,lgbtq,false +petenothing,newsmast.social,Music,music,false +petenothing,newsmast.social,Nature & Wildlife,nature_wildlife,false +petenothing,newsmast.social,Pets,pets,false +petenothing,newsmast.social,Puzzles,puzzles,false +aadyrocker,newsmast.social,US Sport,us_sport,false +petenothing,newsmast.social,Space,space,false +petenothing,newsmast.social,Travel,travel,false +petenothing,newsmast.social,TV & Radio,tv_radio,false +MarieGeneste,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false +aadyrocker,newsmast.social,Breaking News,breaking_news,true +MarieGeneste,newsmast.social,Energy & Pollution,energy_pollution,false +MarieGeneste,newsmast.social,Environment,environment,false +forgottenxi,newsmast.social,Ukraine Invasion,ukraine_invasion,false +forgottenxi,newsmast.social,Breaking News,breaking_news,true +paige_travels,newsmast.social,Books & Literature,books_literature,false +MarieGeneste,newsmast.social,Climate change,climate_change,true +markus,newsmast.social,Creative Arts,creative_arts,false +markus,newsmast.social,Engineering,engineering,false +markus,newsmast.social,Science,science,false +thelmzkitchen,newsmast.social,Music,music,false +thelmzkitchen,newsmast.social,Travel,travel,false +thelmzkitchen,newsmast.social,Women’s Voices,women_voices,false +thelmzkitchen,newsmast.social,Food & Drink,food_drink,true +Nancie,newsmast.social,Food & Drink,food_drink,false +markus,newsmast.social,Technology,technology,false +Nancie,newsmast.social,Humour,humour,false +Nancie,newsmast.social,Nature & Wildlife,nature_wildlife,false +Nancie,newsmast.social,Pets,pets,false +Nancie,newsmast.social,Puzzles,puzzles,false +Nancie,newsmast.social,Travel,travel,true +markus,newsmast.social,AI,ai,true +Darling,newsmast.social,AI,ai,false +petenothing,newsmast.social,Women’s Voices,women_voices,false +petenothing,newsmast.social,Workers Rights,workers_rights,false +petenothing,newsmast.social,Books & Literature,books_literature,true +contessalouise,newsmast.social,Disabled Voices,disabled_voices,false +contessalouise,newsmast.social,Environment,environment,false +contessalouise,newsmast.social,Food & Drink,food_drink,false +contessalouise,newsmast.social,Climate change,climate_change,true +Darling,newsmast.social,Biology,biology,false +jeremygodwin,newsmast.social,Science,science,false +Darling,newsmast.social,Chemistry,chemistry,false +Darling,newsmast.social,Engineering,engineering,false +Darling,newsmast.social,Mathematics,mathematics,false +Darling,newsmast.social,Physics,physics,false +Darling,newsmast.social,Programming,programming,false +Darling,newsmast.social,Science,science,false +Darling,newsmast.social,Space,space,false +Darling,newsmast.social,Sport,sport,false +Tarden7,newsmast.social,Puzzles,puzzles,false +Tarden7,newsmast.social,Travel,travel,false +Tarden7,newsmast.social,Ukraine Invasion,ukraine_invasion,false +Darling,newsmast.social,Technology,technology,false +Darling,newsmast.social,US Sport,us_sport,false +lawyer,newsmast.social,Creative Arts,creative_arts,false +Darling,newsmast.social,Football,football,true +lawyer,newsmast.social,Disabled Voices,disabled_voices,false +mitchell_ab,newsmast.social,Government & Policy,government_policy,false +mitchell_ab,newsmast.social,Journalism & Comment,news_comment_data,false +mitchell_ab,newsmast.social,Philosophy,philosophy,false +mitchell_ab,newsmast.social,Social Sciences,social_sciences,false +mitchell_ab,newsmast.social,Politics,politics,true +eve,newsmast.social,Music,music,false +eve,newsmast.social,Women’s Voices,women_voices,false +Themontyproject,newsmast.social,Books & Literature,books_literature,false +Themontyproject,newsmast.social,Humour,humour,false +Themontyproject,newsmast.social,Workers Rights,workers_rights,false +Themontyproject,newsmast.social,Pets,pets,true +newsmast,newsmast.social,Movies,movies,false +drvolts,newsmast.social,AI,ai,false +drvolts,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false +drvolts,newsmast.social,Biology,biology,false +drvolts,newsmast.social,Breaking News,breaking_news,false +drvolts,newsmast.social,Chemistry,chemistry,false +drvolts,newsmast.social,Climate change,climate_change,false +WilliamHolland,newsmast.social,Government & Policy,government_policy,true +jsit,newsmast.social,Social Media,social_media,false +jsit,newsmast.social,Ukraine Invasion,ukraine_invasion,false +drvolts,newsmast.social,Engineering,engineering,false +drvolts,newsmast.social,Environment,environment,false +paige_travels,newsmast.social,Food & Drink,food_drink,false +paige_travels,newsmast.social,Nature & Wildlife,nature_wildlife,false +paige_travels,newsmast.social,Photography,photography,false +drvolts,newsmast.social,Government & Policy,government_policy,false +drvolts,newsmast.social,Healthcare,healthcare,false +drvolts,newsmast.social,Law & Justice,law_justice,false +drvolts,newsmast.social,Mathematics,mathematics,false +drvolts,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false +drvolts,newsmast.social,Journalism & Comment,news_comment_data,false +drvolts,newsmast.social,Physics,physics,false +KyivIndependent,newsmast.social,Activism & Civil Rights,activism_civil_rights,false +KyivIndependent,newsmast.social,Black Voices,black_voices,false +KyivIndependent,newsmast.social,Breaking News,breaking_news,false +KyivIndependent,newsmast.social,Government & Policy,government_policy,true +paige_travels,newsmast.social,Travel,travel,true +IlCava,mastodon.uno,"Hunger, Disease & Water",hunger_disease_water,false +relaxedmale,newsmast.social,Breaking News,breaking_news,false +KyivIndependent,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +KyivIndependent,newsmast.social,Disabled Voices,disabled_voices,false +relaxedmale,newsmast.social,Food & Drink,food_drink,false +relaxedmale,newsmast.social,Gaming,gaming,false +KyivIndependent,newsmast.social,Healthcare,healthcare,false +relaxedmale,newsmast.social,Government & Policy,government_policy,false +KyivIndependent,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false +KyivIndependent,newsmast.social,Immigrants Rights,immigrants_rights,false +KyivIndependent,newsmast.social,Indigenous Peoples,indigenous_peoples,false +KyivIndependent,newsmast.social,Poverty & Inequality,poverty_inequality,false +LawyerSchiff,newsmast.social,Academia & Research,academia_research,false +LawyerSchiff,newsmast.social,Activism & Civil Rights,activism_civil_rights,false +KyivIndependent,newsmast.social,Law & Justice,law_justice,false +KyivIndependent,newsmast.social,LGBTQ+,lgbtq,false +KyivIndependent,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false +KyivIndependent,newsmast.social,Journalism & Comment,news_comment_data,false +KyivIndependent,newsmast.social,Politics,politics,false +LawyerSchiff,newsmast.social,Architecture & Design,architecture_design,false +LawyerSchiff,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false +LawyerSchiff,newsmast.social,Business,business,false +LawyerSchiff,newsmast.social,Climate change,climate_change,false +KyivIndependent,newsmast.social,Ukraine Invasion,ukraine_invasion,false +KyivIndependent,newsmast.social,Weather,weather,false +KyivIndependent,newsmast.social,Women’s Voices,women_voices,false +KyivIndependent,newsmast.social,Workers Rights,workers_rights,false +LawyerSchiff,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +drvolts,newsmast.social,Politics,politics,false +LawyerSchiff,newsmast.social,Environment,environment,false +LawyerSchiff,newsmast.social,Food & Drink,food_drink,false +LawyerSchiff,newsmast.social,Government & Policy,government_policy,false +drvolts,newsmast.social,Science,science,false +drvolts,newsmast.social,Space,space,false +drvolts,newsmast.social,Technology,technology,false +elliemroberts,newsmast.social,Breaking News,breaking_news,false +LawyerSchiff,newsmast.social,Healthcare,healthcare,false +elliemroberts,newsmast.social,Disabled Voices,disabled_voices,false +elliemroberts,newsmast.social,Humanities,humanities,false +elliemroberts,newsmast.social,Visual Arts,visual_arts,false +elliemroberts,newsmast.social,Women’s Voices,women_voices,false +elliemroberts,newsmast.social,History,history,true +drvolts,newsmast.social,Ukraine Invasion,ukraine_invasion,false +LawyerSchiff,newsmast.social,History,history,false +drvolts,newsmast.social,Weather,weather,false +LawyerSchiff,newsmast.social,Humour,humour,false +drvolts,newsmast.social,Energy & Pollution,energy_pollution,true +LawyerSchiff,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false +LawyerSchiff,newsmast.social,Markets & Finance,markets_finance,false +WilliamHolland,newsmast.social,Healthcare,healthcare,false +LawyerSchiff,newsmast.social,Nature & Wildlife,nature_wildlife,false +IlCava,mastodon.uno,Immigrants Rights,immigrants_rights,false +Sam,newsmast.social,AI,ai,false +Sam,newsmast.social,Architecture & Design,architecture_design,false +LawyerSchiff,newsmast.social,Journalism & Comment,news_comment_data,false +Sam,newsmast.social,LGBTQ+,lgbtq,false +Sam,newsmast.social,Politics,politics,false +orianavmatos,newsmast.social,Travel,travel,false +ChinHuaLu,newsmast.social,Activism & Civil Rights,activism_civil_rights,false +ChinHuaLu,newsmast.social,Books & Literature,books_literature,false +ChinHuaLu,newsmast.social,Creative Arts,creative_arts,false +LawyerSchiff,newsmast.social,Performing Arts,performing_arts,false +ChinHuaLu,newsmast.social,Food & Drink,food_drink,false +ChinHuaLu,newsmast.social,Gaming,gaming,false +LawyerSchiff,newsmast.social,Politics,politics,false +ChinHuaLu,newsmast.social,Humour,humour,false +ChinHuaLu,newsmast.social,Immigrants Rights,immigrants_rights,false +LawyerSchiff,newsmast.social,Poverty & Inequality,poverty_inequality,false +ChinHuaLu,newsmast.social,Movies,movies,false +ChinHuaLu,newsmast.social,Nature & Wildlife,nature_wildlife,false +ChinHuaLu,newsmast.social,Performing Arts,performing_arts,false +ChinHuaLu,newsmast.social,Pets,pets,false +WilliamHolland,newsmast.social,Law & Justice,law_justice,false +WilliamHolland,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false +LawyerSchiff,newsmast.social,Social Media,social_media,false +LawyerSchiff,newsmast.social,Law & Justice,law_justice,true +relaxedmale,newsmast.social,Humour,humour,false +relaxedmale,newsmast.social,Nature & Wildlife,nature_wildlife,false +jaclynasiegel,newsmast.social,Food & Drink,food_drink,false +guzz,newsmast.social,Books & Literature,books_literature,false +ChinHuaLu,newsmast.social,Science,science,false +ChinHuaLu,newsmast.social,Travel,travel,false +ChinHuaLu,newsmast.social,TV & Radio,tv_radio,false +IlCava,mastodon.uno,Healthcare,healthcare,false +ChinHuaLu,newsmast.social,Women’s Voices,women_voices,true +peter,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,true +jaclynasiegel,newsmast.social,Social Sciences,social_sciences,true +guzz,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +guzz,newsmast.social,Environment,environment,false +guzz,newsmast.social,Food & Drink,food_drink,false +guzz,newsmast.social,Government & Policy,government_policy,false +guzz,newsmast.social,History,history,false +guzz,newsmast.social,Humanities,humanities,false +guzz,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false +KamranSaeed,newsmast.social,AI,ai,false +KamranSaeed,newsmast.social,Breaking News,breaking_news,false +KamranSaeed,newsmast.social,Business,business,false +guzz,newsmast.social,Movies,movies,false +peter,newsmast.social,AI,ai,false +guzz,newsmast.social,Music,music,false +peter,newsmast.social,Climate change,climate_change,false +guzz,newsmast.social,Journalism & Comment,news_comment_data,false +peter,newsmast.social,Energy & Pollution,energy_pollution,false +peter,newsmast.social,Environment,environment,false +guzz,newsmast.social,Pets,pets,false +guzz,newsmast.social,Philosophy,philosophy,false +guzz,newsmast.social,Politics,politics,false +guzz,newsmast.social,Puzzles,puzzles,false +guzz,newsmast.social,Science,science,false +guzz,newsmast.social,Social Sciences,social_sciences,false +KamranSaeed,newsmast.social,Climate change,climate_change,false +guzz,newsmast.social,Space,space,false +guzz,newsmast.social,Technology,technology,false +KamranSaeed,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +guzz,newsmast.social,Travel,travel,false +KamranSaeed,newsmast.social,Energy & Pollution,energy_pollution,false +guzz,newsmast.social,Photography,photography,true +Alastair,mastodon.me.uk,Breaking News,breaking_news,false +KamranSaeed,newsmast.social,Football,football,false +KamranSaeed,newsmast.social,Government & Policy,government_policy,false +KamranSaeed,newsmast.social,Healthcare,healthcare,false +GJMPUBLISHER,newsmast.social,AI,ai,false +KamranSaeed,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false +GJMPUBLISHER,newsmast.social,Business,business,false +KamranSaeed,newsmast.social,Poverty & Inequality,poverty_inequality,false +GJMPUBLISHER,newsmast.social,Creative Arts,creative_arts,false +KamranSaeed,newsmast.social,Law & Justice,law_justice,false +KamranSaeed,newsmast.social,Markets & Finance,markets_finance,false +KamranSaeed,newsmast.social,Politics,politics,false +GJMPUBLISHER,newsmast.social,Food & Drink,food_drink,false +enriqueanarte,newsmast.social,Breaking News,breaking_news,false +KamranSaeed,newsmast.social,Sport,sport,false +enriqueanarte,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +KamranSaeed,newsmast.social,Technology,technology,false +KamranSaeed,newsmast.social,Ukraine Invasion,ukraine_invasion,false +KamranSaeed,newsmast.social,Weather,weather,false +KamranSaeed,newsmast.social,Journalism & Comment,news_comment_data,true +samf,newsmast.social,Pets,pets,false +samf,newsmast.social,Philosophy,philosophy,false +enriqueanarte,newsmast.social,Journalism & Comment,news_comment_data,false +ksetiya,newsmast.social,Energy & Pollution,energy_pollution,false +ksetiya,newsmast.social,Engineering,engineering,false +ksetiya,newsmast.social,Environment,environment,false +enriqueanarte,newsmast.social,Politics,politics,false +enriqueanarte,newsmast.social,LGBTQ+,lgbtq,true +GJMPUBLISHER,newsmast.social,Travel,travel,false +GJMPUBLISHER,newsmast.social,LGBTQ+,lgbtq,true +ksetiya,newsmast.social,Food & Drink,food_drink,false +davidadobbs,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false +ksetiya,newsmast.social,Football,football,false +ksetiya,newsmast.social,Gaming,gaming,false +ksetiya,newsmast.social,Government & Policy,government_policy,false +davidadobbs,newsmast.social,Climate change,climate_change,false +ksetiya,newsmast.social,Healthcare,healthcare,false +ksetiya,newsmast.social,History,history,false +davidadobbs,newsmast.social,Environment,environment,false +ksetiya,newsmast.social,Humanities,humanities,false +ksetiya,newsmast.social,Humour,humour,false +ksetiya,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false +ksetiya,newsmast.social,Immigrants Rights,immigrants_rights,false +davidadobbs,newsmast.social,History,history,false +ksetiya,newsmast.social,Indigenous Peoples,indigenous_peoples,false +ksetiya,newsmast.social,Poverty & Inequality,poverty_inequality,false +davidadobbs,newsmast.social,Humanities,humanities,false +ksetiya,newsmast.social,Law & Justice,law_justice,false +davidadobbs,newsmast.social,Science,science,true +ksetiya,newsmast.social,LGBTQ+,lgbtq,false +jsit,newsmast.social,Weather,weather,false +ksetiya,newsmast.social,Markets & Finance,markets_finance,false +ksetiya,newsmast.social,Mathematics,mathematics,false +ksetiya,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false +ksetiya,newsmast.social,Movies,movies,false +ksetiya,newsmast.social,Music,music,false +ksetiya,newsmast.social,Nature & Wildlife,nature_wildlife,false +ksetiya,newsmast.social,Journalism & Comment,news_comment_data,false +ksetiya,newsmast.social,Performing Arts,performing_arts,false +ksetiya,newsmast.social,Pets,pets,false +ksetiya,newsmast.social,Photography,photography,false +ksetiya,newsmast.social,Physics,physics,false +ksetiya,newsmast.social,Philosophy,philosophy,true +jaclynasiegel,newsmast.social,Humour,humour,false +jaclynasiegel,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false +jaclynasiegel,newsmast.social,Nature & Wildlife,nature_wildlife,false +jaclynasiegel,newsmast.social,Puzzles,puzzles,false +jaclynasiegel,newsmast.social,Space,space,false +ksetiya,newsmast.social,Politics,politics,false +seema,newsmast.social,Social Sciences,social_sciences,true +rewildingsam,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,true +FreddieJ,newsmast.social,Activism & Civil Rights,activism_civil_rights,false +ksetiya,newsmast.social,Puzzles,puzzles,false +ksetiya,newsmast.social,Science,science,false +ksetiya,newsmast.social,Social Sciences,social_sciences,false +ksetiya,newsmast.social,Space,space,false +ksetiya,newsmast.social,Sport,sport,false +ksetiya,newsmast.social,Technology,technology,false +ksetiya,newsmast.social,Travel,travel,false +ksetiya,newsmast.social,TV & Radio,tv_radio,false +ksetiya,newsmast.social,Ukraine Invasion,ukraine_invasion,false +ksetiya,newsmast.social,Visual Arts,visual_arts,false +ksetiya,newsmast.social,Weather,weather,false +ksetiya,newsmast.social,Women’s Voices,women_voices,false +ksetiya,newsmast.social,Workers Rights,workers_rights,false +matt_cary,newsmast.social,AI,ai,false +matt_cary,newsmast.social,Black Voices,black_voices,false +matt_cary,newsmast.social,Disabled Voices,disabled_voices,false +MKandHerBC,newsmast.social,Business,business,false +MKandHerBC,newsmast.social,Humour,humour,false +MKandHerBC,newsmast.social,Puzzles,puzzles,false +MKandHerBC,newsmast.social,Pets,pets,true +jaclynasiegel,newsmast.social,Travel,travel,false +Laurens,newsmast.social,Ukraine Invasion,ukraine_invasion,false +Laurens,newsmast.social,Weather,weather,false +Laurens,newsmast.social,Technology,technology,true +jperlow,newsmast.social,Science,science,false +PhilPlait,newsmast.social,Climate change,climate_change,false +PhilPlait,newsmast.social,Humour,humour,false +PhilPlait,newsmast.social,Physics,physics,false +PhilPlait,newsmast.social,Space,space,false +PhilPlait,newsmast.social,Science,science,true +jperlow,newsmast.social,Social Media,social_media,false +pot8um,newsmast.social,Gaming,gaming,false +pot8um,newsmast.social,LGBTQ+,lgbtq,false +pot8um,newsmast.social,Movies,movies,false +pot8um,newsmast.social,Music,music,false +pot8um,newsmast.social,Journalism & Comment,news_comment_data,false +jperlow,newsmast.social,Space,space,false +pot8um,newsmast.social,Science,science,false +pot8um,newsmast.social,Social Sciences,social_sciences,false +pot8um,newsmast.social,Space,space,false +pot8um,newsmast.social,Visual Arts,visual_arts,false +pot8um,newsmast.social,Women’s Voices,women_voices,false +pot8um,newsmast.social,Disabled Voices,disabled_voices,true +jperlow,newsmast.social,Technology,technology,false +jperlow,newsmast.social,Ukraine Invasion,ukraine_invasion,false +jperlow,newsmast.social,Weather,weather,false +jperlow,newsmast.social,Journalism & Comment,news_comment_data,true +adanvers,newsmast.social,Academia & Research,academia_research,false +adanvers,newsmast.social,Biology,biology,false +adanvers,newsmast.social,Breaking News,breaking_news,false +adanvers,newsmast.social,Climate change,climate_change,false +adanvers,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +adanvers,newsmast.social,Government & Policy,government_policy,false +rogerg44,newsmast.social,Architecture & Design,architecture_design,false +adanvers,newsmast.social,Healthcare,healthcare,false +rogerg44,newsmast.social,Music,music,false +rogerg44,newsmast.social,Performing Arts,performing_arts,false +rogerg44,newsmast.social,Photography,photography,false +rogerg44,newsmast.social,TV & Radio,tv_radio,false +rogerg44,newsmast.social,Visual Arts,visual_arts,false +rogerg44,newsmast.social,Movies,movies,true +adanvers,newsmast.social,History,history,false +adanvers,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false +lawyer,newsmast.social,Food & Drink,food_drink,false +lawyer,newsmast.social,Gaming,gaming,false +adanvers,newsmast.social,Law & Justice,law_justice,false +adanvers,newsmast.social,Journalism & Comment,news_comment_data,false +adanvers,newsmast.social,Philosophy,philosophy,false +adanvers,newsmast.social,Politics,politics,false +rewildingsam,newsmast.social,Climate change,climate_change,false +rewildingsam,newsmast.social,Environment,environment,false +rewildingsam,newsmast.social,Photography,photography,false +adanvers,newsmast.social,Poverty & Inequality,poverty_inequality,false +adanvers,newsmast.social,Science,science,false +adanvers,newsmast.social,Technology,technology,false +adanvers,newsmast.social,US Politics,us_politics,false +cate,newsmast.social,Activism & Civil Rights,activism_civil_rights,false +cate,newsmast.social,Books & Literature,books_literature,false +cate,newsmast.social,Humanities,humanities,false +cate,newsmast.social,Poverty & Inequality,poverty_inequality,false +cate,newsmast.social,Philosophy,philosophy,false +cate,newsmast.social,Women’s Voices,women_voices,true +candice_chirwa,newsmast.social,Activism & Civil Rights,activism_civil_rights,false +candice_chirwa,newsmast.social,Black Voices,black_voices,false +candice_chirwa,newsmast.social,Humanities,humanities,false +candice_chirwa,newsmast.social,LGBTQ+,lgbtq,false +candice_chirwa,newsmast.social,Women’s Voices,women_voices,false +seema,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false +seema,newsmast.social,Climate change,climate_change,false +seema,newsmast.social,Environment,environment,false +Crof,newsmast.social,AI,ai,false +Crof,newsmast.social,Biology,biology,false +Crof,newsmast.social,Climate change,climate_change,false +Crof,newsmast.social,Energy & Pollution,energy_pollution,false +Crof,newsmast.social,Healthcare,healthcare,false +Crof,newsmast.social,History,history,false +Crof,newsmast.social,Poverty & Inequality,poverty_inequality,false +Crof,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false +Crof,newsmast.social,Journalism & Comment,news_comment_data,false +Crof,newsmast.social,Politics,politics,false +tillathenun,newsmast.social,Technology,technology,true +guzz,newsmast.social,Ukraine Invasion,ukraine_invasion,false +Crof,newsmast.social,Social Sciences,social_sciences,false +Crof,newsmast.social,Ukraine Invasion,ukraine_invasion,false +guzz,newsmast.social,Social Media,social_media,false +LynnNanos,newsmast.social,Activism & Civil Rights,activism_civil_rights,false +guzz,newsmast.social,Poverty & Inequality,poverty_inequality,false +guzz,newsmast.social,Healthcare,healthcare,false +TheCultofCalcio,newsmast.social,Business,business,false +TheCultofCalcio,newsmast.social,Journalism & Comment,news_comment_data,false +TheCultofCalcio,newsmast.social,Sport,sport,false +guzz,newsmast.social,Business,business,false +guzz,newsmast.social,Workers Rights,workers_rights,false +LeslieTay,newsmast.social,Photography,photography,false +LeslieTay,newsmast.social,Science,science,false +guzz,newsmast.social,Engineering,engineering,false +LeslieTay,newsmast.social,Food & Drink,food_drink,true +TheCultofCalcio,newsmast.social,Football,football,true +guzz,newsmast.social,Chemistry,chemistry,false +guzz,newsmast.social,Gaming,gaming,false +brasmus,newsmast.social,Energy & Pollution,energy_pollution,false +brasmus,newsmast.social,Climate change,climate_change,true +guzz,newsmast.social,Visual Arts,visual_arts,false +guzz,newsmast.social,Creative Arts,creative_arts,false +MummyMatters,newsmast.social,Creative Arts,creative_arts,false +mariana_b,newsmast.social,AI,ai,false +awanderfulsole,newsmast.social,Architecture & Design,architecture_design,false +sean,newsmast.social,Visual Arts,visual_arts,false +awanderfulsole,newsmast.social,Gaming,gaming,false +awanderfulsole,newsmast.social,Movies,movies,false +awanderfulsole,newsmast.social,Music,music,false +awanderfulsole,newsmast.social,Performing Arts,performing_arts,false +awanderfulsole,newsmast.social,TV & Radio,tv_radio,false +awanderfulsole,newsmast.social,Visual Arts,visual_arts,false +awanderfulsole,newsmast.social,Photography,photography,true +ThirdTime,newsmast.social,Social Media,social_media,false +MummyMatters,newsmast.social,Nature & Wildlife,nature_wildlife,false +MummyMatters,newsmast.social,Pets,pets,false +MummyMatters,newsmast.social,Travel,travel,false +jsit,newsmast.social,Breaking News,breaking_news,true +ThirdTime,newsmast.social,Ukraine Invasion,ukraine_invasion,false +ThirdTime,newsmast.social,Weather,weather,false +lgsmsec,newsmast.social,Activism & Civil Rights,activism_civil_rights,false +lgsmsec,newsmast.social,Energy & Pollution,energy_pollution,false +ThirdTime,newsmast.social,Breaking News,breaking_news,true +lgsmsec,newsmast.social,Law & Justice,law_justice,false +lgsmsec,newsmast.social,Journalism & Comment,news_comment_data,false +lgsmsec,newsmast.social,Politics,politics,false +lgsmsec,newsmast.social,Workers Rights,workers_rights,false +lgsmsec,newsmast.social,LGBTQ+,lgbtq,true +vespula,newsmast.social,Science,science,false +orianavmatos,newsmast.social,Biology,biology,false +Anneliese,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false +Anneliese,newsmast.social,Climate change,climate_change,false +tillathenun,newsmast.social,Climate change,climate_change,false +sitothebo,newsmast.social,Journalism & Comment,news_comment_data,false +tillathenun,newsmast.social,Movies,movies,false +tillathenun,newsmast.social,Science,science,false +adanvers,newsmast.social,Social Sciences,social_sciences,true +Anneliese,newsmast.social,Energy & Pollution,energy_pollution,false +Anneliese,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false +Anneliese,newsmast.social,Journalism & Comment,news_comment_data,false +markrubbo,newsmast.social,Academia & Research,academia_research,false +RhondaAlbom,newsmast.social,Architecture & Design,architecture_design,false +RhondaAlbom,newsmast.social,Environment,environment,false +RhondaAlbom,newsmast.social,Humour,humour,false +RhondaAlbom,newsmast.social,Photography,photography,false +RhondaAlbom,newsmast.social,Visual Arts,visual_arts,false +RhondaAlbom,newsmast.social,Travel,travel,true +aliegilbert,newsmast.social,Environment,environment,false +aliegilbert,newsmast.social,LGBTQ+,lgbtq,false +aliegilbert,newsmast.social,Journalism & Comment,news_comment_data,false +aliegilbert,newsmast.social,Science,science,false +aliegilbert,newsmast.social,Women’s Voices,women_voices,false +tomy,newsmast.social,AI,ai,false +tomy,newsmast.social,Biology,biology,false +tomy,newsmast.social,Humanities,humanities,false +tomy,newsmast.social,Physics,physics,false +tomy,newsmast.social,Science,science,false +tomy,newsmast.social,Space,space,false +tomy,newsmast.social,Philosophy,philosophy,true +Anneliese,newsmast.social,Science,science,false +Anneliese,newsmast.social,Social Sciences,social_sciences,false +GiuliaTranchina,newsmast.social,Humanities,humanities,false +GiuliaTranchina,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false +GiuliaTranchina,newsmast.social,Law & Justice,law_justice,false +GiuliaTranchina,newsmast.social,Poverty & Inequality,poverty_inequality,false +Iyad_Abumoghli,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false +Iyad_Abumoghli,newsmast.social,Climate change,climate_change,false +Iyad_Abumoghli,newsmast.social,Law & Justice,law_justice,false +Iyad_Abumoghli,newsmast.social,Photography,photography,false +Iyad_Abumoghli,newsmast.social,Science,science,false +Iyad_Abumoghli,newsmast.social,Space,space,false +Iyad_Abumoghli,newsmast.social,Environment,environment,true +aliegilbert,newsmast.social,Breaking News,breaking_news,true +Tarden7,newsmast.social,Breaking News,breaking_news,false +Tarden7,newsmast.social,Humour,humour,false +Tarden7,newsmast.social,Movies,movies,false +Tarden7,newsmast.social,Music,music,false +Tarden7,newsmast.social,Nature & Wildlife,nature_wildlife,false +Tarden7,newsmast.social,Journalism & Comment,news_comment_data,false +Tarden7,newsmast.social,Photography,photography,false +Tarden7,newsmast.social,Football,football,true +LynnNanos,newsmast.social,Government & Policy,government_policy,false +ScharSchool,newsmast.social,Government & Policy,government_policy,true +LynnNanos,newsmast.social,Law & Justice,law_justice,false +LynnNanos,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false +WildCard,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,true +guzz,newsmast.social,Weather,weather,false +guzz,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false +guzz,newsmast.social,Academia & Research,academia_research,false +guzz,newsmast.social,Markets & Finance,markets_finance,false +guzz,newsmast.social,AI,ai,false +guzz,newsmast.social,Biology,biology,false +guzz,newsmast.social,Mathematics,mathematics,false +lawyer,newsmast.social,History,history,false +lawyer,newsmast.social,Humanities,humanities,false +lawyer,newsmast.social,Humour,humour,false +guzz,newsmast.social,Physics,physics,false +guzz,newsmast.social,Architecture & Design,architecture_design,false +guzz,newsmast.social,Performing Arts,performing_arts,false +Anneliese,newsmast.social,Environment,environment,true +lawyer,newsmast.social,Immigrants Rights,immigrants_rights,false +ScharSchool,newsmast.social,Activism & Civil Rights,activism_civil_rights,false +ScharSchool,newsmast.social,AI,ai,false +ScharSchool,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false +ScharSchool,newsmast.social,Biology,biology,false +ScharSchool,newsmast.social,Black Voices,black_voices,false +ScharSchool,newsmast.social,Breaking News,breaking_news,false +ScharSchool,newsmast.social,Business,business,false +guzz,newsmast.social,TV & Radio,tv_radio,false +ScharSchool,newsmast.social,Climate change,climate_change,false +guzz,newsmast.social,Sport,sport,false +guzz,newsmast.social,US Sport,us_sport,false +guzz,newsmast.social,Humour,humour,false +ScharSchool,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +ScharSchool,newsmast.social,Disabled Voices,disabled_voices,false +ScharSchool,newsmast.social,Energy & Pollution,energy_pollution,false +ScharSchool,newsmast.social,Engineering,engineering,false +ScharSchool,newsmast.social,Environment,environment,false +sean,newsmast.social,Journalism & Comment,news_comment_data,true +ScharSchool,newsmast.social,Healthcare,healthcare,false +ScharSchool,newsmast.social,Immigrants Rights,immigrants_rights,false +ScharSchool,newsmast.social,Indigenous Peoples,indigenous_peoples,false +ScharSchool,newsmast.social,Poverty & Inequality,poverty_inequality,false +jsit,newsmast.social,Journalism & Comment,news_comment_data,false +ScharSchool,newsmast.social,Law & Justice,law_justice,false +ScharSchool,newsmast.social,LGBTQ+,lgbtq,false +ScharSchool,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false +ScharSchool,newsmast.social,Journalism & Comment,news_comment_data,false +ScharSchool,newsmast.social,Politics,politics,false +markrubbo,newsmast.social,Healthcare,healthcare,false +eannac,newsmast.social,Government & Policy,government_policy,false +markrubbo,newsmast.social,Law & Justice,law_justice,false +Drizzleanddip,newsmast.social,Books & Literature,books_literature,false +Drizzleanddip,newsmast.social,Breaking News,breaking_news,false +Drizzleanddip,newsmast.social,Creative Arts,creative_arts,false +ScharSchool,newsmast.social,Science,science,false +ScharSchool,newsmast.social,Social Sciences,social_sciences,false +ScharSchool,newsmast.social,Space,space,false +ScharSchool,newsmast.social,Technology,technology,false +Drizzleanddip,newsmast.social,Environment,environment,false +ScharSchool,newsmast.social,Women’s Voices,women_voices,false +ScharSchool,newsmast.social,Workers Rights,workers_rights,false +Drizzleanddip,newsmast.social,Movies,movies,false +Drizzleanddip,newsmast.social,Photography,photography,false +lawyer,newsmast.social,Indigenous Peoples,indigenous_peoples,false +Drizzleanddip,newsmast.social,Travel,travel,false +Drizzleanddip,newsmast.social,Visual Arts,visual_arts,false +Drizzleanddip,newsmast.social,Food & Drink,food_drink,true +dawnie,newsmast.social,Breaking News,breaking_news,false +WildCard,newsmast.social,Climate change,climate_change,false +WildCard,newsmast.social,Environment,environment,false +dawnie,newsmast.social,Creative Arts,creative_arts,false +dawnie,newsmast.social,Food & Drink,food_drink,false +dawnie,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false +dawnie,newsmast.social,Pets,pets,false +dawnie,newsmast.social,Puzzles,puzzles,false +dawnie,newsmast.social,Nature & Wildlife,nature_wildlife,true +markrubbo,newsmast.social,Politics,politics,false +vespula,newsmast.social,Space,space,false +rebarkable,newsmast.social,Biology,biology,false +rebarkable,newsmast.social,Environment,environment,false +rebarkable,newsmast.social,Food & Drink,food_drink,false +rebarkable,newsmast.social,Science,science,false +rebarkable,newsmast.social,Pets,pets,true +ghutchis,newsmast.social,Climate change,climate_change,false +ghutchis,newsmast.social,Creative Arts,creative_arts,false +ghutchis,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +ghutchis,newsmast.social,Energy & Pollution,energy_pollution,false +johnhawks,newsmast.social,AI,ai,false +johnhawks,newsmast.social,Science,science,false +johnhawks,newsmast.social,Social Sciences,social_sciences,false +johnhawks,newsmast.social,Space,space,false +johnhawks,newsmast.social,Biology,biology,true +avalio77,newsmast.social,AI,ai,false +avalio77,newsmast.social,Books & Literature,books_literature,false +avalio77,newsmast.social,Climate change,climate_change,false +avalio77,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +avalio77,newsmast.social,Environment,environment,false +avalio77,newsmast.social,Government & Policy,government_policy,false +avalio77,newsmast.social,History,history,false +LynnNanos,newsmast.social,Social Sciences,social_sciences,true +avalio77,newsmast.social,Humanities,humanities,false +guzz,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false +avalio77,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false +avalio77,newsmast.social,Philosophy,philosophy,false +guzz,newsmast.social,Activism & Civil Rights,activism_civil_rights,false +guzz,newsmast.social,Disabled Voices,disabled_voices,false +avalio77,newsmast.social,Social Sciences,social_sciences,false +avalio77,newsmast.social,Technology,technology,false +avalio77,newsmast.social,Poverty & Inequality,poverty_inequality,true +LynnNanos,newsmast.social,Science,science,false +guzz,newsmast.social,Indigenous Peoples,indigenous_peoples,false +guzz,newsmast.social,Women’s Voices,women_voices,false +markrubbo,newsmast.social,US Politics,us_politics,false +andrzej1,newsmast.social,AI,ai,false +FemalesNFinance,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false +FemalesNFinance,newsmast.social,Journalism & Comment,news_comment_data,false +andrzej1,newsmast.social,Architecture & Design,architecture_design,false +andrzej1,newsmast.social,Books & Literature,books_literature,false +natashaklondon,newsmast.social,Nature & Wildlife,nature_wildlife,false +natashaklondon,newsmast.social,Travel,travel,false +andrzej1,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +andrzej1,newsmast.social,Humanities,humanities,false +FemalesNFinance,newsmast.social,Puzzles,puzzles,false +debgod,newsmast.social,Architecture & Design,architecture_design,false +debgod,newsmast.social,Black Voices,black_voices,false +andrzej1,newsmast.social,Science,science,false +andrzej1,newsmast.social,Social Sciences,social_sciences,false +andrzej1,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,true +debgod,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +markrubbo,newsmast.social,Government & Policy,government_policy,true +relaxedmale,newsmast.social,Journalism & Comment,news_comment_data,false +relaxedmale,newsmast.social,Philosophy,philosophy,false +relaxedmale,newsmast.social,Photography,photography,false +relaxedmale,newsmast.social,Poverty & Inequality,poverty_inequality,false +orianavmatos,newsmast.social,Physics,physics,false +relaxedmale,newsmast.social,Social Media,social_media,false +orianavmatos,newsmast.social,Workers Rights,workers_rights,false +debgod,newsmast.social,LGBTQ+,lgbtq,false +debgod,newsmast.social,Music,music,false +debgod,newsmast.social,Performing Arts,performing_arts,false +orianavmatos,newsmast.social,Humour,humour,false +debgod,newsmast.social,Social Sciences,social_sciences,false +debgod,newsmast.social,Activism & Civil Rights,activism_civil_rights,true +QasimRashid,newsmast.social,Breaking News,breaking_news,false +MetalAddicts,newsmast.social,Gaming,gaming,false +QasimRashid,newsmast.social,Government & Policy,government_policy,false +QasimRashid,newsmast.social,Journalism & Comment,news_comment_data,false +QasimRashid,newsmast.social,Politics,politics,true +MetalAddicts,newsmast.social,Movies,movies,false +MetalAddicts,newsmast.social,Performing Arts,performing_arts,false +MetalAddicts,newsmast.social,Visual Arts,visual_arts,false +MetalAddicts,newsmast.social,Music,music,true +ChrisB100,newsmast.social,Poverty & Inequality,poverty_inequality,false +ChrisB100,newsmast.social,Journalism & Comment,news_comment_data,false +relaxedmale,newsmast.social,Social Sciences,social_sciences,false +ChrisB100,newsmast.social,Weather,weather,false +ChrisB100,newsmast.social,Breaking News,breaking_news,true +relaxedmale,newsmast.social,US Politics,us_politics,false +relaxedmale,newsmast.social,Visual Arts,visual_arts,false +relaxedmale,newsmast.social,Weather,weather,false +relaxedmale,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,true +ghutchis,newsmast.social,Engineering,engineering,false +wjnewman,newsmast.social,AI,ai,false +wjnewman,newsmast.social,Climate change,climate_change,false +wjnewman,newsmast.social,Physics,physics,false +wjnewman,newsmast.social,Space,space,false +wjnewman,newsmast.social,Technology,technology,false +wjnewman,newsmast.social,Science,science,true +ghutchis,newsmast.social,Environment,environment,false +reubenwr,newsmast.social,Activism & Civil Rights,activism_civil_rights,false +reubenwr,newsmast.social,Books & Literature,books_literature,false +ghutchis,newsmast.social,Food & Drink,food_drink,false +reubenwr,newsmast.social,History,history,false +reubenwr,newsmast.social,Humanities,humanities,false +reubenwr,newsmast.social,Immigrants Rights,immigrants_rights,false +ghutchis,newsmast.social,Humour,humour,false +ghutchis,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false +ghutchis,newsmast.social,Poverty & Inequality,poverty_inequality,false +hopheim,newsmast.social,Breaking News,breaking_news,false +reubenwr,newsmast.social,Philosophy,philosophy,false +hopheim,newsmast.social,Food & Drink,food_drink,false +reubenwr,newsmast.social,Movies,movies,true +hopheim,newsmast.social,Movies,movies,false +hopheim,newsmast.social,Music,music,false +hopheim,newsmast.social,Travel,travel,false +hopheim,newsmast.social,TV & Radio,tv_radio,false +If_This_Goes_On,newsmast.social,Social Sciences,social_sciences,false +ghutchis,newsmast.social,Mathematics,mathematics,false +ghutchis,newsmast.social,Nature & Wildlife,nature_wildlife,false +ghutchis,newsmast.social,Pets,pets,false +ghutchis,newsmast.social,Physics,physics,false +ghutchis,newsmast.social,Puzzles,puzzles,false +ghutchis,newsmast.social,Science,science,false +ghutchis,newsmast.social,Space,space,false +CharityNews,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,true +CharityNews,newsmast.social,Architecture & Design,architecture_design,false +CharityNews,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false +CharityNews,newsmast.social,Books & Literature,books_literature,false +CharityNews,newsmast.social,Breaking News,breaking_news,false +guzz,newsmast.social,Climate change,climate_change,false +guzz,newsmast.social,Black Voices,black_voices,false +CharityNews,newsmast.social,Climate change,climate_change,false +CharityNews,newsmast.social,Creative Arts,creative_arts,false +eannac,newsmast.social,Politics,politics,false +guzz,newsmast.social,Immigrants Rights,immigrants_rights,false +CharityNews,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +CharityNews,newsmast.social,Energy & Pollution,energy_pollution,false +CharityNews,newsmast.social,Environment,environment,false +guzz,newsmast.social,LGBTQ+,lgbtq,false +CharityNews,newsmast.social,Food & Drink,food_drink,false +CharityNews,newsmast.social,Football,football,false +CharityNews,newsmast.social,Gaming,gaming,false +guzz,newsmast.social,Football,football,false +CharityNews,newsmast.social,History,history,false +eannac,newsmast.social,Technology,technology,false +CharityNews,newsmast.social,Humanities,humanities,false +CharityNews,newsmast.social,Humour,humour,false +CharityNews,newsmast.social,Poverty & Inequality,poverty_inequality,false +sitothebo,newsmast.social,Poverty & Inequality,poverty_inequality,false +game,newsmast.social,Breaking News,breaking_news,false +game,newsmast.social,Creative Arts,creative_arts,false +CharityNews,newsmast.social,Movies,movies,false +CharityNews,newsmast.social,Music,music,false +CharityNews,newsmast.social,Nature & Wildlife,nature_wildlife,false +CharityNews,newsmast.social,Journalism & Comment,news_comment_data,false +CharityNews,newsmast.social,Performing Arts,performing_arts,false +CharityNews,newsmast.social,Pets,pets,false +CharityNews,newsmast.social,Philosophy,philosophy,false +CharityNews,newsmast.social,Photography,photography,false +CharityNews,newsmast.social,Politics,politics,false +CharityNews,newsmast.social,Puzzles,puzzles,false +CharityNews,newsmast.social,Sport,sport,false +CharityNews,newsmast.social,Travel,travel,false +CharityNews,newsmast.social,TV & Radio,tv_radio,false +CharityNews,newsmast.social,Ukraine Invasion,ukraine_invasion,false +CharityNews,newsmast.social,Visual Arts,visual_arts,false +CharityNews,newsmast.social,Weather,weather,false +game,newsmast.social,Food & Drink,food_drink,false +dadonthemoveph,newsmast.social,Climate change,climate_change,false +Andy,newsmast.social,Ukraine Invasion,ukraine_invasion,false +game,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false +willwinter,newsmast.social,AI,ai,false +willwinter,newsmast.social,Business,business,false +game,newsmast.social,Nature & Wildlife,nature_wildlife,false +willwinter,newsmast.social,Government & Policy,government_policy,false +willwinter,newsmast.social,Technology,technology,true +Andy,newsmast.social,Journalism & Comment,news_comment_data,false +KieranRose,newsmast.social,Activism & Civil Rights,activism_civil_rights,false +KieranRose,newsmast.social,Black Voices,black_voices,false +game,newsmast.social,Journalism & Comment,news_comment_data,false +KieranRose,newsmast.social,Poverty & Inequality,poverty_inequality,false +KieranRose,newsmast.social,LGBTQ+,lgbtq,false +game,newsmast.social,Pets,pets,false +KieranRose,newsmast.social,Social Sciences,social_sciences,false +KieranRose,newsmast.social,Disabled Voices,disabled_voices,true +game,newsmast.social,Puzzles,puzzles,false +game,newsmast.social,Social Media,social_media,false +game,newsmast.social,Travel,travel,false +game,newsmast.social,Ukraine Invasion,ukraine_invasion,false +game,newsmast.social,Weather,weather,false +game,newsmast.social,Humour,humour,true +fpricejr,newsmast.social,Activism & Civil Rights,activism_civil_rights,false +fpricejr,newsmast.social,AI,ai,false +fpricejr,newsmast.social,Breaking News,breaking_news,false +eannac,newsmast.social,US Politics,us_politics,false +fpricejr,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +bobbymcd,newsmast.social,Breaking News,breaking_news,false +fpricejr,newsmast.social,Football,football,false +fpricejr,newsmast.social,Government & Policy,government_policy,false +fpricejr,newsmast.social,History,history,false +bobbymcd,newsmast.social,Climate change,climate_change,false +fpricejr,newsmast.social,Humanities,humanities,false +fpricejr,newsmast.social,Poverty & Inequality,poverty_inequality,false +bobbymcd,newsmast.social,Energy & Pollution,energy_pollution,false +fpricejr,newsmast.social,Law & Justice,law_justice,false +bobbymcd,newsmast.social,Mathematics,mathematics,false +fpricejr,newsmast.social,Music,music,false +fpricejr,newsmast.social,Politics,politics,false +fpricejr,newsmast.social,Social Sciences,social_sciences,false +fpricejr,newsmast.social,Sport,sport,false +fpricejr,newsmast.social,Technology,technology,false +fpricejr,newsmast.social,TV & Radio,tv_radio,false +fpricejr,newsmast.social,Journalism & Comment,news_comment_data,true +ghutchis,newsmast.social,AI,ai,false +ghutchis,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false +ghutchis,newsmast.social,Biology,biology,false +Lamech,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false +Lamech,newsmast.social,Climate change,climate_change,false +Lamech,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +Lamech,newsmast.social,Energy & Pollution,energy_pollution,false +Lamech,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false +Lamech,newsmast.social,Poverty & Inequality,poverty_inequality,false +eannac,newsmast.social,Weather,weather,false +davidrees5761,newsmast.social,Books & Literature,books_literature,false +BillSaysThis,newsmast.social,Breaking News,breaking_news,false +BillSaysThis,newsmast.social,Law & Justice,law_justice,false +BillSaysThis,newsmast.social,Politics,politics,false +BillSaysThis,newsmast.social,US Politics,us_politics,false +BillSaysThis,newsmast.social,Sport,sport,true +Lamech,newsmast.social,Environment,environment,true +mombian,newsmast.social,Activism & Civil Rights,activism_civil_rights,false +mombian,newsmast.social,Books & Literature,books_literature,false +mombian,newsmast.social,Food & Drink,food_drink,false +mweinbach,newsmast.social,AI,ai,false +mweinbach,newsmast.social,Breaking News,breaking_news,false +mweinbach,newsmast.social,Business,business,false +eannac,newsmast.social,Science,science,false +eannac,newsmast.social,Philosophy,philosophy,false +mweinbach,newsmast.social,Engineering,engineering,false +davidrees5761,newsmast.social,Music,music,false +PetsMag,newsmast.social,Science,science,false +ANT_LCFC,newsmast.social,Creative Arts,creative_arts,false +ANT_LCFC,newsmast.social,Food & Drink,food_drink,false +davidrees5761,newsmast.social,TV & Radio,tv_radio,false +ANT_LCFC,newsmast.social,Humour,humour,false +davidrees5761,newsmast.social,Visual Arts,visual_arts,false +ANT_LCFC,newsmast.social,Football,football,true +davidrees5761,newsmast.social,Movies,movies,true +mweinbach,newsmast.social,Government & Policy,government_policy,false +mweinbach,newsmast.social,Healthcare,healthcare,false +sitothebo,newsmast.social,Programming,programming,false +mweinbach,newsmast.social,Law & Justice,law_justice,false +mweinbach,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false +mweinbach,newsmast.social,Journalism & Comment,news_comment_data,false +desire2undrstnd,newsmast.social,AI,ai,false +mweinbach,newsmast.social,Physics,physics,false +mweinbach,newsmast.social,Politics,politics,false +desire2undrstnd,newsmast.social,Football,football,false +tderyugina,newsmast.social,Climate change,climate_change,false +desire2undrstnd,newsmast.social,Humour,humour,false +desire2undrstnd,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false +tderyugina,newsmast.social,Energy & Pollution,energy_pollution,false +tderyugina,newsmast.social,Environment,environment,false +desire2undrstnd,newsmast.social,US Sport,us_sport,false +desire2undrstnd,newsmast.social,Technology,technology,true +sitothebo,newsmast.social,Social Media,social_media,false +sitothebo,newsmast.social,Technology,technology,false +tderyugina,newsmast.social,Ukraine Invasion,ukraine_invasion,false +orianavmatos,newsmast.social,Puzzles,puzzles,false +mweinbach,newsmast.social,Science,science,false +mweinbach,newsmast.social,Social Sciences,social_sciences,false +mweinbach,newsmast.social,Space,space,false +mweinbach,newsmast.social,Weather,weather,false +mweinbach,newsmast.social,Technology,technology,true +mombian,newsmast.social,History,history,false +vespula,newsmast.social,Technology,technology,false +GiuliaTranchina,newsmast.social,Social Sciences,social_sciences,false +mombian,newsmast.social,Women’s Voices,women_voices,false +mombian,newsmast.social,LGBTQ+,lgbtq,true +GiuliaTranchina,newsmast.social,Democracy & Human Rights,democracy_human_rights,true +sas_test,newsmast.social,Breaking News,breaking_news,false +PetsMag,newsmast.social,Physics,physics,false +PetsMag,newsmast.social,Programming,programming,false +PetsMag,newsmast.social,Puzzles,puzzles,false +PlantInitiative,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false +ShaggyShepherd,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false +ShaggyShepherd,newsmast.social,Immigrants Rights,immigrants_rights,false +PetsMag,newsmast.social,Social Media,social_media,false +PetsMag,newsmast.social,Space,space,false +ShaggyShepherd,newsmast.social,Social Sciences,social_sciences,false +PetsMag,newsmast.social,Technology,technology,false +ShaggyShepherd,newsmast.social,Books & Literature,books_literature,true +PlantInitiative,newsmast.social,Climate change,climate_change,false +PlantInitiative,newsmast.social,Energy & Pollution,energy_pollution,false +PetsMag,newsmast.social,Travel,travel,false +PetsMag,newsmast.social,TV & Radio,tv_radio,false +PetsMag,newsmast.social,Ukraine Invasion,ukraine_invasion,false +PetsMag,newsmast.social,Visual Arts,visual_arts,false +ghutchis,newsmast.social,Technology,technology,false +ghutchis,newsmast.social,Travel,travel,false +PetsMag,newsmast.social,Weather,weather,false +vespula,newsmast.social,AI,ai,true +ghutchis,newsmast.social,Chemistry,chemistry,true +sas_test,newsmast.social,Social Media,social_media,false +sas_test,newsmast.social,Ukraine Invasion,ukraine_invasion,false +sas_test,newsmast.social,Weather,weather,false +PlantInitiative,newsmast.social,Environment,environment,true +lawyer,newsmast.social,LGBTQ+,lgbtq,false +lawyer,newsmast.social,Markets & Finance,markets_finance,false +lawyer,newsmast.social,Movies,movies,false +jeremygodwin,newsmast.social,Space,space,false +dadonthemoveph,newsmast.social,Indigenous Peoples,indigenous_peoples,false +dadonthemoveph,newsmast.social,Philosophy,philosophy,false +artek,newsmast.social,Biology,biology,false +artek,newsmast.social,Breaking News,breaking_news,false +artek,newsmast.social,Chemistry,chemistry,false +artek,newsmast.social,Engineering,engineering,false +artek,newsmast.social,Mathematics,mathematics,false +artek,newsmast.social,Physics,physics,false +artek,newsmast.social,Space,space,false +artek,newsmast.social,Science,science,true +zinmoe,newsmast.social,Breaking News,breaking_news,false +zinmoe,newsmast.social,Politics,politics,false +zinmoe,newsmast.social,Ukraine Invasion,ukraine_invasion,false +zinmoe,newsmast.social,Weather,weather,false +zinmoe,newsmast.social,Journalism & Comment,news_comment_data,true +newsmast,newsmast.social,Music,music,false +wdshow,newsmast.social,Breaking News,breaking_news,false +eannac,newsmast.social,Law & Justice,law_justice,false +eannac,newsmast.social,Business,business,true +LawyerSchiff,newsmast.social,Social Sciences,social_sciences,false +wdshow,newsmast.social,Government & Policy,government_policy,false +wdshow,newsmast.social,Healthcare,healthcare,false +wdshow,newsmast.social,Law & Justice,law_justice,false +wdshow,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false +Thiha,newsmast.social,Architecture & Design,architecture_design,false +newsmast,newsmast.social,Nature & Wildlife,nature_wildlife,false +Thiha,newsmast.social,Creative Arts,creative_arts,false +LawyerSchiff,newsmast.social,Space,space,false +Thiha,newsmast.social,Food & Drink,food_drink,false +Thiha,newsmast.social,Football,football,false +Thiha,newsmast.social,Gaming,gaming,false +Thiha,newsmast.social,Humour,humour,false +LawyerSchiff,newsmast.social,Travel,travel,false +Thiha,newsmast.social,Movies,movies,false +Thiha,newsmast.social,Music,music,false +Thiha,newsmast.social,Nature & Wildlife,nature_wildlife,false +Thiha,newsmast.social,Journalism & Comment,news_comment_data,false +Thiha,newsmast.social,Performing Arts,performing_arts,false +Thiha,newsmast.social,Pets,pets,false +Thiha,newsmast.social,Photography,photography,false +Thiha,newsmast.social,Politics,politics,false +Thiha,newsmast.social,Puzzles,puzzles,false +Thiha,newsmast.social,Social Sciences,social_sciences,false +Thiha,newsmast.social,Sport,sport,false +Thiha,newsmast.social,Travel,travel,false +Thiha,newsmast.social,TV & Radio,tv_radio,false +Thiha,newsmast.social,Ukraine Invasion,ukraine_invasion,false +Thiha,newsmast.social,Visual Arts,visual_arts,false +Thiha,newsmast.social,Weather,weather,false +wdshow,newsmast.social,Politics,politics,false +LawyerSchiff,newsmast.social,TV & Radio,tv_radio,false +wdshow,newsmast.social,Journalism & Comment,news_comment_data,true +ccgh,newsmast.social,Books & Literature,books_literature,false +LawyerSchiff,newsmast.social,US Politics,us_politics,false +ccgh,newsmast.social,Law & Justice,law_justice,false +ccgh,newsmast.social,Journalism & Comment,news_comment_data,false +ccgh,newsmast.social,Politics,politics,false +LawyerSchiff,newsmast.social,Visual Arts,visual_arts,false +ccgh,newsmast.social,Social Sciences,social_sciences,false +ccgh,newsmast.social,Immigrants Rights,immigrants_rights,true +LawyerSchiff,newsmast.social,Workers Rights,workers_rights,false +yangfengji,newsmast.social,Breaking News,breaking_news,false +yangfengji,newsmast.social,Humanities,humanities,false +dadonthemoveph,newsmast.social,Photography,photography,false +yangfengji,newsmast.social,Mathematics,mathematics,false +yangfengji,newsmast.social,Journalism & Comment,news_comment_data,false +yangfengji,newsmast.social,Philosophy,philosophy,false +yangfengji,newsmast.social,Programming,programming,false +yangfengji,newsmast.social,Science,science,false +yangfengji,newsmast.social,Social Sciences,social_sciences,false +yangfengji,newsmast.social,Technology,technology,false +yangfengji,newsmast.social,AI,ai,true +orianavmatos,newsmast.social,Technology,technology,false +orianavmatos,newsmast.social,Engineering,engineering,false +sitothebo,newsmast.social,Ukraine Invasion,ukraine_invasion,false +sitothebo,newsmast.social,Weather,weather,false +jayasax,newsmast.social,Activism & Civil Rights,activism_civil_rights,false +Kyaw,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false +Kyaw,newsmast.social,Breaking News,breaking_news,false +jayasax,newsmast.social,Architecture & Design,architecture_design,false +jayasax,newsmast.social,Black Voices,black_voices,false +Kyaw,newsmast.social,Climate change,climate_change,false +jayasax,newsmast.social,Books & Literature,books_literature,false +jayasax,newsmast.social,Creative Arts,creative_arts,false +Kyaw,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +Kyaw,newsmast.social,Energy & Pollution,energy_pollution,false +Kyaw,newsmast.social,Environment,environment,false +Kyaw,newsmast.social,Healthcare,healthcare,false +Kyaw,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false +Kyaw,newsmast.social,Poverty & Inequality,poverty_inequality,false +Kyaw,newsmast.social,Law & Justice,law_justice,false +Kyaw,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false +Kyaw,newsmast.social,Politics,politics,false +Kyaw,newsmast.social,AI,ai,true +Thiha,newsmast.social,AI,ai,false +Thiha,newsmast.social,Technology,technology,true +lawyer,newsmast.social,Music,music,false +lawyer,newsmast.social,Nature & Wildlife,nature_wildlife,false +lawyer,newsmast.social,Performing Arts,performing_arts,false +lawyer,newsmast.social,Pets,pets,false +lawyer,newsmast.social,Philosophy,philosophy,false +lawyer,newsmast.social,Photography,photography,false +lawyer,newsmast.social,Puzzles,puzzles,false +lawyer,newsmast.social,Travel,travel,false +lawyer,newsmast.social,TV & Radio,tv_radio,false +lawyer,newsmast.social,Visual Arts,visual_arts,false +lawyer,newsmast.social,Women’s Voices,women_voices,false +TasmanianTimes,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false +TasmanianTimes,newsmast.social,Climate change,climate_change,false +jayasax,newsmast.social,Disabled Voices,disabled_voices,false +IlCava,mastodon.uno,Humour,humour,false +jayasax,newsmast.social,Gaming,gaming,false +jayasax,newsmast.social,Humour,humour,false +jayasax,newsmast.social,Immigrants Rights,immigrants_rights,false +Kyaw,newsmast.social,Technology,technology,false +Kyaw,newsmast.social,Ukraine Invasion,ukraine_invasion,false +jayasax,newsmast.social,Indigenous Peoples,indigenous_peoples,false +Kyaw,newsmast.social,Weather,weather,false +IlCava,mastodon.uno,"Hunger, Disease & Water",hunger_disease_water,false +newsmast,newsmast.social,Performing Arts,performing_arts,false +orianavmatos,newsmast.social,AI,ai,false +Kyaw,newsmast.social,Journalism & Comment,news_comment_data,false +RossA,newsmast.social,AI,ai,false +newsmast,newsmast.social,Pets,pets,false +RossA,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false +RossA,newsmast.social,Books & Literature,books_literature,false +RossA,newsmast.social,Breaking News,breaking_news,false +akptest007,newsmast.social,Books & Literature,books_literature,false +RossA,newsmast.social,Gaming,gaming,false +RossA,newsmast.social,Humour,humour,false +OmarSakr,newsmast.social,Breaking News,breaking_news,false +RossA,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false +RossA,newsmast.social,Movies,movies,false +RossA,newsmast.social,Music,music,false +OmarSakr,newsmast.social,Movies,movies,false +OmarSakr,newsmast.social,Politics,politics,false +RossA,newsmast.social,Nature & Wildlife,nature_wildlife,false +RossA,newsmast.social,Journalism & Comment,news_comment_data,false +OmarSakr,newsmast.social,TV & Radio,tv_radio,false +ianwalker,newsmast.social,Climate change,climate_change,false +ianwalker,newsmast.social,Energy & Pollution,energy_pollution,false +RossA,newsmast.social,Performing Arts,performing_arts,false +RossA,newsmast.social,Philosophy,philosophy,false +ianwalker,newsmast.social,Science,science,false +ianwalker,newsmast.social,Social Sciences,social_sciences,false +ianwalker,newsmast.social,Space,space,false +ianwalker,newsmast.social,Environment,environment,true +OmarSakr,newsmast.social,Books & Literature,books_literature,true +RossA,newsmast.social,Photography,photography,false +RossA,newsmast.social,Puzzles,puzzles,false +Pghlesbian,newsmast.social,Environment,environment,false +RossA,newsmast.social,Science,science,false +RossA,newsmast.social,Social Media,social_media,false +RossA,newsmast.social,Social Sciences,social_sciences,false +RossA,newsmast.social,TV & Radio,tv_radio,false +RossA,newsmast.social,Weather,weather,false +S33J,newsmast.social,Books & Literature,books_literature,false +StephanHacker2,newsmast.social,Chemistry,chemistry,true +RossA,newsmast.social,Technology,technology,true +bobbymcd,newsmast.social,Weather,weather,true +orianavmatos,newsmast.social,Programming,programming,false +petroofrats,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false +joanathx,newsmast.social,Nature & Wildlife,nature_wildlife,false +petroofrats,newsmast.social,Environment,environment,false +joanathx,newsmast.social,Travel,travel,true +petroofrats,newsmast.social,Programming,programming,false +petroofrats,newsmast.social,Science,science,false +petroofrats,newsmast.social,Technology,technology,false +petroofrats,newsmast.social,Biology,biology,true +Sascha_Feldmann,newsmast.social,Chemistry,chemistry,false +Sascha_Feldmann,newsmast.social,Engineering,engineering,false +Sascha_Feldmann,newsmast.social,Physics,physics,false +Sascha_Feldmann,newsmast.social,Visual Arts,visual_arts,false +Sascha_Feldmann,newsmast.social,Science,science,true +LukaszSzulc,newsmast.social,AI,ai,false +LukaszSzulc,newsmast.social,Humanities,humanities,false +LukaszSzulc,newsmast.social,Immigrants Rights,immigrants_rights,false +LukaszSzulc,newsmast.social,Social Sciences,social_sciences,false +LukaszSzulc,newsmast.social,Technology,technology,false +LukaszSzulc,newsmast.social,Women’s Voices,women_voices,false +LukaszSzulc,newsmast.social,LGBTQ+,lgbtq,true +MotorcycleGuy,newsmast.social,Activism & Civil Rights,activism_civil_rights,false +MotorcycleGuy,newsmast.social,AI,ai,false +MotorcycleGuy,newsmast.social,Breaking News,breaking_news,false +MotorcycleGuy,newsmast.social,Business,business,false +MotorcycleGuy,newsmast.social,LGBTQ+,lgbtq,false +MotorcycleGuy,newsmast.social,Mathematics,mathematics,false +MotorcycleGuy,newsmast.social,Politics,politics,false +MotorcycleGuy,newsmast.social,Science,science,false +MotorcycleGuy,newsmast.social,Space,space,false +MotorcycleGuy,newsmast.social,Technology,technology,false +MotorcycleGuy,newsmast.social,Healthcare,healthcare,true +marianajeronimo,newsmast.social,Breaking News,breaking_news,false +marianajeronimo,newsmast.social,Environment,environment,false +marianajeronimo,newsmast.social,Journalism & Comment,news_comment_data,false +marianajeronimo,newsmast.social,Business,business,true +marianajeronimo,newsmast.social,Travel,travel,false +marianajeronimo,newsmast.social,Food & Drink,food_drink,false +marianajeronimo,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false +itdrc,newsmast.social,Business,business,false +itdrc,newsmast.social,Engineering,engineering,false +itdrc,newsmast.social,Government & Policy,government_policy,false +itdrc,newsmast.social,Humanities,humanities,false +itdrc,newsmast.social,Journalism & Comment,news_comment_data,false +itdrc,newsmast.social,Science,science,false +itdrc,newsmast.social,Technology,technology,false +itdrc,newsmast.social,Ukraine Invasion,ukraine_invasion,false +itdrc,newsmast.social,Weather,weather,false +itdrc,newsmast.social,Breaking News,breaking_news,true +pennywalker,newsmast.social,Environment,environment,true +jayasax,newsmast.social,LGBTQ+,lgbtq,false +jayasax,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false +sean,newsmast.social,Breaking News,breaking_news,false +pam_palmater,newsmast.social,Activism & Civil Rights,activism_civil_rights,false +pam_palmater,newsmast.social,Climate change,climate_change,false +pam_palmater,newsmast.social,Environment,environment,false +pam_palmater,newsmast.social,Government & Policy,government_policy,false +pam_palmater,newsmast.social,Journalism & Comment,news_comment_data,false +jayasax,newsmast.social,Movies,movies,false +Michael_E,newsmast.social,Environment,environment,false +pam_palmater,newsmast.social,Women’s Voices,women_voices,false +pam_palmater,newsmast.social,Indigenous Peoples,indigenous_peoples,true +Michael_E,newsmast.social,History,history,false +Michael_E,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false +Michael_E,newsmast.social,Philosophy,philosophy,false +Michael_E,newsmast.social,Poverty & Inequality,poverty_inequality,false +Michael_E,newsmast.social,Social Sciences,social_sciences,false +Michael_E,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,true +dltj,newsmast.social,AI,ai,false +dltj,newsmast.social,Breaking News,breaking_news,false +dltj,newsmast.social,Climate change,climate_change,false +jayasax,newsmast.social,Music,music,false +luisaropio,newsmast.social,Breaking News,breaking_news,false +jayasax,newsmast.social,Nature & Wildlife,nature_wildlife,false +jayasax,newsmast.social,Performing Arts,performing_arts,false +luisaropio,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +jayasax,newsmast.social,Pets,pets,false +luisaropio,newsmast.social,Energy & Pollution,energy_pollution,false +luisaropio,newsmast.social,Social Sciences,social_sciences,false +dltj,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +dltj,newsmast.social,Energy & Pollution,energy_pollution,false +dltj,newsmast.social,Environment,environment,false +dltj,newsmast.social,Journalism & Comment,news_comment_data,false +toyin,newsmast.social,Activism & Civil Rights,activism_civil_rights,false +dltj,newsmast.social,Science,science,false +dltj,newsmast.social,Technology,technology,true +Johnvink,newsmast.social,Climate change,climate_change,false +Johnvink,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +Johnvink,newsmast.social,Environment,environment,false +toyin,newsmast.social,Breaking News,breaking_news,false +Johnvink,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false +Johnvink,newsmast.social,Poverty & Inequality,poverty_inequality,false +Johnvink,newsmast.social,Journalism & Comment,news_comment_data,false +toyin,newsmast.social,Disabled Voices,disabled_voices,false +toyin,newsmast.social,History,history,false +Johnvink,newsmast.social,Photography,photography,true +jrmartin,newsmast.social,Creative Arts,creative_arts,false +jrmartin,newsmast.social,Social Sciences,social_sciences,false +toyin,newsmast.social,Humanities,humanities,false +NycciNellis,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +Pghlesbian,newsmast.social,Government & Policy,government_policy,false +Pghlesbian,newsmast.social,Healthcare,healthcare,false +NycciNellis,newsmast.social,Environment,environment,false +Pghlesbian,newsmast.social,Law & Justice,law_justice,false +Pghlesbian,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false +NycciNellis,newsmast.social,Government & Policy,government_policy,false +Pghlesbian,newsmast.social,Social Sciences,social_sciences,false +Pghlesbian,newsmast.social,Journalism & Comment,news_comment_data,true +lawyer,newsmast.social,Activism & Civil Rights,activism_civil_rights,false +lawyer,newsmast.social,Architecture & Design,architecture_design,false +lawyer,newsmast.social,Black Voices,black_voices,false +lawyer,newsmast.social,Books & Literature,books_literature,false +lawyer,newsmast.social,Business,business,false +NycciNellis,newsmast.social,Law & Justice,law_justice,false +NycciNellis,newsmast.social,Journalism & Comment,news_comment_data,false +NycciNellis,newsmast.social,Performing Arts,performing_arts,false +Ed_Rempel,newsmast.social,AI,ai,false +Ed_Rempel,newsmast.social,Breaking News,breaking_news,false +Ed_Rempel,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +NycciNellis,newsmast.social,Politics,politics,false +Ed_Rempel,newsmast.social,Food & Drink,food_drink,false +Ed_Rempel,newsmast.social,Government & Policy,government_policy,false +NycciNellis,newsmast.social,TV & Radio,tv_radio,false +Ed_Rempel,newsmast.social,Humour,humour,false +NycciNellis,newsmast.social,US Politics,us_politics,false +Ed_Rempel,newsmast.social,Markets & Finance,markets_finance,false +Ed_Rempel,newsmast.social,Journalism & Comment,news_comment_data,false +NycciNellis,newsmast.social,Breaking News,breaking_news,true +Ed_Rempel,newsmast.social,Politics,politics,false +toyin,newsmast.social,Immigrants Rights,immigrants_rights,false +toyin,newsmast.social,Indigenous Peoples,indigenous_peoples,false +Ed_Rempel,newsmast.social,Space,space,false +Ed_Rempel,newsmast.social,Technology,technology,false +Ed_Rempel,newsmast.social,Travel,travel,false +Ed_Rempel,newsmast.social,Business,business,true +toyin,newsmast.social,LGBTQ+,lgbtq,false +pennywalker,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false +pennywalker,newsmast.social,Books & Literature,books_literature,false +pennywalker,newsmast.social,Climate change,climate_change,false +pennywalker,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +pennywalker,newsmast.social,Energy & Pollution,energy_pollution,false +pennywalker,newsmast.social,Law & Justice,law_justice,false +pennywalker,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false +pennywalker,newsmast.social,Science,science,false +pennywalker,newsmast.social,Social Sciences,social_sciences,false +lawyer,newsmast.social,Workers Rights,workers_rights,false +rileyhBat,newsmast.social,Breaking News,breaking_news,false +newsmast,newsmast.social,Philosophy,philosophy,false +jeremygodwin,newsmast.social,Technology,technology,false +Kyaw,newsmast.social,Government & Policy,government_policy,false +rileyhBat,newsmast.social,Business,business,false +arlettecontrers,newsmast.social,AI,ai,false +arlettecontrers,newsmast.social,Journalism & Comment,news_comment_data,false +arlettecontrers,newsmast.social,Politics,politics,false +jayasax,newsmast.social,Photography,photography,false +Alastair,mastodon.me.uk,Engineering,engineering,false +fingolas,journa.host,Journalism & Comment,news_comment_data,false +deniseoberry,newsmast.social,AI,ai,false +deniseoberry,newsmast.social,Breaking News,breaking_news,false +deniseoberry,newsmast.social,Government & Policy,government_policy,false +deniseoberry,newsmast.social,Law & Justice,law_justice,false +deniseoberry,newsmast.social,Markets & Finance,markets_finance,false +deniseoberry,newsmast.social,Journalism & Comment,news_comment_data,false +sean,newsmast.social,Healthcare,healthcare,false +deniseoberry,newsmast.social,Politics,politics,false +sean,newsmast.social,Academia & Research,academia_research,false +deniseoberry,newsmast.social,Social Sciences,social_sciences,false +deniseoberry,newsmast.social,Technology,technology,false +deniseoberry,newsmast.social,Business,business,true +KevinWagar,newsmast.social,Space,space,false +KevinWagar,newsmast.social,Sport,sport,false +sean,newsmast.social,Workers Rights,workers_rights,false +KevinWagar,newsmast.social,Travel,travel,true +sean,newsmast.social,Food & Drink,food_drink,false +sean,newsmast.social,Humour,humour,false +sean,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false +sean,newsmast.social,Travel,travel,false +sean,newsmast.social,Creative Arts,creative_arts,false +rileyhBat,newsmast.social,Markets & Finance,markets_finance,false +rileyhBat,newsmast.social,Technology,technology,false +rileyhBat,newsmast.social,Engineering,engineering,true +eannac,newsmast.social,Journalism & Comment,news_comment_data,false +jayasax,newsmast.social,Puzzles,puzzles,false +jayasax,newsmast.social,Travel,travel,false +jayasax,newsmast.social,TV & Radio,tv_radio,false +sas_test,newsmast.social,Journalism & Comment,news_comment_data,true +sitothebo,newsmast.social,Breaking News,breaking_news,true +JohnnieJae,newsmast.social,Activism & Civil Rights,activism_civil_rights,false +JohnnieJae,newsmast.social,Breaking News,breaking_news,false +JohnnieJae,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +JohnnieJae,newsmast.social,Disabled Voices,disabled_voices,false +OFMagazine,newsmast.social,Breaking News,breaking_news,false +JohnnieJae,newsmast.social,Government & Policy,government_policy,false +JohnnieJae,newsmast.social,Healthcare,healthcare,false +OFMagazine,newsmast.social,History,history,false +JohnnieJae,newsmast.social,Law & Justice,law_justice,false +JohnnieJae,newsmast.social,LGBTQ+,lgbtq,false +JohnnieJae,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false +JohnnieJae,newsmast.social,Movies,movies,false +JohnnieJae,newsmast.social,Journalism & Comment,news_comment_data,false +JohnnieJae,newsmast.social,Politics,politics,false +OFMagazine,newsmast.social,Music,music,false +JohnnieJae,newsmast.social,TV & Radio,tv_radio,false +JohnnieJae,newsmast.social,Indigenous Peoples,indigenous_peoples,true +OFMagazine,newsmast.social,Social Media,social_media,false +OFMagazine,newsmast.social,Journalism & Comment,news_comment_data,true +If_This_Goes_On,newsmast.social,TV & Radio,tv_radio,false +RachelBranson,newsmast.social,Biology,biology,false +RachelBranson,newsmast.social,Business,business,false +RachelBranson,newsmast.social,Creative Arts,creative_arts,false +Fitwirr,newsmast.social,Business,business,false +Fitwirr,newsmast.social,Food & Drink,food_drink,false +Fitwirr,newsmast.social,Technology,technology,false +Fitwirr,newsmast.social,Travel,travel,false +RachelBranson,newsmast.social,Food & Drink,food_drink,false +RachelBranson,newsmast.social,Nature & Wildlife,nature_wildlife,false +KittyInTheMitty,newsmast.social,Disabled Voices,disabled_voices,false +KittyInTheMitty,newsmast.social,Humanities,humanities,false +KittyInTheMitty,newsmast.social,TV & Radio,tv_radio,false +KittyInTheMitty,newsmast.social,Pets,pets,false +RachelBranson,newsmast.social,Travel,travel,false +maketheswitchAU,newsmast.social,Politics,politics,false +maketheswitchAU,newsmast.social,Business,business,false +maketheswitchAU,newsmast.social,Photography,photography,false +maketheswitchAU,newsmast.social,Sport,sport,false +maketheswitchAU,newsmast.social,Creative Arts,creative_arts,false +chrysalismama,newsmast.social,Activism & Civil Rights,activism_civil_rights,false +chrysalismama,newsmast.social,Books & Literature,books_literature,false +chrysalismama,newsmast.social,Nature & Wildlife,nature_wildlife,false +chrysalismama,newsmast.social,Journalism & Comment,news_comment_data,false +chrysalismama,newsmast.social,Women’s Voices,women_voices,false +chrysalismama,newsmast.social,LGBTQ+,lgbtq,true +maketheswitchAU,newsmast.social,Food & Drink,food_drink,false +maketheswitchAU,newsmast.social,Pets,pets,false +maketheswitchAU,newsmast.social,Nature & Wildlife,nature_wildlife,false +maketheswitchAU,newsmast.social,Travel,travel,false +sustainabilityx,newsmast.social,AI,ai,false +sustainabilityx,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false +sustainabilityx,newsmast.social,Breaking News,breaking_news,false +sustainabilityx,newsmast.social,Business,business,false +Kyaw,newsmast.social,US Politics,us_politics,false +eannac,newsmast.social,History,history,false +eannac,newsmast.social,Energy & Pollution,energy_pollution,false +sean,newsmast.social,Law & Justice,law_justice,false +sustainabilityx,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +sustainabilityx,newsmast.social,Energy & Pollution,energy_pollution,false +sustainabilityx,newsmast.social,Environment,environment,false +eannac,newsmast.social,Social Media,social_media,false +jayasax,newsmast.social,Visual Arts,visual_arts,false +jayasax,newsmast.social,Women’s Voices,women_voices,false +jayasax,newsmast.social,Food & Drink,food_drink,true +sustainabilityx,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false +SithuBo,newsmast.social,Journalism & Comment,news_comment_data,false +sustainabilityx,newsmast.social,Poverty & Inequality,poverty_inequality,false +SithuBo,newsmast.social,Physics,physics,false +sustainabilityx,newsmast.social,Markets & Finance,markets_finance,false +sustainabilityx,newsmast.social,Journalism & Comment,news_comment_data,false +SithuBo,newsmast.social,Science,science,false +sustainabilityx,newsmast.social,Politics,politics,false +SithuBo,newsmast.social,Social Media,social_media,false +blurredbylines,newsmast.social,Activism & Civil Rights,activism_civil_rights,false +blurredbylines,newsmast.social,Black Voices,black_voices,false +blurredbylines,newsmast.social,Disabled Voices,disabled_voices,false +sustainabilityx,newsmast.social,Technology,technology,false +sustainabilityx,newsmast.social,Ukraine Invasion,ukraine_invasion,false +blurredbylines,newsmast.social,Government & Policy,government_policy,false +sustainabilityx,newsmast.social,Weather,weather,false +blurredbylines,newsmast.social,Humanities,humanities,false +sustainabilityx,newsmast.social,Climate change,climate_change,true +blurredbylines,newsmast.social,Immigrants Rights,immigrants_rights,false +blurredbylines,newsmast.social,Indigenous Peoples,indigenous_peoples,false +blurredbylines,newsmast.social,Law & Justice,law_justice,false +blurredbylines,newsmast.social,Journalism & Comment,news_comment_data,false +blurredbylines,newsmast.social,Politics,politics,false +brentnatzle,newsmast.social,TV & Radio,tv_radio,false +blurredbylines,newsmast.social,Social Sciences,social_sciences,false +blurredbylines,newsmast.social,Women’s Voices,women_voices,false +blurredbylines,newsmast.social,LGBTQ+,lgbtq,true +wytham_woods,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false +DrHannahBB,newsmast.social,Activism & Civil Rights,activism_civil_rights,false +DrHannahBB,newsmast.social,Government & Policy,government_policy,false +DrHannahBB,newsmast.social,Healthcare,healthcare,false +DrHannahBB,newsmast.social,LGBTQ+,lgbtq,false +DrHannahBB,newsmast.social,Music,music,false +DrHannahBB,newsmast.social,Journalism & Comment,news_comment_data,false +DrHannahBB,newsmast.social,Politics,politics,false +DrHannahBB,newsmast.social,Women’s Voices,women_voices,false +DrHannahBB,newsmast.social,Disabled Voices,disabled_voices,true +wytham_woods,newsmast.social,Biology,biology,false +wytham_woods,newsmast.social,Climate change,climate_change,false +wytham_woods,newsmast.social,Photography,photography,false +wytham_woods,newsmast.social,Science,science,false +wytham_woods,newsmast.social,Environment,environment,true +Paxivorian,newsmast.social,AI,ai,false +3arabawy,newsmast.social,Activism & Civil Rights,activism_civil_rights,false +3arabawy,newsmast.social,Books & Literature,books_literature,false +3arabawy,newsmast.social,Breaking News,breaking_news,false +3arabawy,newsmast.social,Government & Policy,government_policy,false +3arabawy,newsmast.social,History,history,false +3arabawy,newsmast.social,Humanities,humanities,false +3arabawy,newsmast.social,Immigrants Rights,immigrants_rights,false +3arabawy,newsmast.social,Philosophy,philosophy,false +3arabawy,newsmast.social,Politics,politics,false +Paxivorian,newsmast.social,Biology,biology,false +3arabawy,newsmast.social,Social Sciences,social_sciences,false +3arabawy,newsmast.social,Workers Rights,workers_rights,false +3arabawy,newsmast.social,Journalism & Comment,news_comment_data,true +Paxivorian,newsmast.social,Books & Literature,books_literature,false +Paxivorian,newsmast.social,Breaking News,breaking_news,false +Paxivorian,newsmast.social,Chemistry,chemistry,false +Paxivorian,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +Paxivorian,newsmast.social,Engineering,engineering,false +Paxivorian,newsmast.social,Gaming,gaming,false +Paxivorian,newsmast.social,History,history,false +Paxivorian,newsmast.social,Humanities,humanities,false +Paxivorian,newsmast.social,Mathematics,mathematics,false +ilovefilm,newsmast.social,Social Sciences,social_sciences,false +ilovefilm,newsmast.social,Space,space,false +Accessiology,newsmast.social,AI,ai,false +Accessiology,newsmast.social,Architecture & Design,architecture_design,false +Accessiology,newsmast.social,Nature & Wildlife,nature_wildlife,false +Accessiology,newsmast.social,Technology,technology,false +Accessiology,newsmast.social,Travel,travel,false +Accessiology,newsmast.social,Disabled Voices,disabled_voices,true +ilovefilm,newsmast.social,Technology,technology,false +ilovefilm,newsmast.social,TV & Radio,tv_radio,false +ilovefilm,newsmast.social,Women’s Voices,women_voices,false +S33J,newsmast.social,Humanities,humanities,false +Dhiraj,newsmast.social,Breaking News,breaking_news,false +PowellsParadigm,newsmast.social,Energy & Pollution,energy_pollution,false +Dhiraj,newsmast.social,Government & Policy,government_policy,false +Dhiraj,newsmast.social,Poverty & Inequality,poverty_inequality,false +Dhiraj,newsmast.social,Markets & Finance,markets_finance,false +Dhiraj,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false +Dhiraj,newsmast.social,Politics,politics,false +Dhiraj,newsmast.social,Weather,weather,false +Dhiraj,newsmast.social,Energy & Pollution,energy_pollution,true +Brian_J_Keane,newsmast.social,Activism & Civil Rights,activism_civil_rights,false +Brian_J_Keane,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false +Brian_J_Keane,newsmast.social,Climate change,climate_change,false +Brian_J_Keane,newsmast.social,Indigenous Peoples,indigenous_peoples,true +eannac,newsmast.social,Social Sciences,social_sciences,false +jessa,newsmast.social,Books & Literature,books_literature,false +arg02,newsmast.social,Biology,biology,false +arg02,newsmast.social,Breaking News,breaking_news,false +arg02,newsmast.social,Chemistry,chemistry,false +arg02,newsmast.social,Climate change,climate_change,false +eannac,newsmast.social,Climate change,climate_change,false +sean,newsmast.social,Philosophy,philosophy,false +arg02,newsmast.social,Engineering,engineering,false +arg02,newsmast.social,Environment,environment,false +sean,newsmast.social,History,history,false +arg02,newsmast.social,Journalism & Comment,news_comment_data,false +arg02,newsmast.social,Politics,politics,false +sean,newsmast.social,Social Sciences,social_sciences,false +sean,newsmast.social,Humanities,humanities,false +arg02,newsmast.social,Science,science,false +arg02,newsmast.social,Social Sciences,social_sciences,false +arg02,newsmast.social,Space,space,false +arg02,newsmast.social,Technology,technology,false +arg02,newsmast.social,Ukraine Invasion,ukraine_invasion,false +arg02,newsmast.social,Weather,weather,false +eannac,newsmast.social,Academia & Research,academia_research,false +CELSET,newsmast.social,Breaking News,breaking_news,false +jessa,newsmast.social,Chemistry,chemistry,false +jessa,newsmast.social,Creative Arts,creative_arts,false +jessa,newsmast.social,Disabled Voices,disabled_voices,false +chidreams,newsmast.social,Gaming,gaming,false +jessa,newsmast.social,Engineering,engineering,false +PriyankaJoshi,newsmast.social,Books & Literature,books_literature,false +PriyankaJoshi,newsmast.social,Business,business,false +PriyankaJoshi,newsmast.social,Philosophy,philosophy,false +CELSET,newsmast.social,Law & Justice,law_justice,false +toyin,newsmast.social,Journalism & Comment,news_comment_data,false +jessa,newsmast.social,Gaming,gaming,false +jessa,newsmast.social,History,history,false +jessa,newsmast.social,Humanities,humanities,false +jessa,newsmast.social,Humour,humour,false +jessa,newsmast.social,LGBTQ+,lgbtq,false +jessa,newsmast.social,Performing Arts,performing_arts,false +toyin,newsmast.social,Philosophy,philosophy,false +AlexShvartsman,newsmast.social,AI,ai,false +AlexShvartsman,newsmast.social,Breaking News,breaking_news,false +AlexShvartsman,newsmast.social,Humanities,humanities,false +AlexShvartsman,newsmast.social,Technology,technology,false +AlexShvartsman,newsmast.social,TV & Radio,tv_radio,false +AlexShvartsman,newsmast.social,Ukraine Invasion,ukraine_invasion,false +AlexShvartsman,newsmast.social,Books & Literature,books_literature,true +jessa,newsmast.social,Puzzles,puzzles,false +jessa,newsmast.social,Science,science,false +jessa,newsmast.social,Social Sciences,social_sciences,false +jessa,newsmast.social,Women’s Voices,women_voices,false +jessa,newsmast.social,Workers Rights,workers_rights,false +toyin,newsmast.social,Social Media,social_media,false +toyin,newsmast.social,Social Sciences,social_sciences,false +clairejuliaart,newsmast.social,Women’s Voices,women_voices,false +toyin,newsmast.social,Women’s Voices,women_voices,false +arlettecontrers,newsmast.social,Poverty & Inequality,poverty_inequality,true +toyin,newsmast.social,Black Voices,black_voices,true +erica,newsmast.social,Books & Literature,books_literature,false +erica,newsmast.social,Breaking News,breaking_news,false +erica,newsmast.social,Humanities,humanities,false +erica,newsmast.social,Music,music,false +erica,newsmast.social,Politics,politics,false +erica,newsmast.social,TV & Radio,tv_radio,false +erica,newsmast.social,Ukraine Invasion,ukraine_invasion,false +erica,newsmast.social,Weather,weather,false +erica,newsmast.social,Journalism & Comment,news_comment_data,true +dadonthemoveph,newsmast.social,Biology,biology,false +dadonthemoveph,newsmast.social,Visual Arts,visual_arts,false +brentnatzle,newsmast.social,Business,business,false +brentnatzle,newsmast.social,Government & Policy,government_policy,false +brentnatzle,newsmast.social,Movies,movies,false +brentnatzle,newsmast.social,Music,music,false +brentnatzle,newsmast.social,Journalism & Comment,news_comment_data,false +brentnatzle,newsmast.social,Politics,politics,false +brentnatzle,newsmast.social,Breaking News,breaking_news,true +CELSET,newsmast.social,Politics,politics,false +CELSET,newsmast.social,US Politics,us_politics,false +SJC,newsmast.social,Black Voices,black_voices,false +SJC,newsmast.social,Business,business,false +PowellsParadigm,newsmast.social,AI,ai,false +PowellsParadigm,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false +SJC,newsmast.social,Indigenous Peoples,indigenous_peoples,false +SJC,newsmast.social,Poverty & Inequality,poverty_inequality,false +SJC,newsmast.social,LGBTQ+,lgbtq,false +SJC,newsmast.social,Women’s Voices,women_voices,false +SJC,newsmast.social,Journalism & Comment,news_comment_data,true +PowellsParadigm,newsmast.social,Climate change,climate_change,false +PowellsParadigm,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +PowellsParadigm,newsmast.social,Environment,environment,false +PowellsParadigm,newsmast.social,History,history,false +ilovefilm,newsmast.social,AI,ai,false +ilovefilm,newsmast.social,Climate change,climate_change,false +ilovefilm,newsmast.social,Gaming,gaming,false +ilovefilm,newsmast.social,Healthcare,healthcare,false +ilovefilm,newsmast.social,History,history,false +ilovefilm,newsmast.social,LGBTQ+,lgbtq,false +ilovefilm,newsmast.social,Movies,movies,false +ilovefilm,newsmast.social,Music,music,false +ilovefilm,newsmast.social,Philosophy,philosophy,false +ilovefilm,newsmast.social,Photography,photography,false +ilovefilm,newsmast.social,Physics,physics,false +ilovefilm,newsmast.social,Science,science,false +ilovefilm,newsmast.social,Activism & Civil Rights,activism_civil_rights,true +newsmast,newsmast.social,Photography,photography,false +kalhan,newsmast.social,Law & Justice,law_justice,true +eannac,newsmast.social,Space,space,false +fingolas,journa.host,Physics,physics,false +SithuBo,newsmast.social,Space,space,false +LeanneKeddie,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false +LeanneKeddie,newsmast.social,Breaking News,breaking_news,false +LeanneKeddie,newsmast.social,Environment,environment,false +LeanneKeddie,newsmast.social,Social Sciences,social_sciences,false +LeanneKeddie,newsmast.social,Weather,weather,false +sean,newsmast.social,Nature & Wildlife,nature_wildlife,false +sean,newsmast.social,Pets,pets,false +LeanneKeddie,newsmast.social,Climate change,climate_change,true +SithuBo,newsmast.social,Sport,sport,false +travelpast50,newsmast.social,Books & Literature,books_literature,false +SithuBo,newsmast.social,Ukraine Invasion,ukraine_invasion,false +travelpast50,newsmast.social,History,history,false +travelpast50,newsmast.social,Journalism & Comment,news_comment_data,false +travelpast50,newsmast.social,Photography,photography,false +travelpast50,newsmast.social,Visual Arts,visual_arts,false +travelpast50,newsmast.social,Travel,travel,true +fingolas,journa.host,Politics,politics,false +askchefdennis,newsmast.social,AI,ai,false +askchefdennis,newsmast.social,Food & Drink,food_drink,false +Serious_Feather,newsmast.social,Science,science,false +Krusti,newsmast.social,AI,ai,false +Krusti,newsmast.social,Creative Arts,creative_arts,false +Krusti,newsmast.social,Engineering,engineering,false +kalhan,newsmast.social,Activism & Civil Rights,activism_civil_rights,false +kalhan,newsmast.social,AI,ai,false +kalhan,newsmast.social,Books & Literature,books_literature,false +Krusti,newsmast.social,Food & Drink,food_drink,false +kalhan,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +Krusti,newsmast.social,Humour,humour,false +kalhan,newsmast.social,Government & Policy,government_policy,false +kalhan,newsmast.social,History,history,false +Serious_Feather,newsmast.social,Space,space,false +kalhan,newsmast.social,Humanities,humanities,false +kalhan,newsmast.social,Immigrants Rights,immigrants_rights,false +Krusti,newsmast.social,Nature & Wildlife,nature_wildlife,false +kalhan,newsmast.social,Journalism & Comment,news_comment_data,false +kalhan,newsmast.social,Politics,politics,false +If_This_Goes_On,newsmast.social,Visual Arts,visual_arts,false +If_This_Goes_On,newsmast.social,Women’s Voices,women_voices,false +kalhan,newsmast.social,Social Sciences,social_sciences,false +kalhan,newsmast.social,Technology,technology,false +CELSET,newsmast.social,Ukraine Invasion,ukraine_invasion,false +CELSET,newsmast.social,Social Media,social_media,false +CELSET,newsmast.social,Weather,weather,false +Karia,newsmast.social,Pets,pets,false +Karia,newsmast.social,Philosophy,philosophy,false +jackiealpers,newsmast.social,Books & Literature,books_literature,false +jackiealpers,newsmast.social,History,history,false +jackiealpers,newsmast.social,Photography,photography,false +jackiealpers,newsmast.social,Visual Arts,visual_arts,false +jackiealpers,newsmast.social,Food & Drink,food_drink,true +maketheswitchAU,newsmast.social,Weather,weather,false +samlee,newsmast.social,Breaking News,breaking_news,false +samlee,newsmast.social,Gaming,gaming,false +samlee,newsmast.social,Movies,movies,false +samlee,newsmast.social,Music,music,false +samlee,newsmast.social,Sport,sport,false +samlee,newsmast.social,Football,football,true +maketheswitchAU,newsmast.social,Poverty & Inequality,poverty_inequality,false +maketheswitchAU,newsmast.social,Government & Policy,government_policy,false +maketheswitchAU,newsmast.social,Healthcare,healthcare,false +maketheswitchAU,newsmast.social,Law & Justice,law_justice,false +maketheswitchAU,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false +maketheswitchAU,newsmast.social,Environment,environment,false +Cam_Walker,newsmast.social,Activism & Civil Rights,activism_civil_rights,false +Cam_Walker,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false +Cam_Walker,newsmast.social,Breaking News,breaking_news,false +Cam_Walker,newsmast.social,Climate change,climate_change,false +Cam_Walker,newsmast.social,Energy & Pollution,energy_pollution,false +Cam_Walker,newsmast.social,Government & Policy,government_policy,false +Cam_Walker,newsmast.social,Indigenous Peoples,indigenous_peoples,false +Cam_Walker,newsmast.social,Science,science,false +Cam_Walker,newsmast.social,Ukraine Invasion,ukraine_invasion,false +Cam_Walker,newsmast.social,Workers Rights,workers_rights,false +Cam_Walker,newsmast.social,Environment,environment,true +maketheswitchAU,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false +maketheswitchAU,newsmast.social,Climate change,climate_change,false +maketheswitchAU,newsmast.social,Energy & Pollution,energy_pollution,false +SuperScienceGrl,newsmast.social,AI,ai,false +SuperScienceGrl,newsmast.social,Science,science,false +SuperScienceGrl,newsmast.social,Technology,technology,false +SuperScienceGrl,newsmast.social,Chemistry,chemistry,true +maketheswitchAU,newsmast.social,Technology,technology,false +maketheswitchAU,newsmast.social,Science,science,false +maketheswitchAU,newsmast.social,Biology,biology,false +maketheswitchAU,newsmast.social,Chemistry,chemistry,false +maketheswitchAU,newsmast.social,Engineering,engineering,false +maketheswitchAU,newsmast.social,Space,space,false +maketheswitchAU,newsmast.social,Books & Literature,books_literature,false +maketheswitchAU,newsmast.social,History,history,false +maketheswitchAU,newsmast.social,Architecture & Design,architecture_design,false +maketheswitchAU,newsmast.social,Gaming,gaming,false +maketheswitchAU,newsmast.social,Music,music,false +maketheswitchAU,newsmast.social,Performing Arts,performing_arts,false +newsmast,newsmast.social,Physics,physics,false +newsmast,newsmast.social,Politics,politics,false +eannac,newsmast.social,AI,ai,false +dadonthemoveph,newsmast.social,Space,space,false +SithuBo,newsmast.social,US Sport,us_sport,false +SithuBo,newsmast.social,Weather,weather,false +jmenka,newsmast.social,Creative Arts,creative_arts,false +jmenka,newsmast.social,Gaming,gaming,false +jmenka,newsmast.social,LGBTQ+,lgbtq,false +jmenka,newsmast.social,Movies,movies,false +jmenka,newsmast.social,Performing Arts,performing_arts,false +jmenka,newsmast.social,Photography,photography,false +jmenka,newsmast.social,Visual Arts,visual_arts,true +Emma_Samson,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false +Emma_Samson,newsmast.social,Business,business,false +TheBeeGuy,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false +TheBeeGuy,newsmast.social,Books & Literature,books_literature,false +TheBeeGuy,newsmast.social,Climate change,climate_change,false +TheBeeGuy,newsmast.social,Energy & Pollution,energy_pollution,false +TheBeeGuy,newsmast.social,Humanities,humanities,false +TheBeeGuy,newsmast.social,Music,music,false +benogeh,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false +benogeh,newsmast.social,Climate change,climate_change,false +benogeh,newsmast.social,Energy & Pollution,energy_pollution,false +TheBeeGuy,newsmast.social,Performing Arts,performing_arts,false +TheBeeGuy,newsmast.social,Philosophy,philosophy,false +Superpolitics,newsmast.social,Activism & Civil Rights,activism_civil_rights,false +Superpolitics,newsmast.social,Architecture & Design,architecture_design,false +TheBeeGuy,newsmast.social,Photography,photography,false +TheBeeGuy,newsmast.social,Environment,environment,true +Emma_Samson,newsmast.social,Climate change,climate_change,false +Superpolitics,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +Superpolitics,newsmast.social,Disabled Voices,disabled_voices,false +Emma_Samson,newsmast.social,Energy & Pollution,energy_pollution,false +Superpolitics,newsmast.social,Football,football,false +Superpolitics,newsmast.social,Gaming,gaming,false +Superpolitics,newsmast.social,Government & Policy,government_policy,false +Superpolitics,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false +Superpolitics,newsmast.social,Immigrants Rights,immigrants_rights,false +Superpolitics,newsmast.social,Indigenous Peoples,indigenous_peoples,false +Superpolitics,newsmast.social,Poverty & Inequality,poverty_inequality,false +Emma_Samson,newsmast.social,Government & Policy,government_policy,false +Emma_Samson,newsmast.social,Social Sciences,social_sciences,false +Superpolitics,newsmast.social,Law & Justice,law_justice,false +Superpolitics,newsmast.social,LGBTQ+,lgbtq,false +Superpolitics,newsmast.social,Movies,movies,false +Superpolitics,newsmast.social,Music,music,false +Superpolitics,newsmast.social,Performing Arts,performing_arts,false +Superpolitics,newsmast.social,Photography,photography,false +Emma_Samson,newsmast.social,Environment,environment,true +SithuBo,newsmast.social,Breaking News,breaking_news,true +Oma,newsmast.social,Activism & Civil Rights,activism_civil_rights,false +Superpolitics,newsmast.social,Sport,sport,false +Oma,newsmast.social,AI,ai,false +Superpolitics,newsmast.social,TV & Radio,tv_radio,false +Superpolitics,newsmast.social,Visual Arts,visual_arts,false +Superpolitics,newsmast.social,Women’s Voices,women_voices,false +Superpolitics,newsmast.social,Workers Rights,workers_rights,false +Superpolitics,newsmast.social,Black Voices,black_voices,true +Oma,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false +Oma,newsmast.social,Breaking News,breaking_news,false +benogeh,newsmast.social,Environment,environment,true +Oma,newsmast.social,Climate change,climate_change,false +Oma,newsmast.social,Government & Policy,government_policy,false +FrontSeatPhil,newsmast.social,AI,ai,false +Oma,newsmast.social,Indigenous Peoples,indigenous_peoples,false +Oma,newsmast.social,Journalism & Comment,news_comment_data,false +FrontSeatPhil,newsmast.social,Space,space,false +FrontSeatPhil,newsmast.social,Ukraine Invasion,ukraine_invasion,false +Oma,newsmast.social,Politics,politics,false +eve,newsmast.social,Humanities,humanities,false +eve,newsmast.social,Books & Literature,books_literature,false +eve,newsmast.social,History,history,false +eve,newsmast.social,LGBTQ+,lgbtq,false +Oma,newsmast.social,Poverty & Inequality,poverty_inequality,false +eve,newsmast.social,Food & Drink,food_drink,false +Oma,newsmast.social,Science,science,false +soccerhub,newsmast.social,Breaking News,breaking_news,false +soccerhub,newsmast.social,Journalism & Comment,news_comment_data,false +soccerhub,newsmast.social,Sport,sport,false +soccerhub,newsmast.social,Football,football,true +TasmanianTimes,newsmast.social,Journalism & Comment,news_comment_data,true +jenandreacchi,newsmast.social,Books & Literature,books_literature,false +jenandreacchi,newsmast.social,TV & Radio,tv_radio,false +jenandreacchi,newsmast.social,LGBTQ+,lgbtq,true +WilmotsWay,newsmast.social,Food & Drink,food_drink,false +WilmotsWay,newsmast.social,Humour,humour,false +WilmotsWay,newsmast.social,Movies,movies,false +WilmotsWay,newsmast.social,Music,music,false +thepetsnet,newsmast.social,Humour,humour,false +thepetsnet,newsmast.social,Nature & Wildlife,nature_wildlife,false +thepetsnet,newsmast.social,Travel,travel,false +thepetsnet,newsmast.social,Pets,pets,true +WilmotsWay,newsmast.social,Journalism & Comment,news_comment_data,false +WilmotsWay,newsmast.social,Puzzles,puzzles,false +PolGeoNow,newsmast.social,Biology,biology,false +PolGeoNow,newsmast.social,Breaking News,breaking_news,false +PolGeoNow,newsmast.social,Chemistry,chemistry,false +PolGeoNow,newsmast.social,Engineering,engineering,false +PolGeoNow,newsmast.social,Mathematics,mathematics,false +PolGeoNow,newsmast.social,Physics,physics,false +PolGeoNow,newsmast.social,Politics,politics,false +PolGeoNow,newsmast.social,Science,science,false +PolGeoNow,newsmast.social,Social Sciences,social_sciences,false +PolGeoNow,newsmast.social,Space,space,false +jessa,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false +newsmast,newsmast.social,Puzzles,puzzles,false +dadonthemoveph,newsmast.social,Social Sciences,social_sciences,false +dadonthemoveph,newsmast.social,Creative Arts,creative_arts,false +Abrikosoff,newsmast.social,Climate change,climate_change,false +newsmast,newsmast.social,Science,science,false +newsmast,newsmast.social,Social Sciences,social_sciences,false +newsmast,newsmast.social,Space,space,false +ipub,newsmast.social,Government & Policy,government_policy,true +nyeinygn,newsmast.social,Breaking News,breaking_news,false +nyeinygn,newsmast.social,Politics,politics,false +nyeinygn,newsmast.social,Ukraine Invasion,ukraine_invasion,false +nyeinygn,newsmast.social,Weather,weather,false +enangha,newsmast.social,Food & Drink,food_drink,false +WJAHOM,newsmast.social,Activism & Civil Rights,activism_civil_rights,false +WJAHOM,newsmast.social,Books & Literature,books_literature,false +WJAHOM,newsmast.social,Climate change,climate_change,false +WJAHOM,newsmast.social,Creative Arts,creative_arts,false +WJAHOM,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +WJAHOM,newsmast.social,Environment,environment,false +WJAHOM,newsmast.social,Food & Drink,food_drink,false +WJAHOM,newsmast.social,Football,football,false +WJAHOM,newsmast.social,History,history,false +WJAHOM,newsmast.social,LGBTQ+,lgbtq,false +WJAHOM,newsmast.social,Mathematics,mathematics,false +Krusti,newsmast.social,Pets,pets,false +Krusti,newsmast.social,Programming,programming,false +uthi,newsmast.social,Breaking News,breaking_news,false +uthi,newsmast.social,Creative Arts,creative_arts,false +Krusti,newsmast.social,Puzzles,puzzles,false +Krusti,newsmast.social,Technology,technology,false +uthi,newsmast.social,Food & Drink,food_drink,false +Krusti,newsmast.social,Travel,travel,false +uthi,newsmast.social,Humour,humour,false +Krusti,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,true +uthi,newsmast.social,Nature & Wildlife,nature_wildlife,false +uthi,newsmast.social,Pets,pets,false +uthi,newsmast.social,Politics,politics,false +uthi,newsmast.social,Puzzles,puzzles,false +uthi,newsmast.social,Travel,travel,false +uthi,newsmast.social,Ukraine Invasion,ukraine_invasion,false +uthi,newsmast.social,Weather,weather,false +uthi,newsmast.social,Journalism & Comment,news_comment_data,true +joanathx,newsmast.social,AI,ai,false +PowellsParadigm,newsmast.social,Humanities,humanities,false +PowellsParadigm,newsmast.social,Journalism & Comment,news_comment_data,false +JulieAtkinson,newsmast.social,Food & Drink,food_drink,false +JulieAtkinson,newsmast.social,Nature & Wildlife,nature_wildlife,false +JulieAtkinson,newsmast.social,Pets,pets,false +JulieAtkinson,newsmast.social,Travel,travel,false +mongabay,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false +mongabay,newsmast.social,Biology,biology,false +mongabay,newsmast.social,Climate change,climate_change,false +mongabay,newsmast.social,Environment,environment,false +mongabay,newsmast.social,Journalism & Comment,news_comment_data,true +ipub,newsmast.social,Markets & Finance,markets_finance,false +ipub,newsmast.social,Journalism & Comment,news_comment_data,false +ipub,newsmast.social,Politics,politics,false +ipub,newsmast.social,Technology,technology,false +billmckibben,newsmast.social,Activism & Civil Rights,activism_civil_rights,false +billmckibben,newsmast.social,Climate change,climate_change,false +billmckibben,newsmast.social,Energy & Pollution,energy_pollution,false +billmckibben,newsmast.social,Music,music,false +billmckibben,newsmast.social,Journalism & Comment,news_comment_data,false +billmckibben,newsmast.social,Science,science,false +billmckibben,newsmast.social,Sport,sport,false +billmckibben,newsmast.social,TV & Radio,tv_radio,false +billmckibben,newsmast.social,Ukraine Invasion,ukraine_invasion,false +billmckibben,newsmast.social,Weather,weather,false +billmckibben,newsmast.social,Breaking News,breaking_news,true +Destiny,newsmast.social,LGBTQ+,lgbtq,false +AnnaJ,newsmast.social,Food & Drink,food_drink,false +elisexavier,newsmast.social,Biology,biology,false +elisexavier,newsmast.social,Pets,pets,false +elisexavier,newsmast.social,Physics,physics,false +elisexavier,newsmast.social,Science,science,true +eve,newsmast.social,Indigenous Peoples,indigenous_peoples,false +eve,newsmast.social,Ukraine Invasion,ukraine_invasion,false +AnnaJ,newsmast.social,Visual Arts,visual_arts,false +han_smith,newsmast.social,Activism & Civil Rights,activism_civil_rights,false +han_smith,newsmast.social,Black Voices,black_voices,false +han_smith,newsmast.social,Breaking News,breaking_news,false +han_smith,newsmast.social,Climate change,climate_change,false +han_smith,newsmast.social,Disabled Voices,disabled_voices,false +han_smith,newsmast.social,Engineering,engineering,false +han_smith,newsmast.social,Environment,environment,false +han_smith,newsmast.social,Immigrants Rights,immigrants_rights,false +han_smith,newsmast.social,Indigenous Peoples,indigenous_peoples,false +han_smith,newsmast.social,Mathematics,mathematics,false +han_smith,newsmast.social,Journalism & Comment,news_comment_data,false +han_smith,newsmast.social,Physics,physics,false +Abrikosoff,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +Abrikosoff,newsmast.social,Energy & Pollution,energy_pollution,false +han_smith,newsmast.social,Science,science,false +han_smith,newsmast.social,Social Sciences,social_sciences,false +han_smith,newsmast.social,Space,space,false +han_smith,newsmast.social,Weather,weather,false +Abrikosoff,newsmast.social,Engineering,engineering,false +han_smith,newsmast.social,Women’s Voices,women_voices,false +han_smith,newsmast.social,Workers Rights,workers_rights,false +han_smith,newsmast.social,LGBTQ+,lgbtq,true +Abrikosoff,newsmast.social,Environment,environment,false +vijay,newsmast.social,Technology,technology,false +vijay,newsmast.social,Gaming,gaming,false +newsmast,newsmast.social,Sport,sport,false +vijay,newsmast.social,Movies,movies,false +RewildScotland,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,true +matt_cary,newsmast.social,Immigrants Rights,immigrants_rights,false +matt_cary,newsmast.social,LGBTQ+,lgbtq,false +matt_cary,newsmast.social,Politics,politics,false +Frank_Zafiro,newsmast.social,AI,ai,false +matt_cary,newsmast.social,Social Sciences,social_sciences,false +matt_cary,newsmast.social,Women’s Voices,women_voices,false +RewildScotland,newsmast.social,Philosophy,philosophy,false +IlCava,mastodon.uno,Indigenous Peoples,indigenous_peoples,false +oceanknigge,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,true +Frank_Zafiro,newsmast.social,Creative Arts,creative_arts,false +Frank_Zafiro,newsmast.social,History,history,false +matt_cary,newsmast.social,Workers Rights,workers_rights,false +matt_cary,newsmast.social,Law & Justice,law_justice,true +dadonthemoveph,newsmast.social,Books & Literature,books_literature,false +newsmast,newsmast.social,Technology,technology,false +Frank_Zafiro,newsmast.social,Humanities,humanities,false +Frank_Zafiro,newsmast.social,Humour,humour,false +oceanknigge,newsmast.social,Architecture & Design,architecture_design,false +oceanknigge,newsmast.social,Climate change,climate_change,false +oceanknigge,newsmast.social,Environment,environment,false +Frank_Zafiro,newsmast.social,LGBTQ+,lgbtq,false +Frank_Zafiro,newsmast.social,Movies,movies,false +AnnaJ,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false +Caughtlight,newsmast.social,Breaking News,breaking_news,false +Caughtlight,newsmast.social,Journalism & Comment,news_comment_data,false +Caughtlight,newsmast.social,Sport,sport,false +Caughtlight,newsmast.social,US Sport,us_sport,false +Caughtlight,newsmast.social,Football,football,true +Paxivorian,newsmast.social,Movies,movies,false +Paxivorian,newsmast.social,Music,music,false +Paxivorian,newsmast.social,Journalism & Comment,news_comment_data,false +Paxivorian,newsmast.social,Performing Arts,performing_arts,false +Paxivorian,newsmast.social,Philosophy,philosophy,false +Paxivorian,newsmast.social,Photography,photography,false +Paxivorian,newsmast.social,Physics,physics,false +Paxivorian,newsmast.social,Programming,programming,false +mikea,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false +IlCava,mastodon.uno,Law & Justice,law_justice,false +mikea,newsmast.social,Business,business,false +mikea,newsmast.social,Energy & Pollution,energy_pollution,false +mikea,newsmast.social,Environment,environment,false +mikea,newsmast.social,Politics,politics,false +mikea,newsmast.social,Technology,technology,false +Paxivorian,newsmast.social,Science,science,false +Paxivorian,newsmast.social,Social Sciences,social_sciences,false +Paxivorian,newsmast.social,Space,space,false +Paxivorian,newsmast.social,Technology,technology,false +Paxivorian,newsmast.social,TV & Radio,tv_radio,false +Frank_Zafiro,newsmast.social,Music,music,false +Frank_Zafiro,newsmast.social,Philosophy,philosophy,false +Hope,newsmast.social,Environment,environment,false +Hope,newsmast.social,Performing Arts,performing_arts,false +Hope,newsmast.social,TV & Radio,tv_radio,false +Hope,newsmast.social,Movies,movies,true +WilmotsWay,newsmast.social,Breaking News,breaking_news,false +gnasralla,newsmast.social,AI,ai,false +gnasralla,newsmast.social,Architecture & Design,architecture_design,false +gnasralla,newsmast.social,Climate change,climate_change,false +gnasralla,newsmast.social,Environment,environment,false +gnasralla,newsmast.social,History,history,false +gnasralla,newsmast.social,Humanities,humanities,false +gnasralla,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false +gnasralla,newsmast.social,Music,music,false +gnasralla,newsmast.social,Performing Arts,performing_arts,false +gnasralla,newsmast.social,Philosophy,philosophy,false +gnasralla,newsmast.social,Photography,photography,false +gnasralla,newsmast.social,Technology,technology,false +gnasralla,newsmast.social,Visual Arts,visual_arts,false +gnasralla,newsmast.social,Business,business,true +Aysegul,newsmast.social,Activism & Civil Rights,activism_civil_rights,false +Aysegul,newsmast.social,Architecture & Design,architecture_design,false +Aysegul,newsmast.social,Creative Arts,creative_arts,false +Aysegul,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +Aysegul,newsmast.social,Engineering,engineering,false +Aysegul,newsmast.social,Food & Drink,food_drink,false +Aysegul,newsmast.social,LGBTQ+,lgbtq,false +Aysegul,newsmast.social,Movies,movies,false +Aysegul,newsmast.social,Music,music,false +Aysegul,newsmast.social,Philosophy,philosophy,false +Aysegul,newsmast.social,Science,science,false +Aysegul,newsmast.social,Sport,sport,false +Aysegul,newsmast.social,TV & Radio,tv_radio,false +Aysegul,newsmast.social,Weather,weather,false +Aysegul,newsmast.social,Workers Rights,workers_rights,false +clairejuliaart,newsmast.social,Books & Literature,books_literature,false +clairejuliaart,newsmast.social,Creative Arts,creative_arts,false +Abrikosoff,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false +Oma,newsmast.social,Women’s Voices,women_voices,false +Oma,newsmast.social,Democracy & Human Rights,democracy_human_rights,true +clairejuliaart,newsmast.social,Humanities,humanities,false +alanwelch,newsmast.social,Breaking News,breaking_news,false +Abrikosoff,newsmast.social,Mathematics,mathematics,false +alanwelch,newsmast.social,Journalism & Comment,news_comment_data,false +alanwelch,newsmast.social,Politics,politics,false +alanwelch,newsmast.social,Ukraine Invasion,ukraine_invasion,false +alanwelch,newsmast.social,Weather,weather,true +clairejuliaart,newsmast.social,Humour,humour,false +fingolas,journa.host,Science,science,false +clairejuliaart,newsmast.social,Nature & Wildlife,nature_wildlife,false +clairejuliaart,newsmast.social,Philosophy,philosophy,false +Abrikosoff,newsmast.social,Science,science,false +clairejuliaart,newsmast.social,Social Sciences,social_sciences,false +clairejuliaart,newsmast.social,Travel,travel,false +Abrikosoff,newsmast.social,Space,space,false +steve116,newsmast.social,Architecture & Design,architecture_design,false +IlCava,mastodon.uno,Immigrants Rights,immigrants_rights,false +steve116,newsmast.social,Gaming,gaming,false +steve116,newsmast.social,Movies,movies,false +steve116,newsmast.social,Music,music,false +steve116,newsmast.social,Performing Arts,performing_arts,false +steve116,newsmast.social,Photography,photography,false +steve116,newsmast.social,TV & Radio,tv_radio,false +steve116,newsmast.social,Visual Arts,visual_arts,true +clairejuliaart,newsmast.social,Visual Arts,visual_arts,true +newsmast,newsmast.social,Travel,travel,false +Paxivorian,newsmast.social,Visual Arts,visual_arts,false +dadonthemoveph,newsmast.social,History,history,false +newsmast,newsmast.social,TV & Radio,tv_radio,false +newsmast,newsmast.social,Ukraine Invasion,ukraine_invasion,false +alawriedejesus,newsmast.social,Activism & Civil Rights,activism_civil_rights,false +alawriedejesus,newsmast.social,Music,music,false +alawriedejesus,newsmast.social,Politics,politics,false +Paxivorian,newsmast.social,Weather,weather,false +alawriedejesus,newsmast.social,LGBTQ+,lgbtq,true +devenperez,newsmast.social,AI,ai,false +chloeariellle,newsmast.social,Activism & Civil Rights,activism_civil_rights,false +chloeariellle,newsmast.social,AI,ai,false +chloeariellle,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false +chloeariellle,newsmast.social,Climate change,climate_change,false +Paxivorian,newsmast.social,Architecture & Design,architecture_design,true +chloeariellle,newsmast.social,Environment,environment,false +chloeariellle,newsmast.social,Food & Drink,food_drink,false +chloeariellle,newsmast.social,Journalism & Comment,news_comment_data,false +yarzar,newsmast.social,AI,ai,false +chloeariellle,newsmast.social,Science,science,false +chloeariellle,newsmast.social,Technology,technology,false +yarzar,newsmast.social,Biology,biology,false +yarzar,newsmast.social,Breaking News,breaking_news,false +devenperez,newsmast.social,Physics,physics,false +devenperez,newsmast.social,Space,space,false +devenperez,newsmast.social,Technology,technology,false +devenperez,newsmast.social,Engineering,engineering,true +TheQueerBookish,newsmast.social,Creative Arts,creative_arts,false +Andy,newsmast.social,Business,business,false +Andy,newsmast.social,Environment,environment,false +Andy,newsmast.social,Football,football,false +Andy,newsmast.social,Science,science,false +Andy,newsmast.social,Sport,sport,false +Andy,newsmast.social,Breaking News,breaking_news,true +TheQueerBookish,newsmast.social,Disabled Voices,disabled_voices,false +TheQueerBookish,newsmast.social,LGBTQ+,lgbtq,false +TheQueerBookish,newsmast.social,Women’s Voices,women_voices,false +TheQueerBookish,newsmast.social,Books & Literature,books_literature,true +newsmast,newsmast.social,Visual Arts,visual_arts,false +yarzar,newsmast.social,Chemistry,chemistry,false +yarzar,newsmast.social,Creative Arts,creative_arts,false +Origami,newsmast.social,Breaking News,breaking_news,false +Origami,newsmast.social,Business,business,false +yarzar,newsmast.social,Engineering,engineering,false +Origami,newsmast.social,Environment,environment,false +Origami,newsmast.social,Markets & Finance,markets_finance,false +Origami,newsmast.social,Journalism & Comment,news_comment_data,false +Origami,newsmast.social,Weather,weather,true +yarzar,newsmast.social,Food & Drink,food_drink,false +yarzar,newsmast.social,Humour,humour,false +TheEnglishLion,newsmast.social,Breaking News,breaking_news,false +TheEnglishLion,newsmast.social,Movies,movies,false +TheEnglishLion,newsmast.social,Journalism & Comment,news_comment_data,false +TheEnglishLion,newsmast.social,Sport,sport,false +TheEnglishLion,newsmast.social,Football,football,true +nancymangano,newsmast.social,Books & Literature,books_literature,false +CELSET,newsmast.social,Healthcare,healthcare,false +nancymangano,newsmast.social,Government & Policy,government_policy,false +nancymangano,newsmast.social,Movies,movies,false +nancymangano,newsmast.social,Journalism & Comment,news_comment_data,false +WilmotsWay,newsmast.social,Sport,sport,false +WilmotsWay,newsmast.social,Travel,travel,false +WilmotsWay,newsmast.social,TV & Radio,tv_radio,false +WilmotsWay,newsmast.social,Weather,weather,false +WilmotsWay,newsmast.social,Football,football,true +newsmast,newsmast.social,Weather,weather,false +yarzar,newsmast.social,Mathematics,mathematics,false +newsmast,newsmast.social,Women’s Voices,women_voices,false +newsmast,newsmast.social,Workers Rights,workers_rights,false +newsmast,newsmast.social,Journalism & Comment,news_comment_data,true +yarzar,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false +yarzar,newsmast.social,Nature & Wildlife,nature_wildlife,false +yarzar,newsmast.social,Journalism & Comment,news_comment_data,false +yarzar,newsmast.social,Pets,pets,false +yarzar,newsmast.social,Physics,physics,false +yarzar,newsmast.social,Programming,programming,false +yarzar,newsmast.social,Puzzles,puzzles,false +akptest007,newsmast.social,Technology,technology,false +akptest007,newsmast.social,Business,business,false +S33J,newsmast.social,Space,space,false +abchcz4p,newsmast.social,AI,ai,false +josebilingue,newsmast.social,Academia & Research,academia_research,false +josebilingue,newsmast.social,Activism & Civil Rights,activism_civil_rights,false +yarzar,newsmast.social,Science,science,false +yarzar,newsmast.social,Social Media,social_media,false +christina88,newsmast.social,Workers Rights,workers_rights,false +christina88,newsmast.social,Social Sciences,social_sciences,false +yarzar,newsmast.social,Space,space,false +yarzar,newsmast.social,Sport,sport,false +yarzar,newsmast.social,Technology,technology,false +dennisfparker,newsmast.social,Social Sciences,social_sciences,false +yarzar,newsmast.social,Travel,travel,false +dennisfparker,newsmast.social,Ukraine Invasion,ukraine_invasion,false +yarzar,newsmast.social,Ukraine Invasion,ukraine_invasion,false +dennisfparker,newsmast.social,Weather,weather,false +yarzar,newsmast.social,US Sport,us_sport,false +yarzar,newsmast.social,Weather,weather,false +abchcz4p,newsmast.social,Breaking News,breaking_news,false +mariana_b,newsmast.social,Climate change,climate_change,false +yarzar,newsmast.social,Football,football,true +luffy,newsmast.social,AI,ai,false +EdBowers101,newsmast.social,Business,business,false +EdBowers101,newsmast.social,Football,football,false +luffy,newsmast.social,Biology,biology,false +luffy,newsmast.social,Chemistry,chemistry,false +EdBowers101,newsmast.social,Sport,sport,true +Abrikosoff,newsmast.social,Technology,technology,false +Abrikosoff,newsmast.social,Physics,physics,true +luffy,newsmast.social,Engineering,engineering,false +fingolas,journa.host,Social Media,social_media,false +mariana_b,newsmast.social,Biology,biology,false +mariana_b,newsmast.social,Chemistry,chemistry,false +mariana_b,newsmast.social,Physics,physics,false +abchcz4p,newsmast.social,Football,football,false +luffy,newsmast.social,Football,football,false +luffy,newsmast.social,History,history,false +luffy,newsmast.social,Humanities,humanities,false +luffy,newsmast.social,Mathematics,mathematics,false +PolGeoNow,newsmast.social,Journalism & Comment,news_comment_data,true +abchcz4p,newsmast.social,Programming,programming,false +luffy,newsmast.social,Journalism & Comment,news_comment_data,false +luffy,newsmast.social,Breaking News,breaking_news,true +luffy,newsmast.social,Philosophy,philosophy,false +josebilingue,newsmast.social,Architecture & Design,architecture_design,false +luffy,newsmast.social,Physics,physics,false +abchcz4p,newsmast.social,Science,science,false +luffy,newsmast.social,Programming,programming,false +luffy,newsmast.social,Science,science,false +luffy,newsmast.social,Social Media,social_media,false +luffy,newsmast.social,Social Sciences,social_sciences,false +luffy,newsmast.social,Space,space,false +josebilingue,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false +luffy,newsmast.social,Sport,sport,false +winntendo,mstdn.social,Environment,environment,false +drshaunanderson,newsmast.social,Social Sciences,social_sciences,false +drshaunanderson,newsmast.social,Architecture & Design,architecture_design,false +drshaunanderson,newsmast.social,Business,business,false +abchcz4p,newsmast.social,Space,space,false +abchcz4p,newsmast.social,Sport,sport,false +abchcz4p,newsmast.social,Technology,technology,true +drshaunanderson,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +drshaunanderson,newsmast.social,Football,football,false +drshaunanderson,newsmast.social,Gaming,gaming,false +drshaunanderson,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false +drshaunanderson,newsmast.social,Poverty & Inequality,poverty_inequality,false +drshaunanderson,newsmast.social,Markets & Finance,markets_finance,false +drshaunanderson,newsmast.social,Movies,movies,false +drshaunanderson,newsmast.social,Music,music,false +drshaunanderson,newsmast.social,Performing Arts,performing_arts,false +drshaunanderson,newsmast.social,Photography,photography,false +kirukarki2,newsmast.social,AI,ai,true +infobl,newsmast.social,Journalism & Comment,news_comment_data,false +nico,newsmast.social,Journalism & Comment,news_comment_data,false +James_Shield,newsmast.social,Journalism & Comment,news_comment_data,false +aung,newsmast.social,Journalism & Comment,news_comment_data,true +fs0c131y,newsmast.social,Journalism & Comment,news_comment_data,true +Dolores,newsmast.social,Journalism & Comment,news_comment_data,false +OpsMatters,newsmast.social,Journalism & Comment,news_comment_data,false +CBhattacharji,newsmast.social,Journalism & Comment,news_comment_data,false +Sam,newsmast.social,Journalism & Comment,news_comment_data,false +johnhawks,newsmast.social,Journalism & Comment,news_comment_data,false +luisaropio,newsmast.social,Journalism & Comment,news_comment_data,false +FrontSeatPhil,newsmast.social,Journalism & Comment,news_comment_data,false +nyeinygn,newsmast.social,Journalism & Comment,news_comment_data,true +luffy,newsmast.social,Technology,technology,false +drshaunanderson,newsmast.social,TV & Radio,tv_radio,false +drshaunanderson,newsmast.social,Visual Arts,visual_arts,false +drshaunanderson,newsmast.social,Sport,sport,true +luffy,newsmast.social,Ukraine Invasion,ukraine_invasion,false +luffy,newsmast.social,US Sport,us_sport,false +winntendo,mstdn.social,Gaming,gaming,false +Frank_Zafiro,newsmast.social,Physics,physics,false +fxdpntthm,newsmast.social,Architecture & Design,architecture_design,false +fxdpntthm,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false +fxdpntthm,newsmast.social,Books & Literature,books_literature,false +fxdpntthm,newsmast.social,Breaking News,breaking_news,false +akptest007,newsmast.social,Government & Policy,government_policy,false +fxdpntthm,newsmast.social,Chemistry,chemistry,false +fxdpntthm,newsmast.social,Creative Arts,creative_arts,false +fxdpntthm,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +fxdpntthm,newsmast.social,Energy & Pollution,energy_pollution,false +fxdpntthm,newsmast.social,Engineering,engineering,false +fxdpntthm,newsmast.social,Humour,humour,false +fitinfounder,newsmast.social,Activism & Civil Rights,activism_civil_rights,false +fitinfounder,newsmast.social,Architecture & Design,architecture_design,false +fitinfounder,newsmast.social,Black Voices,black_voices,false +fitinfounder,newsmast.social,Business,business,false +fxdpntthm,newsmast.social,Markets & Finance,markets_finance,false +fxdpntthm,newsmast.social,Mathematics,mathematics,false +fitinfounder,newsmast.social,Disabled Voices,disabled_voices,false +fxdpntthm,newsmast.social,Movies,movies,false +fitinfounder,newsmast.social,Immigrants Rights,immigrants_rights,false +fxdpntthm,newsmast.social,Music,music,false +fitinfounder,newsmast.social,Indigenous Peoples,indigenous_peoples,false +fitinfounder,newsmast.social,Law & Justice,law_justice,false +fitinfounder,newsmast.social,LGBTQ+,lgbtq,false +fxdpntthm,newsmast.social,Nature & Wildlife,nature_wildlife,false +fxdpntthm,newsmast.social,Performing Arts,performing_arts,false +fitinfounder,newsmast.social,Women’s Voices,women_voices,true +fxdpntthm,newsmast.social,Photography,photography,false +fxdpntthm,newsmast.social,Physics,physics,false +fxdpntthm,newsmast.social,Poverty & Inequality,poverty_inequality,false +fxdpntthm,newsmast.social,Puzzles,puzzles,false +fxdpntthm,newsmast.social,Science,science,false +fxdpntthm,newsmast.social,Social Media,social_media,false +fxdpntthm,newsmast.social,Space,space,false +fxdpntthm,newsmast.social,Travel,travel,false +fxdpntthm,newsmast.social,Visual Arts,visual_arts,false +fxdpntthm,newsmast.social,Weather,weather,false +fxdpntthm,newsmast.social,Workers Rights,workers_rights,false +fxdpntthm,newsmast.social,Technology,technology,true +Frank_Zafiro,newsmast.social,Science,science,false +Frank_Zafiro,newsmast.social,Social Sciences,social_sciences,false +Frank_Zafiro,newsmast.social,Space,space,false +Frank_Zafiro,newsmast.social,Sport,sport,false +Frank_Zafiro,newsmast.social,Technology,technology,false +Frank_Zafiro,newsmast.social,TV & Radio,tv_radio,false +Frank_Zafiro,newsmast.social,US Sport,us_sport,false +Frank_Zafiro,newsmast.social,Women’s Voices,women_voices,false +Roamancing,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false +Roamancing,newsmast.social,Books & Literature,books_literature,false +Frank_Zafiro,newsmast.social,Books & Literature,books_literature,true +Roamancing,newsmast.social,Creative Arts,creative_arts,false +marcie,newsmast.social,Activism & Civil Rights,activism_civil_rights,false +Roamancing,newsmast.social,Environment,environment,false +Roamancing,newsmast.social,Food & Drink,food_drink,false +Roamancing,newsmast.social,History,history,false +marcie,newsmast.social,Breaking News,breaking_news,false +Roamancing,newsmast.social,Humanities,humanities,false +Roamancing,newsmast.social,Poverty & Inequality,poverty_inequality,false +Roamancing,newsmast.social,Music,music,false +Roamancing,newsmast.social,Nature & Wildlife,nature_wildlife,false +Roamancing,newsmast.social,Performing Arts,performing_arts,false +Roamancing,newsmast.social,Pets,pets,false +marcie,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +marcie,newsmast.social,Women’s Voices,women_voices,false +Roamancing,newsmast.social,Travel,travel,true +Roamancing,newsmast.social,Disabled Voices,disabled_voices,false +Roamancing,newsmast.social,Indigenous Peoples,indigenous_peoples,false +Roamancing,newsmast.social,Women’s Voices,women_voices,false +Roamancing,newsmast.social,Science,science,false +Roamancing,newsmast.social,Biology,biology,false +marcie,newsmast.social,Disabled Voices,disabled_voices,true +Roamancing,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false +jautero,indieweb.social,Biodiversity & Rewilding,biodiversity_rewilding,false +francisco_blaha,newsmast.social,Climate change,climate_change,false +francisco_blaha,newsmast.social,Poverty & Inequality,poverty_inequality,false +Freddie3,newsmast.social,Creative Arts,creative_arts,false +Freddie3,newsmast.social,Science,science,true +Freddie3,newsmast.social,LGBTQ+,lgbtq,false +Freddie3,newsmast.social,Philosophy,philosophy,false +jakeanders,newsmast.social,Breaking News,breaking_news,false +jakeanders,newsmast.social,Government & Policy,government_policy,false +jakeanders,newsmast.social,Journalism & Comment,news_comment_data,false +jakeanders,newsmast.social,Science,science,false +jakeanders,newsmast.social,Technology,technology,false +jakeanders,newsmast.social,Social Sciences,social_sciences,true +asausagehastwo,newsmast.social,Food & Drink,food_drink,true +asausagehastwo,newsmast.social,Travel,travel,false +asausagehastwo,newsmast.social,Climate change,climate_change,false +asausagehastwo,newsmast.social,Environment,environment,false +asausagehastwo,newsmast.social,Nature & Wildlife,nature_wildlife,false +asausagehastwo,newsmast.social,Journalism & Comment,news_comment_data,false +itsmarta101,newsmast.social,Activism & Civil Rights,activism_civil_rights,false +itsmarta101,newsmast.social,Breaking News,breaking_news,false +itsmarta101,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +itsmarta101,newsmast.social,Movies,movies,false +itsmarta101,newsmast.social,Music,music,false +itsmarta101,newsmast.social,Journalism & Comment,news_comment_data,false +itsmarta101,newsmast.social,TV & Radio,tv_radio,false +itsmarta101,newsmast.social,Women’s Voices,women_voices,false +itsmarta101,newsmast.social,LGBTQ+,lgbtq,true +josebilingue,newsmast.social,Biology,biology,false +josebilingue,newsmast.social,Black Voices,black_voices,false +CameronOrdSmith,newsmast.social,AI,ai,false +business,newsmast.social,Government & Policy,government_policy,false +business,newsmast.social,Journalism & Comment,news_comment_data,false +CameronOrdSmith,newsmast.social,Climate change,climate_change,false +business,newsmast.social,AI,ai,true +CameronOrdSmith,newsmast.social,Programming,programming,false +CameronOrdSmith,newsmast.social,Ukraine Invasion,ukraine_invasion,false +CameronOrdSmith,newsmast.social,Energy & Pollution,energy_pollution,true +josebilingue,newsmast.social,Books & Literature,books_literature,false +aliciahaydenart,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false +aliciahaydenart,newsmast.social,Biology,biology,false +aliciahaydenart,newsmast.social,Books & Literature,books_literature,false +aliciahaydenart,newsmast.social,Climate change,climate_change,false +aliciahaydenart,newsmast.social,Environment,environment,false +aliciahaydenart,newsmast.social,Photography,photography,false +josebilingue,newsmast.social,Breaking News,breaking_news,false +aliciahaydenart,newsmast.social,Science,science,false +aliciahaydenart,newsmast.social,Visual Arts,visual_arts,false +josebilingue,newsmast.social,Chemistry,chemistry,false +josebilingue,newsmast.social,Climate change,climate_change,false +josebilingue,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +josebilingue,newsmast.social,Disabled Voices,disabled_voices,false +josebilingue,newsmast.social,Energy & Pollution,energy_pollution,false +josebilingue,newsmast.social,Environment,environment,false +josebilingue,newsmast.social,Gaming,gaming,false +josebilingue,newsmast.social,Government & Policy,government_policy,false +josebilingue,newsmast.social,Healthcare,healthcare,false +josebilingue,newsmast.social,History,history,false +josebilingue,newsmast.social,Humanities,humanities,false +josebilingue,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false +josebilingue,newsmast.social,Immigrants Rights,immigrants_rights,false +josebilingue,newsmast.social,Indigenous Peoples,indigenous_peoples,false +Lambo,newsmast.social,AI,ai,false +Lambo,newsmast.social,History,history,false +Lambo,newsmast.social,Humanities,humanities,false +Lambo,newsmast.social,Workers Rights,workers_rights,false +Lambo,newsmast.social,Science,science,true +josebilingue,newsmast.social,Law & Justice,law_justice,false +josebilingue,newsmast.social,LGBTQ+,lgbtq,false +josebilingue,newsmast.social,Mathematics,mathematics,false +christina88,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,true +josebilingue,newsmast.social,Movies,movies,false +christina88,newsmast.social,TV & Radio,tv_radio,false +josebilingue,newsmast.social,Music,music,false +josebilingue,newsmast.social,Journalism & Comment,news_comment_data,false +josebilingue,newsmast.social,Performing Arts,performing_arts,false +josebilingue,newsmast.social,Philosophy,philosophy,false +josebilingue,newsmast.social,Photography,photography,false +josebilingue,newsmast.social,Physics,physics,false +josebilingue,newsmast.social,Politics,politics,false +CanWCC,newsmast.social,Activism & Civil Rights,activism_civil_rights,false +CanWCC,newsmast.social,Black Voices,black_voices,false +CanWCC,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +CanWCC,newsmast.social,Disabled Voices,disabled_voices,false +CanWCC,newsmast.social,Immigrants Rights,immigrants_rights,false +CanWCC,newsmast.social,Indigenous Peoples,indigenous_peoples,false +CanWCC,newsmast.social,Poverty & Inequality,poverty_inequality,false +CanWCC,newsmast.social,LGBTQ+,lgbtq,false +CanWCC,newsmast.social,Social Sciences,social_sciences,false +beck,newsmast.social,Activism & Civil Rights,activism_civil_rights,false +beck,newsmast.social,AI,ai,false +beck,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false +beck,newsmast.social,Biology,biology,false +beck,newsmast.social,Black Voices,black_voices,false +beck,newsmast.social,Breaking News,breaking_news,false +beck,newsmast.social,Chemistry,chemistry,false +beck,newsmast.social,Climate change,climate_change,false +beck,newsmast.social,Creative Arts,creative_arts,false +beck,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +beck,newsmast.social,Disabled Voices,disabled_voices,false +beck,newsmast.social,Energy & Pollution,energy_pollution,false +beck,newsmast.social,Engineering,engineering,false +beck,newsmast.social,Food & Drink,food_drink,false +beck,newsmast.social,Government & Policy,government_policy,false +beck,newsmast.social,Healthcare,healthcare,false +akp,newsmast.social,Environment,environment,false +minkhantkyaw35,newsmast.social,Environment,environment,false +SoeMyinHtel_dev,newsmast.social,Environment,environment,false +minkhantkyawygn,newsmast.social,Environment,environment,false +sithu_dev3,newsmast.social,Environment,environment,false +sabah,newsmast.social,Environment,environment,false +poverty,newsmast.social,Environment,environment,false +Lawrence,newsmast.social,Environment,environment,false +phylis,newsmast.social,Environment,environment,false +zhichangliu,newsmast.social,Environment,environment,false +jannus,newsmast.social,Environment,environment,false +Joan_Kem,newsmast.social,Environment,environment,false +Sebsb,newsmast.social,Environment,environment,false +samarpahwa,newsmast.social,Environment,environment,false +kazwan,newsmast.social,Environment,environment,false +liharris30,newsmast.social,Environment,environment,true +Dailyscandi,newsmast.social,Environment,environment,false +beck,newsmast.social,Environment,environment,true +beck,newsmast.social,Humour,humour,false +beck,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false +beck,newsmast.social,Immigrants Rights,immigrants_rights,false +beck,newsmast.social,Indigenous Peoples,indigenous_peoples,false +beck,newsmast.social,Poverty & Inequality,poverty_inequality,false +sport,newsmast.social,Breaking News,breaking_news,false +sport,newsmast.social,Football,football,false +beck,newsmast.social,Law & Justice,law_justice,false +beck,newsmast.social,LGBTQ+,lgbtq,false +beck,newsmast.social,Mathematics,mathematics,false +beck,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false +beck,newsmast.social,Nature & Wildlife,nature_wildlife,false +beck,newsmast.social,Journalism & Comment,news_comment_data,false +beck,newsmast.social,Pets,pets,false +beck,newsmast.social,Physics,physics,false +beck,newsmast.social,Politics,politics,false +sport,newsmast.social,TV & Radio,tv_radio,false +sport,newsmast.social,US Sport,us_sport,false +sport,newsmast.social,Sport,sport,true +beck,newsmast.social,Puzzles,puzzles,false +josebilingue,newsmast.social,Poverty & Inequality,poverty_inequality,false +beck,newsmast.social,Science,science,false +beck,newsmast.social,Space,space,false +josebilingue,newsmast.social,Science,science,false +beck,newsmast.social,Technology,technology,false +beck,newsmast.social,Travel,travel,false +beck,newsmast.social,Ukraine Invasion,ukraine_invasion,false +josebilingue,newsmast.social,Social Media,social_media,false +beck,newsmast.social,Weather,weather,false +ThomasSixt,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +beck,newsmast.social,Women’s Voices,women_voices,false +beck,newsmast.social,Workers Rights,workers_rights,false +Laurairby,newsmast.social,AI,ai,false +Laurairby,newsmast.social,Architecture & Design,architecture_design,false +Laurairby,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false +Laurairby,newsmast.social,Books & Literature,books_literature,false +Laurairby,newsmast.social,Climate change,climate_change,false +Laurairby,newsmast.social,Creative Arts,creative_arts,false +Laurairby,newsmast.social,Energy & Pollution,energy_pollution,false +Laurairby,newsmast.social,Engineering,engineering,false +Laurairby,newsmast.social,Environment,environment,false +Laurairby,newsmast.social,Food & Drink,food_drink,false +YuliaMHersey,newsmast.social,AI,ai,false +Laurairby,newsmast.social,Gaming,gaming,false +Laurairby,newsmast.social,Humour,humour,false +YuliaMHersey,newsmast.social,Food & Drink,food_drink,false +Laurairby,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false +Laurairby,newsmast.social,Movies,movies,false +YuliaMHersey,newsmast.social,Humanities,humanities,false +YuliaMHersey,newsmast.social,Journalism & Comment,news_comment_data,false +YuliaMHersey,newsmast.social,Performing Arts,performing_arts,false +YuliaMHersey,newsmast.social,Philosophy,philosophy,false +YuliaMHersey,newsmast.social,Ukraine Invasion,ukraine_invasion,false +YuliaMHersey,newsmast.social,Books & Literature,books_literature,true +DrGCrisp,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false +DrGCrisp,newsmast.social,Biology,biology,false +Laurairby,newsmast.social,Music,music,false +Laurairby,newsmast.social,Nature & Wildlife,nature_wildlife,false +DrGCrisp,newsmast.social,Energy & Pollution,energy_pollution,false +DrGCrisp,newsmast.social,Environment,environment,false +Laurairby,newsmast.social,Journalism & Comment,news_comment_data,false +Aysha,newsmast.social,Movies,movies,false +Aysha,newsmast.social,Performing Arts,performing_arts,false +Aysha,newsmast.social,Photography,photography,false +Aysha,newsmast.social,Space,space,false +Aysha,newsmast.social,Books & Literature,books_literature,true +Laurairby,newsmast.social,Performing Arts,performing_arts,false +Laurairby,newsmast.social,Pets,pets,false +Laurairby,newsmast.social,Photography,photography,false +Laurairby,newsmast.social,Programming,programming,false +Laurairby,newsmast.social,Puzzles,puzzles,false +Laurairby,newsmast.social,Social Media,social_media,false +Laurairby,newsmast.social,Technology,technology,false +Laurairby,newsmast.social,Travel,travel,false +Laurairby,newsmast.social,TV & Radio,tv_radio,false +Laurairby,newsmast.social,Ukraine Invasion,ukraine_invasion,false +Laurairby,newsmast.social,Visual Arts,visual_arts,false +siji,newsmast.social,Environment,environment,false +AndreCMonteiro,newsmast.social,Environment,environment,true +Radwa,newsmast.social,Environment,environment,true +faithbenson,newsmast.social,Environment,environment,false +KyivIndependent,newsmast.social,Environment,environment,false +KamranSaeed,newsmast.social,Environment,environment,false +candice_chirwa,newsmast.social,Environment,environment,false +TheCultofCalcio,newsmast.social,Environment,environment,false +LeslieTay,newsmast.social,Environment,environment,false +ChrisB100,newsmast.social,Environment,environment,false +fpricejr,newsmast.social,Environment,environment,false +DrGCrisp,newsmast.social,Humanities,humanities,false +DrGCrisp,newsmast.social,Poverty & Inequality,poverty_inequality,false +Laurairby,newsmast.social,Weather,weather,false +DrGCrisp,newsmast.social,Climate change,climate_change,true +OmarSakr,newsmast.social,Environment,environment,false +Laurairby,newsmast.social,Breaking News,breaking_news,true +SummerS,newsmast.social,Breaking News,breaking_news,false +SummerS,newsmast.social,Creative Arts,creative_arts,false +SummerS,newsmast.social,Photography,photography,false +SummerS,newsmast.social,Social Media,social_media,false +SummerS,newsmast.social,Pets,pets,true +josebilingue,newsmast.social,Space,space,false +josebilingue,newsmast.social,TV & Radio,tv_radio,false +akptest007,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false +josebilingue,newsmast.social,Ukraine Invasion,ukraine_invasion,false +josebilingue,newsmast.social,US Politics,us_politics,false +akptest007,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +akptest007,newsmast.social,Energy & Pollution,energy_pollution,false +akptest007,newsmast.social,Environment,environment,false +bryantout,newsmast.social,Books & Literature,books_literature,false +akptest007,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false +akptest007,newsmast.social,Poverty & Inequality,poverty_inequality,false +bryantout,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false +LolaBea19,newsmast.social,Creative Arts,creative_arts,false +bryantout,newsmast.social,Puzzles,puzzles,false +bryantout,newsmast.social,Technology,technology,false +bryantout,newsmast.social,Breaking News,breaking_news,true +josebilingue,newsmast.social,Visual Arts,visual_arts,false +akptest007,newsmast.social,Climate change,climate_change,true +josebilingue,newsmast.social,Weather,weather,false +LolaBea19,newsmast.social,LGBTQ+,lgbtq,false +fingolas,journa.host,Space,space,false +fingolas,journa.host,Technology,technology,false +luisaropio,newsmast.social,Environment,environment,true +KevinWagar,newsmast.social,Environment,environment,false +Randee,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false +Randee,newsmast.social,Breaking News,breaking_news,false +Randee,newsmast.social,Creative Arts,creative_arts,false +Randee,newsmast.social,Environment,environment,false +Randee,newsmast.social,Food & Drink,food_drink,false +Randee,newsmast.social,Humanities,humanities,false +Randee,newsmast.social,Humour,humour,false +Randee,newsmast.social,Movies,movies,false +Randee,newsmast.social,Music,music,false +Randee,newsmast.social,Nature & Wildlife,nature_wildlife,false +Randee,newsmast.social,Journalism & Comment,news_comment_data,false +Randee,newsmast.social,Performing Arts,performing_arts,false +Randee,newsmast.social,Pets,pets,false +Randee,newsmast.social,Photography,photography,false +Randee,newsmast.social,Puzzles,puzzles,false +Randee,newsmast.social,Social Sciences,social_sciences,false +Randee,newsmast.social,Travel,travel,false +Randee,newsmast.social,TV & Radio,tv_radio,false +Randee,newsmast.social,Books & Literature,books_literature,true +josebilingue,newsmast.social,Women’s Voices,women_voices,false +fingolas,journa.host,Ukraine Invasion,ukraine_invasion,false +fingolas,journa.host,US Politics,us_politics,false +fingolas,journa.host,Breaking News,breaking_news,true +Crates,mastodon.social,Climate change,climate_change,false +Crates,mastodon.social,Football,football,false +Brian_J_Keane,newsmast.social,Environment,environment,false +PriyankaJoshi,newsmast.social,Environment,environment,false +Superpolitics,newsmast.social,Environment,environment,false +AFalcon,newsmast.social,Business,business,false +AFalcon,newsmast.social,Football,football,false +AFalcon,newsmast.social,Politics,politics,false +AFalcon,newsmast.social,Sport,sport,false +AFalcon,newsmast.social,Creative Arts,creative_arts,true +DrGCrisp,newsmast.social,Science,science,false +DrGCrisp,newsmast.social,Social Sciences,social_sciences,false +DrGCrisp,newsmast.social,Space,space,false +jenandreacchi,newsmast.social,Environment,environment,false +RewildScotland,newsmast.social,Environment,environment,false +drshaunanderson,newsmast.social,Environment,environment,false +christina88,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false +christina88,newsmast.social,Humanities,humanities,false +christina88,newsmast.social,Music,music,false +fitinfounder,newsmast.social,Environment,environment,false +francisco_blaha,newsmast.social,Environment,environment,false +business,newsmast.social,Environment,environment,false +CanWCC,newsmast.social,Environment,environment,false +IZMartinez86,newsmast.social,Environment,environment,false +O_makanjuola,newsmast.social,Environment,environment,false +womens_voices,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false +Lawrence,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false +DeliSaavedra,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false +lorenaflag,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false +Headfort,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,true +Academistry,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false +DisabledWorld,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,true +CanWCC,newsmast.social,Workers Rights,workers_rights,false +CanWCC,newsmast.social,Women’s Voices,women_voices,true +saskia,newsmast.social,Nature & Wildlife,nature_wildlife,false +seb_bw,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false +mariana_b,newsmast.social,Business,business,false +mariana_b,newsmast.social,Black Voices,black_voices,false +mariana_b,newsmast.social,Ukraine Invasion,ukraine_invasion,false +testmeme,newsmast.social,Breaking News,breaking_news,false +josebilingue,newsmast.social,Social Sciences,social_sciences,true +testmeme,newsmast.social,Politics,politics,false +testmeme,newsmast.social,Social Media,social_media,false +testmeme,newsmast.social,Ukraine Invasion,ukraine_invasion,false +testmeme,newsmast.social,US Politics,us_politics,false +testmeme,newsmast.social,Weather,weather,false +ThomasSixt,newsmast.social,Journalism & Comment,news_comment_data,false +ThomasSixt,newsmast.social,Social Media,social_media,false +ThomasSixt,newsmast.social,Travel,travel,false +ThomasSixt,newsmast.social,Food & Drink,food_drink,true +weatherandradar,newsmast.social,Breaking News,breaking_news,false +WJAHOM,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false +WJAHOM,newsmast.social,Movies,movies,false +WJAHOM,newsmast.social,Nature & Wildlife,nature_wildlife,false +WJAHOM,newsmast.social,Journalism & Comment,news_comment_data,false +WJAHOM,newsmast.social,Performing Arts,performing_arts,false +WJAHOM,newsmast.social,Pets,pets,false +WJAHOM,newsmast.social,Philosophy,philosophy,false +WJAHOM,newsmast.social,Politics,politics,false +WJAHOM,newsmast.social,Puzzles,puzzles,false +WJAHOM,newsmast.social,Science,science,false +WJAHOM,newsmast.social,Social Media,social_media,false +WJAHOM,newsmast.social,TV & Radio,tv_radio,false +WJAHOM,newsmast.social,Women’s Voices,women_voices,false +testmeme,newsmast.social,Journalism & Comment,news_comment_data,true +WJAHOM,newsmast.social,Workers Rights,workers_rights,false +WJAHOM,newsmast.social,Music,music,true +christina88,newsmast.social,Visual Arts,visual_arts,false +christina88,newsmast.social,Pets,pets,false +weatherandradar,newsmast.social,Climate change,climate_change,false +weatherandradar,newsmast.social,Environment,environment,false +nayyaung9,newsmast.social,Breaking News,breaking_news,false +weatherandradar,newsmast.social,Journalism & Comment,news_comment_data,false +mariana_b,newsmast.social,Technology,technology,false +Crates,mastodon.social,Mathematics,mathematics,false +Crates,mastodon.social,Space,space,false +Crates,mastodon.social,Programming,programming,true +Alastair,mastodon.me.uk,Science,science,false +Alastair,mastodon.me.uk,Technology,technology,false +Alastair,mastodon.me.uk,Weather,weather,false +Alastair,mastodon.me.uk,Programming,programming,true +mariana_b,newsmast.social,Women’s Voices,women_voices,false +PowellsParadigm,newsmast.social,Philosophy,philosophy,false +PowellsParadigm,newsmast.social,Programming,programming,false +PowellsParadigm,newsmast.social,Science,science,false +PowellsParadigm,newsmast.social,Social Sciences,social_sciences,false +PowellsParadigm,newsmast.social,Space,space,false +JURISTnews,newsmast.social,Breaking News,breaking_news,false +PowellsParadigm,newsmast.social,Technology,technology,false +JURISTnews,newsmast.social,Climate change,climate_change,false +PowellsParadigm,newsmast.social,Ukraine Invasion,ukraine_invasion,false +JURISTnews,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +PowellsParadigm,newsmast.social,Breaking News,breaking_news,true +JURISTnews,newsmast.social,Environment,environment,false +JURISTnews,newsmast.social,Government & Policy,government_policy,false +JURISTnews,newsmast.social,Poverty & Inequality,poverty_inequality,false +sttanner,newsmast.social,Technology,technology,true +JURISTnews,newsmast.social,Journalism & Comment,news_comment_data,false +JURISTnews,newsmast.social,Politics,politics,false +JURISTnews,newsmast.social,Ukraine Invasion,ukraine_invasion,false +JURISTnews,newsmast.social,Law & Justice,law_justice,true +megs,newsmast.social,Activism & Civil Rights,activism_civil_rights,false +megs,newsmast.social,AI,ai,false +megs,newsmast.social,Architecture & Design,architecture_design,false +megs,newsmast.social,Engineering,engineering,false +megs,newsmast.social,Gaming,gaming,false +megs,newsmast.social,LGBTQ+,lgbtq,false +megs,newsmast.social,Space,space,false +megs,newsmast.social,Technology,technology,false +megs,newsmast.social,Physics,physics,true +shubhambutola,newsmast.social,AI,ai,false +shubhambutola,newsmast.social,Architecture & Design,architecture_design,false +shubhambutola,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false +shubhambutola,newsmast.social,Creative Arts,creative_arts,false +shubhambutola,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +shubhambutola,newsmast.social,Energy & Pollution,energy_pollution,false +shubhambutola,newsmast.social,Environment,environment,false +shubhambutola,newsmast.social,Food & Drink,food_drink,false +shubhambutola,newsmast.social,Gaming,gaming,false +shubhambutola,newsmast.social,Humour,humour,false +shubhambutola,newsmast.social,Climate change,climate_change,true +JayAySevenTwo,newsmast.social,Academia & Research,academia_research,false +JayAySevenTwo,newsmast.social,Activism & Civil Rights,activism_civil_rights,false +JayAySevenTwo,newsmast.social,AI,ai,false +JayAySevenTwo,newsmast.social,Black Voices,black_voices,false +JayAySevenTwo,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +JayAySevenTwo,newsmast.social,Disabled Voices,disabled_voices,false +JayAySevenTwo,newsmast.social,Government & Policy,government_policy,false +JayAySevenTwo,newsmast.social,History,history,false +JayAySevenTwo,newsmast.social,Humanities,humanities,false +JayAySevenTwo,newsmast.social,Indigenous Peoples,indigenous_peoples,false +JayAySevenTwo,newsmast.social,Mathematics,mathematics,false +JayAySevenTwo,newsmast.social,Journalism & Comment,news_comment_data,false +JayAySevenTwo,newsmast.social,Philosophy,philosophy,false +JayAySevenTwo,newsmast.social,Poverty & Inequality,poverty_inequality,false +JayAySevenTwo,newsmast.social,Science,science,false +JayAySevenTwo,newsmast.social,Social Sciences,social_sciences,false +JayAySevenTwo,newsmast.social,Space,space,false +JayAySevenTwo,newsmast.social,Technology,technology,false +JayAySevenTwo,newsmast.social,Breaking News,breaking_news,true +metilli,newsmast.social,AI,ai,false +metilli,newsmast.social,Architecture & Design,architecture_design,false +ipsc48,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false +ajj65,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false +Kevin_Healey,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,true +faithbenson,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false +AldridgePhoto,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false +indiajade_68,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false +PAAwarenessUK,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false +Radwa,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false +JenniferLawson,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false +samf,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,true +rewildingsam,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false +monicareinagel,newsmast.social,AI,ai,false +monicareinagel,newsmast.social,Biology,biology,false +monicareinagel,newsmast.social,Books & Literature,books_literature,false +monicareinagel,newsmast.social,Food & Drink,food_drink,false +vpatel,newsmast.social,Academia & Research,academia_research,false +monicareinagel,newsmast.social,Humour,humour,false +monicareinagel,newsmast.social,Philosophy,philosophy,false +vpatel,newsmast.social,US Politics,us_politics,false +monicareinagel,newsmast.social,Science,science,false +monicareinagel,newsmast.social,Social Sciences,social_sciences,false +monicareinagel,newsmast.social,Technology,technology,false +candice_chirwa,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false +LeslieTay,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false +ScharSchool,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false +debgod,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false +keithramsey,newsmast.social,Books & Literature,books_literature,false +keithramsey,newsmast.social,Climate change,climate_change,false +keithramsey,newsmast.social,Energy & Pollution,energy_pollution,false +keithramsey,newsmast.social,Humanities,humanities,false +keithramsey,newsmast.social,Photography,photography,false +keithramsey,newsmast.social,Science,science,false +keithramsey,newsmast.social,History,history,true +Reuben,newsmast.social,Football,football,false +Reuben,newsmast.social,Government & Policy,government_policy,false +Reuben,newsmast.social,Healthcare,healthcare,false +Reuben,newsmast.social,Sport,sport,false +Reuben,newsmast.social,Journalism & Comment,news_comment_data,true +christina88,newsmast.social,Philosophy,philosophy,false +christina88,newsmast.social,Creative Arts,creative_arts,false +dennisfparker,newsmast.social,Activism & Civil Rights,activism_civil_rights,false +dennisfparker,newsmast.social,Breaking News,breaking_news,false +MichelleA,newsmast.social,Academia & Research,academia_research,false +FionaDobsonCD,newsmast.social,LGBTQ+,lgbtq,true +dennisfparker,newsmast.social,Climate change,climate_change,false +MichelleA,newsmast.social,Biology,biology,false +dennisfparker,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +dennisfparker,newsmast.social,Energy & Pollution,energy_pollution,false +dennisfparker,newsmast.social,Environment,environment,false +MichelleA,newsmast.social,Breaking News,breaking_news,false +dennisfparker,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false +dennisfparker,newsmast.social,Poverty & Inequality,poverty_inequality,false +MichelleA,newsmast.social,Business,business,false +dennisfparker,newsmast.social,Journalism & Comment,news_comment_data,false +dennisfparker,newsmast.social,Politics,politics,false +FionaDobsonCD,newsmast.social,History,history,false +FionaDobsonCD,newsmast.social,Humour,humour,false +dennisfparker,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,true +FionaDobsonCD,newsmast.social,Nature & Wildlife,nature_wildlife,false +FionaDobsonCD,newsmast.social,Philosophy,philosophy,false +FionaDobsonCD,newsmast.social,Travel,travel,false +MichelleA,newsmast.social,Chemistry,chemistry,false +MichelleA,newsmast.social,Government & Policy,government_policy,false +MichelleA,newsmast.social,Law & Justice,law_justice,false +MichelleA,newsmast.social,Markets & Finance,markets_finance,false +MichelleA,newsmast.social,Mathematics,mathematics,false +MichelleA,newsmast.social,Journalism & Comment,news_comment_data,false +MichelleA,newsmast.social,Physics,physics,false +MichelleA,newsmast.social,Politics,politics,false +MichelleA,newsmast.social,Science,science,false +MichelleA,newsmast.social,Social Media,social_media,false +MichelleA,newsmast.social,Space,space,false +MichelleA,newsmast.social,Ukraine Invasion,ukraine_invasion,false +MichelleA,newsmast.social,US Politics,us_politics,false +MichelleA,newsmast.social,Weather,weather,false +MichelleA,newsmast.social,Workers Rights,workers_rights,false +MichelleA,newsmast.social,Healthcare,healthcare,true +shubhambutola,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false +shubhambutola,newsmast.social,Poverty & Inequality,poverty_inequality,false +saskia,newsmast.social,Science,science,false +railrecipe,newsmast.social,Business,business,false +shubhambutola,newsmast.social,Movies,movies,false +shubhambutola,newsmast.social,Music,music,false +shubhambutola,newsmast.social,Nature & Wildlife,nature_wildlife,false +shubhambutola,newsmast.social,Performing Arts,performing_arts,false +shubhambutola,newsmast.social,Pets,pets,false +shubhambutola,newsmast.social,Photography,photography,false +railrecipe,newsmast.social,Journalism & Comment,news_comment_data,false +shubhambutola,newsmast.social,Puzzles,puzzles,false +navayan,newsmast.social,Journalism & Comment,news_comment_data,false +navayan,newsmast.social,Social Media,social_media,false +shubhambutola,newsmast.social,Technology,technology,false +shubhambutola,newsmast.social,Travel,travel,false +shubhambutola,newsmast.social,TV & Radio,tv_radio,false +shubhambutola,newsmast.social,Visual Arts,visual_arts,false +navayan,newsmast.social,Ukraine Invasion,ukraine_invasion,false +navayan,newsmast.social,Weather,weather,false +navayan,newsmast.social,Breaking News,breaking_news,true +railrecipe,newsmast.social,Travel,travel,false +railrecipe,newsmast.social,Weather,weather,false +luisaropio,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false +pennywalker,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false +crazyjane125,newsmast.social,Biology,biology,false +crazyjane125,newsmast.social,Disabled Voices,disabled_voices,false +crazyjane125,newsmast.social,Food & Drink,food_drink,false +crazyjane125,newsmast.social,Nature & Wildlife,nature_wildlife,false +crazyjane125,newsmast.social,Science,science,true +KittyInTheMitty,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,true +wytham_woods,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false +Brian_J_Keane,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false +ilovefilm,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false +Iyad_Abumoghli,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false +Cam_Walker,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false +Roamancing,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false +CanWCC,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false +DrGCrisp,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false +JURISTnews,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false +Bell,newsmast.social,AI,ai,false +Bell,newsmast.social,Business,business,false +railrecipe,newsmast.social,Food & Drink,food_drink,true +Bell,newsmast.social,Engineering,engineering,false +Bell,newsmast.social,Environment,environment,false +HarveyJKaye,newsmast.social,Breaking News,breaking_news,false +Bell,newsmast.social,Mathematics,mathematics,false +Bell,newsmast.social,Physics,physics,false +Bell,newsmast.social,Technology,technology,false +Bell,newsmast.social,Science,science,true +EdBowers101,newsmast.social,Books & Literature,books_literature,false +mariana_b,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false +christina88,newsmast.social,LGBTQ+,lgbtq,false +mariana_b,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false +HarveyJKaye,newsmast.social,Government & Policy,government_policy,false +HarveyJKaye,newsmast.social,History,history,false +Childdotorg,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false +O_makanjuola,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false +dianashurman,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false +HarveyJKaye,newsmast.social,Humanities,humanities,false +maketheswitchAU,newsmast.social,Breaking News,breaking_news,false +maketheswitchAU,newsmast.social,Visual Arts,visual_arts,false +stephieduffy,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false +Dailyscandi,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false +OmarSakr,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false +Aysegul,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false +enangha,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +emilyjd,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +zainabismail,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +Kayleigh,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +dadonthemoveph,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +Pyae,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +DeliSaavedra,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +JulieSpray,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +kazwan,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +DisabledWorld,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +ipsc48,newsmast.social,Democracy & Human Rights,democracy_human_rights,true +chrisfrench,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +karlienoon,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +ajj65,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +vegannutrition,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +DrCarpineti,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +siji,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +indiajade_68,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +PAAwarenessUK,newsmast.social,Democracy & Human Rights,democracy_human_rights,true +candice_chirwa,newsmast.social,Democracy & Human Rights,democracy_human_rights,true +HarveyJKaye,newsmast.social,Social Sciences,social_sciences,false +HarveyJKaye,newsmast.social,Ukraine Invasion,ukraine_invasion,false +HarveyJKaye,newsmast.social,US Politics,us_politics,false +HarveyJKaye,newsmast.social,Journalism & Comment,news_comment_data,true +metilli,newsmast.social,Biology,biology,false +Serious_Feather,newsmast.social,Architecture & Design,architecture_design,false +metilli,newsmast.social,Books & Literature,books_literature,false +metilli,newsmast.social,Breaking News,breaking_news,false +TheBeeGuy,newsmast.social,Science,science,false +IZMartinez86,newsmast.social,Poverty & Inequality,poverty_inequality,true +IZMartinez86,newsmast.social,Biology,biology,false +IZMartinez86,newsmast.social,Chemistry,chemistry,false +IZMartinez86,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +IZMartinez86,newsmast.social,Engineering,engineering,false +IZMartinez86,newsmast.social,Healthcare,healthcare,false +IZMartinez86,newsmast.social,History,history,false +IZMartinez86,newsmast.social,Mathematics,mathematics,false +IZMartinez86,newsmast.social,Physics,physics,false +IZMartinez86,newsmast.social,Politics,politics,false +lgsmsec,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +RhondaAlbom,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +aliegilbert,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +LynnNanos,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +KieranRose,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +tderyugina,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +mombian,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +ccgh,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +OmarSakr,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +marianajeronimo,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +chrysalismama,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +Dhiraj,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +Brian_J_Keane,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +SJC,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +ilovefilm,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +maketheswitchAU,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +gnasralla,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +Roamancing,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +DrGCrisp,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +Childdotorg,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +O_makanjuola,newsmast.social,Democracy & Human Rights,democracy_human_rights,true +jacklscanlan,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false +EasternBorder,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false +JulieSpray,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false +macroliter,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,true +siji,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false +Crof,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,true +wjnewman,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false +EasternBorder,newsmast.social,Poverty & Inequality,poverty_inequality,false +Headfort,newsmast.social,Poverty & Inequality,poverty_inequality,false +indiajade_68,newsmast.social,Poverty & Inequality,poverty_inequality,false +faithbenson,newsmast.social,Poverty & Inequality,poverty_inequality,false +JenniferLawson,newsmast.social,Poverty & Inequality,poverty_inequality,false +Ed_Rempel,newsmast.social,Poverty & Inequality,poverty_inequality,false +KittyInTheMitty,newsmast.social,Poverty & Inequality,poverty_inequality,false +gnasralla,newsmast.social,Poverty & Inequality,poverty_inequality,false +christina88,newsmast.social,Poverty & Inequality,poverty_inequality,false +zerotwo,newsmast.social,Immigrants Rights,immigrants_rights,false +enangha,newsmast.social,Immigrants Rights,immigrants_rights,false +lucygreenwold,newsmast.social,Immigrants Rights,immigrants_rights,false +dannyweller,newsmast.social,Immigrants Rights,immigrants_rights,false +saskia,newsmast.social,Immigrants Rights,immigrants_rights,false +minkhantkyaw35,newsmast.social,Immigrants Rights,immigrants_rights,false +akp,newsmast.social,Immigrants Rights,immigrants_rights,false +SoeMyinHtel_dev,newsmast.social,Immigrants Rights,immigrants_rights,false +minkhantkyawygn,newsmast.social,Immigrants Rights,immigrants_rights,false +sithu_dev3,newsmast.social,Immigrants Rights,immigrants_rights,false +refugeescommunityupdate,newsmast.social,Immigrants Rights,immigrants_rights,true +phylis,newsmast.social,Immigrants Rights,immigrants_rights,false +Sushmitapanda,newsmast.social,Immigrants Rights,immigrants_rights,false +DerrickEMugisha,newsmast.social,Immigrants Rights,immigrants_rights,false +Sebsb,newsmast.social,Immigrants Rights,immigrants_rights,false +samarpahwa,newsmast.social,Immigrants Rights,immigrants_rights,false +MichaelMarshall,newsmast.social,Immigrants Rights,immigrants_rights,false +ipsc48,newsmast.social,Immigrants Rights,immigrants_rights,false +Hayfa_Sdiri,newsmast.social,Immigrants Rights,immigrants_rights,false +calebijioma,newsmast.social,Immigrants Rights,immigrants_rights,false +AndreCMonteiro,newsmast.social,Immigrants Rights,immigrants_rights,false +Radwa,newsmast.social,Immigrants Rights,immigrants_rights,false +KamranSaeed,newsmast.social,Immigrants Rights,immigrants_rights,false +Crof,newsmast.social,Immigrants Rights,immigrants_rights,false +avalio77,newsmast.social,Immigrants Rights,immigrants_rights,false +ghutchis,newsmast.social,Immigrants Rights,immigrants_rights,false +CharityNews,newsmast.social,Immigrants Rights,immigrants_rights,false +Lamech,newsmast.social,Immigrants Rights,immigrants_rights,false +tderyugina,newsmast.social,Immigrants Rights,immigrants_rights,false +Kyaw,newsmast.social,Immigrants Rights,immigrants_rights,false +OmarSakr,newsmast.social,Immigrants Rights,immigrants_rights,false +Johnvink,newsmast.social,Immigrants Rights,immigrants_rights,false +pennywalker,newsmast.social,Immigrants Rights,immigrants_rights,false +sustainabilityx,newsmast.social,Immigrants Rights,immigrants_rights,false +PolGeoNow,newsmast.social,Immigrants Rights,immigrants_rights,false +eve,newsmast.social,Immigrants Rights,immigrants_rights,false +gnasralla,newsmast.social,Immigrants Rights,immigrants_rights,false +drshaunanderson,newsmast.social,Immigrants Rights,immigrants_rights,false +akptest007,newsmast.social,Immigrants Rights,immigrants_rights,false +JURISTnews,newsmast.social,Immigrants Rights,immigrants_rights,false +megs,newsmast.social,Immigrants Rights,immigrants_rights,false +dennisfparker,newsmast.social,Immigrants Rights,immigrants_rights,false +shubhambutola,newsmast.social,Immigrants Rights,immigrants_rights,false +IZMartinez86,newsmast.social,Immigrants Rights,immigrants_rights,false +sofiahvillar,newsmast.social,Markets & Finance,markets_finance,false +sofiahvillar,newsmast.social,Philosophy,philosophy,false +sofiahvillar,newsmast.social,Politics,politics,false +sofiahvillar,newsmast.social,Social Sciences,social_sciences,false +sofiahvillar,newsmast.social,History,history,true +healthylifetips,newsmast.social,Energy & Pollution,energy_pollution,false +param_21,newsmast.social,Academia & Research,academia_research,false +param_21,newsmast.social,Breaking News,breaking_news,false +param_21,newsmast.social,Business,business,false +param_21,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +param_21,newsmast.social,Football,football,false +param_21,newsmast.social,Government & Policy,government_policy,false +param_21,newsmast.social,Humour,humour,false +param_21,newsmast.social,Law & Justice,law_justice,false +param_21,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false +param_21,newsmast.social,Pets,pets,false +param_21,newsmast.social,Philosophy,philosophy,false +param_21,newsmast.social,Puzzles,puzzles,false +param_21,newsmast.social,Markets & Finance,markets_finance,true +weatherandradar,newsmast.social,Weather,weather,true +TheBeeGuy,newsmast.social,Breaking News,breaking_news,false +IlCava,mastodon.uno,Indigenous Peoples,indigenous_peoples,false +IZMartinez86,newsmast.social,Science,science,false +IZMartinez86,newsmast.social,Social Sciences,social_sciences,false +IZMartinez86,newsmast.social,Space,space,false +kxgmdkvkg,newsmast.social,AI,ai,false +kxgmdkvkg,newsmast.social,Biology,biology,false +kxgmdkvkg,newsmast.social,Chemistry,chemistry,false +healthylifetips,newsmast.social,Creative Arts,creative_arts,false +healthylifetips,newsmast.social,Environment,environment,false +healthylifetips,newsmast.social,Food & Drink,food_drink,false +healthylifetips,newsmast.social,Humour,humour,false +healthylifetips,newsmast.social,Indigenous Peoples,indigenous_peoples,false +thosgood,newsmast.social,Books & Literature,books_literature,false +thosgood,newsmast.social,History,history,false +thosgood,newsmast.social,Humanities,humanities,false +thosgood,newsmast.social,Philosophy,philosophy,false +thosgood,newsmast.social,Mathematics,mathematics,true +healthylifetips,newsmast.social,Nature & Wildlife,nature_wildlife,false +healthylifetips,newsmast.social,Pets,pets,false +healthylifetips,newsmast.social,Puzzles,puzzles,false +healthylifetips,newsmast.social,Travel,travel,false +healthylifetips,newsmast.social,Women’s Voices,women_voices,false +healthylifetips,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,true +kxgmdkvkg,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +kxgmdkvkg,newsmast.social,Engineering,engineering,false +kxgmdkvkg,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false +kxgmdkvkg,newsmast.social,Mathematics,mathematics,false +kxgmdkvkg,newsmast.social,Journalism & Comment,news_comment_data,false +kxgmdkvkg,newsmast.social,Physics,physics,false +kxgmdkvkg,newsmast.social,Poverty & Inequality,poverty_inequality,false +kxgmdkvkg,newsmast.social,Programming,programming,false +kxgmdkvkg,newsmast.social,Science,science,false +kxgmdkvkg,newsmast.social,Social Media,social_media,false +kxgmdkvkg,newsmast.social,Space,space,false +kxgmdkvkg,newsmast.social,Technology,technology,false +Calmsage,newsmast.social,Pets,pets,false +Calmsage,newsmast.social,Puzzles,puzzles,false +kxgmdkvkg,newsmast.social,Ukraine Invasion,ukraine_invasion,false +dannyweller,newsmast.social,Politics,politics,false +dannyweller,newsmast.social,Food & Drink,food_drink,false +steve116,newsmast.social,Law & Justice,law_justice,false +kxgmdkvkg,newsmast.social,Weather,weather,false +kxgmdkvkg,newsmast.social,Breaking News,breaking_news,true +Dr_Finbar,newsmast.social,AI,ai,false +Dr_Finbar,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false +Dr_Finbar,newsmast.social,Energy & Pollution,energy_pollution,false +Dr_Finbar,newsmast.social,Environment,environment,false +SithuBo,newsmast.social,AI,ai,false +Serious_Feather,newsmast.social,Law & Justice,law_justice,false +Dr_Finbar,newsmast.social,Markets & Finance,markets_finance,true +mariana_b,newsmast.social,Football,football,false +saskia,newsmast.social,Food & Drink,food_drink,false +fitinfounder,newsmast.social,Workers Rights,workers_rights,false +mariana_b,newsmast.social,Food & Drink,food_drink,false +Serious_Feather,newsmast.social,Photography,photography,false +Childdotorg,newsmast.social,Black Voices,black_voices,false +Childdotorg,newsmast.social,Breaking News,breaking_news,false +Childdotorg,newsmast.social,Poverty & Inequality,poverty_inequality,false +Childdotorg,newsmast.social,Journalism & Comment,news_comment_data,false +Childdotorg,newsmast.social,Photography,photography,false +Childdotorg,newsmast.social,Women’s Voices,women_voices,true +Freddie3,newsmast.social,Books & Literature,books_literature,false +anujahooja,newsmast.social,AI,ai,false +anujahooja,newsmast.social,Breaking News,breaking_news,false +anujahooja,newsmast.social,Business,business,false +anujahooja,newsmast.social,Engineering,engineering,false +anujahooja,newsmast.social,Gaming,gaming,false +anujahooja,newsmast.social,Markets & Finance,markets_finance,false +anujahooja,newsmast.social,Programming,programming,false +O_makanjuola,newsmast.social,Activism & Civil Rights,activism_civil_rights,false +O_makanjuola,newsmast.social,Breaking News,breaking_news,false +O_makanjuola,newsmast.social,Creative Arts,creative_arts,false +O_makanjuola,newsmast.social,Food & Drink,food_drink,false +O_makanjuola,newsmast.social,Poverty & Inequality,poverty_inequality,false +O_makanjuola,newsmast.social,LGBTQ+,lgbtq,false +O_makanjuola,newsmast.social,Movies,movies,false +O_makanjuola,newsmast.social,Music,music,false +O_makanjuola,newsmast.social,Nature & Wildlife,nature_wildlife,false +O_makanjuola,newsmast.social,Journalism & Comment,news_comment_data,false +O_makanjuola,newsmast.social,Politics,politics,false +O_makanjuola,newsmast.social,Travel,travel,false +O_makanjuola,newsmast.social,Visual Arts,visual_arts,false +O_makanjuola,newsmast.social,Women’s Voices,women_voices,false +saskia,newsmast.social,TV & Radio,tv_radio,false +mariana_b,newsmast.social,Space,space,false +WestWeather,newsmast.social,Weather,weather,true +vpatel,newsmast.social,Weather,weather,false +WestWeather,newsmast.social,Environment,environment,false +WestWeather,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false +WestWeather,newsmast.social,Climate change,climate_change,false +WestWeather,newsmast.social,Energy & Pollution,energy_pollution,false +mariana_b,newsmast.social,Healthcare,healthcare,false +vpatel,newsmast.social,Breaking News,breaking_news,false +vpatel,newsmast.social,Politics,politics,false +vpatel,newsmast.social,Ukraine Invasion,ukraine_invasion,false +vpatel,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +vpatel,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false +vpatel,newsmast.social,Poverty & Inequality,poverty_inequality,false +vpatel,newsmast.social,Government & Policy,government_policy,false +vpatel,newsmast.social,Healthcare,healthcare,false +vpatel,newsmast.social,Law & Justice,law_justice,false +vpatel,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false +Grinch,newsmast.social,Black Voices,black_voices,false +vpatel,newsmast.social,Environment,environment,false +vpatel,newsmast.social,Climate change,climate_change,false +Grinch,newsmast.social,Government & Policy,government_policy,false +vpatel,newsmast.social,Black Voices,black_voices,false +vpatel,newsmast.social,Immigrants Rights,immigrants_rights,false +vpatel,newsmast.social,Workers Rights,workers_rights,false +Grinch,newsmast.social,Social Media,social_media,false +Grinch,newsmast.social,Ukraine Invasion,ukraine_invasion,false +vpatel,newsmast.social,Technology,technology,false +Grinch,newsmast.social,US Politics,us_politics,false +vpatel,newsmast.social,Biology,biology,false +vpatel,newsmast.social,Engineering,engineering,false +vpatel,newsmast.social,Physics,physics,false +Grinch,newsmast.social,Weather,weather,false +vpatel,newsmast.social,Humanities,humanities,false +vpatel,newsmast.social,History,history,false +vpatel,newsmast.social,Gaming,gaming,false +vpatel,newsmast.social,Music,music,false +vpatel,newsmast.social,Photography,photography,false +vpatel,newsmast.social,Visual Arts,visual_arts,false +vpatel,newsmast.social,Sport,sport,false +Grinch,newsmast.social,Politics,politics,true +Sylkeweb,newsmast.social,Environment,environment,false +surya,newsmast.social,AI,ai,false +surya,newsmast.social,Social Media,social_media,false +surya,newsmast.social,Sport,sport,false +surya,newsmast.social,Technology,technology,false +surya,newsmast.social,Football,football,true +Travelwisesr,newsmast.social,Business,business,false +Travelwisesr,newsmast.social,Music,music,false +Travelwisesr,newsmast.social,Photography,photography,false +Travelwisesr,newsmast.social,Visual Arts,visual_arts,false +Travelwisesr,newsmast.social,AI,ai,true +jeffreyguard,newsmast.social,Architecture & Design,architecture_design,false +jeffreyguard,newsmast.social,Books & Literature,books_literature,false +jeffreyguard,newsmast.social,History,history,false +jeffreyguard,newsmast.social,Movies,movies,false +jeffreyguard,newsmast.social,Music,music,false +jeffreyguard,newsmast.social,Performing Arts,performing_arts,false +jeffreyguard,newsmast.social,Philosophy,philosophy,false +jeffreyguard,newsmast.social,Photography,photography,false +jeffreyguard,newsmast.social,Social Sciences,social_sciences,false +jeffreyguard,newsmast.social,TV & Radio,tv_radio,false +jeffreyguard,newsmast.social,Visual Arts,visual_arts,false +jeffreyguard,newsmast.social,LGBTQ+,lgbtq,true +Sylkeweb,newsmast.social,Nature & Wildlife,nature_wildlife,false +Sylkeweb,newsmast.social,Science,science,false +Sylkeweb,newsmast.social,Social Sciences,social_sciences,false +Sylkeweb,newsmast.social,Food & Drink,food_drink,true +smartphonology,newsmast.social,Academia & Research,academia_research,false +smartphonology,newsmast.social,AI,ai,false +smartphonology,newsmast.social,Engineering,engineering,false +smartphonology,newsmast.social,Government & Policy,government_policy,false +smartphonology,newsmast.social,Healthcare,healthcare,false +smartphonology,newsmast.social,Law & Justice,law_justice,false +smartphonology,newsmast.social,Journalism & Comment,news_comment_data,false +smartphonology,newsmast.social,Politics,politics,false +smartphonology,newsmast.social,Programming,programming,false +smartphonology,newsmast.social,Social Media,social_media,false +smartphonology,newsmast.social,Technology,technology,false +smartphonology,newsmast.social,Ukraine Invasion,ukraine_invasion,false +smartphonology,newsmast.social,US Politics,us_politics,false +smartphonology,newsmast.social,Weather,weather,false +smartphonology,newsmast.social,Breaking News,breaking_news,true +Serious_Feather,newsmast.social,Poverty & Inequality,poverty_inequality,false +denn,newsmast.social,Activism & Civil Rights,activism_civil_rights,false +DFLS,newsmast.social,Architecture & Design,architecture_design,false +DFLS,newsmast.social,Books & Literature,books_literature,false +DFLS,newsmast.social,Breaking News,breaking_news,false +DFLS,newsmast.social,Creative Arts,creative_arts,false +DFLS,newsmast.social,Food & Drink,food_drink,false +DFLS,newsmast.social,Gaming,gaming,false +DFLS,newsmast.social,Humour,humour,false +DFLS,newsmast.social,Markets & Finance,markets_finance,false +DFLS,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false +DFLS,newsmast.social,Movies,movies,false +DFLS,newsmast.social,Music,music,false +DFLS,newsmast.social,Nature & Wildlife,nature_wildlife,false +DFLS,newsmast.social,Journalism & Comment,news_comment_data,false +DFLS,newsmast.social,Performing Arts,performing_arts,false +DFLS,newsmast.social,Pets,pets,false +DFLS,newsmast.social,Photography,photography,false +DFLS,newsmast.social,Puzzles,puzzles,false +DFLS,newsmast.social,Social Media,social_media,false +DFLS,newsmast.social,Travel,travel,false +DFLS,newsmast.social,TV & Radio,tv_radio,false +DFLS,newsmast.social,Ukraine Invasion,ukraine_invasion,false +DFLS,newsmast.social,Visual Arts,visual_arts,false +DFLS,newsmast.social,Weather,weather,false +DFLS,newsmast.social,Workers Rights,workers_rights,false +DFLS,newsmast.social,Business,business,true +LolaBea19,newsmast.social,TV & Radio,tv_radio,false +denn,newsmast.social,AI,ai,false +denn,newsmast.social,Biology,biology,false +denn,newsmast.social,Black Voices,black_voices,false +Serious_Feather,newsmast.social,Politics,politics,true +seasonssuppers,newsmast.social,Breaking News,breaking_news,false +seasonssuppers,newsmast.social,Creative Arts,creative_arts,false +seasonssuppers,newsmast.social,History,history,false +seasonssuppers,newsmast.social,Humanities,humanities,false +seasonssuppers,newsmast.social,Humour,humour,false +seasonssuppers,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false +seasonssuppers,newsmast.social,Nature & Wildlife,nature_wildlife,false +seasonssuppers,newsmast.social,Journalism & Comment,news_comment_data,false +vpatel,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false +vpatel,newsmast.social,Energy & Pollution,energy_pollution,false +minkhantkyaw,newsmast.social,Journalism & Comment,news_comment_data,false +vpatel,newsmast.social,Activism & Civil Rights,activism_civil_rights,false +vpatel,newsmast.social,Disabled Voices,disabled_voices,false +vpatel,newsmast.social,Indigenous Peoples,indigenous_peoples,false +vpatel,newsmast.social,Women’s Voices,women_voices,false +rach_garr,newsmast.social,Academia & Research,academia_research,false +vpatel,newsmast.social,Markets & Finance,markets_finance,false +vpatel,newsmast.social,AI,ai,false +vpatel,newsmast.social,Science,science,false +vpatel,newsmast.social,Chemistry,chemistry,false +vpatel,newsmast.social,Mathematics,mathematics,false +vpatel,newsmast.social,Space,space,false +vpatel,newsmast.social,Books & Literature,books_literature,false +rach_garr,newsmast.social,Climate change,climate_change,false +rach_garr,newsmast.social,Environment,environment,false +rach_garr,newsmast.social,Government & Policy,government_policy,false +RafiqulMontu,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false +RafiqulMontu,newsmast.social,Energy & Pollution,energy_pollution,false +RafiqulMontu,newsmast.social,Environment,environment,false +RafiqulMontu,newsmast.social,Physics,physics,false +RafiqulMontu,newsmast.social,Space,space,false +RafiqulMontu,newsmast.social,Climate change,climate_change,true +rach_garr,newsmast.social,Politics,politics,false +rach_garr,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,true +heathercarlson,newsmast.social,Activism & Civil Rights,activism_civil_rights,false +heathercarlson,newsmast.social,Breaking News,breaking_news,false +heathercarlson,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +heathercarlson,newsmast.social,Food & Drink,food_drink,false +heathercarlson,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false +RevRobinDB,newsmast.social,Activism & Civil Rights,activism_civil_rights,false +RevRobinDB,newsmast.social,Black Voices,black_voices,false +RevRobinDB,newsmast.social,Books & Literature,books_literature,false +RevRobinDB,newsmast.social,Breaking News,breaking_news,false +RevRobinDB,newsmast.social,Climate change,climate_change,false +brettmirl,newsmast.social,Activism & Civil Rights,activism_civil_rights,false +brettmirl,newsmast.social,AI,ai,false +brettmirl,newsmast.social,Black Voices,black_voices,false +brettmirl,newsmast.social,Breaking News,breaking_news,false +brettmirl,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +brettmirl,newsmast.social,Disabled Voices,disabled_voices,false +brettmirl,newsmast.social,Government & Policy,government_policy,false +brettmirl,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false +brettmirl,newsmast.social,Immigrants Rights,immigrants_rights,false +brettmirl,newsmast.social,Indigenous Peoples,indigenous_peoples,false +brettmirl,newsmast.social,Movies,movies,false +brettmirl,newsmast.social,Music,music,false +brettmirl,newsmast.social,Journalism & Comment,news_comment_data,false +brettmirl,newsmast.social,Politics,politics,false +brettmirl,newsmast.social,Poverty & Inequality,poverty_inequality,false +brettmirl,newsmast.social,Technology,technology,false +brettmirl,newsmast.social,TV & Radio,tv_radio,false +brettmirl,newsmast.social,Weather,weather,false +brettmirl,newsmast.social,Women’s Voices,women_voices,false +brettmirl,newsmast.social,LGBTQ+,lgbtq,true +RevRobinDB,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +heathercarlson,newsmast.social,Pets,pets,false +heathercarlson,newsmast.social,Poverty & Inequality,poverty_inequality,false +RevRobinDB,newsmast.social,Government & Policy,government_policy,false +RevRobinDB,newsmast.social,History,history,false +RevRobinDB,newsmast.social,Immigrants Rights,immigrants_rights,false +RevRobinDB,newsmast.social,Indigenous Peoples,indigenous_peoples,false +heathercarlson,newsmast.social,Women’s Voices,women_voices,false +RevRobinDB,newsmast.social,Journalism & Comment,news_comment_data,false +RevRobinDB,newsmast.social,Philosophy,philosophy,false +RevRobinDB,newsmast.social,Politics,politics,false +RevRobinDB,newsmast.social,Poverty & Inequality,poverty_inequality,false +heathercarlson,newsmast.social,Travel,travel,true +RevRobinDB,newsmast.social,Women’s Voices,women_voices,false +RevRobinDB,newsmast.social,LGBTQ+,lgbtq,true +metilli,newsmast.social,Chemistry,chemistry,false +saskia,newsmast.social,Social Media,social_media,false +denn,newsmast.social,Chemistry,chemistry,false +denn,newsmast.social,Disabled Voices,disabled_voices,false +denn,newsmast.social,Engineering,engineering,false +TheTravelBunny,newsmast.social,Architecture & Design,architecture_design,false +TheTravelBunny,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false +TheTravelBunny,newsmast.social,Books & Literature,books_literature,false +TheTravelBunny,newsmast.social,Environment,environment,false +TheTravelBunny,newsmast.social,Food & Drink,food_drink,false +TheTravelBunny,newsmast.social,Nature & Wildlife,nature_wildlife,false +TheTravelBunny,newsmast.social,Photography,photography,false +TheTravelBunny,newsmast.social,Travel,travel,true +denn,newsmast.social,History,history,false +denn,newsmast.social,Humanities,humanities,false +Karia,newsmast.social,Academia & Research,academia_research,false +Karia,newsmast.social,AI,ai,false +Karia,newsmast.social,Creative Arts,creative_arts,false +Karia,newsmast.social,Engineering,engineering,false +Karia,newsmast.social,Government & Policy,government_policy,false +Karia,newsmast.social,Healthcare,healthcare,false +Karia,newsmast.social,History,history,false +Karia,newsmast.social,Humanities,humanities,false +Karia,newsmast.social,Humour,humour,false +Karia,newsmast.social,Law & Justice,law_justice,false +Karia,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false +Karia,newsmast.social,Nature & Wildlife,nature_wildlife,false +Karia,newsmast.social,Food & Drink,food_drink,true +jonbreeze,newsmast.social,Climate change,climate_change,false +jonbreeze,newsmast.social,Energy & Pollution,energy_pollution,false +jonbreeze,newsmast.social,Science,science,false +jonbreeze,newsmast.social,Space,space,false +jonbreeze,newsmast.social,Technology,technology,false +jonbreeze,newsmast.social,Physics,physics,true +vpatel,newsmast.social,LGBTQ+,lgbtq,false +vpatel,newsmast.social,Social Sciences,social_sciences,false +vpatel,newsmast.social,Architecture & Design,architecture_design,false +vpatel,newsmast.social,Movies,movies,false +vpatel,newsmast.social,Performing Arts,performing_arts,false +vpatel,newsmast.social,TV & Radio,tv_radio,false +vpatel,newsmast.social,Football,football,false +denn,newsmast.social,Immigrants Rights,immigrants_rights,false +vpatel,newsmast.social,Creative Arts,creative_arts,false +seasonssuppers,newsmast.social,Pets,pets,false +vpatel,newsmast.social,Food & Drink,food_drink,false +seasonssuppers,newsmast.social,Philosophy,philosophy,false +vpatel,newsmast.social,Humour,humour,false +vpatel,newsmast.social,Nature & Wildlife,nature_wildlife,false +vpatel,newsmast.social,Pets,pets,false +vpatel,newsmast.social,Puzzles,puzzles,false +vpatel,newsmast.social,Travel,travel,false +seasonssuppers,newsmast.social,Puzzles,puzzles,false +seasonssuppers,newsmast.social,Social Media,social_media,false +FreddieJ,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false +dpopa25,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false +dpopa25,newsmast.social,Books & Literature,books_literature,false +dpopa25,newsmast.social,Creative Arts,creative_arts,false +dpopa25,newsmast.social,Environment,environment,false +dpopa25,newsmast.social,Food & Drink,food_drink,false +dpopa25,newsmast.social,History,history,false +dpopa25,newsmast.social,Humanities,humanities,false +FreddieJ,newsmast.social,Government & Policy,government_policy,false +dpopa25,newsmast.social,Science,science,false +dpopa25,newsmast.social,Social Sciences,social_sciences,false +dpopa25,newsmast.social,Visual Arts,visual_arts,false +dpopa25,newsmast.social,Humour,humour,true +seasonssuppers,newsmast.social,Social Sciences,social_sciences,false +FreddieJ,newsmast.social,Energy & Pollution,energy_pollution,false +FreddieJ,newsmast.social,Black Voices,black_voices,false +FreddieJ,newsmast.social,Women’s Voices,women_voices,false +kijekijikokwe,newsmast.social,Academia & Research,academia_research,false +kijekijikokwe,newsmast.social,Activism & Civil Rights,activism_civil_rights,false +kijekijikokwe,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +kijekijikokwe,newsmast.social,Disabled Voices,disabled_voices,false +kijekijikokwe,newsmast.social,Healthcare,healthcare,false +kijekijikokwe,newsmast.social,Law & Justice,law_justice,false +kijekijikokwe,newsmast.social,LGBTQ+,lgbtq,false +kijekijikokwe,newsmast.social,Indigenous Peoples,indigenous_peoples,true +seasonssuppers,newsmast.social,Travel,travel,false +ModernArtifice,newsmast.social,AI,ai,false +ModernArtifice,newsmast.social,Books & Literature,books_literature,false +ModernArtifice,newsmast.social,Movies,movies,false +ModernArtifice,newsmast.social,Science,science,false +ModernArtifice,newsmast.social,Technology,technology,false +ModernArtifice,newsmast.social,Gaming,gaming,true +glecko,newsmast.social,AI,ai,false +FreddieJ,newsmast.social,Social Sciences,social_sciences,false +glecko,newsmast.social,Biology,biology,false +glecko,newsmast.social,Business,business,false +glecko,newsmast.social,Climate change,climate_change,false +glecko,newsmast.social,Energy & Pollution,energy_pollution,false +dleifohcs,newsmast.social,AI,ai,false +dleifohcs,newsmast.social,Science,science,false +dleifohcs,newsmast.social,Space,space,false +dleifohcs,newsmast.social,Technology,technology,false +dleifohcs,newsmast.social,Physics,physics,true +glecko,newsmast.social,Environment,environment,false +glecko,newsmast.social,Gaming,gaming,false +glecko,newsmast.social,Humanities,humanities,false +glecko,newsmast.social,Markets & Finance,markets_finance,false +glecko,newsmast.social,Science,science,false +glecko,newsmast.social,Space,space,false +glecko,newsmast.social,Technology,technology,false +glecko,newsmast.social,US Sport,us_sport,false +glecko,newsmast.social,Workers Rights,workers_rights,false +glecko,newsmast.social,Football,football,true +seasonssuppers,newsmast.social,Ukraine Invasion,ukraine_invasion,false +seasonssuppers,newsmast.social,Weather,weather,false +seasonssuppers,newsmast.social,Food & Drink,food_drink,true +denn,newsmast.social,Indigenous Peoples,indigenous_peoples,false +kess111,newsmast.social,Journalism & Comment,news_comment_data,false +kess111,newsmast.social,Social Media,social_media,false +kess111,newsmast.social,Ukraine Invasion,ukraine_invasion,false +kess111,newsmast.social,Weather,weather,false +kess111,newsmast.social,Breaking News,breaking_news,true +PB51,newsmast.social,Climate change,climate_change,false +PB51,newsmast.social,Environment,environment,false +metilli,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +PB51,newsmast.social,US Politics,us_politics,false +PB51,newsmast.social,US Sport,us_sport,false +PB51,newsmast.social,Books & Literature,books_literature,true +denn,newsmast.social,Mathematics,mathematics,false +magbeat,newsmast.social,AI,ai,false +magbeat,newsmast.social,Breaking News,breaking_news,false +If_This_Goes_On,newsmast.social,Activism & Civil Rights,activism_civil_rights,false +If_This_Goes_On,newsmast.social,Architecture & Design,architecture_design,false +If_This_Goes_On,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false +If_This_Goes_On,newsmast.social,Black Voices,black_voices,false +If_This_Goes_On,newsmast.social,Climate change,climate_change,false +If_This_Goes_On,newsmast.social,Disabled Voices,disabled_voices,false +If_This_Goes_On,newsmast.social,Energy & Pollution,energy_pollution,false +If_This_Goes_On,newsmast.social,Environment,environment,false +If_This_Goes_On,newsmast.social,Gaming,gaming,false +If_This_Goes_On,newsmast.social,History,history,false +If_This_Goes_On,newsmast.social,Humanities,humanities,false +If_This_Goes_On,newsmast.social,Immigrants Rights,immigrants_rights,false +If_This_Goes_On,newsmast.social,Indigenous Peoples,indigenous_peoples,false +If_This_Goes_On,newsmast.social,Books & Literature,books_literature,true +magbeat,newsmast.social,Journalism & Comment,news_comment_data,false +magbeat,newsmast.social,Programming,programming,false +hermitary,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +hermitary,newsmast.social,Government & Policy,government_policy,false +hermitary,newsmast.social,Journalism & Comment,news_comment_data,false +hermitary,newsmast.social,Politics,politics,false +hermitary,newsmast.social,Breaking News,breaking_news,true +denn,newsmast.social,Philosophy,philosophy,false +denn,newsmast.social,Physics,physics,false +denn,newsmast.social,Programming,programming,false +catherinerhyde,newsmast.social,Energy & Pollution,energy_pollution,false +catherinerhyde,newsmast.social,Physics,physics,false +catherinerhyde,newsmast.social,Science,science,false +ifonlycom,newsmast.social,Academia & Research,academia_research,false +ifonlycom,newsmast.social,AI,ai,false +ifonlycom,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false +ifonlycom,newsmast.social,Biology,biology,false +ifonlycom,newsmast.social,Chemistry,chemistry,false +ifonlycom,newsmast.social,Climate change,climate_change,false +ifonlycom,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +ifonlycom,newsmast.social,Energy & Pollution,energy_pollution,false +ifonlycom,newsmast.social,Engineering,engineering,false +ifonlycom,newsmast.social,Environment,environment,false +ifonlycom,newsmast.social,Healthcare,healthcare,false +ifonlycom,newsmast.social,History,history,false +ifonlycom,newsmast.social,Humanities,humanities,false +ifonlycom,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false +finserving,newsmast.social,Academia & Research,academia_research,false +finserving,newsmast.social,AI,ai,false +finserving,newsmast.social,Business,business,false +finserving,newsmast.social,Engineering,engineering,false +ifonlycom,newsmast.social,Law & Justice,law_justice,false +finserving,newsmast.social,Government & Policy,government_policy,false +ifonlycom,newsmast.social,Mathematics,mathematics,false +ifonlycom,newsmast.social,Philosophy,philosophy,false +ifonlycom,newsmast.social,Physics,physics,false +ifonlycom,newsmast.social,Politics,politics,false +ifonlycom,newsmast.social,Poverty & Inequality,poverty_inequality,false +ifonlycom,newsmast.social,Programming,programming,false +finserving,newsmast.social,Healthcare,healthcare,false +ifonlycom,newsmast.social,Science,science,false +ifonlycom,newsmast.social,Social Sciences,social_sciences,false +ifonlycom,newsmast.social,Space,space,false +finserving,newsmast.social,Law & Justice,law_justice,false +ifonlycom,newsmast.social,Government & Policy,government_policy,true +catherinerhyde,newsmast.social,Technology,technology,false +catherinerhyde,newsmast.social,Space,space,true +metilli,newsmast.social,Engineering,engineering,false +finserving,newsmast.social,Politics,politics,false +denn,newsmast.social,Science,science,false +finserving,newsmast.social,Programming,programming,false +denn,newsmast.social,Social Sciences,social_sciences,false +finserving,newsmast.social,Technology,technology,false +finserving,newsmast.social,US Politics,us_politics,false +finserving,newsmast.social,Workers Rights,workers_rights,false +finserving,newsmast.social,Markets & Finance,markets_finance,true +magbeat,newsmast.social,Social Media,social_media,false +magbeat,newsmast.social,Engineering,engineering,true +denn,newsmast.social,Space,space,false +bryantout,newsmast.social,Movies,movies,false +denn,newsmast.social,Technology,technology,false +kenweber,mastodon.social,US Sport,us_sport,false +theblogofdimi,newsmast.social,US Politics,us_politics,false +theblogofdimi,newsmast.social,Weather,weather,false +theblogofdimi,newsmast.social,History,history,true +boribori,newsmast.social,AI,ai,false +boribori,newsmast.social,Breaking News,breaking_news,false +boribori,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +boribori,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false +boribori,newsmast.social,Physics,physics,false +boribori,newsmast.social,Poverty & Inequality,poverty_inequality,false +boribori,newsmast.social,Science,science,false +boribori,newsmast.social,Space,space,false +boribori,newsmast.social,Technology,technology,false +boribori,newsmast.social,Ukraine Invasion,ukraine_invasion,true +davidnaylorww,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false +Karia,newsmast.social,Politics,politics,false +Karia,newsmast.social,Programming,programming,false +Karia,newsmast.social,Puzzles,puzzles,false +Karia,newsmast.social,Social Sciences,social_sciences,false +Karia,newsmast.social,Technology,technology,false +Karia,newsmast.social,Travel,travel,false +Karia,newsmast.social,US Politics,us_politics,false +davidnaylorww,newsmast.social,Chemistry,chemistry,false +davidnaylorww,newsmast.social,Climate change,climate_change,false +davidnaylorww,newsmast.social,Energy & Pollution,energy_pollution,false +davidnaylorww,newsmast.social,Engineering,engineering,false +davidnaylorww,newsmast.social,Environment,environment,false +davidnaylorww,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false +davidnaylorww,newsmast.social,Mathematics,mathematics,false +davidnaylorww,newsmast.social,Physics,physics,false +davidnaylorww,newsmast.social,Science,science,false +davidnaylorww,newsmast.social,Technology,technology,false +davidnaylorww,newsmast.social,Biology,biology,true +dko10440,newsmast.social,AI,ai,false +dko10440,newsmast.social,Architecture & Design,architecture_design,false +dko10440,newsmast.social,Breaking News,breaking_news,false +dko10440,newsmast.social,Creative Arts,creative_arts,false +dko10440,newsmast.social,Food & Drink,food_drink,false +dko10440,newsmast.social,Humour,humour,false +dko10440,newsmast.social,Movies,movies,false +dko10440,newsmast.social,Music,music,false +dko10440,newsmast.social,Nature & Wildlife,nature_wildlife,false +dko10440,newsmast.social,Journalism & Comment,news_comment_data,false +dko10440,newsmast.social,Physics,physics,false +dko10440,newsmast.social,Science,science,false +dko10440,newsmast.social,Space,space,false +dko10440,newsmast.social,Technology,technology,false +dko10440,newsmast.social,Travel,travel,false +dko10440,newsmast.social,TV & Radio,tv_radio,false +dko10440,newsmast.social,Ukraine Invasion,ukraine_invasion,false +dko10440,newsmast.social,Photography,photography,true +denn,newsmast.social,Women’s Voices,women_voices,false +denn,newsmast.social,LGBTQ+,lgbtq,true +WhiteMode,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false +WhiteMode,newsmast.social,Climate change,climate_change,false +parben,newsmast.social,Journalism & Comment,news_comment_data,false +parben,newsmast.social,Social Media,social_media,false +parben,newsmast.social,Ukraine Invasion,ukraine_invasion,false +parben,newsmast.social,Weather,weather,false +parben,newsmast.social,Breaking News,breaking_news,true +WhiteMode,newsmast.social,Energy & Pollution,energy_pollution,false +WhiteMode,newsmast.social,Environment,environment,false +TechFinancials,newsmast.social,AI,ai,false +TechFinancials,newsmast.social,Journalism & Comment,news_comment_data,false +TechFinancials,newsmast.social,Social Media,social_media,false +TechFinancials,newsmast.social,Technology,technology,false +TechFinancials,newsmast.social,Breaking News,breaking_news,true +sharonk,newsmast.social,Markets & Finance,markets_finance,true +isobelwalster,newsmast.social,Books & Literature,books_literature,false +isobelwalster,newsmast.social,Breaking News,breaking_news,false +isobelwalster,newsmast.social,Humour,humour,false +isobelwalster,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false +isobelwalster,newsmast.social,Movies,movies,false +isobelwalster,newsmast.social,Journalism & Comment,news_comment_data,false +isobelwalster,newsmast.social,Pets,pets,false +isobelwalster,newsmast.social,Puzzles,puzzles,false +isobelwalster,newsmast.social,Social Media,social_media,false +isobelwalster,newsmast.social,Travel,travel,true +theblogofdimi,newsmast.social,AI,ai,false +theblogofdimi,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false +theblogofdimi,newsmast.social,Biology,biology,false +theblogofdimi,newsmast.social,Books & Literature,books_literature,false +theblogofdimi,newsmast.social,Breaking News,breaking_news,false +bilerico,newsmast.social,Breaking News,breaking_news,false +bilerico,newsmast.social,Food & Drink,food_drink,false +bilerico,newsmast.social,Humour,humour,false +bilerico,newsmast.social,US Politics,us_politics,false +bilerico,newsmast.social,LGBTQ+,lgbtq,true +theblogofdimi,newsmast.social,Business,business,false +theblogofdimi,newsmast.social,Chemistry,chemistry,false +theblogofdimi,newsmast.social,Climate change,climate_change,false +theblogofdimi,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +theblogofdimi,newsmast.social,Energy & Pollution,energy_pollution,false +theblogofdimi,newsmast.social,Engineering,engineering,false +theblogofdimi,newsmast.social,Environment,environment,false +theblogofdimi,newsmast.social,Government & Policy,government_policy,false +theblogofdimi,newsmast.social,Humanities,humanities,false +theblogofdimi,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false +theblogofdimi,newsmast.social,Law & Justice,law_justice,false +theblogofdimi,newsmast.social,Markets & Finance,markets_finance,false +theblogofdimi,newsmast.social,Mathematics,mathematics,false +theblogofdimi,newsmast.social,Music,music,false +theblogofdimi,newsmast.social,Journalism & Comment,news_comment_data,false +theblogofdimi,newsmast.social,Philosophy,philosophy,false +theblogofdimi,newsmast.social,Photography,photography,false +theblogofdimi,newsmast.social,Physics,physics,false +theblogofdimi,newsmast.social,Politics,politics,false +theblogofdimi,newsmast.social,Poverty & Inequality,poverty_inequality,false +theblogofdimi,newsmast.social,Science,science,false +theblogofdimi,newsmast.social,Social Media,social_media,false +theblogofdimi,newsmast.social,Social Sciences,social_sciences,false +theblogofdimi,newsmast.social,Space,space,false +theblogofdimi,newsmast.social,Technology,technology,false +theblogofdimi,newsmast.social,Ukraine Invasion,ukraine_invasion,false +bryancollins,newsmast.social,Markets & Finance,markets_finance,false +bryancollins,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false +bryancollins,newsmast.social,Movies,movies,false +bryancollins,newsmast.social,Music,music,false +bryancollins,newsmast.social,Nature & Wildlife,nature_wildlife,false +bryancollins,newsmast.social,Performing Arts,performing_arts,false +bryancollins,newsmast.social,Pets,pets,false +bryancollins,newsmast.social,Architecture & Design,architecture_design,false +bryancollins,newsmast.social,Photography,photography,false +bryancollins,newsmast.social,Puzzles,puzzles,false +bryancollins,newsmast.social,Travel,travel,false +bryancollins,newsmast.social,Business,business,false +bryancollins,newsmast.social,TV & Radio,tv_radio,false +bryancollins,newsmast.social,Creative Arts,creative_arts,false +bryancollins,newsmast.social,Visual Arts,visual_arts,false +bryancollins,newsmast.social,Workers Rights,workers_rights,false +bryancollins,newsmast.social,Food & Drink,food_drink,false +bryancollins,newsmast.social,Books & Literature,books_literature,true +bryancollins,newsmast.social,Gaming,gaming,false +bryancollins,newsmast.social,Humour,humour,false +bryancollins,newsmast.social,Markets & Finance,markets_finance,false +bryancollins,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false +bryancollins,newsmast.social,Movies,movies,false +bryancollins,newsmast.social,Music,music,false +bryancollins,newsmast.social,Nature & Wildlife,nature_wildlife,false +bryancollins,newsmast.social,Performing Arts,performing_arts,false +bryancollins,newsmast.social,Pets,pets,false +bryancollins,newsmast.social,Photography,photography,false +bryancollins,newsmast.social,Puzzles,puzzles,false +bryancollins,newsmast.social,Travel,travel,false +bryancollins,newsmast.social,TV & Radio,tv_radio,false +bryancollins,newsmast.social,Visual Arts,visual_arts,false +bryancollins,newsmast.social,Workers Rights,workers_rights,false +BostonAbrams,newsmast.social,Space,space,false +WhiteMode,newsmast.social,Government & Policy,government_policy,false +salads4lunch,newsmast.social,Breaking News,breaking_news,false +salads4lunch,newsmast.social,Creative Arts,creative_arts,false +JeffreyStreeter,newsmast.social,History,history,false +JeffreyStreeter,newsmast.social,Movies,movies,false +JeffreyStreeter,newsmast.social,Physics,physics,false +JeffreyStreeter,newsmast.social,Science,science,false +JeffreyStreeter,newsmast.social,Social Sciences,social_sciences,false +JeffreyStreeter,newsmast.social,Space,space,false +JeffreyStreeter,newsmast.social,Visual Arts,visual_arts,false +JeffreyStreeter,newsmast.social,Books & Literature,books_literature,true +salads4lunch,newsmast.social,Humour,humour,false +salads4lunch,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false +salads4lunch,newsmast.social,Nature & Wildlife,nature_wildlife,false +salads4lunch,newsmast.social,Pets,pets,false +salads4lunch,newsmast.social,Puzzles,puzzles,false +salads4lunch,newsmast.social,Social Media,social_media,false +salads4lunch,newsmast.social,Travel,travel,false +salads4lunch,newsmast.social,Food & Drink,food_drink,true +sharonk,newsmast.social,Activism & Civil Rights,activism_civil_rights,false +sharonk,newsmast.social,Black Voices,black_voices,false +sharonk,newsmast.social,Disabled Voices,disabled_voices,false +sharonk,newsmast.social,Immigrants Rights,immigrants_rights,false +sharonk,newsmast.social,Indigenous Peoples,indigenous_peoples,false +sharonk,newsmast.social,LGBTQ+,lgbtq,false +sharonk,newsmast.social,Women’s Voices,women_voices,false +herstoryseapod,newsmast.social,Academia & Research,academia_research,false +herstoryseapod,newsmast.social,Architecture & Design,architecture_design,false +herstoryseapod,newsmast.social,Books & Literature,books_literature,false +herstoryseapod,newsmast.social,Gaming,gaming,false +herstoryseapod,newsmast.social,Government & Policy,government_policy,false +herstoryseapod,newsmast.social,Humanities,humanities,false +herstoryseapod,newsmast.social,Law & Justice,law_justice,false +herstoryseapod,newsmast.social,Movies,movies,false +herstoryseapod,newsmast.social,Music,music,false +herstoryseapod,newsmast.social,Performing Arts,performing_arts,false +herstoryseapod,newsmast.social,Philosophy,philosophy,false +herstoryseapod,newsmast.social,Photography,photography,false +herstoryseapod,newsmast.social,Politics,politics,false +herstoryseapod,newsmast.social,Social Sciences,social_sciences,false +herstoryseapod,newsmast.social,TV & Radio,tv_radio,false +herstoryseapod,newsmast.social,Visual Arts,visual_arts,false +herstoryseapod,newsmast.social,History,history,true +liamchase,newsmast.social,Creative Arts,creative_arts,false +liamchase,newsmast.social,Nature & Wildlife,nature_wildlife,false +liamchase,newsmast.social,Pets,pets,false +liamchase,newsmast.social,Sport,sport,false +liamchase,newsmast.social,Travel,travel,false +liamchase,newsmast.social,LGBTQ+,lgbtq,true +vpotter,newsmast.social,AI,ai,false +vpotter,newsmast.social,Breaking News,breaking_news,false +vpotter,newsmast.social,Business,business,false +vpotter,newsmast.social,Climate change,climate_change,false +vpotter,newsmast.social,Environment,environment,false +vpotter,newsmast.social,Government & Policy,government_policy,false +vpotter,newsmast.social,Healthcare,healthcare,false +vpotter,newsmast.social,Law & Justice,law_justice,false +vpotter,newsmast.social,Journalism & Comment,news_comment_data,false +vpotter,newsmast.social,Workers Rights,workers_rights,false +vpotter,newsmast.social,Technology,technology,true +Serious_Feather,newsmast.social,US Politics,us_politics,false +Serious_Feather,newsmast.social,Gaming,gaming,false +Serious_Feather,newsmast.social,Visual Arts,visual_arts,false +transfers,newsmast.social,Football,football,true +Catwisdom,newsmast.social,Food & Drink,food_drink,false +Catwisdom,newsmast.social,Humour,humour,false +Catwisdom,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false +Catwisdom,newsmast.social,Nature & Wildlife,nature_wildlife,false +Catwisdom,newsmast.social,Pets,pets,false +Catwisdom,newsmast.social,Travel,travel,false +Catwisdom,newsmast.social,Creative Arts,creative_arts,true +transfers,newsmast.social,Breaking News,breaking_news,false +transfers,newsmast.social,Journalism & Comment,news_comment_data,false +transfers,newsmast.social,Social Media,social_media,false +transfers,newsmast.social,Sport,sport,false +Rachael,newsmast.social,Creative Arts,creative_arts,false +Rachael,newsmast.social,Music,music,false +Rachael,newsmast.social,Nature & Wildlife,nature_wildlife,false +Rachael,newsmast.social,Travel,travel,false +Rachael,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,true +Dragonfly,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false +Dragonfly,newsmast.social,Biology,biology,false +Dragonfly,newsmast.social,Chemistry,chemistry,false +Dragonfly,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +Dragonfly,newsmast.social,Energy & Pollution,energy_pollution,false +Dragonfly,newsmast.social,Environment,environment,false +Dragonfly,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false +Dragonfly,newsmast.social,Poverty & Inequality,poverty_inequality,false +Dragonfly,newsmast.social,Space,space,false +Dragonfly,newsmast.social,Climate change,climate_change,true +mariabelfort,newsmast.social,Architecture & Design,architecture_design,false +mariabelfort,newsmast.social,Creative Arts,creative_arts,false +mariabelfort,newsmast.social,Food & Drink,food_drink,false +mariabelfort,newsmast.social,Photography,photography,false +mariabelfort,newsmast.social,Puzzles,puzzles,false +mariabelfort,newsmast.social,Visual Arts,visual_arts,false +mariabelfort,newsmast.social,Travel,travel,true +saskia,newsmast.social,Energy & Pollution,energy_pollution,false +saskia,newsmast.social,Environment,environment,false +giff,newsmast.social,Biology,biology,false +giff,newsmast.social,Chemistry,chemistry,false +giff,newsmast.social,Government & Policy,government_policy,false +giff,newsmast.social,Healthcare,healthcare,false +giff,newsmast.social,History,history,false +giff,newsmast.social,Mathematics,mathematics,false +giff,newsmast.social,Journalism & Comment,news_comment_data,false +giff,newsmast.social,Physics,physics,false +giff,newsmast.social,Politics,politics,false +giff,newsmast.social,Science,science,false +giff,newsmast.social,Social Media,social_media,false +giff,newsmast.social,Social Sciences,social_sciences,false +giff,newsmast.social,Space,space,false +giff,newsmast.social,Technology,technology,false +giff,newsmast.social,US Sport,us_sport,false +giff,newsmast.social,Breaking News,breaking_news,true +BostonAbrams,newsmast.social,Science,science,false +WhiteMode,newsmast.social,Healthcare,healthcare,false +metilli,newsmast.social,Gaming,gaming,false +Serious_Feather,newsmast.social,Technology,technology,false +Serious_Feather,newsmast.social,Social Media,social_media,false +Serious_Feather,newsmast.social,Workers Rights,workers_rights,false +kenweber,mastodon.social,Programming,programming,true +mati,moth.social,Activism & Civil Rights,activism_civil_rights,false +mati,moth.social,Business,business,false +sharonk,newsmast.social,Business,business,false +sharonk,newsmast.social,AI,ai,false +shadsiddiqui,newsmast.social,AI,ai,false +shadsiddiqui,newsmast.social,Business,business,false +shadsiddiqui,newsmast.social,Football,football,false +shadsiddiqui,newsmast.social,Technology,technology,false +shadsiddiqui,newsmast.social,Travel,travel,true +stuckiniceland,newsmast.social,Business,business,false +stuckiniceland,newsmast.social,Creative Arts,creative_arts,false +stuckiniceland,newsmast.social,Food & Drink,food_drink,false +stuckiniceland,newsmast.social,Humour,humour,false +stuckiniceland,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false +stuckiniceland,newsmast.social,Nature & Wildlife,nature_wildlife,false +stuckiniceland,newsmast.social,Pets,pets,false +stuckiniceland,newsmast.social,Photography,photography,false +stuckiniceland,newsmast.social,Puzzles,puzzles,false +stuckiniceland,newsmast.social,Travel,travel,true +CenTxHank,newsmast.social,Humanities,humanities,false +CenTxHank,newsmast.social,Philosophy,philosophy,false +CenTxHank,newsmast.social,Physics,physics,false +CenTxHank,newsmast.social,Space,space,false +CenTxHank,newsmast.social,History,history,true +GastroMedia,newsmast.social,AI,ai,false +GastroMedia,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false +GastroMedia,newsmast.social,Climate change,climate_change,false +GastroMedia,newsmast.social,Environment,environment,false +GastroMedia,newsmast.social,Humanities,humanities,false +GastroMedia,newsmast.social,Performing Arts,performing_arts,false +GastroMedia,newsmast.social,Photography,photography,false +GastroMedia,newsmast.social,Social Media,social_media,false +GastroMedia,newsmast.social,Social Sciences,social_sciences,false +GastroMedia,newsmast.social,Travel,travel,false +GastroMedia,newsmast.social,Visual Arts,visual_arts,false +GastroMedia,newsmast.social,Food & Drink,food_drink,true +Kyn,newsmast.social,AI,ai,false +Kyn,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false +Kyn,newsmast.social,Biology,biology,false +scottcaneat,newsmast.social,Architecture & Design,architecture_design,false +scottcaneat,newsmast.social,Creative Arts,creative_arts,false +scottcaneat,newsmast.social,Nature & Wildlife,nature_wildlife,false +scottcaneat,newsmast.social,Travel,travel,false +scottcaneat,newsmast.social,Food & Drink,food_drink,true +Kyn,newsmast.social,Breaking News,breaking_news,false +Kyn,newsmast.social,Chemistry,chemistry,false +Kyn,newsmast.social,Climate change,climate_change,false +Kyn,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +Kyn,newsmast.social,Energy & Pollution,energy_pollution,false +Kyn,newsmast.social,Engineering,engineering,false +Kyn,newsmast.social,Environment,environment,false +Kyn,newsmast.social,Government & Policy,government_policy,false +Kyn,newsmast.social,Healthcare,healthcare,false +Kyn,newsmast.social,History,history,false +Kyn,newsmast.social,Humanities,humanities,false +Kyn,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false +Kyn,newsmast.social,Law & Justice,law_justice,false +Kyn,newsmast.social,Mathematics,mathematics,false +Kyn,newsmast.social,Journalism & Comment,news_comment_data,false +Capt_Canadia,newsmast.social,AI,ai,false +Capt_Canadia,newsmast.social,Biology,biology,false +Capt_Canadia,newsmast.social,Breaking News,breaking_news,false +Capt_Canadia,newsmast.social,Chemistry,chemistry,false +Capt_Canadia,newsmast.social,Engineering,engineering,false +Capt_Canadia,newsmast.social,Mathematics,mathematics,false +Capt_Canadia,newsmast.social,Journalism & Comment,news_comment_data,false +Capt_Canadia,newsmast.social,Physics,physics,false +Capt_Canadia,newsmast.social,Programming,programming,false +Capt_Canadia,newsmast.social,Science,science,false +Capt_Canadia,newsmast.social,Social Media,social_media,false +Capt_Canadia,newsmast.social,Space,space,false +Capt_Canadia,newsmast.social,Ukraine Invasion,ukraine_invasion,false +Capt_Canadia,newsmast.social,Weather,weather,false +Capt_Canadia,newsmast.social,Technology,technology,true +Kyn,newsmast.social,Philosophy,philosophy,false +Kyn,newsmast.social,Physics,physics,false +Kyn,newsmast.social,Politics,politics,false +Kyn,newsmast.social,Academia & Research,academia_research,true +LolaBea19,newsmast.social,Women’s Voices,women_voices,false +LolaBea19,newsmast.social,Performing Arts,performing_arts,true +TechRaptor,newsmast.social,Breaking News,breaking_news,false +willis,newsmast.social,Architecture & Design,architecture_design,false +TechRaptor,newsmast.social,Journalism & Comment,news_comment_data,false +TechRaptor,newsmast.social,Technology,technology,false +TechRaptor,newsmast.social,Gaming,gaming,true +Serious_Feather,newsmast.social,Markets & Finance,markets_finance,false +Serious_Feather,newsmast.social,Business,business,false +bryantout,newsmast.social,Government & Policy,government_policy,false +sharonk,newsmast.social,Workers Rights,workers_rights,false +willis,newsmast.social,Movies,movies,false +willis,newsmast.social,Music,music,false +Dineshvd,newsmast.social,Food & Drink,food_drink,false +Dineshvd,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false +Dineshvd,newsmast.social,Puzzles,puzzles,false +Dineshvd,newsmast.social,Sport,sport,false +Dineshvd,newsmast.social,US Sport,us_sport,false +Dineshvd,newsmast.social,Football,football,true +willis,newsmast.social,Journalism & Comment,news_comment_data,false +willis,newsmast.social,Books & Literature,books_literature,true +sillygwailinks,mastodon.social,History,history,false +TimelinesStatus,newsmast.social,Poverty & Inequality,poverty_inequality,false +TimelinesStatus,newsmast.social,Programming,programming,false +TimelinesStatus,newsmast.social,Puzzles,puzzles,false +TimelinesStatus,newsmast.social,Science,science,false +TimelinesStatus,newsmast.social,Social Media,social_media,false +TimelinesStatus,newsmast.social,Social Sciences,social_sciences,false +TimelinesStatus,newsmast.social,Space,space,false +TimelinesStatus,newsmast.social,Sport,sport,false +TimelinesStatus,newsmast.social,Technology,technology,false +TimelinesStatus,newsmast.social,Travel,travel,false +TimelinesStatus,newsmast.social,TV & Radio,tv_radio,false +TimelinesStatus,newsmast.social,Ukraine Invasion,ukraine_invasion,false +TimelinesStatus,newsmast.social,US Politics,us_politics,false +TimelinesStatus,newsmast.social,US Sport,us_sport,false +TimelinesStatus,newsmast.social,Visual Arts,visual_arts,false +TimelinesStatus,newsmast.social,Weather,weather,false +TimelinesStatus,newsmast.social,Women’s Voices,women_voices,false +Kyn,newsmast.social,Poverty & Inequality,poverty_inequality,false +Kyn,newsmast.social,Programming,programming,false +Kyn,newsmast.social,Science,science,false +Kyn,newsmast.social,Social Media,social_media,false +Kyn,newsmast.social,Social Sciences,social_sciences,false +Kyn,newsmast.social,Space,space,false +Kyn,newsmast.social,Technology,technology,false +Kyn,newsmast.social,Ukraine Invasion,ukraine_invasion,false +Kyn,newsmast.social,US Politics,us_politics,false +Kyn,newsmast.social,Weather,weather,false +AnnaScott,newsmast.social,Books & Literature,books_literature,false +AnnaScott,newsmast.social,Movies,movies,false +AnnaScott,newsmast.social,Performing Arts,performing_arts,false +AnnaScott,newsmast.social,Photography,photography,false +AnnaScott,newsmast.social,TV & Radio,tv_radio,false +AnnaScott,newsmast.social,Music,music,true +fictaddict,newsmast.social,Creative Arts,creative_arts,false +fictaddict,newsmast.social,Gaming,gaming,false +fictaddict,newsmast.social,Books & Literature,books_literature,true +fictaddict,newsmast.social,Pets,pets,false +soundofamoped,newsmast.social,Academia & Research,academia_research,false +soundofamoped,newsmast.social,Architecture & Design,architecture_design,false +soundofamoped,newsmast.social,Biology,biology,false +soundofamoped,newsmast.social,Books & Literature,books_literature,false +soundofamoped,newsmast.social,Chemistry,chemistry,false +soundofamoped,newsmast.social,Creative Arts,creative_arts,false +soundofamoped,newsmast.social,Food & Drink,food_drink,false +soundofamoped,newsmast.social,Government & Policy,government_policy,false +soundofamoped,newsmast.social,Mathematics,mathematics,false +soundofamoped,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false +soundofamoped,newsmast.social,Music,music,false +soundofamoped,newsmast.social,Nature & Wildlife,nature_wildlife,false +soundofamoped,newsmast.social,Photography,photography,false +soundofamoped,newsmast.social,Physics,physics,false +soundofamoped,newsmast.social,Space,space,false +soundofamoped,newsmast.social,Visual Arts,visual_arts,false +soundofamoped,newsmast.social,Science,science,true +metalman,newsmast.social,Breaking News,breaking_news,false +metalman,newsmast.social,Journalism & Comment,news_comment_data,false +metalman,newsmast.social,Social Media,social_media,false +metalman,newsmast.social,Ukraine Invasion,ukraine_invasion,false +metalman,newsmast.social,Weather,weather,true +DforDog,newsmast.social,Creative Arts,creative_arts,false +DforDog,newsmast.social,Humour,humour,false +DforDog,newsmast.social,Philosophy,philosophy,false +DforDog,newsmast.social,Puzzles,puzzles,false +DforDog,newsmast.social,TV & Radio,tv_radio,false +DforDog,newsmast.social,Pets,pets,true +TimelinesStatus,newsmast.social,Workers Rights,workers_rights,false +TimelinesStatus,newsmast.social,Academia & Research,academia_research,false +TimelinesStatus,newsmast.social,Activism & Civil Rights,activism_civil_rights,false +TimelinesStatus,newsmast.social,AI,ai,false +TimelinesStatus,newsmast.social,Architecture & Design,architecture_design,false +TimelinesStatus,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false +TimelinesStatus,newsmast.social,Biology,biology,false +TimelinesStatus,newsmast.social,Black Voices,black_voices,false +TimelinesStatus,newsmast.social,Books & Literature,books_literature,false +TimelinesStatus,newsmast.social,Breaking News,breaking_news,false +TimelinesStatus,newsmast.social,Business,business,false +TimelinesStatus,newsmast.social,Chemistry,chemistry,false +TimelinesStatus,newsmast.social,Climate change,climate_change,false +TimelinesStatus,newsmast.social,Creative Arts,creative_arts,false +TimelinesStatus,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +TimelinesStatus,newsmast.social,Disabled Voices,disabled_voices,false +TimelinesStatus,newsmast.social,Energy & Pollution,energy_pollution,false +TimelinesStatus,newsmast.social,Engineering,engineering,false +TimelinesStatus,newsmast.social,Environment,environment,false +TimelinesStatus,newsmast.social,Food & Drink,food_drink,false +TimelinesStatus,newsmast.social,Football,football,false +TimelinesStatus,newsmast.social,Gaming,gaming,false +TimelinesStatus,newsmast.social,Government & Policy,government_policy,false +TimelinesStatus,newsmast.social,Healthcare,healthcare,false +TimelinesStatus,newsmast.social,History,history,false +TimelinesStatus,newsmast.social,Humanities,humanities,false +TimelinesStatus,newsmast.social,Humour,humour,false +TimelinesStatus,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false +TimelinesStatus,newsmast.social,Immigrants Rights,immigrants_rights,false +TimelinesStatus,newsmast.social,Indigenous Peoples,indigenous_peoples,false +TimelinesStatus,newsmast.social,Law & Justice,law_justice,false +TimelinesStatus,newsmast.social,LGBTQ+,lgbtq,false +TimelinesStatus,newsmast.social,Markets & Finance,markets_finance,false +TimelinesStatus,newsmast.social,Mathematics,mathematics,false +TimelinesStatus,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false +TimelinesStatus,newsmast.social,Movies,movies,false +TimelinesStatus,newsmast.social,Music,music,false +TimelinesStatus,newsmast.social,Nature & Wildlife,nature_wildlife,false +TimelinesStatus,newsmast.social,Performing Arts,performing_arts,false +TimelinesStatus,newsmast.social,Pets,pets,false +TimelinesStatus,newsmast.social,Philosophy,philosophy,false +TimelinesStatus,newsmast.social,Photography,photography,false +TimelinesStatus,newsmast.social,Physics,physics,false +TimelinesStatus,newsmast.social,Politics,politics,false +TimelinesStatus,newsmast.social,Poverty & Inequality,poverty_inequality,false +TimelinesStatus,newsmast.social,Programming,programming,false +TimelinesStatus,newsmast.social,Puzzles,puzzles,false +TimelinesStatus,newsmast.social,Science,science,false +TimelinesStatus,newsmast.social,Social Media,social_media,false +TimelinesStatus,newsmast.social,Social Sciences,social_sciences,false +TimelinesStatus,newsmast.social,Space,space,false +TimelinesStatus,newsmast.social,Sport,sport,false +TimelinesStatus,newsmast.social,Technology,technology,false +TimelinesStatus,newsmast.social,Travel,travel,false +TimelinesStatus,newsmast.social,TV & Radio,tv_radio,false +TimelinesStatus,newsmast.social,Ukraine Invasion,ukraine_invasion,false +TimelinesStatus,newsmast.social,US Politics,us_politics,false +TimelinesStatus,newsmast.social,US Sport,us_sport,false +TimelinesStatus,newsmast.social,Visual Arts,visual_arts,false +TimelinesStatus,newsmast.social,Weather,weather,false +TimelinesStatus,newsmast.social,Women’s Voices,women_voices,false +TimelinesStatus,newsmast.social,Workers Rights,workers_rights,false +TimelinesStatus,newsmast.social,Journalism & Comment,news_comment_data,true +metilli,newsmast.social,Government & Policy,government_policy,false +WhiteMode,newsmast.social,Law & Justice,law_justice,false +WhiteMode,newsmast.social,Politics,politics,false +WhiteMode,newsmast.social,US Politics,us_politics,false +WhiteMode,newsmast.social,Academia & Research,academia_research,true +metilli,newsmast.social,Healthcare,healthcare,false +metilli,newsmast.social,History,history,false +WorldTravelFam,newsmast.social,Food & Drink,food_drink,false +WorldTravelFam,newsmast.social,Humour,humour,false +WorldTravelFam,newsmast.social,Nature & Wildlife,nature_wildlife,false +WorldTravelFam,newsmast.social,Pets,pets,false +WorldTravelFam,newsmast.social,Travel,travel,true +smikwily,newsmast.social,Humour,humour,false +smikwily,newsmast.social,Pets,pets,false +smikwily,newsmast.social,Puzzles,puzzles,false +smikwily,newsmast.social,Social Media,social_media,false +smikwily,newsmast.social,Breaking News,breaking_news,true +bryantout,newsmast.social,Politics,politics,false +bryantout,newsmast.social,US Politics,us_politics,false +sharonk,newsmast.social,Technology,technology,false +metilli,newsmast.social,Humanities,humanities,false +sillygwailinks,mastodon.social,Humanities,humanities,false +metilli,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false +metilli,newsmast.social,Law & Justice,law_justice,false +metilli,newsmast.social,Mathematics,mathematics,false +metilli,newsmast.social,Movies,movies,false +metilli,newsmast.social,Music,music,false +Gadget_Ry,newsmast.social,AI,ai,false +Gadget_Ry,newsmast.social,Breaking News,breaking_news,false +metilli,newsmast.social,Journalism & Comment,news_comment_data,false +Gadget_Ry,newsmast.social,Politics,politics,false +Gadget_Ry,newsmast.social,Technology,technology,true +CELSET,newsmast.social,Workers Rights,workers_rights,false +CELSET,newsmast.social,Social Sciences,social_sciences,false +CELSET,newsmast.social,Movies,movies,false +CELSET,newsmast.social,Music,music,false +CELSET,newsmast.social,Performing Arts,performing_arts,false +CELSET,newsmast.social,TV & Radio,tv_radio,false +CELSET,newsmast.social,Pets,pets,false +metilli,newsmast.social,Performing Arts,performing_arts,false +CELSET,newsmast.social,Creative Arts,creative_arts,false +CELSET,newsmast.social,Puzzles,puzzles,false +CELSET,newsmast.social,Nature & Wildlife,nature_wildlife,false +CELSET,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false +CELSET,newsmast.social,Humour,humour,false +mariana_b,newsmast.social,Academia & Research,academia_research,false +orianavmatos,newsmast.social,Gaming,gaming,false +metilli,newsmast.social,Philosophy,philosophy,false +elliottrichmond,newsmast.social,AI,ai,false +elliottrichmond,newsmast.social,Biology,biology,false +elliottrichmond,newsmast.social,Business,business,false +elliottrichmond,newsmast.social,Chemistry,chemistry,false +Nyein,mastodon.social,Journalism & Comment,news_comment_data,false +Nyein,mastodon.social,Social Media,social_media,false +Nyein,mastodon.social,Ukraine Invasion,ukraine_invasion,false +Nyein,mastodon.social,Weather,weather,false +Nyein,mastodon.social,Breaking News,breaking_news,true +elliottrichmond,newsmast.social,Engineering,engineering,false +elliottrichmond,newsmast.social,Markets & Finance,markets_finance,false +elliottrichmond,newsmast.social,Mathematics,mathematics,false +elliottrichmond,newsmast.social,Physics,physics,false +elliottrichmond,newsmast.social,Science,science,false +elliottrichmond,newsmast.social,Space,space,false +elliottrichmond,newsmast.social,Technology,technology,false +elliottrichmond,newsmast.social,Workers Rights,workers_rights,false +elliottrichmond,newsmast.social,Programming,programming,true +metilli,newsmast.social,Photography,photography,false +metilli,newsmast.social,Physics,physics,false +metilli,newsmast.social,Politics,politics,false +metilli,newsmast.social,Poverty & Inequality,poverty_inequality,false +metilli,newsmast.social,Programming,programming,false +metilli,newsmast.social,Science,science,false +sillygwailinks,mastodon.social,Philosophy,philosophy,false +winntendo,mstdn.social,Space,space,false +mati,moth.social,Markets & Finance,markets_finance,false +beautycaters,newsmast.social,Food & Drink,food_drink,false +beautycaters,newsmast.social,Humour,humour,false +beautycaters,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false +beautycaters,newsmast.social,Nature & Wildlife,nature_wildlife,false +beautycaters,newsmast.social,Pets,pets,false +beautycaters,newsmast.social,Puzzles,puzzles,false +beautycaters,newsmast.social,Travel,travel,true +thefluffy007,newsmast.social,Engineering,engineering,false +thefluffy007,newsmast.social,Government & Policy,government_policy,false +thefluffy007,newsmast.social,Healthcare,healthcare,false +thefluffy007,newsmast.social,Law & Justice,law_justice,false +thefluffy007,newsmast.social,Academia & Research,academia_research,true +wingyingchow,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false +wingyingchow,newsmast.social,Biology,biology,false +wingyingchow,newsmast.social,Chemistry,chemistry,false +wingyingchow,newsmast.social,Science,science,false +anujahooja,newsmast.social,Social Media,social_media,false +wingyingchow,newsmast.social,Physics,physics,false +wingyingchow,newsmast.social,Academia & Research,academia_research,true +anujahooja,newsmast.social,Workers Rights,workers_rights,false +anujahooja,newsmast.social,Technology,technology,true +CELSET,newsmast.social,Journalism & Comment,news_comment_data,false +CELSET,newsmast.social,History,history,false +psthisrocks,newsmast.social,Academia & Research,academia_research,false +psthisrocks,newsmast.social,AI,ai,false +psthisrocks,newsmast.social,Books & Literature,books_literature,false +psthisrocks,newsmast.social,Breaking News,breaking_news,false +psthisrocks,newsmast.social,Business,business,false +psthisrocks,newsmast.social,Creative Arts,creative_arts,false +psthisrocks,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +psthisrocks,newsmast.social,Engineering,engineering,false +psthisrocks,newsmast.social,Food & Drink,food_drink,false +psthisrocks,newsmast.social,Gaming,gaming,false +psthisrocks,newsmast.social,Government & Policy,government_policy,false +psthisrocks,newsmast.social,Healthcare,healthcare,false +psthisrocks,newsmast.social,History,history,false +psthisrocks,newsmast.social,Humanities,humanities,false +psthisrocks,newsmast.social,Humour,humour,false +psthisrocks,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false +psthisrocks,newsmast.social,Law & Justice,law_justice,false +psthisrocks,newsmast.social,Markets & Finance,markets_finance,false +psthisrocks,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false +psthisrocks,newsmast.social,Movies,movies,false +psthisrocks,newsmast.social,Music,music,false +psthisrocks,newsmast.social,Nature & Wildlife,nature_wildlife,false +psthisrocks,newsmast.social,Journalism & Comment,news_comment_data,false +psthisrocks,newsmast.social,Performing Arts,performing_arts,false +psthisrocks,newsmast.social,Pets,pets,false +psthisrocks,newsmast.social,Philosophy,philosophy,false +psthisrocks,newsmast.social,Photography,photography,false +psthisrocks,newsmast.social,Politics,politics,false +psthisrocks,newsmast.social,Poverty & Inequality,poverty_inequality,false +psthisrocks,newsmast.social,Programming,programming,false +psthisrocks,newsmast.social,Puzzles,puzzles,false +psthisrocks,newsmast.social,Social Media,social_media,false +psthisrocks,newsmast.social,Social Sciences,social_sciences,false +psthisrocks,newsmast.social,Technology,technology,false +psthisrocks,newsmast.social,Travel,travel,false +psthisrocks,newsmast.social,TV & Radio,tv_radio,false +psthisrocks,newsmast.social,Ukraine Invasion,ukraine_invasion,false +psthisrocks,newsmast.social,US Politics,us_politics,false +psthisrocks,newsmast.social,Visual Arts,visual_arts,false +psthisrocks,newsmast.social,Weather,weather,false +psthisrocks,newsmast.social,Workers Rights,workers_rights,false +psthisrocks,newsmast.social,Architecture & Design,architecture_design,true +metilli,newsmast.social,Social Media,social_media,false +metilli,newsmast.social,Social Sciences,social_sciences,false +metilli,newsmast.social,Space,space,false +metilli,newsmast.social,Technology,technology,false +Cappuccinogirl,newsmast.social,Activism & Civil Rights,activism_civil_rights,false +Cappuccinogirl,newsmast.social,Architecture & Design,architecture_design,false +Cappuccinogirl,newsmast.social,Books & Literature,books_literature,false +Cappuccinogirl,newsmast.social,Humanities,humanities,false +Cappuccinogirl,newsmast.social,Philosophy,philosophy,false +Cappuccinogirl,newsmast.social,Photography,photography,false +Cappuccinogirl,newsmast.social,Politics,politics,false +Cappuccinogirl,newsmast.social,Social Sciences,social_sciences,false +Cappuccinogirl,newsmast.social,Women’s Voices,women_voices,false +Cappuccinogirl,newsmast.social,Workers Rights,workers_rights,false +Cappuccinogirl,newsmast.social,History,history,true +Rich134,newsmast.social,Gaming,gaming,false +Rich134,newsmast.social,Photography,photography,false +Rich134,newsmast.social,TV & Radio,tv_radio,false +Rich134,newsmast.social,Visual Arts,visual_arts,false +Rich134,newsmast.social,Movies,movies,true +Cappuccinogirl,newsmast.social,Music,music,false +Cappuccinogirl,newsmast.social,Travel,travel,false +Cappuccinogirl,newsmast.social,Academia & Research,academia_research,false +chatter,newsmast.social,Breaking News,breaking_news,false +chatter,newsmast.social,Journalism & Comment,news_comment_data,false +chatter,newsmast.social,Social Media,social_media,false +chatter,newsmast.social,Weather,weather,false +chatter,newsmast.social,Ukraine Invasion,ukraine_invasion,true +robhoy,newsmast.social,AI,ai,false +robhoy,newsmast.social,Books & Literature,books_literature,false +robhoy,newsmast.social,Breaking News,breaking_news,false +robhoy,newsmast.social,Engineering,engineering,false +robhoy,newsmast.social,Gaming,gaming,false +luciaGerry444,newsmast.social,AI,ai,false +luciaGerry444,newsmast.social,Breaking News,breaking_news,false +luciaGerry444,newsmast.social,Engineering,engineering,false +luciaGerry444,newsmast.social,Programming,programming,false +luciaGerry444,newsmast.social,Technology,technology,false +luciaGerry444,newsmast.social,Ukraine Invasion,ukraine_invasion,false +luciaGerry444,newsmast.social,Weather,weather,false +luciaGerry444,newsmast.social,Social Media,social_media,true +pikarl13,newsmast.social,Academia & Research,academia_research,false +pikarl13,newsmast.social,AI,ai,false +pikarl13,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false +pikarl13,newsmast.social,Biology,biology,false +pikarl13,newsmast.social,Chemistry,chemistry,false +pikarl13,newsmast.social,Climate change,climate_change,false +pikarl13,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +pikarl13,newsmast.social,Energy & Pollution,energy_pollution,false +pikarl13,newsmast.social,Engineering,engineering,false +pikarl13,newsmast.social,Environment,environment,false +pikarl13,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false +pikarl13,newsmast.social,Mathematics,mathematics,false +pikarl13,newsmast.social,Journalism & Comment,news_comment_data,false +pikarl13,newsmast.social,Physics,physics,false +pikarl13,newsmast.social,Politics,politics,false +pikarl13,newsmast.social,Poverty & Inequality,poverty_inequality,false +pikarl13,newsmast.social,Programming,programming,false +pikarl13,newsmast.social,Science,science,false +pikarl13,newsmast.social,Technology,technology,false +pikarl13,newsmast.social,Space,space,true +metilli,newsmast.social,TV & Radio,tv_radio,false +metilli,newsmast.social,Ukraine Invasion,ukraine_invasion,false +saskia,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false +metilli,newsmast.social,US Politics,us_politics,false +metilli,newsmast.social,Visual Arts,visual_arts,false +metilli,newsmast.social,Weather,weather,false +metilli,newsmast.social,Academia & Research,academia_research,true +Migis4991,newsmast.social,Academia & Research,academia_research,false +Migis4991,newsmast.social,AI,ai,false +Migis4991,newsmast.social,Government & Policy,government_policy,false +Migis4991,newsmast.social,History,history,false +Migis4991,newsmast.social,Politics,politics,false +Migis4991,newsmast.social,Programming,programming,false +Migis4991,newsmast.social,Science,science,false +Migis4991,newsmast.social,Technology,technology,false +Migis4991,newsmast.social,Social Sciences,social_sciences,true +newsmast_public,newsmast.social,Academia & Research,academia_research,false +newsmast_public,newsmast.social,Biology,biology,false +Sas99,newsmast.social,Football,football,false +Sas99,newsmast.social,Journalism & Comment,news_comment_data,false +Sas99,newsmast.social,Social Media,social_media,false +Sas99,newsmast.social,Sport,sport,false +Sas99,newsmast.social,Space,space,true +robhoy,newsmast.social,Programming,programming,false +robhoy,newsmast.social,Social Media,social_media,false +robhoy,newsmast.social,Technology,technology,false +robhoy,newsmast.social,TV & Radio,tv_radio,false +robhoy,newsmast.social,Visual Arts,visual_arts,false +robhoy,newsmast.social,Weather,weather,false +robhoy,newsmast.social,Movies,movies,true +nclm,newsmast.social,Activism & Civil Rights,activism_civil_rights,false +nclm,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false +nclm,newsmast.social,Biology,biology,false +nclm,newsmast.social,Books & Literature,books_literature,false +nclm,newsmast.social,Climate change,climate_change,false +nclm,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +nclm,newsmast.social,Disabled Voices,disabled_voices,false +nclm,newsmast.social,Environment,environment,false +nclm,newsmast.social,Gaming,gaming,false +Rinn,newsmast.social,AI,ai,false +Rinn,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false +Rinn,newsmast.social,Biology,biology,false +Rinn,newsmast.social,Business,business,false +Rinn,newsmast.social,Chemistry,chemistry,false +Rinn,newsmast.social,Climate change,climate_change,false +Rinn,newsmast.social,Creative Arts,creative_arts,false +Rinn,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +Rinn,newsmast.social,Energy & Pollution,energy_pollution,false +Rinn,newsmast.social,Engineering,engineering,false +Rinn,newsmast.social,Environment,environment,false +Rinn,newsmast.social,Food & Drink,food_drink,false +Rinn,newsmast.social,History,history,false +Rinn,newsmast.social,Humanities,humanities,false +Rinn,newsmast.social,Humour,humour,false +Rinn,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false +Rinn,newsmast.social,Markets & Finance,markets_finance,false +Rinn,newsmast.social,Mathematics,mathematics,false +Rinn,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false +Rinn,newsmast.social,Nature & Wildlife,nature_wildlife,false +Rinn,newsmast.social,Pets,pets,false +Rinn,newsmast.social,Philosophy,philosophy,false +Rinn,newsmast.social,Physics,physics,false +Rinn,newsmast.social,Poverty & Inequality,poverty_inequality,false +Rinn,newsmast.social,Programming,programming,false +Rinn,newsmast.social,Puzzles,puzzles,false +Rinn,newsmast.social,Science,science,false +Rinn,newsmast.social,Social Sciences,social_sciences,false +Rinn,newsmast.social,Space,space,false +Rinn,newsmast.social,Travel,travel,false +Rinn,newsmast.social,Workers Rights,workers_rights,false +Rinn,newsmast.social,Technology,technology,true +nclm,newsmast.social,History,history,false +nclm,newsmast.social,Humanities,humanities,false +nclm,newsmast.social,Immigrants Rights,immigrants_rights,false +nclm,newsmast.social,Indigenous Peoples,indigenous_peoples,false +nclm,newsmast.social,Architecture & Design,architecture_design,true +Douglas_1,newsmast.social,Breaking News,breaking_news,false +Douglas_1,newsmast.social,Nature & Wildlife,nature_wildlife,false +Douglas_1,newsmast.social,Travel,travel,false +Douglas_1,newsmast.social,Weather,weather,false +Douglas_1,newsmast.social,Pets,pets,true +nisemikol,newsmast.social,Activism & Civil Rights,activism_civil_rights,false +nisemikol,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false +nisemikol,newsmast.social,Biology,biology,false +nisemikol,newsmast.social,Chemistry,chemistry,false +nisemikol,newsmast.social,Climate change,climate_change,false +nisemikol,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +nisemikol,newsmast.social,Energy & Pollution,energy_pollution,false +nisemikol,newsmast.social,Environment,environment,false +nisemikol,newsmast.social,Government & Policy,government_policy,false +nisemikol,newsmast.social,History,history,false +nisemikol,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false +nisemikol,newsmast.social,Indigenous Peoples,indigenous_peoples,false +nisemikol,newsmast.social,Law & Justice,law_justice,false +nisemikol,newsmast.social,LGBTQ+,lgbtq,false +nisemikol,newsmast.social,Physics,physics,false +nisemikol,newsmast.social,Politics,politics,false +nisemikol,newsmast.social,Poverty & Inequality,poverty_inequality,false +nisemikol,newsmast.social,Science,science,false +nisemikol,newsmast.social,Breaking News,breaking_news,true +nisemikol,newsmast.social,Social Sciences,social_sciences,false +nisemikol,newsmast.social,Space,space,false +nisemikol,newsmast.social,Technology,technology,false +nisemikol,newsmast.social,US Politics,us_politics,false +nisemikol,newsmast.social,Women’s Voices,women_voices,false +feuerkugel,newsmast.social,Physics,physics,false +feuerkugel,newsmast.social,Science,science,false +feuerkugel,newsmast.social,Space,space,false +feuerkugel,newsmast.social,Technology,technology,false +feuerkugel,newsmast.social,Weather,weather,false +feuerkugel,newsmast.social,Breaking News,breaking_news,true +newsmast_public,newsmast.social,Books & Literature,books_literature,false +SithuBoo,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +SithuBoo,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false +SithuBoo,newsmast.social,Journalism & Comment,news_comment_data,false +SithuBoo,newsmast.social,Poverty & Inequality,poverty_inequality,false +SithuBoo,newsmast.social,Social Media,social_media,false +SithuBoo,newsmast.social,Ukraine Invasion,ukraine_invasion,false +SithuBoo,newsmast.social,Weather,weather,false +SithuBoo,newsmast.social,Breaking News,breaking_news,true +winntendo,mstdn.social,Technology,technology,false +Binary_MinKhant,newsmast.social,Social Media,social_media,false +Binary_MinKhant,newsmast.social,Ukraine Invasion,ukraine_invasion,false +Binary_MinKhant,newsmast.social,Weather,weather,false +Binary_MinKhant,newsmast.social,Journalism & Comment,news_comment_data,true +sciencefeed,newsmast.social,Biology,biology,false +sciencefeed,newsmast.social,Chemistry,chemistry,false +sciencefeed,newsmast.social,Mathematics,mathematics,false +sciencefeed,newsmast.social,Physics,physics,false +sciencefeed,newsmast.social,Space,space,false +sciencefeed,newsmast.social,Science,science,true +environmentfeed,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false +environmentfeed,newsmast.social,Climate change,climate_change,false +environmentfeed,newsmast.social,Energy & Pollution,energy_pollution,false +environmentfeed,newsmast.social,Poverty & Inequality,poverty_inequality,false +environmentfeed,newsmast.social,Environment,environment,true +Manjunatha,newsmast.social,AI,ai,false +Manjunatha,newsmast.social,Biology,biology,false +Manjunatha,newsmast.social,Humour,humour,false +Manjunatha,newsmast.social,Science,science,true +Linguasia,newsmast.social,Architecture & Design,architecture_design,false +Linguasia,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false +Linguasia,newsmast.social,Books & Literature,books_literature,false +Linguasia,newsmast.social,Business,business,false +Linguasia,newsmast.social,Climate change,climate_change,false +Linguasia,newsmast.social,Creative Arts,creative_arts,false +Linguasia,newsmast.social,Energy & Pollution,energy_pollution,false +Linguasia,newsmast.social,Environment,environment,false +Linguasia,newsmast.social,Food & Drink,food_drink,false +Linguasia,newsmast.social,Gaming,gaming,false +Linguasia,newsmast.social,Humour,humour,false +Linguasia,newsmast.social,Markets & Finance,markets_finance,false +Linguasia,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false +Linguasia,newsmast.social,Movies,movies,false +Linguasia,newsmast.social,Music,music,false +Linguasia,newsmast.social,Nature & Wildlife,nature_wildlife,false +Linguasia,newsmast.social,Performing Arts,performing_arts,false +Linguasia,newsmast.social,Pets,pets,false +Linguasia,newsmast.social,Photography,photography,false +Linguasia,newsmast.social,Puzzles,puzzles,false +Linguasia,newsmast.social,TV & Radio,tv_radio,false +Linguasia,newsmast.social,Visual Arts,visual_arts,false +Linguasia,newsmast.social,Workers Rights,workers_rights,false +Linguasia,newsmast.social,Travel,travel,true +sahanakulur,newsmast.social,Academia & Research,academia_research,false +sahanakulur,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false +sahanakulur,newsmast.social,Books & Literature,books_literature,false +sahanakulur,newsmast.social,Creative Arts,creative_arts,false +sahanakulur,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +sahanakulur,newsmast.social,Environment,environment,false +sahanakulur,newsmast.social,Food & Drink,food_drink,false +sahanakulur,newsmast.social,Gaming,gaming,false +sahanakulur,newsmast.social,Movies,movies,false +sahanakulur,newsmast.social,Nature & Wildlife,nature_wildlife,false +sahanakulur,newsmast.social,Performing Arts,performing_arts,false +sahanakulur,newsmast.social,Pets,pets,false +sahanakulur,newsmast.social,Photography,photography,false +sahanakulur,newsmast.social,TV & Radio,tv_radio,false +sahanakulur,newsmast.social,Visual Arts,visual_arts,false +sahanakulur,newsmast.social,Architecture & Design,architecture_design,true +tom_webler,newsmast.social,Academia & Research,academia_research,false +tom_webler,newsmast.social,AI,ai,false +tom_webler,newsmast.social,Climate change,climate_change,false +tom_webler,newsmast.social,Energy & Pollution,energy_pollution,false +tom_webler,newsmast.social,US Politics,us_politics,false +tom_webler,newsmast.social,Government & Policy,government_policy,true +Binary_MinKhant,newsmast.social,Breaking News,breaking_news,false +Binary_MinKhant,newsmast.social,Climate change,climate_change,false +Binary_MinKhant,newsmast.social,Energy & Pollution,energy_pollution,false +Binary_MinKhant,newsmast.social,Environment,environment,false +Binary_MinKhant,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false +Binary_MinKhant,newsmast.social,Indigenous Peoples,indigenous_peoples,false +Binary_MinKhant,newsmast.social,Disabled Voices,disabled_voices,false +Binary_MinKhant,newsmast.social,LGBTQ+,lgbtq,false +Binary_MinKhant,newsmast.social,Immigrants Rights,immigrants_rights,false +Binary_MinKhant,newsmast.social,Activism & Civil Rights,activism_civil_rights,false +Binary_MinKhant,newsmast.social,Black Voices,black_voices,false +Binary_MinKhant,newsmast.social,Women’s Voices,women_voices,false +Binary_MinKhant,newsmast.social,Markets & Finance,markets_finance,false +Binary_MinKhant,newsmast.social,Business,business,false +Binary_MinKhant,newsmast.social,Workers Rights,workers_rights,false +Binary_MinKhant,newsmast.social,Engineering,engineering,false +Binary_MinKhant,newsmast.social,Technology,technology,false +Binary_MinKhant,newsmast.social,AI,ai,false +Binary_MinKhant,newsmast.social,Programming,programming,false +Binary_MinKhant,newsmast.social,Chemistry,chemistry,false +Binary_MinKhant,newsmast.social,Science,science,false +Binary_MinKhant,newsmast.social,Space,space,false +Binary_MinKhant,newsmast.social,Biology,biology,false +Binary_MinKhant,newsmast.social,Mathematics,mathematics,false +Binary_MinKhant,newsmast.social,Physics,physics,false +Binary_MinKhant,newsmast.social,History,history,false +Binary_MinKhant,newsmast.social,Humanities,humanities,false +Binary_MinKhant,newsmast.social,Social Sciences,social_sciences,false +Binary_MinKhant,newsmast.social,Philosophy,philosophy,false +Binary_MinKhant,newsmast.social,Sport,sport,false +Binary_MinKhant,newsmast.social,Football,football,false +Binary_MinKhant,newsmast.social,US Sport,us_sport,false +Binary_MinKhant,newsmast.social,Creative Arts,creative_arts,false +Binary_MinKhant,newsmast.social,Humour,humour,false +Binary_MinKhant,newsmast.social,Pets,pets,false +Binary_MinKhant,newsmast.social,Nature & Wildlife,nature_wildlife,false +Binary_MinKhant,newsmast.social,Food & Drink,food_drink,false +Binary_MinKhant,newsmast.social,Puzzles,puzzles,false +Binary_MinKhant,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false +Binary_MinKhant,newsmast.social,Travel,travel,false +Binary_MinKhant,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +Binary_MinKhant,newsmast.social,Poverty & Inequality,poverty_inequality,false +Binary_MinKhant,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false +Binary_MinKhant,newsmast.social,US Politics,us_politics,false +Binary_MinKhant,newsmast.social,Politics,politics,false +Binary_MinKhant,newsmast.social,Law & Justice,law_justice,false +Binary_MinKhant,newsmast.social,Healthcare,healthcare,false +Binary_MinKhant,newsmast.social,Academia & Research,academia_research,false +Binary_MinKhant,newsmast.social,Government & Policy,government_policy,false +Binary_MinKhant,newsmast.social,Visual Arts,visual_arts,false +Binary_MinKhant,newsmast.social,TV & Radio,tv_radio,false +Binary_MinKhant,newsmast.social,Photography,photography,false +Binary_MinKhant,newsmast.social,Performing Arts,performing_arts,false +Binary_MinKhant,newsmast.social,Music,music,false +Binary_MinKhant,newsmast.social,Movies,movies,false +Binary_MinKhant,newsmast.social,Gaming,gaming,false +Binary_MinKhant,newsmast.social,Books & Literature,books_literature,false +Binary_MinKhant,newsmast.social,Architecture & Design,architecture_design,false +sillygwailinks,mastodon.social,US Sport,us_sport,false +saskia,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false +Cappuccinogirl,newsmast.social,Visual Arts,visual_arts,false +sillygwailinks,mastodon.social,Social Sciences,social_sciences,true +Andi,newsmast.social,AI,ai,false +Andi,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false +Andi,newsmast.social,Biology,biology,false +Andi,newsmast.social,Chemistry,chemistry,false +LetsAnimePod,newsmast.social,Books & Literature,books_literature,false +LetsAnimePod,newsmast.social,Gaming,gaming,false +LetsAnimePod,newsmast.social,Humour,humour,false +LetsAnimePod,newsmast.social,Movies,movies,false +LetsAnimePod,newsmast.social,TV & Radio,tv_radio,true +minkhantkyaw,newsmast.social,Poverty & Inequality,poverty_inequality,false +minkhantkyaw,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +Andi,newsmast.social,Climate change,climate_change,false +Andi,newsmast.social,Energy & Pollution,energy_pollution,false +Andi,newsmast.social,Engineering,engineering,false +Andi,newsmast.social,Environment,environment,false +Andi,newsmast.social,Mathematics,mathematics,false +igs,newsmast.social,Breaking News,breaking_news,false +igs,newsmast.social,Engineering,engineering,false +igs,newsmast.social,Mathematics,mathematics,false +igs,newsmast.social,Space,space,false +igs,newsmast.social,Puzzles,puzzles,true +Andi,newsmast.social,Physics,physics,false +Andi,newsmast.social,Programming,programming,false +Andi,newsmast.social,Space,space,false +Andi,newsmast.social,Technology,technology,false +Andi,newsmast.social,Science,science,true +tthcreation,newsmast.social,Breaking News,breaking_news,false +tthcreation,newsmast.social,Business,business,false +tthcreation,newsmast.social,Markets & Finance,markets_finance,false +tthcreation,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false +tthcreation,newsmast.social,Photography,photography,false +tthcreation,newsmast.social,Women’s Voices,women_voices,false +tthcreation,newsmast.social,Travel,travel,true +Dade_Murphy,newsmast.social,Technology,technology,true +nclm,newsmast.social,LGBTQ+,lgbtq,false +nclm,newsmast.social,Movies,movies,false +nclm,newsmast.social,Music,music,false +nclm,newsmast.social,Performing Arts,performing_arts,false +nclm,newsmast.social,Photography,photography,false +nclm,newsmast.social,Physics,physics,false +nclm,newsmast.social,Science,science,false +nclm,newsmast.social,Social Sciences,social_sciences,false +nclm,newsmast.social,Visual Arts,visual_arts,false +nclm,newsmast.social,Women’s Voices,women_voices,false +ahnay,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false +ahnay,newsmast.social,Business,business,false +ahnay,newsmast.social,Climate change,climate_change,false +newsmast_public,newsmast.social,Breaking News,breaking_news,false +Nyein,newsmast.social,Journalism & Comment,news_comment_data,false +newsmast_public,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +sandos,newsmast.social,Biology,biology,false +sandos,newsmast.social,Books & Literature,books_literature,false +sandos,newsmast.social,Breaking News,breaking_news,false +sandos,newsmast.social,Environment,environment,false +sandos,newsmast.social,Food & Drink,food_drink,false +sandos,newsmast.social,Gaming,gaming,false +sandos,newsmast.social,Humour,humour,false +sandos,newsmast.social,Mathematics,mathematics,false +sandos,newsmast.social,Movies,movies,false +sandos,newsmast.social,Music,music,false +sandos,newsmast.social,Philosophy,philosophy,false +sandos,newsmast.social,Photography,photography,false +sandos,newsmast.social,Physics,physics,false +sandos,newsmast.social,Programming,programming,false +sandos,newsmast.social,Puzzles,puzzles,false +sandos,newsmast.social,Space,space,false +sandos,newsmast.social,Technology,technology,false +sandos,newsmast.social,Travel,travel,false +sandos,newsmast.social,TV & Radio,tv_radio,false +sandos,newsmast.social,AI,ai,true +newsmast_public,newsmast.social,Engineering,engineering,false +newsmast_public,newsmast.social,Environment,environment,false +hardindr,newsmast.social,Biology,biology,false +hardindr,newsmast.social,Breaking News,breaking_news,false +hardindr,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +hardindr,newsmast.social,Government & Policy,government_policy,false +hardindr,newsmast.social,History,history,false +hardindr,newsmast.social,Humanities,humanities,false +hardindr,newsmast.social,Law & Justice,law_justice,false +hardindr,newsmast.social,Mathematics,mathematics,false +hardindr,newsmast.social,Philosophy,philosophy,false +hardindr,newsmast.social,Physics,physics,false +hardindr,newsmast.social,Poverty & Inequality,poverty_inequality,false +hardindr,newsmast.social,Social Sciences,social_sciences,false +hardindr,newsmast.social,US Politics,us_politics,false +hardindr,newsmast.social,Chemistry,chemistry,true +Dade_Murphy,newsmast.social,Breaking News,breaking_news,false +newsmast_public,newsmast.social,Gaming,gaming,false +newsmast_public,newsmast.social,Government & Policy,government_policy,false +newsmast_public,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false +newsmast_public,newsmast.social,Movies,movies,false +newsmast_public,newsmast.social,Music,music,false +newsmast_public,newsmast.social,Journalism & Comment,news_comment_data,false +newsmast_public,newsmast.social,Photography,photography,false +newsmast_public,newsmast.social,Physics,physics,false +winntendo,mstdn.social,Visual Arts,visual_arts,false +winntendo,mstdn.social,Science,science,true +IlCava,mastodon.uno,LGBTQ+,lgbtq,false +IlCava,mastodon.uno,Mathematics,mathematics,false +IlCava,mastodon.uno,Mental Health & Wellbeing,mental_health_wellbeing,false +ilwtm,newsmast.social,AI,ai,false +ilwtm,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false +ilwtm,newsmast.social,Breaking News,breaking_news,false +ilwtm,newsmast.social,Creative Arts,creative_arts,false +ilwtm,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +ilwtm,newsmast.social,Environment,environment,false +ilwtm,newsmast.social,Photography,photography,false +ilwtm,newsmast.social,Poverty & Inequality,poverty_inequality,false +ilwtm,newsmast.social,Technology,technology,false +ilwtm,newsmast.social,Visual Arts,visual_arts,false +ilwtm,newsmast.social,Travel,travel,true +IlCava,mastodon.uno,Movies,movies,false +roggim,newsmast.social,Football,football,false +roggim,newsmast.social,Humour,humour,false +roggim,newsmast.social,Social Media,social_media,false +roggim,newsmast.social,Travel,travel,false +roggim,newsmast.social,Breaking News,breaking_news,true +HariTulsidas,newsmast.social,AI,ai,false +HariTulsidas,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false +HariTulsidas,newsmast.social,Chemistry,chemistry,false +HariTulsidas,newsmast.social,Climate change,climate_change,false +HariTulsidas,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +HariTulsidas,newsmast.social,Energy & Pollution,energy_pollution,false +HariTulsidas,newsmast.social,Engineering,engineering,false +HariTulsidas,newsmast.social,Environment,environment,false +HariTulsidas,newsmast.social,History,history,false +HariTulsidas,newsmast.social,Humanities,humanities,false +HariTulsidas,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false +HariTulsidas,newsmast.social,Mathematics,mathematics,false +HariTulsidas,newsmast.social,Physics,physics,false +HariTulsidas,newsmast.social,Poverty & Inequality,poverty_inequality,false +HariTulsidas,newsmast.social,Programming,programming,false +HariTulsidas,newsmast.social,Social Sciences,social_sciences,false +HariTulsidas,newsmast.social,Space,space,false +HariTulsidas,newsmast.social,Technology,technology,false +HariTulsidas,newsmast.social,Science,science,true +CELSET,newsmast.social,Books & Literature,books_literature,false +Nido,newsmast.social,Academia & Research,academia_research,false +Nido,newsmast.social,AI,ai,false +Nido,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false +Nido,newsmast.social,Biology,biology,false +Nido,newsmast.social,Books & Literature,books_literature,false +Nido,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +Nido,newsmast.social,Engineering,engineering,false +Nido,newsmast.social,Environment,environment,false +newsmast_public,newsmast.social,Politics,politics,false +violiver,newsmast.social,Activism & Civil Rights,activism_civil_rights,false +violiver,newsmast.social,Music,music,false +violiver,newsmast.social,Performing Arts,performing_arts,false +violiver,newsmast.social,Science,science,false +violiver,newsmast.social,LGBTQ+,lgbtq,true +newsmast_public,newsmast.social,Poverty & Inequality,poverty_inequality,false +newsmast_public,newsmast.social,Programming,programming,false +newsmast_public,newsmast.social,Science,science,false +newsmast_public,newsmast.social,Social Media,social_media,false +newsmast_public,newsmast.social,Social Sciences,social_sciences,false +newsmast_public,newsmast.social,Space,space,false +newsmast_public,newsmast.social,TV & Radio,tv_radio,false +bothuthesi,newsmast.social,AI,ai,false +bothuthesi,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false +newsmast_public,newsmast.social,Visual Arts,visual_arts,false +newsmast_public,newsmast.social,Technology,technology,true +babygirl,newsmast.social,Food & Drink,food_drink,false +babygirl,newsmast.social,Football,football,false +babygirl,newsmast.social,Humour,humour,false +babygirl,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false +babygirl,newsmast.social,Nature & Wildlife,nature_wildlife,false +lunabase,newsmast.social,Breaking News,breaking_news,false +lunabase,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +lunabase,newsmast.social,Engineering,engineering,false +lunabase,newsmast.social,Programming,programming,false +lunabase,newsmast.social,Science,science,false +lunabase,newsmast.social,Space,space,false +lunabase,newsmast.social,Technology,technology,false +lunabase,newsmast.social,Ukraine Invasion,ukraine_invasion,false +lunabase,newsmast.social,AI,ai,true +BostonAbrams,newsmast.social,Books & Literature,books_literature,false +CELSET,newsmast.social,Black Voices,black_voices,false +daniel,newsmast.social,Breaking News,breaking_news,false +daniel,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +daniel,newsmast.social,Engineering,engineering,false +daniel,newsmast.social,Journalism & Comment,news_comment_data,false +daniel,newsmast.social,Programming,programming,false +daniel,newsmast.social,Science,science,false +daniel,newsmast.social,Space,space,false +daniel,newsmast.social,Technology,technology,true +soundofamoped,newsmast.social,Humour,humour,false +soundofamoped,newsmast.social,Puzzles,puzzles,false +soundofamoped,newsmast.social,Pets,pets,false +Nido,newsmast.social,History,history,false +Nido,newsmast.social,Humanities,humanities,false +Nido,newsmast.social,Mathematics,mathematics,false +Nido,newsmast.social,Movies,movies,false +Nido,newsmast.social,Music,music,false +Nido,newsmast.social,Journalism & Comment,news_comment_data,false +Nido,newsmast.social,Performing Arts,performing_arts,false +Nido,newsmast.social,Philosophy,philosophy,false +Nido,newsmast.social,Photography,photography,false +Nido,newsmast.social,Physics,physics,false +Nido,newsmast.social,Politics,politics,false +Nido,newsmast.social,Programming,programming,false +Nido,newsmast.social,Science,science,false +HC_History,newsmast.social,Activism & Civil Rights,activism_civil_rights,false +HC_History,newsmast.social,Black Voices,black_voices,false +HC_History,newsmast.social,Humanities,humanities,false +HC_History,newsmast.social,Philosophy,philosophy,false +HC_History,newsmast.social,Social Sciences,social_sciences,false +HC_History,newsmast.social,Women’s Voices,women_voices,false +HC_History,newsmast.social,History,history,true +minkhantkyaw,newsmast.social,Environment,environment,false +shortstay,newsmast.social,Books & Literature,books_literature,false +shortstay,newsmast.social,Breaking News,breaking_news,false +shortstay,newsmast.social,Climate change,climate_change,false +shortstay,newsmast.social,Philosophy,philosophy,false +shortstay,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,true +kirukarki2,newsmast.social,Technology,technology,false +nayyaung,mastodon.social,Breaking News,breaking_news,false +nayyaung,mastodon.social,Social Media,social_media,false +nayyaung,mastodon.social,Ukraine Invasion,ukraine_invasion,false +nayyaung,mastodon.social,Weather,weather,false +nayyaung,mastodon.social,Journalism & Comment,news_comment_data,true +HotCoffee,newsmast.social,Physics,physics,false +HotCoffee,newsmast.social,Food & Drink,food_drink,false +HotCoffee,newsmast.social,Humour,humour,false +HotCoffee,newsmast.social,Pets,pets,false +HotCoffee,newsmast.social,Nature & Wildlife,nature_wildlife,false +beergeek,newsmast.social,Energy & Pollution,energy_pollution,false +beergeek,newsmast.social,Programming,programming,false +beergeek,newsmast.social,Technology,technology,false +beergeek,newsmast.social,Workers Rights,workers_rights,false +beergeek,newsmast.social,AI,ai,true +NextGen,newsmast.social,Architecture & Design,architecture_design,false +NextGen,newsmast.social,Books & Literature,books_literature,false +NextGen,newsmast.social,Climate change,climate_change,false +NextGen,newsmast.social,Energy & Pollution,energy_pollution,false +NextGen,newsmast.social,Environment,environment,false +NextGen,newsmast.social,History,history,false +NextGen,newsmast.social,Physics,physics,false +NextGen,newsmast.social,Science,science,false +NextGen,newsmast.social,Travel,travel,false +NextGen,newsmast.social,Food & Drink,food_drink,true +kirukarki2,newsmast.social,Programming,programming,false +justinw,newsmast.social,Academia & Research,academia_research,false +justinw,newsmast.social,Activism & Civil Rights,activism_civil_rights,false +justinw,newsmast.social,AI,ai,false +justinw,newsmast.social,Black Voices,black_voices,false +justinw,newsmast.social,Books & Literature,books_literature,false +justinw,newsmast.social,Breaking News,breaking_news,false +justinw,newsmast.social,Climate change,climate_change,false +justinw,newsmast.social,Creative Arts,creative_arts,false +justinw,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +justinw,newsmast.social,Disabled Voices,disabled_voices,false +justinw,newsmast.social,Energy & Pollution,energy_pollution,false +justinw,newsmast.social,Environment,environment,false +justinw,newsmast.social,Food & Drink,food_drink,false +justinw,newsmast.social,Government & Policy,government_policy,false +justinw,newsmast.social,Healthcare,healthcare,false +justinw,newsmast.social,History,history,false +justinw,newsmast.social,Humanities,humanities,false +justinw,newsmast.social,Humour,humour,false +justinw,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false +justinw,newsmast.social,Immigrants Rights,immigrants_rights,false +justinw,newsmast.social,Indigenous Peoples,indigenous_peoples,false +justinw,newsmast.social,Law & Justice,law_justice,false +justinw,newsmast.social,LGBTQ+,lgbtq,false +justinw,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false +justinw,newsmast.social,Music,music,false +justinw,newsmast.social,Journalism & Comment,news_comment_data,false +justinw,newsmast.social,Performing Arts,performing_arts,false +justinw,newsmast.social,Pets,pets,false +justinw,newsmast.social,Philosophy,philosophy,false +justinw,newsmast.social,Photography,photography,false +justinw,newsmast.social,Politics,politics,false +BostonAbrams,newsmast.social,Food & Drink,food_drink,false +CELSET,newsmast.social,Immigrants Rights,immigrants_rights,false +justinw,newsmast.social,Poverty & Inequality,poverty_inequality,false +justinw,newsmast.social,Social Sciences,social_sciences,false +justinw,newsmast.social,Technology,technology,false +justinw,newsmast.social,Travel,travel,false +justinw,newsmast.social,TV & Radio,tv_radio,false +justinw,newsmast.social,US Politics,us_politics,false +justinw,newsmast.social,Visual Arts,visual_arts,false +justinw,newsmast.social,Weather,weather,false +justinw,newsmast.social,Women’s Voices,women_voices,false +justinw,newsmast.social,Movies,movies,true +Nido,newsmast.social,Social Media,social_media,false +Nido,newsmast.social,Social Sciences,social_sciences,false +Nido,newsmast.social,Technology,technology,false +Nido,newsmast.social,TV & Radio,tv_radio,false +Nido,newsmast.social,Visual Arts,visual_arts,false +Nido,newsmast.social,Activism & Civil Rights,activism_civil_rights,true +sks1084,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false +sks1084,newsmast.social,Breaking News,breaking_news,false +sks1084,newsmast.social,Climate change,climate_change,false +sks1084,newsmast.social,Energy & Pollution,energy_pollution,false +sks1084,newsmast.social,Environment,environment,false +sks1084,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false +sks1084,newsmast.social,Social Media,social_media,false +sks1084,newsmast.social,Ukraine Invasion,ukraine_invasion,false +sks1084,newsmast.social,Weather,weather,true +tayndua,newsmast.social,Social Sciences,social_sciences,false +tayndua,newsmast.social,Technology,technology,false +tayndua,newsmast.social,TV & Radio,tv_radio,false +tayndua,newsmast.social,US Politics,us_politics,false +tayndua,newsmast.social,Women’s Voices,women_voices,false +tayndua,newsmast.social,Workers Rights,workers_rights,false +tayndua,newsmast.social,Activism & Civil Rights,activism_civil_rights,true +akamar87,newsmast.social,Breaking News,breaking_news,false +akamar87,newsmast.social,History,history,false +akamar87,newsmast.social,Mathematics,mathematics,false +akamar87,newsmast.social,Philosophy,philosophy,false +akamar87,newsmast.social,Technology,technology,false +akamar87,newsmast.social,Programming,programming,true +JessJ,newsmast.social,Activism & Civil Rights,activism_civil_rights,false +JessJ,newsmast.social,Programming,programming,false +JessJ,newsmast.social,Space,space,false +soundofamoped,newsmast.social,Travel,travel,false +JessJ,newsmast.social,LGBTQ+,lgbtq,true +jimchapman,newsmast.social,Academia & Research,academia_research,false +jimchapman,newsmast.social,Activism & Civil Rights,activism_civil_rights,false +jimchapman,newsmast.social,AI,ai,false +jimchapman,newsmast.social,Architecture & Design,architecture_design,false +jimchapman,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false +jimchapman,newsmast.social,Biology,biology,false +jimchapman,newsmast.social,Black Voices,black_voices,false +jimchapman,newsmast.social,Books & Literature,books_literature,false +jimchapman,newsmast.social,Breaking News,breaking_news,false +jimchapman,newsmast.social,Business,business,false +jimchapman,newsmast.social,Chemistry,chemistry,false +jimchapman,newsmast.social,Climate change,climate_change,false +jimchapman,newsmast.social,Disabled Voices,disabled_voices,false +jimchapman,newsmast.social,Energy & Pollution,energy_pollution,false +jimchapman,newsmast.social,Engineering,engineering,false +jimchapman,newsmast.social,Environment,environment,false +jimchapman,newsmast.social,Football,football,false +jimchapman,newsmast.social,Gaming,gaming,false +jimchapman,newsmast.social,Government & Policy,government_policy,false +jimchapman,newsmast.social,Healthcare,healthcare,false +jimchapman,newsmast.social,History,history,false +jimchapman,newsmast.social,Humanities,humanities,false +jimchapman,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false +jimchapman,newsmast.social,Immigrants Rights,immigrants_rights,false +jimchapman,newsmast.social,Indigenous Peoples,indigenous_peoples,false +jimchapman,newsmast.social,Law & Justice,law_justice,false +jimchapman,newsmast.social,LGBTQ+,lgbtq,false +jimchapman,newsmast.social,Markets & Finance,markets_finance,false +jimchapman,newsmast.social,Mathematics,mathematics,false +jimchapman,newsmast.social,Movies,movies,false +jimchapman,newsmast.social,Music,music,false +jimchapman,newsmast.social,Journalism & Comment,news_comment_data,false +jimchapman,newsmast.social,Performing Arts,performing_arts,false +jimchapman,newsmast.social,Philosophy,philosophy,false +jimchapman,newsmast.social,Photography,photography,false +jimchapman,newsmast.social,Physics,physics,false +jimchapman,newsmast.social,Politics,politics,false +jimchapman,newsmast.social,Poverty & Inequality,poverty_inequality,false +jimchapman,newsmast.social,Programming,programming,false +jimchapman,newsmast.social,Science,science,false +jimchapman,newsmast.social,Social Media,social_media,false +jimchapman,newsmast.social,Social Sciences,social_sciences,false +jimchapman,newsmast.social,Space,space,false +jimchapman,newsmast.social,Sport,sport,false +jimchapman,newsmast.social,Technology,technology,false +jimchapman,newsmast.social,TV & Radio,tv_radio,false +jimchapman,newsmast.social,Ukraine Invasion,ukraine_invasion,false +jimchapman,newsmast.social,US Politics,us_politics,false +jimchapman,newsmast.social,Visual Arts,visual_arts,false +jimchapman,newsmast.social,Weather,weather,false +jimchapman,newsmast.social,Women’s Voices,women_voices,false +jimchapman,newsmast.social,Workers Rights,workers_rights,false +jimchapman,newsmast.social,Democracy & Human Rights,democracy_human_rights,true +kevinbugati,newsmast.social,Academia & Research,academia_research,false +kevinbugati,newsmast.social,Biology,biology,false +kevinbugati,newsmast.social,Chemistry,chemistry,false +kevinbugati,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +kevinbugati,newsmast.social,Government & Policy,government_policy,false +kevinbugati,newsmast.social,Healthcare,healthcare,false +kevinbugati,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false +kevinbugati,newsmast.social,Law & Justice,law_justice,false +kevinbugati,newsmast.social,Mathematics,mathematics,false +kevinbugati,newsmast.social,Journalism & Comment,news_comment_data,false +kevinbugati,newsmast.social,Physics,physics,false +kevinbugati,newsmast.social,Politics,politics,false +kevinbugati,newsmast.social,Poverty & Inequality,poverty_inequality,false +kevinbugati,newsmast.social,Science,science,false +kevinbugati,newsmast.social,Social Media,social_media,false +kevinbugati,newsmast.social,Space,space,false +kevinbugati,newsmast.social,Ukraine Invasion,ukraine_invasion,false +kevinbugati,newsmast.social,US Politics,us_politics,false +kevinbugati,newsmast.social,Weather,weather,false +kevinbugati,newsmast.social,Breaking News,breaking_news,true +niroran,newsmast.social,AI,ai,false +niroran,newsmast.social,Business,business,false +niroran,newsmast.social,Climate change,climate_change,false +niroran,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +niroran,newsmast.social,Environment,environment,false +niroran,newsmast.social,Government & Policy,government_policy,false +niroran,newsmast.social,Markets & Finance,markets_finance,false +niroran,newsmast.social,Movies,movies,false +niroran,newsmast.social,Music,music,false +niroran,newsmast.social,Journalism & Comment,news_comment_data,false +niroran,newsmast.social,Politics,politics,false +niroran,newsmast.social,Science,science,false +niroran,newsmast.social,Social Media,social_media,false +niroran,newsmast.social,Space,space,false +niroran,newsmast.social,Technology,technology,false +niroran,newsmast.social,TV & Radio,tv_radio,false +niroran,newsmast.social,US Politics,us_politics,false +niroran,newsmast.social,Breaking News,breaking_news,true +bothuthesi,newsmast.social,Biology,biology,false +Eklektikos,newsmast.social,Academia & Research,academia_research,false +Eklektikos,newsmast.social,AI,ai,false +Eklektikos,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false +Eklektikos,newsmast.social,Biology,biology,false +Eklektikos,newsmast.social,Books & Literature,books_literature,false +Eklektikos,newsmast.social,Business,business,false +Eklektikos,newsmast.social,Chemistry,chemistry,false +Eklektikos,newsmast.social,Climate change,climate_change,false +Eklektikos,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +Eklektikos,newsmast.social,Energy & Pollution,energy_pollution,false +Eklektikos,newsmast.social,Engineering,engineering,false +Eklektikos,newsmast.social,Environment,environment,false +Eklektikos,newsmast.social,Government & Policy,government_policy,false +Eklektikos,newsmast.social,Healthcare,healthcare,false +Eklektikos,newsmast.social,History,history,false +Eklektikos,newsmast.social,Humanities,humanities,false +Eklektikos,newsmast.social,Humour,humour,false +Eklektikos,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false +Eklektikos,newsmast.social,Law & Justice,law_justice,false +Eklektikos,newsmast.social,Markets & Finance,markets_finance,false +Eklektikos,newsmast.social,Mathematics,mathematics,false +Eklektikos,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false +Eklektikos,newsmast.social,Movies,movies,false +Eklektikos,newsmast.social,Nature & Wildlife,nature_wildlife,false +Eklektikos,newsmast.social,Journalism & Comment,news_comment_data,false +Eklektikos,newsmast.social,Philosophy,philosophy,false +Eklektikos,newsmast.social,Physics,physics,false +Eklektikos,newsmast.social,Politics,politics,false +Eklektikos,newsmast.social,Poverty & Inequality,poverty_inequality,false +Eklektikos,newsmast.social,Programming,programming,false +Eklektikos,newsmast.social,Puzzles,puzzles,false +Eklektikos,newsmast.social,Science,science,false +Eklektikos,newsmast.social,Social Media,social_media,false +Eklektikos,newsmast.social,Social Sciences,social_sciences,false +Eklektikos,newsmast.social,Space,space,false +Eklektikos,newsmast.social,Sport,sport,false +Eklektikos,newsmast.social,Technology,technology,false +Eklektikos,newsmast.social,TV & Radio,tv_radio,false +Eklektikos,newsmast.social,US Politics,us_politics,false +Eklektikos,newsmast.social,Workers Rights,workers_rights,false +Eklektikos,newsmast.social,Breaking News,breaking_news,true +bothuthesi,newsmast.social,Breaking News,breaking_news,false +JessJ,newsmast.social,Women’s Voices,women_voices,false +ahnay,newsmast.social,Energy & Pollution,energy_pollution,false +ahnay,newsmast.social,Environment,environment,false +ahnay,newsmast.social,Markets & Finance,markets_finance,false +ahnay,newsmast.social,Workers Rights,workers_rights,true +bothuthesi,newsmast.social,Chemistry,chemistry,false +bothuthesi,newsmast.social,Climate change,climate_change,false +bothuthesi,newsmast.social,Energy & Pollution,energy_pollution,false +bothuthesi,newsmast.social,Engineering,engineering,false +bothuthesi,newsmast.social,Environment,environment,false +bothuthesi,newsmast.social,Mathematics,mathematics,false +alternative,newsmast.social,Architecture & Design,architecture_design,false +alternative,newsmast.social,Engineering,engineering,false +alternative,newsmast.social,Movies,movies,false +BostonAbrams,newsmast.social,Puzzles,puzzles,false +CELSET,newsmast.social,Indigenous Peoples,indigenous_peoples,false +alternative,newsmast.social,Music,music,false +alternative,newsmast.social,Programming,programming,false +alternative,newsmast.social,Social Sciences,social_sciences,false +Nusm,newsmast.social,Breaking News,breaking_news,false +Nusm,newsmast.social,Football,football,false +Nusm,newsmast.social,Government & Policy,government_policy,false +Nusm,newsmast.social,Humour,humour,false +Nusm,newsmast.social,Puzzles,puzzles,false +Nusm,newsmast.social,Technology,technology,false +Nusm,newsmast.social,US Politics,us_politics,false +Nusm,newsmast.social,US Sport,us_sport,false +Nusm,newsmast.social,Weather,weather,false +Nusm,newsmast.social,Politics,politics,true +alternative,newsmast.social,TV & Radio,tv_radio,false +alternative,newsmast.social,Technology,technology,true +tayndua,newsmast.social,AI,ai,false +tayndua,newsmast.social,Black Voices,black_voices,false +tayndua,newsmast.social,Books & Literature,books_literature,false +tayndua,newsmast.social,Business,business,false +tayndua,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +tayndua,newsmast.social,Disabled Voices,disabled_voices,false +tayndua,newsmast.social,Government & Policy,government_policy,false +tayndua,newsmast.social,Humanities,humanities,false +tayndua,newsmast.social,LGBTQ+,lgbtq,false +tayndua,newsmast.social,Markets & Finance,markets_finance,false +tayndua,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false +tayndua,newsmast.social,Movies,movies,false +tayndua,newsmast.social,Performing Arts,performing_arts,false +tayndua,newsmast.social,Pets,pets,false +tayndua,newsmast.social,Philosophy,philosophy,false +tayndua,newsmast.social,Politics,politics,false +tayndua,newsmast.social,Poverty & Inequality,poverty_inequality,false +tayndua,newsmast.social,Social Media,social_media,false +bothuthesi,newsmast.social,Journalism & Comment,news_comment_data,false +bothuthesi,newsmast.social,Physics,physics,false +bothuthesi,newsmast.social,Science,science,false +bothuthesi,newsmast.social,Social Media,social_media,false +JHBernstein,newsmast.social,Academia & Research,academia_research,false +JHBernstein,newsmast.social,Biology,biology,false +JHBernstein,newsmast.social,Books & Literature,books_literature,false +JHBernstein,newsmast.social,Chemistry,chemistry,false +JHBernstein,newsmast.social,Climate change,climate_change,false +JHBernstein,newsmast.social,Environment,environment,false +JHBernstein,newsmast.social,Gaming,gaming,false +JHBernstein,newsmast.social,History,history,false +JHBernstein,newsmast.social,Humanities,humanities,false +JHBernstein,newsmast.social,Law & Justice,law_justice,false +JHBernstein,newsmast.social,Mathematics,mathematics,false +JHBernstein,newsmast.social,Movies,movies,false +JHBernstein,newsmast.social,Music,music,false +JHBernstein,newsmast.social,Performing Arts,performing_arts,false +JHBernstein,newsmast.social,Philosophy,philosophy,false +JHBernstein,newsmast.social,Photography,photography,false +JHBernstein,newsmast.social,Physics,physics,false +JHBernstein,newsmast.social,Politics,politics,false +JHBernstein,newsmast.social,Science,science,false +JHBernstein,newsmast.social,Social Sciences,social_sciences,false +JHBernstein,newsmast.social,Space,space,false +JHBernstein,newsmast.social,TV & Radio,tv_radio,false +JHBernstein,newsmast.social,US Politics,us_politics,false +gayatravel,newsmast.social,Food & Drink,food_drink,false +gayatravel,newsmast.social,Nature & Wildlife,nature_wildlife,false +gayatravel,newsmast.social,Photography,photography,false +gayatravel,newsmast.social,Social Media,social_media,false +gayatravel,newsmast.social,Travel,travel,true +JHBernstein,newsmast.social,Visual Arts,visual_arts,false +JHBernstein,newsmast.social,Architecture & Design,architecture_design,true +ghiachan,newsmast.social,Architecture & Design,architecture_design,false +ghiachan,newsmast.social,Books & Literature,books_literature,false +ghiachan,newsmast.social,Business,business,false +ghiachan,newsmast.social,Creative Arts,creative_arts,false +SilverRainbow,newsmast.social,History,history,false +SilverRainbow,newsmast.social,Programming,programming,false +SilverRainbow,newsmast.social,Space,space,false +SilverRainbow,newsmast.social,Technology,technology,false +SilverRainbow,newsmast.social,Science,science,true +ghiachan,newsmast.social,Food & Drink,food_drink,false +ghiachan,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false +ghiachan,newsmast.social,Nature & Wildlife,nature_wildlife,false +ghiachan,newsmast.social,Photography,photography,false +ghiachan,newsmast.social,Visual Arts,visual_arts,false +ghiachan,newsmast.social,Travel,travel,true +bothuthesi,newsmast.social,Space,space,false +bothuthesi,newsmast.social,Technology,technology,false +Tom,newsmast.social,Books & Literature,books_literature,false +IlCava,mastodon.uno,Law & Justice,law_justice,false +Tom,newsmast.social,Environment,environment,false +Tom,newsmast.social,Movies,movies,false +Tom,newsmast.social,Music,music,false +Tom,newsmast.social,Journalism & Comment,news_comment_data,false +Tom,newsmast.social,Social Media,social_media,false +Tom,newsmast.social,Ukraine Invasion,ukraine_invasion,false +Tom,newsmast.social,Weather,weather,false +axonrg,newsmast.social,Gaming,gaming,false +axonrg,newsmast.social,Movies,movies,false +axonrg,newsmast.social,Politics,politics,false +axonrg,newsmast.social,Programming,programming,false +axonrg,newsmast.social,Science,science,false +Tom,newsmast.social,Breaking News,breaking_news,true +rogergraf,newsmast.social,AI,ai,false +rogergraf,newsmast.social,History,history,false +rogergraf,newsmast.social,Humanities,humanities,false +rogergraf,newsmast.social,Philosophy,philosophy,false +rogergraf,newsmast.social,Science,science,false +rogergraf,newsmast.social,Social Sciences,social_sciences,false +rogergraf,newsmast.social,Technology,technology,false +rogergraf,newsmast.social,Breaking News,breaking_news,true +rogergraf,newsmast.social,Books & Literature,books_literature,false +rogergraf,newsmast.social,Movies,movies,false +rogergraf,newsmast.social,Music,music,false +rogergraf,newsmast.social,TV & Radio,tv_radio,false +rogergraf,newsmast.social,Visual Arts,visual_arts,false +rogergraf,newsmast.social,Sport,sport,false +rogergraf,newsmast.social,Football,football,false +rogergraf,newsmast.social,Creative Arts,creative_arts,false +rogergraf,newsmast.social,Food & Drink,food_drink,false +rogergraf,newsmast.social,Humour,humour,false +rogergraf,newsmast.social,Nature & Wildlife,nature_wildlife,false +rogergraf,newsmast.social,Pets,pets,false +rogergraf,newsmast.social,Puzzles,puzzles,false +rogergraf,newsmast.social,Travel,travel,false +bothuthesi,newsmast.social,Ukraine Invasion,ukraine_invasion,false +bothuthesi,newsmast.social,Weather,weather,false +bothuthesi,newsmast.social,Programming,programming,true +babygirl,newsmast.social,Pets,pets,false +newsmast,newsmast.social,Social Media,social_media,false +callum,newsmast.social,Books & Literature,books_literature,false +callum,newsmast.social,Gaming,gaming,false +callum,newsmast.social,Performing Arts,performing_arts,false +callum,newsmast.social,TV & Radio,tv_radio,false +callum,newsmast.social,Visual Arts,visual_arts,false +callum,newsmast.social,Movies,movies,true +IlCava,mastodon.uno,LGBTQ+,lgbtq,false +lwinmoepaing,newsmast.social,AI,ai,false +lwinmoepaing,newsmast.social,Engineering,engineering,false +lwinmoepaing,newsmast.social,Football,football,false +lwinmoepaing,newsmast.social,Programming,programming,false +lwinmoepaing,newsmast.social,Technology,technology,true +atm_machine,mas.to,Movies,movies,false +artbol,newsmast.social,Architecture & Design,architecture_design,false +artbol,newsmast.social,Energy & Pollution,energy_pollution,false +artbol,newsmast.social,Environment,environment,false +artbol,newsmast.social,Gaming,gaming,false +artbol,newsmast.social,Movies,movies,false +artbol,newsmast.social,Music,music,false +artbol,newsmast.social,Programming,programming,false +artbol,newsmast.social,Science,science,false +artbol,newsmast.social,Space,space,false +artbol,newsmast.social,Technology,technology,false +artbol,newsmast.social,TV & Radio,tv_radio,false +artbol,newsmast.social,Breaking News,breaking_news,true +kaunglay,newsmast.social,Engineering,engineering,true +foong,newsmast.social,Architecture & Design,architecture_design,false +foong,newsmast.social,Biology,biology,false +foong,newsmast.social,Books & Literature,books_literature,false +foong,newsmast.social,Business,business,false +foong,newsmast.social,Chemistry,chemistry,false +foong,newsmast.social,Creative Arts,creative_arts,false +foong,newsmast.social,Engineering,engineering,false +foong,newsmast.social,Food & Drink,food_drink,false +foong,newsmast.social,Gaming,gaming,false +foong,newsmast.social,History,history,false +foong,newsmast.social,Humanities,humanities,false +foong,newsmast.social,Humour,humour,false +foong,newsmast.social,Markets & Finance,markets_finance,false +foong,newsmast.social,Mathematics,mathematics,false +foong,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false +foong,newsmast.social,Movies,movies,false +foong,newsmast.social,Music,music,false +foong,newsmast.social,Nature & Wildlife,nature_wildlife,false +foong,newsmast.social,Performing Arts,performing_arts,false +foong,newsmast.social,Pets,pets,false +foong,newsmast.social,Philosophy,philosophy,false +foong,newsmast.social,Photography,photography,false +foong,newsmast.social,Physics,physics,false +foong,newsmast.social,Programming,programming,false +foong,newsmast.social,Puzzles,puzzles,false +foong,newsmast.social,Science,science,false +foong,newsmast.social,Social Sciences,social_sciences,false +foong,newsmast.social,Space,space,false +foong,newsmast.social,Technology,technology,false +foong,newsmast.social,Travel,travel,false +foong,newsmast.social,TV & Radio,tv_radio,false +foong,newsmast.social,Visual Arts,visual_arts,false +foong,newsmast.social,Workers Rights,workers_rights,false +foong,newsmast.social,AI,ai,true +newsmast,newsmast.social,Programming,programming,false +HotCoffee,newsmast.social,Biology,biology,false +HotCoffee,newsmast.social,Chemistry,chemistry,false +HotCoffee,newsmast.social,Science,science,false +HotCoffee,newsmast.social,Social Media,social_media,false +HotCoffee,newsmast.social,Space,space,false +HotCoffee,newsmast.social,Technology,technology,false +HotCoffee,newsmast.social,Ukraine Invasion,ukraine_invasion,false +HotCoffee,newsmast.social,Breaking News,breaking_news,true +axonrg,newsmast.social,Technology,technology,false +axonrg,newsmast.social,TV & Radio,tv_radio,false +axonrg,newsmast.social,US Politics,us_politics,false +IlCava,mastodon.uno,Mathematics,mathematics,false +axonrg,newsmast.social,Breaking News,breaking_news,true +HC_History,newsmast.social,Books & Literature,books_literature,false +WeCanFlipTS,newsmast.social,Activism & Civil Rights,activism_civil_rights,false +WeCanFlipTS,newsmast.social,AI,ai,false +WeCanFlipTS,newsmast.social,Business,business,false +WeCanFlipTS,newsmast.social,Government & Policy,government_policy,false +WeCanFlipTS,newsmast.social,Humanities,humanities,false +WeCanFlipTS,newsmast.social,Law & Justice,law_justice,false +WeCanFlipTS,newsmast.social,Markets & Finance,markets_finance,false +WeCanFlipTS,newsmast.social,Politics,politics,false +WeCanFlipTS,newsmast.social,Social Sciences,social_sciences,false +WeCanFlipTS,newsmast.social,Technology,technology,false +WeCanFlipTS,newsmast.social,Workers Rights,workers_rights,false +WeCanFlipTS,newsmast.social,Women’s Voices,women_voices,true +MinMaungHein,newsmast.social,Puzzles,puzzles,false +MinMaungHein,newsmast.social,Nature & Wildlife,nature_wildlife,false +MinMaungHein,newsmast.social,Humour,humour,false +MinMaungHein,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false +MinMaungHein,newsmast.social,Creative Arts,creative_arts,false +MinMaungHein,newsmast.social,Food & Drink,food_drink,false +MinMaungHein,newsmast.social,Travel,travel,false +MinMaungHein,newsmast.social,Pets,pets,false +HotCoffee,newsmast.social,Movies,movies,false +HotCoffee,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false +IlCava,mastodon.uno,Mental Health & Wellbeing,mental_health_wellbeing,false +saskia,newsmast.social,Climate change,climate_change,false +babygirl,newsmast.social,Puzzles,puzzles,false +babygirl,newsmast.social,Sport,sport,false +WhiteMode,newsmast.social,Biology,biology,false +WhiteMode,newsmast.social,Journalism & Comment,news_comment_data,false +babygirl,newsmast.social,Travel,travel,false +babygirl,newsmast.social,US Sport,us_sport,false +babygirl,newsmast.social,Creative Arts,creative_arts,true +true,newsmast.social,AI,ai,false +michaelleib,newsmast.social,AI,ai,false +michaelleib,newsmast.social,Business,business,false +michaelleib,newsmast.social,Engineering,engineering,false +michaelleib,newsmast.social,Government & Policy,government_policy,false +michaelleib,newsmast.social,Markets & Finance,markets_finance,false +michaelleib,newsmast.social,Politics,politics,false +michaelleib,newsmast.social,Programming,programming,false +michaelleib,newsmast.social,Science,science,false +michaelleib,newsmast.social,Technology,technology,false +michaelleib,newsmast.social,US Politics,us_politics,false +michaelleib,newsmast.social,Ukraine Invasion,ukraine_invasion,true +true,newsmast.social,Biology,biology,false +true,newsmast.social,Humour,humour,false +true,newsmast.social,Programming,programming,false +true,newsmast.social,Science,science,false +Toex,newsmast.social,Breaking News,breaking_news,false +Toex,newsmast.social,Social Media,social_media,false +Toex,newsmast.social,Space,space,false +Toex,newsmast.social,Weather,weather,false +Toex,newsmast.social,Science,science,true +true,newsmast.social,Space,space,false +HariTulsidas,newsmast.social,Philosophy,philosophy,false +IlCava,mastodon.uno,Movies,movies,false +true,newsmast.social,Travel,travel,false +true,newsmast.social,Technology,technology,true +FifiSch,mastodon.social,Activism & Civil Rights,activism_civil_rights,false +FifiSch,mastodon.social,Democracy & Human Rights,democracy_human_rights,false +Mercedes,newsmast.social,TV & Radio,tv_radio,false +Mercedes,newsmast.social,Visual Arts,visual_arts,false +bartfaitamas,newsmast.social,AI,ai,false +bartfaitamas,newsmast.social,Biology,biology,false +bartfaitamas,newsmast.social,Chemistry,chemistry,false +bartfaitamas,newsmast.social,Climate change,climate_change,false +bartfaitamas,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +bartfaitamas,newsmast.social,Engineering,engineering,false +bartfaitamas,newsmast.social,Environment,environment,false +bartfaitamas,newsmast.social,Government & Policy,government_policy,false +bartfaitamas,newsmast.social,Mathematics,mathematics,false +bartfaitamas,newsmast.social,Physics,physics,false +bartfaitamas,newsmast.social,Politics,politics,false +bartfaitamas,newsmast.social,Poverty & Inequality,poverty_inequality,false +bartfaitamas,newsmast.social,Science,science,false +bartfaitamas,newsmast.social,Space,space,false +bartfaitamas,newsmast.social,Technology,technology,false +bartfaitamas,newsmast.social,Programming,programming,true +Kschroeder,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false +Kschroeder,newsmast.social,Climate change,climate_change,false +Kschroeder,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +Kschroeder,newsmast.social,Technology,technology,false +Kschroeder,newsmast.social,Space,space,true +Nil253259,newsmast.social,Business,business,false +Nil253259,newsmast.social,Climate change,climate_change,false +Nil253259,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +Nil253259,newsmast.social,Environment,environment,false +Nil253259,newsmast.social,Science,science,false +Nil253259,newsmast.social,Space,space,false +Nil253259,newsmast.social,Technology,technology,false +Nil253259,newsmast.social,AI,ai,true +Taga,techhub.social,Creative Arts,creative_arts,false +HC_History,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false +HC_History,newsmast.social,Travel,travel,false +stb,newsmast.social,Academia & Research,academia_research,false +stb,newsmast.social,Activism & Civil Rights,activism_civil_rights,false +stb,newsmast.social,AI,ai,false +stb,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false +stb,newsmast.social,Biology,biology,false +stb,newsmast.social,Black Voices,black_voices,false +stb,newsmast.social,Chemistry,chemistry,false +stb,newsmast.social,Climate change,climate_change,false +stb,newsmast.social,Creative Arts,creative_arts,false +stb,newsmast.social,Disabled Voices,disabled_voices,false +stb,newsmast.social,Energy & Pollution,energy_pollution,false +stb,newsmast.social,Engineering,engineering,false +stb,newsmast.social,Environment,environment,false +lasp,newsmast.social,Academia & Research,academia_research,false +lasp,newsmast.social,AI,ai,false +lasp,newsmast.social,Architecture & Design,architecture_design,false +lasp,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false +lasp,newsmast.social,Books & Literature,books_literature,false +lasp,newsmast.social,Breaking News,breaking_news,false +lasp,newsmast.social,Climate change,climate_change,false +lasp,newsmast.social,Creative Arts,creative_arts,false +lasp,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +lasp,newsmast.social,Environment,environment,false +lasp,newsmast.social,Humanities,humanities,false +lasp,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false +lasp,newsmast.social,Movies,movies,false +lasp,newsmast.social,Music,music,false +lasp,newsmast.social,Philosophy,philosophy,false +lasp,newsmast.social,Social Sciences,social_sciences,false +lasp,newsmast.social,Visual Arts,visual_arts,false +lasp,newsmast.social,Journalism & Comment,news_comment_data,true +Taga,techhub.social,Engineering,engineering,false +mati,moth.social,Workers Rights,workers_rights,false +Taga,techhub.social,Programming,programming,false +Taga,techhub.social,Social Media,social_media,false +Taga,techhub.social,Technology,technology,false +Scotty,newsmast.social,AI,ai,false +Scotty,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false +Scotty,newsmast.social,Science,science,false +Scotty,newsmast.social,Space,space,false +Scotty,newsmast.social,Pets,pets,true +WhiteMode,newsmast.social,Nature & Wildlife,nature_wildlife,false +WhiteMode,newsmast.social,Photography,photography,false +Taga,techhub.social,AI,ai,true +IlCava,mastodon.uno,Music,music,false +peterthepainter,newsmast.social,Activism & Civil Rights,activism_civil_rights,false +anca,mastodon.xyz,AI,ai,false +anca,mastodon.xyz,Biodiversity & Rewilding,biodiversity_rewilding,false +anca,mastodon.xyz,Biology,biology,false +peterthepainter,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +minkhantkyaw,newsmast.social,AI,ai,false +minkhantkyaw,newsmast.social,Technology,technology,true +yemyatthu_cs,newsmast.social,AI,ai,false +yemyatthu_cs,newsmast.social,Engineering,engineering,false +Chourouk,newsmast.social,Activism & Civil Rights,activism_civil_rights,false +Chourouk,newsmast.social,Black Voices,black_voices,false +Leslie_Jones,newsmast.social,Academia & Research,academia_research,false +Leslie_Jones,newsmast.social,Activism & Civil Rights,activism_civil_rights,false +Leslie_Jones,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false +Leslie_Jones,newsmast.social,Books & Literature,books_literature,false +Leslie_Jones,newsmast.social,Breaking News,breaking_news,false +Leslie_Jones,newsmast.social,Business,business,false +Leslie_Jones,newsmast.social,Climate change,climate_change,false +Leslie_Jones,newsmast.social,Creative Arts,creative_arts,false +Leslie_Jones,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +Leslie_Jones,newsmast.social,Energy & Pollution,energy_pollution,false +Leslie_Jones,newsmast.social,Environment,environment,false +Leslie_Jones,newsmast.social,Food & Drink,food_drink,false +Leslie_Jones,newsmast.social,Football,football,false +Leslie_Jones,newsmast.social,Government & Policy,government_policy,false +Leslie_Jones,newsmast.social,Healthcare,healthcare,false +Leslie_Jones,newsmast.social,History,history,false +Leslie_Jones,newsmast.social,Humanities,humanities,false +Leslie_Jones,newsmast.social,Humour,humour,false +Leslie_Jones,newsmast.social,Markets & Finance,markets_finance,false +Leslie_Jones,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false +Leslie_Jones,newsmast.social,Law & Justice,law_justice,true +stb,newsmast.social,Breaking News,breaking_news,true +Chourouk,newsmast.social,Books & Literature,books_literature,false +Chourouk,newsmast.social,Climate change,climate_change,false +yemyatthu_cs,newsmast.social,Programming,programming,false +Chourouk,newsmast.social,Disabled Voices,disabled_voices,false +Chourouk,newsmast.social,Energy & Pollution,energy_pollution,false +Chourouk,newsmast.social,Environment,environment,false +Chourouk,newsmast.social,Humanities,humanities,false +Chourouk,newsmast.social,Immigrants Rights,immigrants_rights,false +Chourouk,newsmast.social,Indigenous Peoples,indigenous_peoples,false +Chourouk,newsmast.social,LGBTQ+,lgbtq,false +Chourouk,newsmast.social,Movies,movies,false +yemyatthu_cs,newsmast.social,Sport,sport,false +yemyatthu_cs,newsmast.social,Technology,technology,false +yemyatthu_cs,newsmast.social,US Sport,us_sport,false +yemyatthu_cs,newsmast.social,Football,football,true +Leslie_Jones,newsmast.social,Nature & Wildlife,nature_wildlife,false +Leslie_Jones,newsmast.social,Pets,pets,false +Leslie_Jones,newsmast.social,Philosophy,philosophy,false +Leslie_Jones,newsmast.social,Photography,photography,false +Leslie_Jones,newsmast.social,Politics,politics,false +Leslie_Jones,newsmast.social,Puzzles,puzzles,false +Leslie_Jones,newsmast.social,Science,science,false +Leslie_Jones,newsmast.social,Social Sciences,social_sciences,false +Leslie_Jones,newsmast.social,Sport,sport,false +Leslie_Jones,newsmast.social,Technology,technology,false +Leslie_Jones,newsmast.social,Travel,travel,false +Leslie_Jones,newsmast.social,Ukraine Invasion,ukraine_invasion,false +Leslie_Jones,newsmast.social,US Politics,us_politics,false +Leslie_Jones,newsmast.social,US Sport,us_sport,false +Leslie_Jones,newsmast.social,Weather,weather,false +Leslie_Jones,newsmast.social,Women’s Voices,women_voices,false +Leslie_Jones,newsmast.social,Workers Rights,workers_rights,false +sillygwailo,mastodon.social,History,history,false +Harriett,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false +Harriett,newsmast.social,Biology,biology,false +Harriett,newsmast.social,Breaking News,breaking_news,false +Harriett,newsmast.social,Climate change,climate_change,false +Harriett,newsmast.social,Energy & Pollution,energy_pollution,false +Harriett,newsmast.social,Environment,environment,false +Harriett,newsmast.social,Government & Policy,government_policy,false +Harriett,newsmast.social,Healthcare,healthcare,false +Harriett,newsmast.social,Humanities,humanities,false +Harriett,newsmast.social,Law & Justice,law_justice,false +MarciaHHendrick,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false +MarciaHHendrick,newsmast.social,Breaking News,breaking_news,false +MarciaHHendrick,newsmast.social,Climate change,climate_change,false +MarciaHHendrick,newsmast.social,Energy & Pollution,energy_pollution,false +MarciaHHendrick,newsmast.social,Environment,environment,false +MarciaHHendrick,newsmast.social,Government & Policy,government_policy,false +MarciaHHendrick,newsmast.social,Law & Justice,law_justice,false +MarciaHHendrick,newsmast.social,Poverty & Inequality,poverty_inequality,false +MarciaHHendrick,newsmast.social,Ukraine Invasion,ukraine_invasion,false +MarciaHHendrick,newsmast.social,US Politics,us_politics,false +MarciaHHendrick,newsmast.social,Democracy & Human Rights,democracy_human_rights,true +Harriett,newsmast.social,Journalism & Comment,news_comment_data,false +Harriett,newsmast.social,Science,science,false +Harriett,newsmast.social,Social Media,social_media,false +Harriett,newsmast.social,Social Sciences,social_sciences,false +Harriett,newsmast.social,Ukraine Invasion,ukraine_invasion,false +Harriett,newsmast.social,Weather,weather,false +Harriett,newsmast.social,Politics,politics,true +Chourouk,newsmast.social,Music,music,false +Chourouk,newsmast.social,Performing Arts,performing_arts,false +Chourouk,newsmast.social,Politics,politics,false +spanini,newsmast.social,Books & Literature,books_literature,false +spanini,newsmast.social,History,history,false +spanini,newsmast.social,Markets & Finance,markets_finance,false +spanini,newsmast.social,Philosophy,philosophy,false +spanini,newsmast.social,Workers Rights,workers_rights,false +spanini,newsmast.social,Business,business,true +Chourouk,newsmast.social,Poverty & Inequality,poverty_inequality,false +Chourouk,newsmast.social,TV & Radio,tv_radio,false +Chourouk,newsmast.social,US Politics,us_politics,false +Chourouk,newsmast.social,Visual Arts,visual_arts,false +Chourouk,newsmast.social,Women’s Voices,women_voices,false +Chourouk,newsmast.social,Democracy & Human Rights,democracy_human_rights,true +yemyatthu,mastodon.social,Government & Policy,government_policy,false +yemyatthu,mastodon.social,Healthcare,healthcare,false +yemyatthu,mastodon.social,Law & Justice,law_justice,false +ThatRandomJew,tech.lgbt,AI,ai,false +ThatRandomJew,tech.lgbt,Architecture & Design,architecture_design,false +ppt556_365,newsmast.social,Activism & Civil Rights,activism_civil_rights,false +ppt556_365,newsmast.social,Black Voices,black_voices,false +yemyatthu,mastodon.social,Politics,politics,false +vmatt,newsmast.social,Activism & Civil Rights,activism_civil_rights,false +vmatt,newsmast.social,AI,ai,false +magnor,newsmast.social,Academia & Research,academia_research,false +magnor,newsmast.social,Activism & Civil Rights,activism_civil_rights,false +magnor,newsmast.social,AI,ai,false +magnor,newsmast.social,Breaking News,breaking_news,false +magnor,newsmast.social,Climate change,climate_change,false +magnor,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +magnor,newsmast.social,Energy & Pollution,energy_pollution,false +magnor,newsmast.social,Engineering,engineering,false +magnor,newsmast.social,Environment,environment,false +magnor,newsmast.social,Government & Policy,government_policy,false +magnor,newsmast.social,History,history,false +magnor,newsmast.social,LGBTQ+,lgbtq,false +magnor,newsmast.social,Mathematics,mathematics,false +magnor,newsmast.social,Journalism & Comment,news_comment_data,false +magnor,newsmast.social,Physics,physics,false +magnor,newsmast.social,Politics,politics,false +magnor,newsmast.social,Poverty & Inequality,poverty_inequality,false +magnor,newsmast.social,Programming,programming,false +vmatt,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +magnor,newsmast.social,Social Media,social_media,false +magnor,newsmast.social,Space,space,false +magnor,newsmast.social,Technology,technology,false +magnor,newsmast.social,US Politics,us_politics,false +magnor,newsmast.social,Women’s Voices,women_voices,false +vmatt,newsmast.social,Engineering,engineering,false +vmatt,newsmast.social,Football,football,false +vmatt,newsmast.social,Humanities,humanities,false +vmatt,newsmast.social,LGBTQ+,lgbtq,false +vmatt,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false +vmatt,newsmast.social,Movies,movies,false +vmatt,newsmast.social,Music,music,false +vmatt,newsmast.social,Journalism & Comment,news_comment_data,false +vmatt,newsmast.social,Philosophy,philosophy,false +vmatt,newsmast.social,Programming,programming,false +vmatt,newsmast.social,Puzzles,puzzles,false +magnor,newsmast.social,Workers Rights,workers_rights,false +magnor,newsmast.social,Science,science,true +ppt556_365,newsmast.social,Breaking News,breaking_news,false +ppt556_365,newsmast.social,Disabled Voices,disabled_voices,false +chriskenshin,newsmast.social,Business,business,false +chriskenshin,newsmast.social,Government & Policy,government_policy,false +chriskenshin,newsmast.social,Law & Justice,law_justice,false +chriskenshin,newsmast.social,Science,science,false +chriskenshin,newsmast.social,Technology,technology,false +chriskenshin,newsmast.social,Workers Rights,workers_rights,false +chriskenshin,newsmast.social,Biology,biology,true +ppt556_365,newsmast.social,Immigrants Rights,immigrants_rights,false +ppt556_365,newsmast.social,Indigenous Peoples,indigenous_peoples,false +HC_History,newsmast.social,Markets & Finance,markets_finance,false +HC_History,newsmast.social,Business,business,false +stb,newsmast.social,Food & Drink,food_drink,false +stb,newsmast.social,Football,football,false +stb,newsmast.social,Government & Policy,government_policy,false +stb,newsmast.social,Healthcare,healthcare,false +stb,newsmast.social,History,history,false +stb,newsmast.social,Humanities,humanities,false +stb,newsmast.social,Humour,humour,false +stb,newsmast.social,Immigrants Rights,immigrants_rights,false +stb,newsmast.social,Indigenous Peoples,indigenous_peoples,false +stb,newsmast.social,Law & Justice,law_justice,false +stb,newsmast.social,LGBTQ+,lgbtq,false +stb,newsmast.social,Mathematics,mathematics,false +stb,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false +stb,newsmast.social,Nature & Wildlife,nature_wildlife,false +stb,newsmast.social,Journalism & Comment,news_comment_data,false +stb,newsmast.social,Pets,pets,false +stb,newsmast.social,Philosophy,philosophy,false +stb,newsmast.social,Physics,physics,false +stb,newsmast.social,Politics,politics,false +stb,newsmast.social,Programming,programming,false +stb,newsmast.social,Puzzles,puzzles,false +stb,newsmast.social,Science,science,false +stb,newsmast.social,Social Media,social_media,false +stb,newsmast.social,Social Sciences,social_sciences,false +stb,newsmast.social,Space,space,false +stb,newsmast.social,Sport,sport,false +stb,newsmast.social,Technology,technology,false +stb,newsmast.social,Travel,travel,false +stb,newsmast.social,Ukraine Invasion,ukraine_invasion,false +stb,newsmast.social,US Politics,us_politics,false +stb,newsmast.social,US Sport,us_sport,false +stb,newsmast.social,Weather,weather,false +stb,newsmast.social,Women’s Voices,women_voices,false +research,newsmast.social,AI,ai,false +research,newsmast.social,Biology,biology,false +research,newsmast.social,Chemistry,chemistry,false +research,newsmast.social,Engineering,engineering,false +Mercedes,newsmast.social,Architecture & Design,architecture_design,false +Mercedes,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false +Mercedes,newsmast.social,Books & Literature,books_literature,false +Mercedes,newsmast.social,Climate change,climate_change,false +Mercedes,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +Mercedes,newsmast.social,Energy & Pollution,energy_pollution,false +Mercedes,newsmast.social,Environment,environment,false +Mercedes,newsmast.social,Gaming,gaming,false +Mercedes,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false +Mercedes,newsmast.social,Movies,movies,false +Mercedes,newsmast.social,Performing Arts,performing_arts,false +Mercedes,newsmast.social,Photography,photography,false +Mercedes,newsmast.social,Poverty & Inequality,poverty_inequality,false +Mercedes,newsmast.social,TV & Radio,tv_radio,false +Mercedes,newsmast.social,Visual Arts,visual_arts,false +Mercedes,newsmast.social,Music,music,true +jt1p5,newsmast.social,Government & Policy,government_policy,false +jt1p5,newsmast.social,Law & Justice,law_justice,false +jt1p5,newsmast.social,Politics,politics,false +jt1p5,newsmast.social,US Politics,us_politics,false +jt1p5,newsmast.social,Democracy & Human Rights,democracy_human_rights,true +bobo,newsmast.social,Activism & Civil Rights,activism_civil_rights,false +bobo,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false +bobo,newsmast.social,Biology,biology,false +bobo,newsmast.social,Black Voices,black_voices,false +bobo,newsmast.social,Business,business,false +bobo,newsmast.social,Chemistry,chemistry,false +bobo,newsmast.social,Climate change,climate_change,false +bobo,newsmast.social,Creative Arts,creative_arts,false +bobo,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +bobo,newsmast.social,Disabled Voices,disabled_voices,false +bobo,newsmast.social,Energy & Pollution,energy_pollution,false +bobo,newsmast.social,Environment,environment,false +bobo,newsmast.social,Food & Drink,food_drink,false +bobo,newsmast.social,Football,football,false +bobo,newsmast.social,History,history,false +bobo,newsmast.social,Humanities,humanities,false +bobo,newsmast.social,Humour,humour,false +bobo,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false +bobo,newsmast.social,Immigrants Rights,immigrants_rights,false +bobo,newsmast.social,Indigenous Peoples,indigenous_peoples,false +bobo,newsmast.social,LGBTQ+,lgbtq,false +bobo,newsmast.social,Markets & Finance,markets_finance,false +bobo,newsmast.social,Mathematics,mathematics,false +bobo,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false +bobo,newsmast.social,Nature & Wildlife,nature_wildlife,false +bobo,newsmast.social,Journalism & Comment,news_comment_data,false +bobo,newsmast.social,Pets,pets,false +bobo,newsmast.social,Philosophy,philosophy,false +bobo,newsmast.social,Physics,physics,false +bobo,newsmast.social,Poverty & Inequality,poverty_inequality,false +bobo,newsmast.social,Puzzles,puzzles,false +bobo,newsmast.social,Breaking News,breaking_news,true +ppt556_365,newsmast.social,LGBTQ+,lgbtq,false +ppt556_365,newsmast.social,Journalism & Comment,news_comment_data,false +hannaka,newsmast.social,Nature & Wildlife,nature_wildlife,false +hannaka,newsmast.social,Pets,pets,false +hannaka,newsmast.social,Sport,sport,false +hannaka,newsmast.social,Weather,weather,false +hannaka,newsmast.social,Travel,travel,true +research,newsmast.social,Journalism & Comment,news_comment_data,false +research,newsmast.social,Physics,physics,false +research,newsmast.social,Space,space,false +research,newsmast.social,Technology,technology,false +research,newsmast.social,Science,science,true +ppt556_365,newsmast.social,Ukraine Invasion,ukraine_invasion,false +ppt556_365,newsmast.social,Weather,weather,false +ppt556_365,newsmast.social,Women’s Voices,women_voices,false +ppt556_365,newsmast.social,Social Media,social_media,true +yemyatthu,mastodon.social,Poverty & Inequality,poverty_inequality,false +yemyatthu,mastodon.social,US Politics,us_politics,false +sillygwailo,mastodon.social,Humanities,humanities,false +sillygwailo,mastodon.social,Philosophy,philosophy,false +IlCava,mastodon.uno,Nature & Wildlife,nature_wildlife,false +IlCava,mastodon.uno,Journalism & Comment,news_comment_data,false +evil_k,newsmast.social,History,history,false +ppt556,newsmast.social,AI,ai,false +ppt556,newsmast.social,Breaking News,breaking_news,false +ppt556,newsmast.social,Engineering,engineering,false +srijit,newsmast.social,Academia & Research,academia_research,false +srijit,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false +srijit,newsmast.social,Biology,biology,false +srijit,newsmast.social,Breaking News,breaking_news,false +srijit,newsmast.social,Chemistry,chemistry,false +srijit,newsmast.social,Climate change,climate_change,false +srijit,newsmast.social,Energy & Pollution,energy_pollution,false +srijit,newsmast.social,Government & Policy,government_policy,false +srijit,newsmast.social,Healthcare,healthcare,false +srijit,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false +srijit,newsmast.social,Law & Justice,law_justice,false +srijit,newsmast.social,Mathematics,mathematics,false +srijit,newsmast.social,Journalism & Comment,news_comment_data,false +srijit,newsmast.social,Physics,physics,false +srijit,newsmast.social,Politics,politics,false +srijit,newsmast.social,Poverty & Inequality,poverty_inequality,false +srijit,newsmast.social,Science,science,false +srijit,newsmast.social,Social Media,social_media,false +srijit,newsmast.social,Space,space,false +srijit,newsmast.social,Ukraine Invasion,ukraine_invasion,false +srijit,newsmast.social,US Politics,us_politics,false +srijit,newsmast.social,Weather,weather,false +srijit,newsmast.social,Democracy & Human Rights,democracy_human_rights,true +ppt556,newsmast.social,Journalism & Comment,news_comment_data,false +ppt556,newsmast.social,Programming,programming,false +ppt556,newsmast.social,Social Media,social_media,false +ppt556,newsmast.social,Technology,technology,false +Nyein,newsmast.social,Performing Arts,performing_arts,false +Nyein,newsmast.social,TV & Radio,tv_radio,false +Nyein,newsmast.social,Music,music,false +Nyein,newsmast.social,Movies,movies,false +Nyein,newsmast.social,Visual Arts,visual_arts,false +Nyein,newsmast.social,History,history,false +Nyein,newsmast.social,Humanities,humanities,false +Nyein,newsmast.social,Social Sciences,social_sciences,false +Nyein,newsmast.social,Philosophy,philosophy,false +ppt556,newsmast.social,Ukraine Invasion,ukraine_invasion,false +ppt556,newsmast.social,US Sport,us_sport,false +ppt556,newsmast.social,Weather,weather,false +ppt556,newsmast.social,Football,football,true +drmuthanna,me.dm,AI,ai,false +drmuthanna,me.dm,Gaming,gaming,false +drmuthanna,me.dm,LGBTQ+,lgbtq,false +drmuthanna,me.dm,Pets,pets,false +Nyein,newsmast.social,Programming,programming,false +drmuthanna,me.dm,Business,business,true +yethiha,newsmast.social,AI,ai,false +yethiha,newsmast.social,Biology,biology,false +yethiha,newsmast.social,Chemistry,chemistry,false +yethiha,newsmast.social,Mathematics,mathematics,false +yethiha,newsmast.social,Physics,physics,false +yethiha,newsmast.social,Programming,programming,false +yethiha,newsmast.social,Science,science,false +yethiha,newsmast.social,Space,space,false +yethiha,newsmast.social,Technology,technology,false +yethiha,newsmast.social,Engineering,engineering,true +yemyatthu,mastodon.social,Academia & Research,academia_research,true +qurquma,newsmast.social,Movies,movies,false +qurquma,newsmast.social,Science,science,false +qurquma,newsmast.social,Sport,sport,false +JohnJVaccaro,newsmast.social,AI,ai,false +JohnJVaccaro,newsmast.social,Biology,biology,false +JohnJVaccaro,newsmast.social,Business,business,false +JohnJVaccaro,newsmast.social,Chemistry,chemistry,false +JohnJVaccaro,newsmast.social,Climate change,climate_change,false +JohnJVaccaro,newsmast.social,Energy & Pollution,energy_pollution,false +JohnJVaccaro,newsmast.social,Engineering,engineering,false +JohnJVaccaro,newsmast.social,Mathematics,mathematics,false +JohnJVaccaro,newsmast.social,Physics,physics,false +JohnJVaccaro,newsmast.social,Programming,programming,false +JohnJVaccaro,newsmast.social,Space,space,false +JohnJVaccaro,newsmast.social,Technology,technology,false +JohnJVaccaro,newsmast.social,Science,science,true +sintrenton,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +sintrenton,newsmast.social,Government & Policy,government_policy,false +sintrenton,newsmast.social,Humanities,humanities,false +sintrenton,newsmast.social,Law & Justice,law_justice,false +sintrenton,newsmast.social,Politics,politics,false +sintrenton,newsmast.social,Social Sciences,social_sciences,false +sintrenton,newsmast.social,Technology,technology,false +sintrenton,newsmast.social,Breaking News,breaking_news,true +VaniaG,newsmast.social,Government & Policy,government_policy,false +VaniaG,newsmast.social,Healthcare,healthcare,false +VaniaG,newsmast.social,Science,science,false +VaniaG,newsmast.social,Ukraine Invasion,ukraine_invasion,false +VaniaG,newsmast.social,Breaking News,breaking_news,true +HC_History,newsmast.social,Climate change,climate_change,false +FamilyFunTravel,newsmast.social,Football,football,false +FamilyFunTravel,newsmast.social,Immigrants Rights,immigrants_rights,false +FamilyFunTravel,newsmast.social,Sport,sport,false +FamilyFunTravel,newsmast.social,US Sport,us_sport,false +FamilyFunTravel,newsmast.social,Women’s Voices,women_voices,true +gabbab1,newsmast.social,Academia & Research,academia_research,false +gabbab1,newsmast.social,Activism & Civil Rights,activism_civil_rights,false +gabbab1,newsmast.social,AI,ai,false +gabbab1,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false +gabbab1,newsmast.social,Black Voices,black_voices,false +gabbab1,newsmast.social,Breaking News,breaking_news,false +gabbab1,newsmast.social,Business,business,false +gabbab1,newsmast.social,Climate change,climate_change,false +gabbab1,newsmast.social,Disabled Voices,disabled_voices,false +gabbab1,newsmast.social,Energy & Pollution,energy_pollution,false +gabbab1,newsmast.social,Engineering,engineering,false +gabbab1,newsmast.social,Environment,environment,false +gabbab1,newsmast.social,Government & Policy,government_policy,false +gabbab1,newsmast.social,Healthcare,healthcare,false +gabbab1,newsmast.social,History,history,false +gabbab1,newsmast.social,Humanities,humanities,false +gabbab1,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false +gabbab1,newsmast.social,Immigrants Rights,immigrants_rights,false +gabbab1,newsmast.social,Indigenous Peoples,indigenous_peoples,false +gabbab1,newsmast.social,Law & Justice,law_justice,false +gabbab1,newsmast.social,LGBTQ+,lgbtq,false +gabbab1,newsmast.social,Markets & Finance,markets_finance,false +gabbab1,newsmast.social,Journalism & Comment,news_comment_data,false +gabbab1,newsmast.social,Philosophy,philosophy,false +gabbab1,newsmast.social,Politics,politics,false +gabbab1,newsmast.social,Poverty & Inequality,poverty_inequality,false +gabbab1,newsmast.social,Programming,programming,false +gabbab1,newsmast.social,Social Media,social_media,false +gabbab1,newsmast.social,Social Sciences,social_sciences,false +gabbab1,newsmast.social,Technology,technology,false +gabbab1,newsmast.social,Ukraine Invasion,ukraine_invasion,false +gabbab1,newsmast.social,US Politics,us_politics,false +gabbab1,newsmast.social,Weather,weather,false +gabbab1,newsmast.social,Women’s Voices,women_voices,false +gabbab1,newsmast.social,Workers Rights,workers_rights,false +gabbab1,newsmast.social,Democracy & Human Rights,democracy_human_rights,true +bobo,newsmast.social,Science,science,false +bobo,newsmast.social,Social Media,social_media,false +bobo,newsmast.social,Social Sciences,social_sciences,false +bobo,newsmast.social,Space,space,false +bobo,newsmast.social,Sport,sport,false +bobo,newsmast.social,Travel,travel,false +bobo,newsmast.social,Ukraine Invasion,ukraine_invasion,false +bobo,newsmast.social,US Sport,us_sport,false +bobo,newsmast.social,Weather,weather,false +bobo,newsmast.social,Women’s Voices,women_voices,false +bobo,newsmast.social,Workers Rights,workers_rights,false +breaking_news_admin_3,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false +breaking_news_admin_3,newsmast.social,Energy & Pollution,energy_pollution,false +breaking_news_admin_3,newsmast.social,Environment,environment,false +breaking_news_admin_3,newsmast.social,Climate change,climate_change,true +breaking_news_admin_3,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false +vmatt,newsmast.social,Social Sciences,social_sciences,false +vmatt,newsmast.social,Technology,technology,false +vmatt,newsmast.social,Travel,travel,false +vmatt,newsmast.social,TV & Radio,tv_radio,false +vmatt,newsmast.social,Visual Arts,visual_arts,false +vmatt,newsmast.social,Books & Literature,books_literature,true +qurquma,newsmast.social,US Sport,us_sport,false +qurquma,newsmast.social,Football,football,true +atm_machine,mas.to,Music,music,false +atm_machine,mas.to,Photography,photography,false +aethervision,pnw.zone,Breaking News,breaking_news,false +BobGatty,newsmast.social,Academia & Research,academia_research,false +BobGatty,newsmast.social,AI,ai,false +minusgefuel,newsmast.social,AI,ai,false +minusgefuel,newsmast.social,Engineering,engineering,false +minusgefuel,newsmast.social,Humour,humour,false +minusgefuel,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false +minusgefuel,newsmast.social,Pets,pets,false +minusgefuel,newsmast.social,Programming,programming,false +minusgefuel,newsmast.social,Social Media,social_media,false +minusgefuel,newsmast.social,Technology,technology,true +BobGatty,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false +BobGatty,newsmast.social,Breaking News,breaking_news,false +BobGatty,newsmast.social,Business,business,false +teeheehee,newsmast.social,AI,ai,false +teeheehee,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false +teeheehee,newsmast.social,Biology,biology,false +teeheehee,newsmast.social,Breaking News,breaking_news,false +teeheehee,newsmast.social,Chemistry,chemistry,false +teeheehee,newsmast.social,Climate change,climate_change,false +teeheehee,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +teeheehee,newsmast.social,Engineering,engineering,false +teeheehee,newsmast.social,Environment,environment,false +teeheehee,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false +teeheehee,newsmast.social,Mathematics,mathematics,false +teeheehee,newsmast.social,Physics,physics,false +teeheehee,newsmast.social,Poverty & Inequality,poverty_inequality,false +teeheehee,newsmast.social,Programming,programming,false +teeheehee,newsmast.social,Science,science,false +teeheehee,newsmast.social,Space,space,false +teeheehee,newsmast.social,Technology,technology,false +teeheehee,newsmast.social,Ukraine Invasion,ukraine_invasion,false +teeheehee,newsmast.social,Energy & Pollution,energy_pollution,true +BobGatty,newsmast.social,Climate change,climate_change,false +BobGatty,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +nifta,newsmast.social,Activism & Civil Rights,activism_civil_rights,false +BobGatty,newsmast.social,Energy & Pollution,energy_pollution,false +nifta,newsmast.social,Architecture & Design,architecture_design,false +nifta,newsmast.social,Biology,biology,false +nifta,newsmast.social,Black Voices,black_voices,false +nifta,newsmast.social,Books & Literature,books_literature,false +nifta,newsmast.social,Breaking News,breaking_news,false +nifta,newsmast.social,Chemistry,chemistry,false +nifta,newsmast.social,Creative Arts,creative_arts,false +nifta,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +nifta,newsmast.social,Disabled Voices,disabled_voices,false +nifta,newsmast.social,Engineering,engineering,false +nifta,newsmast.social,Food & Drink,food_drink,false +nifta,newsmast.social,Football,football,false +nifta,newsmast.social,Gaming,gaming,false +nifta,newsmast.social,History,history,false +nifta,newsmast.social,Humanities,humanities,false +nifta,newsmast.social,Humour,humour,false +nifta,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false +nifta,newsmast.social,Immigrants Rights,immigrants_rights,false +nifta,newsmast.social,Indigenous Peoples,indigenous_peoples,false +nifta,newsmast.social,LGBTQ+,lgbtq,false +nifta,newsmast.social,Mathematics,mathematics,false +nifta,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false +nifta,newsmast.social,Movies,movies,false +nifta,newsmast.social,Music,music,false +nifta,newsmast.social,Nature & Wildlife,nature_wildlife,false +nifta,newsmast.social,Journalism & Comment,news_comment_data,false +nifta,newsmast.social,Performing Arts,performing_arts,false +nifta,newsmast.social,Pets,pets,false +nifta,newsmast.social,Philosophy,philosophy,false +nifta,newsmast.social,Photography,photography,false +nifta,newsmast.social,Physics,physics,false +nifta,newsmast.social,Poverty & Inequality,poverty_inequality,false +nifta,newsmast.social,Programming,programming,false +nifta,newsmast.social,Puzzles,puzzles,false +nifta,newsmast.social,Science,science,false +nifta,newsmast.social,Social Media,social_media,false +nifta,newsmast.social,Social Sciences,social_sciences,false +nifta,newsmast.social,Space,space,false +nifta,newsmast.social,Sport,sport,false +nifta,newsmast.social,Travel,travel,false +nifta,newsmast.social,TV & Radio,tv_radio,false +nifta,newsmast.social,Ukraine Invasion,ukraine_invasion,false +nifta,newsmast.social,US Sport,us_sport,false +nifta,newsmast.social,Visual Arts,visual_arts,false +nifta,newsmast.social,Weather,weather,false +nifta,newsmast.social,Women’s Voices,women_voices,false +nifta,newsmast.social,Technology,technology,true +WhiteMode,newsmast.social,Science,science,false +chidreams,newsmast.social,AI,ai,false +chidreams,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +chidreams,newsmast.social,Engineering,engineering,false +chidreams,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false +chidreams,newsmast.social,Poverty & Inequality,poverty_inequality,false +chidreams,newsmast.social,Programming,programming,false +chidreams,newsmast.social,Technology,technology,true +atm_machine,mas.to,Visual Arts,visual_arts,false +atm_machine,mas.to,Gaming,gaming,true +evil_k,newsmast.social,Philosophy,philosophy,false +BobGatty,newsmast.social,Engineering,engineering,false +BobGatty,newsmast.social,Environment,environment,false +BobGatty,newsmast.social,Football,football,false +BobGatty,newsmast.social,Government & Policy,government_policy,false +BobGatty,newsmast.social,Healthcare,healthcare,false +BobGatty,newsmast.social,History,history,false +BobGatty,newsmast.social,Humanities,humanities,false +BobGatty,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false +BobGatty,newsmast.social,Law & Justice,law_justice,false +BobGatty,newsmast.social,Markets & Finance,markets_finance,false +BobGatty,newsmast.social,Journalism & Comment,news_comment_data,false +BobGatty,newsmast.social,Philosophy,philosophy,false +BobGatty,newsmast.social,Poverty & Inequality,poverty_inequality,false +BobGatty,newsmast.social,Programming,programming,false +BobGatty,newsmast.social,Social Media,social_media,false +BobGatty,newsmast.social,Social Sciences,social_sciences,false +BobGatty,newsmast.social,Sport,sport,false +BobGatty,newsmast.social,Technology,technology,false +BobGatty,newsmast.social,Ukraine Invasion,ukraine_invasion,false +BobGatty,newsmast.social,US Politics,us_politics,false +BobGatty,newsmast.social,US Sport,us_sport,false +BobGatty,newsmast.social,Weather,weather,false +BobGatty,newsmast.social,Workers Rights,workers_rights,false +BobGatty,newsmast.social,Politics,politics,true +FamilyLawExpert,newsmast.social,Breaking News,breaking_news,false +FamilyLawExpert,newsmast.social,Humanities,humanities,false +FamilyLawExpert,newsmast.social,Poverty & Inequality,poverty_inequality,false +FamilyLawExpert,newsmast.social,Social Media,social_media,false +FamilyLawExpert,newsmast.social,Social Sciences,social_sciences,false +FamilyLawExpert,newsmast.social,Democracy & Human Rights,democracy_human_rights,true +mstepich,newsmast.social,Academia & Research,academia_research,false +mstepich,newsmast.social,AI,ai,false +mstepich,newsmast.social,Business,business,false +mstepich,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +mstepich,newsmast.social,Energy & Pollution,energy_pollution,false +mstepich,newsmast.social,Engineering,engineering,false +mstepich,newsmast.social,Environment,environment,false +mstepich,newsmast.social,Government & Policy,government_policy,false +mstepich,newsmast.social,Healthcare,healthcare,false +mstepich,newsmast.social,History,history,false +mstepich,newsmast.social,Humanities,humanities,false +mstepich,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false +mstepich,newsmast.social,Law & Justice,law_justice,false +mstepich,newsmast.social,Philosophy,philosophy,false +mstepich,newsmast.social,Politics,politics,false +mstepich,newsmast.social,Science,science,false +mstepich,newsmast.social,Social Sciences,social_sciences,false +mstepich,newsmast.social,Space,space,false +mstepich,newsmast.social,Technology,technology,false +mstepich,newsmast.social,Ukraine Invasion,ukraine_invasion,false +mstepich,newsmast.social,US Politics,us_politics,false +mstepich,newsmast.social,Journalism & Comment,news_comment_data,true +Hayleyk1970,newsmast.social,Architecture & Design,architecture_design,false +Hayleyk1970,newsmast.social,Books & Literature,books_literature,false +j_zim,mastodon.uno,AI,ai,false +j_zim,mastodon.uno,Business,business,false +j_zim,mastodon.uno,Chemistry,chemistry,false +j_zim,mastodon.uno,Democracy & Human Rights,democracy_human_rights,false +j_zim,mastodon.uno,Government & Policy,government_policy,false +j_zim,mastodon.uno,Journalism & Comment,news_comment_data,false +j_zim,mastodon.uno,Politics,politics,false +j_zim,mastodon.uno,Science,science,false +evil_k,newsmast.social,Physics,physics,false +aethervision,pnw.zone,Democracy & Human Rights,democracy_human_rights,false +aethervision,pnw.zone,Engineering,engineering,false +aethervision,pnw.zone,"Hunger, Disease & Water",hunger_disease_water,false +sillygwailo,mastodon.social,US Sport,us_sport,false +aethervision,pnw.zone,Poverty & Inequality,poverty_inequality,false +aethervision,pnw.zone,Technology,technology,false +MAD_Democracy,newsmast.social,Healthcare,healthcare,false +MAD_Democracy,newsmast.social,Politics,politics,false +MAD_Democracy,newsmast.social,Social Media,social_media,false +MAD_Democracy,newsmast.social,US Politics,us_politics,false +MAD_Democracy,newsmast.social,Journalism & Comment,news_comment_data,true +mati,moth.social,Visual Arts,visual_arts,false +YOUME25,newsmast.social,Academia & Research,academia_research,false +YOUME25,newsmast.social,Activism & Civil Rights,activism_civil_rights,false +YOUME25,newsmast.social,Architecture & Design,architecture_design,false +YOUME25,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false +YOUME25,newsmast.social,Biology,biology,false +YOUME25,newsmast.social,Black Voices,black_voices,false +YOUME25,newsmast.social,Books & Literature,books_literature,false +YOUME25,newsmast.social,Breaking News,breaking_news,false +YOUME25,newsmast.social,Business,business,false +YOUME25,newsmast.social,Chemistry,chemistry,false +YOUME25,newsmast.social,Climate change,climate_change,false +YOUME25,newsmast.social,Creative Arts,creative_arts,false +YOUME25,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +YOUME25,newsmast.social,Disabled Voices,disabled_voices,false +YOUME25,newsmast.social,Energy & Pollution,energy_pollution,false +YOUME25,newsmast.social,Engineering,engineering,false +YOUME25,newsmast.social,Environment,environment,false +YOUME25,newsmast.social,Food & Drink,food_drink,false +YOUME25,newsmast.social,Football,football,false +YOUME25,newsmast.social,Gaming,gaming,false +YOUME25,newsmast.social,Government & Policy,government_policy,false +YOUME25,newsmast.social,Healthcare,healthcare,false +YOUME25,newsmast.social,History,history,false +YOUME25,newsmast.social,Humanities,humanities,false +YOUME25,newsmast.social,Humour,humour,false +YOUME25,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false +YOUME25,newsmast.social,Immigrants Rights,immigrants_rights,false +YOUME25,newsmast.social,Indigenous Peoples,indigenous_peoples,false +YOUME25,newsmast.social,Law & Justice,law_justice,false +YOUME25,newsmast.social,LGBTQ+,lgbtq,false +YOUME25,newsmast.social,Markets & Finance,markets_finance,false +YOUME25,newsmast.social,Mathematics,mathematics,false +YOUME25,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false +YOUME25,newsmast.social,Movies,movies,false +YOUME25,newsmast.social,Music,music,false +YOUME25,newsmast.social,Nature & Wildlife,nature_wildlife,false +YOUME25,newsmast.social,Journalism & Comment,news_comment_data,false +YOUME25,newsmast.social,Performing Arts,performing_arts,false +YOUME25,newsmast.social,Pets,pets,false +YOUME25,newsmast.social,Philosophy,philosophy,false +YOUME25,newsmast.social,Photography,photography,false +YOUME25,newsmast.social,Physics,physics,false +YOUME25,newsmast.social,Politics,politics,false +YOUME25,newsmast.social,Poverty & Inequality,poverty_inequality,false +YOUME25,newsmast.social,Programming,programming,false +YOUME25,newsmast.social,Puzzles,puzzles,false +YOUME25,newsmast.social,Science,science,false +YOUME25,newsmast.social,Social Media,social_media,false +YOUME25,newsmast.social,Social Sciences,social_sciences,false +YOUME25,newsmast.social,Space,space,false +YOUME25,newsmast.social,Sport,sport,false +YOUME25,newsmast.social,Technology,technology,false +YOUME25,newsmast.social,Travel,travel,false +YOUME25,newsmast.social,TV & Radio,tv_radio,false +YOUME25,newsmast.social,Ukraine Invasion,ukraine_invasion,false +YOUME25,newsmast.social,US Politics,us_politics,false +YOUME25,newsmast.social,US Sport,us_sport,false +YOUME25,newsmast.social,Visual Arts,visual_arts,false +YOUME25,newsmast.social,Weather,weather,false +YOUME25,newsmast.social,Women’s Voices,women_voices,false +YOUME25,newsmast.social,Workers Rights,workers_rights,false +YOUME25,newsmast.social,AI,ai,true +jncomas,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +jncomas,newsmast.social,Humanities,humanities,false +jncomas,newsmast.social,Law & Justice,law_justice,false +jncomas,newsmast.social,Journalism & Comment,news_comment_data,false +jncomas,newsmast.social,Philosophy,philosophy,false +jncomas,newsmast.social,Ukraine Invasion,ukraine_invasion,false +jncomas,newsmast.social,US Politics,us_politics,false +jncomas,newsmast.social,Breaking News,breaking_news,true +saskia,newsmast.social,Journalism & Comment,news_comment_data,false +emenikeng,newsmast.social,AI,ai,false +emenikeng,newsmast.social,Business,business,false +emenikeng,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +emenikeng,newsmast.social,Engineering,engineering,false +emenikeng,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false +emenikeng,newsmast.social,Poverty & Inequality,poverty_inequality,false +emenikeng,newsmast.social,Programming,programming,false +emenikeng,newsmast.social,Technology,technology,false +emenikeng,newsmast.social,Workers Rights,workers_rights,false +emenikeng,newsmast.social,Markets & Finance,markets_finance,true +OhnMyint,newsmast.social,Academia & Research,academia_research,false +OhnMyint,newsmast.social,Breaking News,breaking_news,false +OhnMyint,newsmast.social,Government & Policy,government_policy,false +FifiSch,mastodon.social,History,history,false +MinMaungHein,newsmast.social,Physics,physics,false +MinMaungHein,newsmast.social,Science,science,true +FifiSch,mastodon.social,LGBTQ+,lgbtq,false +basil,sarcasm.stream,Breaking News,breaking_news,false +basil,sarcasm.stream,Energy & Pollution,energy_pollution,false +basil,sarcasm.stream,Football,football,false +basil,sarcasm.stream,Government & Policy,government_policy,false +basil,sarcasm.stream,Law & Justice,law_justice,false +cjapsmith,newsmast.social,Climate change,climate_change,false +cjapsmith,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +cjapsmith,newsmast.social,Environment,environment,false +cjapsmith,newsmast.social,Humanities,humanities,false +cjapsmith,newsmast.social,Poverty & Inequality,poverty_inequality,false +cjapsmith,newsmast.social,Philosophy,philosophy,true +MinMaungHein,newsmast.social,Humanities,humanities,false +basil,sarcasm.stream,Mathematics,mathematics,false +silly_hamster,newsmast.social,AI,ai,false +silly_hamster,newsmast.social,Breaking News,breaking_news,false +silly_hamster,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +silly_hamster,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false +silly_hamster,newsmast.social,Journalism & Comment,news_comment_data,false +silly_hamster,newsmast.social,Physics,physics,false +silly_hamster,newsmast.social,Poverty & Inequality,poverty_inequality,false +silly_hamster,newsmast.social,Science,science,false +silly_hamster,newsmast.social,Social Media,social_media,false +tbutler,newsmast.social,AI,ai,false +tbutler,newsmast.social,History,history,false +tbutler,newsmast.social,Humanities,humanities,false +tbutler,newsmast.social,Philosophy,philosophy,false +tbutler,newsmast.social,Politics,politics,false +tbutler,newsmast.social,Programming,programming,false +tbutler,newsmast.social,Social Media,social_media,false +tbutler,newsmast.social,Social Sciences,social_sciences,false +tbutler,newsmast.social,Technology,technology,false +tbutler,newsmast.social,Ukraine Invasion,ukraine_invasion,false +tbutler,newsmast.social,US Politics,us_politics,false +tbutler,newsmast.social,Journalism & Comment,news_comment_data,true +basil,sarcasm.stream,Programming,programming,true +FifiSch,mastodon.social,Social Sciences,social_sciences,false +FifiSch,mastodon.social,Humanities,humanities,true +aethervision,pnw.zone,Weather,weather,false +aethervision,pnw.zone,Journalism & Comment,news_comment_data,true +mati,moth.social,Humour,humour,false +mati,moth.social,Creative Arts,creative_arts,false +DaMontayyer,newsmast.social,Academia & Research,academia_research,false +DaMontayyer,newsmast.social,Architecture & Design,architecture_design,false +DaMontayyer,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false +DaMontayyer,newsmast.social,Climate change,climate_change,false +DaMontayyer,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +DaMontayyer,newsmast.social,Disabled Voices,disabled_voices,false +DaMontayyer,newsmast.social,Energy & Pollution,energy_pollution,false +DaMontayyer,newsmast.social,Environment,environment,false +DaMontayyer,newsmast.social,Gaming,gaming,false +DaMontayyer,newsmast.social,Government & Policy,government_policy,false +DaMontayyer,newsmast.social,Healthcare,healthcare,false +DaMontayyer,newsmast.social,History,history,false +DaMontayyer,newsmast.social,Immigrants Rights,immigrants_rights,false +DaMontayyer,newsmast.social,LGBTQ+,lgbtq,false +DaMontayyer,newsmast.social,Movies,movies,false +DaMontayyer,newsmast.social,Music,music,false +DaMontayyer,newsmast.social,Politics,politics,false +DaMontayyer,newsmast.social,Programming,programming,false +DaMontayyer,newsmast.social,Sport,sport,false +DaMontayyer,newsmast.social,Technology,technology,false +DaMontayyer,newsmast.social,TV & Radio,tv_radio,false +DaMontayyer,newsmast.social,US Politics,us_politics,false +DaMontayyer,newsmast.social,Football,football,true +mati,moth.social,Mental Health & Wellbeing,mental_health_wellbeing,false +diamondlewis,newsmast.social,Breaking News,breaking_news,false +diamondlewis,newsmast.social,Journalism & Comment,news_comment_data,false +plus,newsmast.social,Academia & Research,academia_research,false +plus,newsmast.social,Activism & Civil Rights,activism_civil_rights,false +plus,newsmast.social,AI,ai,false +plus,newsmast.social,Architecture & Design,architecture_design,false +plus,newsmast.social,Black Voices,black_voices,false +plus,newsmast.social,Books & Literature,books_literature,false +plus,newsmast.social,Business,business,false +plus,newsmast.social,Creative Arts,creative_arts,false +plus,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +plus,newsmast.social,Disabled Voices,disabled_voices,false +plus,newsmast.social,Engineering,engineering,false +plus,newsmast.social,Food & Drink,food_drink,false +plus,newsmast.social,Gaming,gaming,false +plus,newsmast.social,Breaking News,breaking_news,true +silly_hamster,newsmast.social,Space,space,false +silly_hamster,newsmast.social,Technology,technology,false +silly_hamster,newsmast.social,Biology,biology,true +prabhakar,newsmast.social,Journalism & Comment,news_comment_data,false +guchengsnakee,newsmast.social,Markets & Finance,markets_finance,false +guchengsnakee,newsmast.social,Mathematics,mathematics,false +guchengsnakee,newsmast.social,Programming,programming,false +guchengsnakee,newsmast.social,Science,science,false +guchengsnakee,newsmast.social,Technology,technology,false +guchengsnakee,newsmast.social,AI,ai,true +OhnMyint,newsmast.social,Law & Justice,law_justice,false +OhnMyint,newsmast.social,Politics,politics,false +OhnMyint,newsmast.social,US Politics,us_politics,false +OhnMyint,newsmast.social,Healthcare,healthcare,true +paulcrosby,newsmast.social,Markets & Finance,markets_finance,false +paulcrosby,newsmast.social,Space,space,false +paulcrosby,newsmast.social,Technology,technology,false +paulcrosby,newsmast.social,Ukraine Invasion,ukraine_invasion,false +plus,newsmast.social,Government & Policy,government_policy,false +plus,newsmast.social,Healthcare,healthcare,false +plus,newsmast.social,History,history,false +plus,newsmast.social,Humanities,humanities,false +plus,newsmast.social,Humour,humour,false +plus,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false +plus,newsmast.social,Immigrants Rights,immigrants_rights,false +plus,newsmast.social,Indigenous Peoples,indigenous_peoples,false +plus,newsmast.social,Law & Justice,law_justice,false +plus,newsmast.social,LGBTQ+,lgbtq,false +plus,newsmast.social,Markets & Finance,markets_finance,false +plus,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false +plus,newsmast.social,Movies,movies,false +plus,newsmast.social,Music,music,false +plus,newsmast.social,Nature & Wildlife,nature_wildlife,false +plus,newsmast.social,Journalism & Comment,news_comment_data,false +plus,newsmast.social,Performing Arts,performing_arts,false +plus,newsmast.social,Pets,pets,false +plus,newsmast.social,Philosophy,philosophy,false +plus,newsmast.social,Photography,photography,false +plus,newsmast.social,Politics,politics,false +plus,newsmast.social,Poverty & Inequality,poverty_inequality,false +plus,newsmast.social,Programming,programming,false +plus,newsmast.social,Puzzles,puzzles,false +plus,newsmast.social,Social Media,social_media,false +plus,newsmast.social,Social Sciences,social_sciences,false +plus,newsmast.social,Technology,technology,false +plus,newsmast.social,Travel,travel,false +plus,newsmast.social,TV & Radio,tv_radio,false +plus,newsmast.social,Ukraine Invasion,ukraine_invasion,false +plus,newsmast.social,US Politics,us_politics,false +plus,newsmast.social,Visual Arts,visual_arts,false +plus,newsmast.social,Weather,weather,false +plus,newsmast.social,Women’s Voices,women_voices,false +plus,newsmast.social,Workers Rights,workers_rights,false +anca,mastodon.xyz,Energy & Pollution,energy_pollution,false +anca,mastodon.xyz,Programming,programming,false +noisediver,newsmast.social,AI,ai,false +MilitaryAfrica,newsmast.social,Academia & Research,academia_research,false +MilitaryAfrica,newsmast.social,Breaking News,breaking_news,false +MilitaryAfrica,newsmast.social,Business,business,false +MilitaryAfrica,newsmast.social,Healthcare,healthcare,false +MilitaryAfrica,newsmast.social,Law & Justice,law_justice,false +MilitaryAfrica,newsmast.social,Markets & Finance,markets_finance,false +MilitaryAfrica,newsmast.social,Journalism & Comment,news_comment_data,false +MilitaryAfrica,newsmast.social,Politics,politics,false +MilitaryAfrica,newsmast.social,Social Media,social_media,false +MilitaryAfrica,newsmast.social,Ukraine Invasion,ukraine_invasion,false +MilitaryAfrica,newsmast.social,US Politics,us_politics,false +MilitaryAfrica,newsmast.social,Weather,weather,false +MilitaryAfrica,newsmast.social,Workers Rights,workers_rights,false +MilitaryAfrica,newsmast.social,Government & Policy,government_policy,true +noisediver,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false +noisediver,newsmast.social,Biology,biology,false +noisediver,newsmast.social,Chemistry,chemistry,false +noisediver,newsmast.social,Climate change,climate_change,false +uobadam,newsmast.social,Academia & Research,academia_research,false +uobadam,newsmast.social,AI,ai,false +uobadam,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false +uobadam,newsmast.social,Biology,biology,false +uobadam,newsmast.social,Business,business,false +uobadam,newsmast.social,Chemistry,chemistry,false +uobadam,newsmast.social,Climate change,climate_change,false +uobadam,newsmast.social,Creative Arts,creative_arts,false +uobadam,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +uobadam,newsmast.social,Energy & Pollution,energy_pollution,false +uobadam,newsmast.social,Engineering,engineering,false +uobadam,newsmast.social,Environment,environment,false +uobadam,newsmast.social,Food & Drink,food_drink,false +uobadam,newsmast.social,Government & Policy,government_policy,false +uobadam,newsmast.social,Healthcare,healthcare,false +uobadam,newsmast.social,Humour,humour,false +uobadam,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false +uobadam,newsmast.social,Law & Justice,law_justice,false +uobadam,newsmast.social,Markets & Finance,markets_finance,false +uobadam,newsmast.social,Mathematics,mathematics,false +uobadam,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false +uobadam,newsmast.social,Nature & Wildlife,nature_wildlife,false +uobadam,newsmast.social,Journalism & Comment,news_comment_data,false +uobadam,newsmast.social,Pets,pets,false +uobadam,newsmast.social,Physics,physics,false +uobadam,newsmast.social,Politics,politics,false +uobadam,newsmast.social,Poverty & Inequality,poverty_inequality,false +uobadam,newsmast.social,Programming,programming,false +uobadam,newsmast.social,Puzzles,puzzles,false +uobadam,newsmast.social,Science,science,false +uobadam,newsmast.social,Social Media,social_media,false +uobadam,newsmast.social,Space,space,false +uobadam,newsmast.social,Technology,technology,false +uobadam,newsmast.social,Travel,travel,false +uobadam,newsmast.social,Ukraine Invasion,ukraine_invasion,false +uobadam,newsmast.social,US Politics,us_politics,false +uobadam,newsmast.social,Weather,weather,false +uobadam,newsmast.social,Workers Rights,workers_rights,false +uobadam,newsmast.social,Breaking News,breaking_news,true +noisediver,newsmast.social,Energy & Pollution,energy_pollution,false +noisediver,newsmast.social,Engineering,engineering,false +noisediver,newsmast.social,Environment,environment,false +noisediver,newsmast.social,Mathematics,mathematics,false +noisediver,newsmast.social,Physics,physics,false +noisediver,newsmast.social,Programming,programming,false +noisediver,newsmast.social,Space,space,false +noisediver,newsmast.social,Technology,technology,false +noisediver,newsmast.social,Science,science,true +anca,mastodon.xyz,Science,science,false +jmcastagnetto,mastodon.social,AI,ai,false +jmcastagnetto,mastodon.social,Biology,biology,false +jmcastagnetto,mastodon.social,Books & Literature,books_literature,false +jmcastagnetto,mastodon.social,Chemistry,chemistry,false +ExpertPlus,newsmast.social,Activism & Civil Rights,activism_civil_rights,false +ExpertPlus,newsmast.social,AI,ai,false +ExpertPlus,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false +ExpertPlus,newsmast.social,Black Voices,black_voices,false +ExpertPlus,newsmast.social,Climate change,climate_change,false +ExpertPlus,newsmast.social,Creative Arts,creative_arts,false +ExpertPlus,newsmast.social,Disabled Voices,disabled_voices,false +ExpertPlus,newsmast.social,Energy & Pollution,energy_pollution,false +ExpertPlus,newsmast.social,Engineering,engineering,false +ExpertPlus,newsmast.social,Environment,environment,false +ExpertPlus,newsmast.social,Food & Drink,food_drink,false +ExpertPlus,newsmast.social,Immigrants Rights,immigrants_rights,false +ExpertPlus,newsmast.social,Indigenous Peoples,indigenous_peoples,false +ExpertPlus,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false +ExpertPlus,newsmast.social,Nature & Wildlife,nature_wildlife,false +ExpertPlus,newsmast.social,Pets,pets,false +ExpertPlus,newsmast.social,Programming,programming,false +ExpertPlus,newsmast.social,Puzzles,puzzles,false +ExpertPlus,newsmast.social,Technology,technology,false +ExpertPlus,newsmast.social,Travel,travel,false +ExpertPlus,newsmast.social,Women’s Voices,women_voices,false +ExpertPlus,newsmast.social,Humour,humour,true +LiveMessy2024,newsmast.social,AI,ai,false +noisediver,newsmast.social,Ukraine Invasion,ukraine_invasion,false +noisediver,newsmast.social,Philosophy,philosophy,false +LiveMessy2024,newsmast.social,Breaking News,breaking_news,false +LiveMessy2024,newsmast.social,Business,business,false +LiveMessy2024,newsmast.social,Creative Arts,creative_arts,false +LiveMessy2024,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +LiveMessy2024,newsmast.social,History,history,false +LiveMessy2024,newsmast.social,Humanities,humanities,false +LiveMessy2024,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false +userlau,newsmast.social,Breaking News,breaking_news,false +userlau,newsmast.social,Journalism & Comment,news_comment_data,false +userlau,newsmast.social,Social Media,social_media,false +userlau,newsmast.social,Ukraine Invasion,ukraine_invasion,false +userlau,newsmast.social,Weather,weather,true +LiveMessy2024,newsmast.social,LGBTQ+,lgbtq,false +LiveMessy2024,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false +LiveMessy2024,newsmast.social,Nature & Wildlife,nature_wildlife,false +LiveMessy2024,newsmast.social,Philosophy,philosophy,false +LiveMessy2024,newsmast.social,Poverty & Inequality,poverty_inequality,false +macelynne919,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false +macelynne919,newsmast.social,Business,business,false +macelynne919,newsmast.social,Climate change,climate_change,false +macelynne919,newsmast.social,Creative Arts,creative_arts,false +macelynne919,newsmast.social,Energy & Pollution,energy_pollution,false +macelynne919,newsmast.social,Environment,environment,false +macelynne919,newsmast.social,Food & Drink,food_drink,false +Birdiana_Jonez,newsmast.social,AI,ai,false +Birdiana_Jonez,newsmast.social,Architecture & Design,architecture_design,false +Birdiana_Jonez,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false +Birdiana_Jonez,newsmast.social,Biology,biology,false +Birdiana_Jonez,newsmast.social,Books & Literature,books_literature,false +Birdiana_Jonez,newsmast.social,Chemistry,chemistry,false +Birdiana_Jonez,newsmast.social,Climate change,climate_change,false +Birdiana_Jonez,newsmast.social,Creative Arts,creative_arts,false +Birdiana_Jonez,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +Birdiana_Jonez,newsmast.social,Engineering,engineering,false +Birdiana_Jonez,newsmast.social,Environment,environment,false +Birdiana_Jonez,newsmast.social,Food & Drink,food_drink,false +Birdiana_Jonez,newsmast.social,Government & Policy,government_policy,false +Birdiana_Jonez,newsmast.social,Healthcare,healthcare,false +Birdiana_Jonez,newsmast.social,History,history,false +Birdiana_Jonez,newsmast.social,Humanities,humanities,false +Birdiana_Jonez,newsmast.social,Humour,humour,false +Birdiana_Jonez,newsmast.social,Law & Justice,law_justice,false +Birdiana_Jonez,newsmast.social,Markets & Finance,markets_finance,false +Birdiana_Jonez,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false +Birdiana_Jonez,newsmast.social,Movies,movies,false +Birdiana_Jonez,newsmast.social,Music,music,false +Birdiana_Jonez,newsmast.social,Nature & Wildlife,nature_wildlife,false +Birdiana_Jonez,newsmast.social,Journalism & Comment,news_comment_data,false +Birdiana_Jonez,newsmast.social,Pets,pets,false +Birdiana_Jonez,newsmast.social,Philosophy,philosophy,false +Birdiana_Jonez,newsmast.social,Photography,photography,false +Birdiana_Jonez,newsmast.social,Physics,physics,false +Birdiana_Jonez,newsmast.social,Politics,politics,false +Birdiana_Jonez,newsmast.social,Science,science,false +macelynne919,newsmast.social,Humour,humour,false +Birdiana_Jonez,newsmast.social,Breaking News,breaking_news,true +macelynne919,newsmast.social,Markets & Finance,markets_finance,false +macelynne919,newsmast.social,Nature & Wildlife,nature_wildlife,false +macelynne919,newsmast.social,Pets,pets,false +macelynne919,newsmast.social,Puzzles,puzzles,false +macelynne919,newsmast.social,Travel,travel,false +macelynne919,newsmast.social,Workers Rights,workers_rights,false +macelynne919,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,true +PPT536,newsmast.social,Journalism & Comment,news_comment_data,false +PPT536,newsmast.social,Social Media,social_media,false +PPT536,newsmast.social,Ukraine Invasion,ukraine_invasion,false +PPT536,newsmast.social,Weather,weather,false +PPT536,newsmast.social,Breaking News,breaking_news,true +minkhantkyaw350,newsmast.social,AI,ai,false +Birdiana_Jonez,newsmast.social,Social Sciences,social_sciences,false +Birdiana_Jonez,newsmast.social,Space,space,false +Birdiana_Jonez,newsmast.social,Technology,technology,false +Birdiana_Jonez,newsmast.social,Travel,travel,false +Birdiana_Jonez,newsmast.social,Ukraine Invasion,ukraine_invasion,false +Birdiana_Jonez,newsmast.social,Visual Arts,visual_arts,false +Birdiana_Jonez,newsmast.social,Workers Rights,workers_rights,false +noisediver,newsmast.social,Academia & Research,academia_research,false +DaMontayyer,newsmast.social,US Sport,us_sport,false +DaMontayyer,newsmast.social,Visual Arts,visual_arts,false +DaMontayyer,newsmast.social,Women’s Voices,women_voices,false +Hayleyk1970,newsmast.social,Breaking News,breaking_news,false +Hayleyk1970,newsmast.social,Creative Arts,creative_arts,false +Hayleyk1970,newsmast.social,Food & Drink,food_drink,false +Hayleyk1970,newsmast.social,Gaming,gaming,false +Hayleyk1970,newsmast.social,Humour,humour,false +Hayleyk1970,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false +Hayleyk1970,newsmast.social,Movies,movies,false +Hayleyk1970,newsmast.social,Music,music,false +Hayleyk1970,newsmast.social,Nature & Wildlife,nature_wildlife,false +Hayleyk1970,newsmast.social,Performing Arts,performing_arts,false +Hayleyk1970,newsmast.social,Pets,pets,false +Hayleyk1970,newsmast.social,Photography,photography,false +Hayleyk1970,newsmast.social,Puzzles,puzzles,false +Hayleyk1970,newsmast.social,Social Media,social_media,false +Hayleyk1970,newsmast.social,Travel,travel,false +Hayleyk1970,newsmast.social,TV & Radio,tv_radio,false +Hayleyk1970,newsmast.social,Visual Arts,visual_arts,false +Hayleyk1970,newsmast.social,Women’s Voices,women_voices,false +Hayleyk1970,newsmast.social,Weather,weather,true +noisediver,newsmast.social,Social Sciences,social_sciences,false +noisediver,newsmast.social,Poverty & Inequality,poverty_inequality,false +ThatRandomJew,tech.lgbt,Books & Literature,books_literature,false +ThatRandomJew,tech.lgbt,Breaking News,breaking_news,false +ThatRandomJew,tech.lgbt,Climate change,climate_change,false +ThatRandomJew,tech.lgbt,Creative Arts,creative_arts,false +ThatRandomJew,tech.lgbt,Engineering,engineering,false +maique,newsmast.social,Activism & Civil Rights,activism_civil_rights,false +maique,newsmast.social,AI,ai,false +maique,newsmast.social,Architecture & Design,architecture_design,false +maique,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false +maique,newsmast.social,Books & Literature,books_literature,false +maique,newsmast.social,Climate change,climate_change,false +maique,newsmast.social,Creative Arts,creative_arts,false +maique,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +maique,newsmast.social,Energy & Pollution,energy_pollution,false +maique,newsmast.social,Engineering,engineering,false +maique,newsmast.social,Environment,environment,false +maique,newsmast.social,Food & Drink,food_drink,false +maique,newsmast.social,Gaming,gaming,false +maique,newsmast.social,History,history,false +maique,newsmast.social,Humanities,humanities,false +maique,newsmast.social,Humour,humour,false +maique,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false +maique,newsmast.social,LGBTQ+,lgbtq,false +maique,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false +maique,newsmast.social,Movies,movies,false +maique,newsmast.social,Music,music,false +maique,newsmast.social,Nature & Wildlife,nature_wildlife,false +maique,newsmast.social,Journalism & Comment,news_comment_data,false +maique,newsmast.social,Performing Arts,performing_arts,false +maique,newsmast.social,Photography,photography,false +maique,newsmast.social,Politics,politics,false +maique,newsmast.social,Poverty & Inequality,poverty_inequality,false +maique,newsmast.social,Programming,programming,false +maique,newsmast.social,Social Media,social_media,false +maique,newsmast.social,Social Sciences,social_sciences,false +maique,newsmast.social,Space,space,false +maique,newsmast.social,Technology,technology,false +maique,newsmast.social,Travel,travel,false +maique,newsmast.social,TV & Radio,tv_radio,false +maique,newsmast.social,Ukraine Invasion,ukraine_invasion,false +maique,newsmast.social,Visual Arts,visual_arts,false +maique,newsmast.social,Weather,weather,false +maique,newsmast.social,Women’s Voices,women_voices,false +maique,newsmast.social,Breaking News,breaking_news,true +Diva_7057,newsmast.social,Breaking News,breaking_news,false +kuzushi,newsmast.social,AI,ai,false +kuzushi,newsmast.social,Architecture & Design,architecture_design,false +kuzushi,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false +kuzushi,newsmast.social,Biology,biology,false +kuzushi,newsmast.social,Books & Literature,books_literature,false +kuzushi,newsmast.social,Chemistry,chemistry,false +kuzushi,newsmast.social,Climate change,climate_change,false +kuzushi,newsmast.social,Energy & Pollution,energy_pollution,false +kuzushi,newsmast.social,Environment,environment,false +kuzushi,newsmast.social,Government & Policy,government_policy,false +kuzushi,newsmast.social,Healthcare,healthcare,false +kuzushi,newsmast.social,History,history,false +kuzushi,newsmast.social,Humanities,humanities,false +kuzushi,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false +kuzushi,newsmast.social,Law & Justice,law_justice,false +kuzushi,newsmast.social,Mathematics,mathematics,false +kuzushi,newsmast.social,Democracy & Human Rights,democracy_human_rights,true +kuzushi,newsmast.social,Movies,movies,false +kuzushi,newsmast.social,Music,music,false +kuzushi,newsmast.social,Performing Arts,performing_arts,false +kuzushi,newsmast.social,Philosophy,philosophy,false +kuzushi,newsmast.social,Photography,photography,false +kuzushi,newsmast.social,Physics,physics,false +kuzushi,newsmast.social,Poverty & Inequality,poverty_inequality,false +kuzushi,newsmast.social,Programming,programming,false +kuzushi,newsmast.social,Science,science,false +kuzushi,newsmast.social,Social Sciences,social_sciences,false +kuzushi,newsmast.social,Space,space,false +kuzushi,newsmast.social,Sport,sport,false +kuzushi,newsmast.social,Visual Arts,visual_arts,false +noisediver,newsmast.social,Social Media,social_media,false +noisediver,newsmast.social,Disabled Voices,disabled_voices,false +ThatRandomJew,tech.lgbt,Gaming,gaming,false +anca,mastodon.xyz,Climate change,climate_change,true +ThatRandomJew,tech.lgbt,Mental Health & Wellbeing,mental_health_wellbeing,false +ThatRandomJew,tech.lgbt,Movies,movies,false +Aurefreepress,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +Aurefreepress,newsmast.social,Government & Policy,government_policy,false +sillygwailo,mastodon.social,Social Sciences,social_sciences,true +IlCava,mastodon.uno,Music,music,false +diamondlewis,newsmast.social,Ukraine Invasion,ukraine_invasion,false +diamondlewis,newsmast.social,Weather,weather,false +Aurefreepress,newsmast.social,Breaking News,breaking_news,true +Nyein,newsmast.social,Chemistry,chemistry,true +diamondlewis,newsmast.social,Social Media,social_media,true +prabhakar,newsmast.social,Social Media,social_media,false +prabhakar,newsmast.social,Ukraine Invasion,ukraine_invasion,false +exakat,newsmast.social,Engineering,engineering,false +exakat,newsmast.social,Mathematics,mathematics,false +exakat,newsmast.social,Physics,physics,false +exakat,newsmast.social,Space,space,false +exakat,newsmast.social,Programming,programming,true +prabhakar,newsmast.social,Weather,weather,false +prabhakar,newsmast.social,Breaking News,breaking_news,true +90sCraig,pb.craignt.com,Gaming,gaming,false +thedogspaw,mastodon.social,US Sport,us_sport,false +javierleiva,mastodon.social,Indigenous Peoples,indigenous_peoples,false +javierleiva,mastodon.social,Space,space,false +javierleiva,mastodon.social,Sport,sport,false +javierleiva,mastodon.social,US Sport,us_sport,false +javierleiva,mastodon.social,Science,science,true +EngineerFinance,newsmast.social,Breaking News,breaking_news,false +EngineerFinance,newsmast.social,Creative Arts,creative_arts,false +EngineerFinance,newsmast.social,Food & Drink,food_drink,false +EngineerFinance,newsmast.social,Humour,humour,false +EngineerFinance,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false +EngineerFinance,newsmast.social,Nature & Wildlife,nature_wildlife,false +EngineerFinance,newsmast.social,Pets,pets,false +EngineerFinance,newsmast.social,Puzzles,puzzles,false +EngineerFinance,newsmast.social,Social Media,social_media,false +EngineerFinance,newsmast.social,Travel,travel,false +EngineerFinance,newsmast.social,Ukraine Invasion,ukraine_invasion,false +EngineerFinance,newsmast.social,Weather,weather,false +EngineerFinance,newsmast.social,Journalism & Comment,news_comment_data,true +deadsuperhero,newsmast.social,Engineering,engineering,false +deadsuperhero,newsmast.social,LGBTQ+,lgbtq,false +deadsuperhero,newsmast.social,Programming,programming,false +deadsuperhero,newsmast.social,Workers Rights,workers_rights,false +deadsuperhero,newsmast.social,Technology,technology,true +Nyein,newsmast.social,Engineering,engineering,false +Nyein,newsmast.social,Technology,technology,false +Scotty,newsmast.social,Food & Drink,food_drink,false +Scotty,newsmast.social,Humour,humour,false +seedling,newsmast.social,Indigenous Peoples,indigenous_peoples,false +seedling,newsmast.social,Philosophy,philosophy,false +seedling,newsmast.social,Social Sciences,social_sciences,false +seedling,newsmast.social,Women’s Voices,women_voices,false +seedling,newsmast.social,History,history,true +ppt_56,newsmast.social,Journalism & Comment,news_comment_data,false +ppt_56,newsmast.social,Social Media,social_media,false +ppt_56,newsmast.social,Ukraine Invasion,ukraine_invasion,false +ppt_56,newsmast.social,Weather,weather,false +ppt_56,newsmast.social,Breaking News,breaking_news,true +Sylkeweb,newsmast.social,Social Media,social_media,false +tijoantony,newsmast.social,AI,ai,false +tijoantony,newsmast.social,Breaking News,breaking_news,false +tijoantony,newsmast.social,Business,business,false +tijoantony,newsmast.social,Creative Arts,creative_arts,false +tijoantony,newsmast.social,Engineering,engineering,false +tijoantony,newsmast.social,Food & Drink,food_drink,false +tijoantony,newsmast.social,Football,football,false +tijoantony,newsmast.social,Humour,humour,false +tijoantony,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false +tijoantony,newsmast.social,Nature & Wildlife,nature_wildlife,false +tijoantony,newsmast.social,Journalism & Comment,news_comment_data,false +tijoantony,newsmast.social,Pets,pets,false +tijoantony,newsmast.social,Programming,programming,false +tijoantony,newsmast.social,Puzzles,puzzles,false +tijoantony,newsmast.social,Social Media,social_media,false +tijoantony,newsmast.social,Sport,sport,false +tijoantony,newsmast.social,Technology,technology,true +noisediver,newsmast.social,Healthcare,healthcare,false +noisediver,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false +WhiteMode,newsmast.social,Chemistry,chemistry,false +noisediver,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false +miscmisc,newsmast.social,Biology,biology,false +miscmisc,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +miscmisc,newsmast.social,Football,football,false +miscmisc,newsmast.social,Science,science,false +miscmisc,newsmast.social,Sport,sport,false +miscmisc,newsmast.social,Technology,technology,false +miscmisc,newsmast.social,Breaking News,breaking_news,true +ChiefOldMist,newsmast.social,AI,ai,false +ChiefOldMist,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false +ChiefOldMist,newsmast.social,Biology,biology,false +ChiefOldMist,newsmast.social,Breaking News,breaking_news,false +ChiefOldMist,newsmast.social,Chemistry,chemistry,false +ChiefOldMist,newsmast.social,Climate change,climate_change,false +ChiefOldMist,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +ChiefOldMist,newsmast.social,Energy & Pollution,energy_pollution,false +ChiefOldMist,newsmast.social,Engineering,engineering,false +ChiefOldMist,newsmast.social,Environment,environment,false +ChiefOldMist,newsmast.social,Government & Policy,government_policy,false +ChiefOldMist,newsmast.social,History,history,false +ChiefOldMist,newsmast.social,Humanities,humanities,false +k_rose,newsmast.social,Academia & Research,academia_research,false +k_rose,newsmast.social,Activism & Civil Rights,activism_civil_rights,false +k_rose,newsmast.social,AI,ai,false +k_rose,newsmast.social,Architecture & Design,architecture_design,false +k_rose,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false +k_rose,newsmast.social,Biology,biology,false +k_rose,newsmast.social,Black Voices,black_voices,false +k_rose,newsmast.social,Books & Literature,books_literature,false +k_rose,newsmast.social,Breaking News,breaking_news,false +k_rose,newsmast.social,Business,business,false +k_rose,newsmast.social,Chemistry,chemistry,false +k_rose,newsmast.social,Climate change,climate_change,false +k_rose,newsmast.social,Creative Arts,creative_arts,false +k_rose,newsmast.social,Disabled Voices,disabled_voices,false +k_rose,newsmast.social,Energy & Pollution,energy_pollution,false +k_rose,newsmast.social,Engineering,engineering,false +k_rose,newsmast.social,Environment,environment,false +k_rose,newsmast.social,Food & Drink,food_drink,false +k_rose,newsmast.social,Football,football,false +k_rose,newsmast.social,Gaming,gaming,false +k_rose,newsmast.social,Government & Policy,government_policy,false +k_rose,newsmast.social,Healthcare,healthcare,false +k_rose,newsmast.social,History,history,false +k_rose,newsmast.social,Humanities,humanities,false +k_rose,newsmast.social,Humour,humour,false +k_rose,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false +k_rose,newsmast.social,Immigrants Rights,immigrants_rights,false +k_rose,newsmast.social,Indigenous Peoples,indigenous_peoples,false +k_rose,newsmast.social,Law & Justice,law_justice,false +k_rose,newsmast.social,LGBTQ+,lgbtq,false +k_rose,newsmast.social,Markets & Finance,markets_finance,false +k_rose,newsmast.social,Mathematics,mathematics,false +k_rose,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false +k_rose,newsmast.social,Movies,movies,false +k_rose,newsmast.social,Music,music,false +k_rose,newsmast.social,Nature & Wildlife,nature_wildlife,false +k_rose,newsmast.social,Journalism & Comment,news_comment_data,false +k_rose,newsmast.social,Performing Arts,performing_arts,false +k_rose,newsmast.social,Pets,pets,false +k_rose,newsmast.social,Philosophy,philosophy,false +k_rose,newsmast.social,Photography,photography,false +k_rose,newsmast.social,Physics,physics,false +k_rose,newsmast.social,Politics,politics,false +k_rose,newsmast.social,Poverty & Inequality,poverty_inequality,false +k_rose,newsmast.social,Programming,programming,false +k_rose,newsmast.social,Puzzles,puzzles,false +k_rose,newsmast.social,Science,science,false +k_rose,newsmast.social,Social Media,social_media,false +k_rose,newsmast.social,Social Sciences,social_sciences,false +k_rose,newsmast.social,Space,space,false +k_rose,newsmast.social,Sport,sport,false +k_rose,newsmast.social,Technology,technology,false +k_rose,newsmast.social,Travel,travel,false +k_rose,newsmast.social,TV & Radio,tv_radio,false +k_rose,newsmast.social,Ukraine Invasion,ukraine_invasion,false +k_rose,newsmast.social,US Politics,us_politics,false +k_rose,newsmast.social,US Sport,us_sport,false +k_rose,newsmast.social,Visual Arts,visual_arts,false +k_rose,newsmast.social,Weather,weather,false +k_rose,newsmast.social,Women’s Voices,women_voices,false +k_rose,newsmast.social,Workers Rights,workers_rights,false +k_rose,newsmast.social,Democracy & Human Rights,democracy_human_rights,true +EasternHerald,newsmast.social,Academia & Research,academia_research,false +EasternHerald,newsmast.social,AI,ai,false +EasternHerald,newsmast.social,Engineering,engineering,false +EasternHerald,newsmast.social,Government & Policy,government_policy,false +EasternHerald,newsmast.social,Healthcare,healthcare,false +EasternHerald,newsmast.social,Law & Justice,law_justice,false +EasternHerald,newsmast.social,Politics,politics,false +EasternHerald,newsmast.social,Programming,programming,false +EasternHerald,newsmast.social,Technology,technology,false +EasternHerald,newsmast.social,US Politics,us_politics,true +AltonDrew,newsmast.social,Academia & Research,academia_research,false +AltonDrew,newsmast.social,Architecture & Design,architecture_design,false +AltonDrew,newsmast.social,Books & Literature,books_literature,false +AltonDrew,newsmast.social,Creative Arts,creative_arts,false +AltonDrew,newsmast.social,Food & Drink,food_drink,false +AltonDrew,newsmast.social,Gaming,gaming,false +AltonDrew,newsmast.social,Healthcare,healthcare,false +AltonDrew,newsmast.social,Humour,humour,false +AltonDrew,newsmast.social,Law & Justice,law_justice,false +AltonDrew,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false +AltonDrew,newsmast.social,Movies,movies,false +AltonDrew,newsmast.social,Music,music,false +AltonDrew,newsmast.social,Nature & Wildlife,nature_wildlife,false +AltonDrew,newsmast.social,Performing Arts,performing_arts,false +AltonDrew,newsmast.social,Pets,pets,false +AltonDrew,newsmast.social,Photography,photography,false +AltonDrew,newsmast.social,Politics,politics,false +AltonDrew,newsmast.social,Puzzles,puzzles,false +AltonDrew,newsmast.social,Travel,travel,false +AltonDrew,newsmast.social,TV & Radio,tv_radio,false +AltonDrew,newsmast.social,US Politics,us_politics,false +AltonDrew,newsmast.social,Visual Arts,visual_arts,false +AltonDrew,newsmast.social,Government & Policy,government_policy,true +ThatRandomJew,tech.lgbt,Music,music,false +ThatRandomJew,tech.lgbt,Nature & Wildlife,nature_wildlife,false +ThatRandomJew,tech.lgbt,Performing Arts,performing_arts,false +ThatRandomJew,tech.lgbt,Pets,pets,false +ThatRandomJew,tech.lgbt,Photography,photography,false +ThatRandomJew,tech.lgbt,Physics,physics,false +ThatRandomJew,tech.lgbt,Puzzles,puzzles,false +Diva_7057,newsmast.social,Food & Drink,food_drink,false +Diva_7057,newsmast.social,Humour,humour,false +Diva_7057,newsmast.social,Movies,movies,false +Diva_7057,newsmast.social,Performing Arts,performing_arts,false +Diva_7057,newsmast.social,Science,science,false +Diva_7057,newsmast.social,Social Media,social_media,false +Diva_7057,newsmast.social,TV & Radio,tv_radio,false +Diva_7057,newsmast.social,Weather,weather,false +Diva_7057,newsmast.social,Books & Literature,books_literature,true +ChiefOldMist,newsmast.social,Mathematics,mathematics,false +ChiefOldMist,newsmast.social,Journalism & Comment,news_comment_data,false +ChiefOldMist,newsmast.social,Philosophy,philosophy,false +ChiefOldMist,newsmast.social,Physics,physics,false +ChiefOldMist,newsmast.social,Science,science,false +ChiefOldMist,newsmast.social,Social Media,social_media,false +ChiefOldMist,newsmast.social,Social Sciences,social_sciences,false +ChiefOldMist,newsmast.social,Space,space,false +ChiefOldMist,newsmast.social,Technology,technology,true +Startupradio,newsmast.social,AI,ai,false +Startupradio,newsmast.social,Business,business,false +Startupradio,newsmast.social,Engineering,engineering,false +Startupradio,newsmast.social,Markets & Finance,markets_finance,false +Startupradio,newsmast.social,Programming,programming,false +Startupradio,newsmast.social,Workers Rights,workers_rights,false +Startupradio,newsmast.social,Technology,technology,true +ThatRandomJew,tech.lgbt,Science,science,false +seehearpodcast,newsmast.social,Mathematics,mathematics,false +seehearpodcast,newsmast.social,Movies,movies,false +seehearpodcast,newsmast.social,Philosophy,philosophy,false +seehearpodcast,newsmast.social,Physics,physics,false +seehearpodcast,newsmast.social,Music,music,true +ThatRandomJew,tech.lgbt,Space,space,false +ThatRandomJew,tech.lgbt,Technology,technology,false +suthit,newsmast.social,AI,ai,false +suthit,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false +suthit,newsmast.social,Climate change,climate_change,false +suthit,newsmast.social,Energy & Pollution,energy_pollution,false +suthit,newsmast.social,Engineering,engineering,false +suthit,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false +suthit,newsmast.social,Poverty & Inequality,poverty_inequality,false +suthit,newsmast.social,Programming,programming,false +suthit,newsmast.social,Environment,environment,true +tijoantony,newsmast.social,Travel,travel,false +tijoantony,newsmast.social,US Sport,us_sport,false +EasternHerald,newsmast.social,Breaking News,breaking_news,false +ThatRandomJew,tech.lgbt,Travel,travel,false +ThatRandomJew,tech.lgbt,TV & Radio,tv_radio,false +ThatRandomJew,tech.lgbt,Ukraine Invasion,ukraine_invasion,false +ThatRandomJew,tech.lgbt,Visual Arts,visual_arts,false +ThatRandomJew,tech.lgbt,LGBTQ+,lgbtq,true +heartlandnews,newsmast.social,Academia & Research,academia_research,false +heartlandnews,newsmast.social,Activism & Civil Rights,activism_civil_rights,false +heartlandnews,newsmast.social,AI,ai,false +heartlandnews,newsmast.social,Architecture & Design,architecture_design,false +heartlandnews,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false +heartlandnews,newsmast.social,Biology,biology,false +heartlandnews,newsmast.social,Black Voices,black_voices,false +heartlandnews,newsmast.social,Books & Literature,books_literature,false +heartlandnews,newsmast.social,Breaking News,breaking_news,false +heartlandnews,newsmast.social,Business,business,false +heartlandnews,newsmast.social,Chemistry,chemistry,false +heartlandnews,newsmast.social,Climate change,climate_change,false +heartlandnews,newsmast.social,Creative Arts,creative_arts,false +heartlandnews,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +heartlandnews,newsmast.social,Disabled Voices,disabled_voices,false +heartlandnews,newsmast.social,Energy & Pollution,energy_pollution,false +heartlandnews,newsmast.social,Engineering,engineering,false +heartlandnews,newsmast.social,Environment,environment,false +heartlandnews,newsmast.social,Food & Drink,food_drink,false +heartlandnews,newsmast.social,Football,football,false +heartlandnews,newsmast.social,Gaming,gaming,false +heartlandnews,newsmast.social,Government & Policy,government_policy,false +heartlandnews,newsmast.social,Healthcare,healthcare,false +heartlandnews,newsmast.social,History,history,false +heartlandnews,newsmast.social,Humanities,humanities,false +heartlandnews,newsmast.social,Humour,humour,false +heartlandnews,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false +heartlandnews,newsmast.social,Immigrants Rights,immigrants_rights,false +heartlandnews,newsmast.social,Indigenous Peoples,indigenous_peoples,false +heartlandnews,newsmast.social,Law & Justice,law_justice,false +jmcastagnetto,mastodon.social,Climate change,climate_change,false +heartlandnews,newsmast.social,LGBTQ+,lgbtq,false +heartlandnews,newsmast.social,Markets & Finance,markets_finance,false +heartlandnews,newsmast.social,Mathematics,mathematics,false +heartlandnews,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false +heartlandnews,newsmast.social,Movies,movies,false +heartlandnews,newsmast.social,Music,music,false +heartlandnews,newsmast.social,Nature & Wildlife,nature_wildlife,false +heartlandnews,newsmast.social,Performing Arts,performing_arts,false +heartlandnews,newsmast.social,Pets,pets,false +heartlandnews,newsmast.social,Philosophy,philosophy,false +heartlandnews,newsmast.social,Photography,photography,false +heartlandnews,newsmast.social,Physics,physics,false +heartlandnews,newsmast.social,Politics,politics,false +heartlandnews,newsmast.social,Poverty & Inequality,poverty_inequality,false +heartlandnews,newsmast.social,Programming,programming,false +heartlandnews,newsmast.social,Puzzles,puzzles,false +heartlandnews,newsmast.social,Science,science,false +heartlandnews,newsmast.social,Social Media,social_media,false +heartlandnews,newsmast.social,Social Sciences,social_sciences,false +heartlandnews,newsmast.social,Space,space,false +heartlandnews,newsmast.social,Sport,sport,false +heartlandnews,newsmast.social,Technology,technology,false +heartlandnews,newsmast.social,Travel,travel,false +heartlandnews,newsmast.social,TV & Radio,tv_radio,false +heartlandnews,newsmast.social,Ukraine Invasion,ukraine_invasion,false +heartlandnews,newsmast.social,US Politics,us_politics,false +heartlandnews,newsmast.social,US Sport,us_sport,false +heartlandnews,newsmast.social,Visual Arts,visual_arts,false +heartlandnews,newsmast.social,Weather,weather,false +heartlandnews,newsmast.social,Women’s Voices,women_voices,false +heartlandnews,newsmast.social,Workers Rights,workers_rights,false +heartlandnews,newsmast.social,Journalism & Comment,news_comment_data,true +hfodndnd,newsmast.social,Activism & Civil Rights,activism_civil_rights,false +hfodndnd,newsmast.social,Black Voices,black_voices,false +hfodndnd,newsmast.social,Disabled Voices,disabled_voices,false +hfodndnd,newsmast.social,Immigrants Rights,immigrants_rights,false +hfodndnd,newsmast.social,LGBTQ+,lgbtq,false +hfodndnd,newsmast.social,Women’s Voices,women_voices,false +hfodndnd,newsmast.social,Indigenous Peoples,indigenous_peoples,true +mati,moth.social,Food & Drink,food_drink,false +mati,moth.social,Pets,pets,false +evil_k,newsmast.social,Science,science,false +evil_k,newsmast.social,Social Sciences,social_sciences,false +lanartri,newsmast.social,AI,ai,false +lanartri,newsmast.social,Architecture & Design,architecture_design,false +lanartri,newsmast.social,Books & Literature,books_literature,false +lanartri,newsmast.social,Breaking News,breaking_news,false +lanartri,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +lanartri,newsmast.social,Movies,movies,false +lanartri,newsmast.social,Music,music,false +lanartri,newsmast.social,Programming,programming,false +lanartri,newsmast.social,Science,science,false +lanartri,newsmast.social,Space,space,false +lanartri,newsmast.social,Technology,technology,false +lanartri,newsmast.social,Visual Arts,visual_arts,false +lanartri,newsmast.social,Photography,photography,true +evil_k,newsmast.social,Space,space,true +Twitter,twitter.social,Democracy & Human Rights,democracy_human_rights,false +OlPatchy2Eyes,ieji.de,Philosophy,philosophy,false +OlPatchy2Eyes,ieji.de,Travel,travel,false +OlPatchy2Eyes,ieji.de,Nature & Wildlife,nature_wildlife,false +OlPatchy2Eyes,ieji.de,Food & Drink,food_drink,false +OlPatchy2Eyes,ieji.de,Biodiversity & Rewilding,biodiversity_rewilding,false +atom,newsmast.social,Biology,biology,false +atom,newsmast.social,Chemistry,chemistry,false +atom,newsmast.social,Mathematics,mathematics,false +atom,newsmast.social,Physics,physics,false +atom,newsmast.social,Science,science,false +atom,newsmast.social,Space,space,false +atom,newsmast.social,Technology,technology,true +Twitter,twitter.social,Government & Policy,government_policy,false +Twitter,twitter.social,Technology,technology,false +Twitter,twitter.social,Ukraine Invasion,ukraine_invasion,false +gruffowen,toot.wales,AI,ai,false +gruffowen,toot.wales,Biodiversity & Rewilding,biodiversity_rewilding,false +johnvoorhees,newsmast.social,Breaking News,breaking_news,false +johnvoorhees,newsmast.social,Gaming,gaming,false +johnvoorhees,newsmast.social,Movies,movies,false +johnvoorhees,newsmast.social,Music,music,false +johnvoorhees,newsmast.social,TV & Radio,tv_radio,false +johnvoorhees,newsmast.social,Technology,technology,true +Twitter,twitter.social,Breaking News,breaking_news,true +gruffowen,toot.wales,Democracy & Human Rights,democracy_human_rights,false +Aurefreepress,newsmast.social,Journalism & Comment,news_comment_data,false +Aurefreepress,newsmast.social,Social Media,social_media,false +Aurefreepress,newsmast.social,Ukraine Invasion,ukraine_invasion,false +Aurefreepress,newsmast.social,Weather,weather,false +Aurefreepress,newsmast.social,Academia & Research,academia_research,false +Aurefreepress,newsmast.social,Healthcare,healthcare,false +Aurefreepress,newsmast.social,US Politics,us_politics,false +Aurefreepress,newsmast.social,Environment,environment,false +Aurefreepress,newsmast.social,Climate change,climate_change,false +Aurefreepress,newsmast.social,Energy & Pollution,energy_pollution,false +Aurefreepress,newsmast.social,Activism & Civil Rights,activism_civil_rights,false +Aurefreepress,newsmast.social,Black Voices,black_voices,false +Aurefreepress,newsmast.social,Disabled Voices,disabled_voices,false +Aurefreepress,newsmast.social,Immigrants Rights,immigrants_rights,false +Aurefreepress,newsmast.social,Indigenous Peoples,indigenous_peoples,false +Aurefreepress,newsmast.social,LGBTQ+,lgbtq,false +gruffowen,toot.wales,Environment,environment,false +cbattlegear,newsmast.social,AI,ai,false +cbattlegear,newsmast.social,Breaking News,breaking_news,false +cbattlegear,newsmast.social,Business,business,false +cbattlegear,newsmast.social,Engineering,engineering,false +cbattlegear,newsmast.social,Mathematics,mathematics,false +minkhantkyaw350,newsmast.social,Breaking News,breaking_news,false +Aurefreepress,newsmast.social,Women’s Voices,women_voices,false +Aurefreepress,newsmast.social,Science,science,false +Aurefreepress,newsmast.social,Space,space,false +gruffowen,toot.wales,Government & Policy,government_policy,false +gruffowen,toot.wales,Journalism & Comment,news_comment_data,false +gruffowen,toot.wales,Politics,politics,false +gruffowen,toot.wales,Poverty & Inequality,poverty_inequality,false +rajudbg,newsmast.social,Journalism & Comment,news_comment_data,false +rajudbg,newsmast.social,Social Media,social_media,false +dariusofz,newsmast.social,Breaking News,breaking_news,true +beergeek,newsmast.social,Gaming,gaming,false +beergeek,newsmast.social,Movies,movies,false +beergeek,newsmast.social,Music,music,false +beergeek,newsmast.social,Photography,photography,false +beergeek,newsmast.social,TV & Radio,tv_radio,false +beergeek,newsmast.social,Food & Drink,food_drink,false +beergeek,newsmast.social,Humour,humour,false +beergeek,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false +beergeek,newsmast.social,Puzzles,puzzles,false +beergeek,newsmast.social,Travel,travel,false +rajudbg,newsmast.social,Ukraine Invasion,ukraine_invasion,false +rajudbg,newsmast.social,Weather,weather,false +rajudbg,newsmast.social,AI,ai,true +ericovarjao,newsmast.social,AI,ai,false +ericovarjao,newsmast.social,Architecture & Design,architecture_design,false +ericovarjao,newsmast.social,Books & Literature,books_literature,false +ericovarjao,newsmast.social,Business,business,false +ericovarjao,newsmast.social,Creative Arts,creative_arts,false +bret,newsmast.social,AI,ai,false +bret,newsmast.social,Breaking News,breaking_news,false +bret,newsmast.social,Business,business,false +bret,newsmast.social,Climate change,climate_change,false +bret,newsmast.social,Energy & Pollution,energy_pollution,false +bret,newsmast.social,Government & Policy,government_policy,false +bret,newsmast.social,Markets & Finance,markets_finance,false +bret,newsmast.social,Politics,politics,false +bret,newsmast.social,Social Media,social_media,false +bret,newsmast.social,Ukraine Invasion,ukraine_invasion,false +bret,newsmast.social,US Politics,us_politics,false +bret,newsmast.social,Technology,technology,true +ericovarjao,newsmast.social,Energy & Pollution,energy_pollution,false +ericovarjao,newsmast.social,Food & Drink,food_drink,false +ericovarjao,newsmast.social,History,history,false +ericovarjao,newsmast.social,Humanities,humanities,false +ericovarjao,newsmast.social,Markets & Finance,markets_finance,false +jasonbcfcufc,newsmast.social,Engineering,engineering,false +jasonbcfcufc,newsmast.social,Government & Policy,government_policy,false +jasonbcfcufc,newsmast.social,Social Media,social_media,false +jasonbcfcufc,newsmast.social,Technology,technology,false +jasonbcfcufc,newsmast.social,Breaking News,breaking_news,true +ericovarjao,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false +ericovarjao,newsmast.social,Movies,movies,false +ericovarjao,newsmast.social,Music,music,false +ericovarjao,newsmast.social,Philosophy,philosophy,false +FreddieJ,newsmast.social,AI,ai,false +FreddieJ,newsmast.social,Science,science,false +LiveMessy2024,newsmast.social,Social Sciences,social_sciences,false +LiveMessy2024,newsmast.social,Weather,weather,false +ericovarjao,newsmast.social,Law & Justice,law_justice,true +LiveMessy2024,newsmast.social,Women’s Voices,women_voices,false +LiveMessy2024,newsmast.social,Technology,technology,true +scott,onephoto.club,Biodiversity & Rewilding,biodiversity_rewilding,false +r0yaL,newsmast.social,Breaking News,breaking_news,false +r0yaL,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +r0yaL,newsmast.social,Government & Policy,government_policy,false +r0yaL,newsmast.social,Science,science,false +r0yaL,newsmast.social,Technology,technology,true +scott,onephoto.club,Environment,environment,false +scott,onephoto.club,Nature & Wildlife,nature_wildlife,false +scott,onephoto.club,Photography,photography,false +scott,onephoto.club,Travel,travel,true +90sCraig,pb.craignt.com,TV & Radio,tv_radio,false +90sCraig,pb.craignt.com,Food & Drink,food_drink,false +gospelsong,newsmast.social,Activism & Civil Rights,activism_civil_rights,false +gospelsong,newsmast.social,Black Voices,black_voices,false +gospelsong,newsmast.social,Business,business,false +gospelsong,newsmast.social,Creative Arts,creative_arts,false +gospelsong,newsmast.social,Disabled Voices,disabled_voices,false +gospelsong,newsmast.social,Food & Drink,food_drink,false +gospelsong,newsmast.social,Football,football,false +gospelsong,newsmast.social,Humour,humour,false +gospelsong,newsmast.social,Immigrants Rights,immigrants_rights,false +gospelsong,newsmast.social,Indigenous Peoples,indigenous_peoples,false +gospelsong,newsmast.social,LGBTQ+,lgbtq,false +gospelsong,newsmast.social,Markets & Finance,markets_finance,false +gospelsong,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false +gospelsong,newsmast.social,Nature & Wildlife,nature_wildlife,false +gospelsong,newsmast.social,Journalism & Comment,news_comment_data,false +gospelsong,newsmast.social,Pets,pets,false +gospelsong,newsmast.social,Puzzles,puzzles,false +gospelsong,newsmast.social,Social Media,social_media,false +gospelsong,newsmast.social,Sport,sport,false +gospelsong,newsmast.social,Travel,travel,false +gospelsong,newsmast.social,Ukraine Invasion,ukraine_invasion,false +gospelsong,newsmast.social,US Sport,us_sport,false +gospelsong,newsmast.social,Weather,weather,false +gospelsong,newsmast.social,Women’s Voices,women_voices,false +gospelsong,newsmast.social,Workers Rights,workers_rights,false +gospelsong,newsmast.social,Breaking News,breaking_news,true +minkhantkyaw350,newsmast.social,Technology,technology,false +gruffowen,toot.wales,Technology,technology,false +gruffowen,toot.wales,Breaking News,breaking_news,true +ericovarjao,newsmast.social,Politics,politics,false +ericovarjao,newsmast.social,Social Sciences,social_sciences,false +ericovarjao,newsmast.social,Technology,technology,false +ericovarjao,newsmast.social,TV & Radio,tv_radio,false +ericovarjao,newsmast.social,Visual Arts,visual_arts,false +cbattlegear,newsmast.social,Journalism & Comment,news_comment_data,false +cbattlegear,newsmast.social,Physics,physics,false +cbattlegear,newsmast.social,Science,science,false +cbattlegear,newsmast.social,Space,space,false +cbattlegear,newsmast.social,Technology,technology,false +cbattlegear,newsmast.social,Programming,programming,true +jmcastagnetto,mastodon.social,Democracy & Human Rights,democracy_human_rights,false +jmcastagnetto,mastodon.social,Environment,environment,false +jmcastagnetto,mastodon.social,Gaming,gaming,false +jmcastagnetto,mastodon.social,Government & Policy,government_policy,false +jmcastagnetto,mastodon.social,Healthcare,healthcare,false +spear292000,mastodon.social,AI,ai,false +spear292000,mastodon.social,Books & Literature,books_literature,false +spear292000,mastodon.social,Engineering,engineering,false +jetono,newsmast.social,AI,ai,false +jetono,newsmast.social,Engineering,engineering,false +jetono,newsmast.social,Gaming,gaming,false +jetono,newsmast.social,Programming,programming,false +jetono,newsmast.social,Social Media,social_media,false +jetono,newsmast.social,Technology,technology,true +SithuBo,newsmast.social,Programming,programming,false +minkhantkyaw350,newsmast.social,Programming,programming,true +minkhantkyaw350,newsmast.social,Visual Arts,visual_arts,false +minkhantkyaw350,newsmast.social,Architecture & Design,architecture_design,false +minkhantkyaw350,newsmast.social,TV & Radio,tv_radio,false +minkhantkyaw350,newsmast.social,Books & Literature,books_literature,false +minkhantkyaw350,newsmast.social,Photography,photography,false +minkhantkyaw350,newsmast.social,Performing Arts,performing_arts,false +minkhantkyaw350,newsmast.social,Gaming,gaming,false +minkhantkyaw350,newsmast.social,Movies,movies,false +minkhantkyaw350,newsmast.social,Music,music,false +minkhantkyaw350,newsmast.social,Sport,sport,false +minkhantkyaw350,newsmast.social,US Sport,us_sport,false +minkhantkyaw350,newsmast.social,Football,football,false +SithuBo,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +SithuBo,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false +SithuBo,newsmast.social,Poverty & Inequality,poverty_inequality,false +SithuBo,newsmast.social,Government & Policy,government_policy,false +SithuBo,newsmast.social,Academia & Research,academia_research,false +SithuBo,newsmast.social,Healthcare,healthcare,false +SithuBo,newsmast.social,Law & Justice,law_justice,false +SithuBo,newsmast.social,Politics,politics,false +SithuBo,newsmast.social,US Politics,us_politics,false +SithuBo,newsmast.social,Environment,environment,false +SithuBo,newsmast.social,Climate change,climate_change,false +SithuBo,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false +SithuBo,newsmast.social,Energy & Pollution,energy_pollution,false +SithuBo,newsmast.social,Activism & Civil Rights,activism_civil_rights,false +SithuBo,newsmast.social,Black Voices,black_voices,false +SithuBo,newsmast.social,Disabled Voices,disabled_voices,false +SithuBo,newsmast.social,Immigrants Rights,immigrants_rights,false +SithuBo,newsmast.social,Indigenous Peoples,indigenous_peoples,false +SithuBo,newsmast.social,LGBTQ+,lgbtq,false +SithuBo,newsmast.social,Women’s Voices,women_voices,false +SithuBo,newsmast.social,Business,business,false +SithuBo,newsmast.social,Markets & Finance,markets_finance,false +SithuBo,newsmast.social,Workers Rights,workers_rights,false +SithuBo,newsmast.social,Technology,technology,false +SithuBo,newsmast.social,Engineering,engineering,false +SithuBo,newsmast.social,Humanities,humanities,false +SithuBo,newsmast.social,Social Sciences,social_sciences,false +SithuBo,newsmast.social,History,history,false +SithuBo,newsmast.social,Philosophy,philosophy,false +SithuBo,newsmast.social,Creative Arts,creative_arts,false +SithuBo,newsmast.social,Food & Drink,food_drink,false +SithuBo,newsmast.social,Humour,humour,false +SithuBo,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false +SithuBo,newsmast.social,Nature & Wildlife,nature_wildlife,false +SithuBo,newsmast.social,Pets,pets,false +SithuBo,newsmast.social,Puzzles,puzzles,false +SithuBo,newsmast.social,Travel,travel,false +SithuBo,newsmast.social,Architecture & Design,architecture_design,false +SithuBo,newsmast.social,Books & Literature,books_literature,false +SithuBo,newsmast.social,Gaming,gaming,false +SithuBo,newsmast.social,Movies,movies,false +SithuBo,newsmast.social,Music,music,false +SithuBo,newsmast.social,Performing Arts,performing_arts,false +SithuBo,newsmast.social,Photography,photography,false +SithuBo,newsmast.social,TV & Radio,tv_radio,false +SithuBo,newsmast.social,Visual Arts,visual_arts,false +jhantytown89,newsmast.social,Academia & Research,academia_research,false +jhantytown89,newsmast.social,Breaking News,breaking_news,false +jhantytown89,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +jhantytown89,newsmast.social,Disabled Voices,disabled_voices,false +jhantytown89,newsmast.social,Government & Policy,government_policy,false +jhantytown89,newsmast.social,Law & Justice,law_justice,false +jhantytown89,newsmast.social,LGBTQ+,lgbtq,false +jhantytown89,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false +jhantytown89,newsmast.social,Journalism & Comment,news_comment_data,false +jhantytown89,newsmast.social,Politics,politics,false +jhantytown89,newsmast.social,Programming,programming,false +jhantytown89,newsmast.social,Social Media,social_media,false +jhantytown89,newsmast.social,Social Sciences,social_sciences,false +jhantytown89,newsmast.social,US Politics,us_politics,false +jhantytown89,newsmast.social,Technology,technology,true +kirukarki,mastodon.social,Breaking News,breaking_news,false +multimodal,newsmast.social,LGBTQ+,lgbtq,false +multimodal,newsmast.social,Philosophy,philosophy,false +multimodal,newsmast.social,Science,science,false +ryan_kyn,mastodon.social,Social Media,social_media,false +ryan_kyn,mastodon.social,Ukraine Invasion,ukraine_invasion,false +ryan_kyn,mastodon.social,Weather,weather,false +jamal_ppt324,mastodon.social,Democracy & Human Rights,democracy_human_rights,false +multimodal,newsmast.social,Social Sciences,social_sciences,false +multimodal,newsmast.social,Disabled Voices,disabled_voices,true +kirukarki,mastodon.social,Journalism & Comment,news_comment_data,true +jmcastagnetto,mastodon.social,History,history,false +jmcastagnetto,mastodon.social,Humanities,humanities,false +jmcastagnetto,mastodon.social,"Hunger, Disease & Water",hunger_disease_water,false +jmcastagnetto,mastodon.social,Law & Justice,law_justice,false +jamal_ppt324,mastodon.social,Biodiversity & Rewilding,biodiversity_rewilding,false +jamal_ppt324,mastodon.social,Climate change,climate_change,false +jamal_ppt324,mastodon.social,Energy & Pollution,energy_pollution,false +jamal_ppt324,mastodon.social,"Hunger, Disease & Water",hunger_disease_water,false +jamal_ppt324,mastodon.social,Poverty & Inequality,poverty_inequality,false +weston,techhub.social,Breaking News,breaking_news,true +yemyatthu_cs,mastodon.social,Architecture & Design,architecture_design,false +yemyatthu_cs,mastodon.social,Books & Literature,books_literature,false +yemyatthu_cs,mastodon.social,Creative Arts,creative_arts,false +yemyatthu_cs,mastodon.social,Food & Drink,food_drink,false +yemyatthu_cs,mastodon.social,Football,football,false +yemyatthu_cs,mastodon.social,Gaming,gaming,false +yemyatthu_cs,mastodon.social,Humour,humour,false +yemyatthu_cs,mastodon.social,Mental Health & Wellbeing,mental_health_wellbeing,false +yemyatthu_cs,mastodon.social,Movies,movies,false +yemyatthu_cs,mastodon.social,Music,music,false +yemyatthu_cs,mastodon.social,Nature & Wildlife,nature_wildlife,false +yemyatthu_cs,mastodon.social,Performing Arts,performing_arts,false +yemyatthu_cs,mastodon.social,Pets,pets,false +yemyatthu_cs,mastodon.social,Photography,photography,false +yemyatthu_cs,mastodon.social,Puzzles,puzzles,false +yemyatthu_cs,mastodon.social,Sport,sport,false +yemyatthu_cs,mastodon.social,Travel,travel,false +yemyatthu_cs,mastodon.social,US Sport,us_sport,false +yemyatthu_cs,mastodon.social,Visual Arts,visual_arts,false +yemyatthu_cs,mastodon.social,TV & Radio,tv_radio,true +Samfazakerly,mastodon.social,Biodiversity & Rewilding,biodiversity_rewilding,false +Samfazakerly,mastodon.social,Climate change,climate_change,false +Samfazakerly,mastodon.social,Nature & Wildlife,nature_wildlife,false +Samfazakerly,mastodon.social,Journalism & Comment,news_comment_data,false +Samfazakerly,mastodon.social,Social Media,social_media,true +ZeroTwo02,mastodon.social,Journalism & Comment,news_comment_data,false +ZeroTwo02,mastodon.social,Social Media,social_media,false +ZeroTwo02,mastodon.social,Ukraine Invasion,ukraine_invasion,false +ZeroTwo02,mastodon.social,Weather,weather,false +ZeroTwo02,mastodon.social,Breaking News,breaking_news,true +kirukarki,mastodon.social,Social Media,social_media,false +kirukarki,mastodon.social,Ukraine Invasion,ukraine_invasion,false +kirukarki,mastodon.social,Weather,weather,false +saskia_newsmast,mastodon.social,Science,science,false +saskia_newsmast,mastodon.social,Sport,sport,false +saskia_newsmast,mastodon.social,Weather,weather,false +saskia_newsmast,mastodon.social,Journalism & Comment,news_comment_data,true +saskia_newsmast,mastodon.social,LGBTQ+,lgbtq,false +saskia_newsmast,mastodon.social,Space,space,false +weston,techhub.social,Gaming,gaming,false +weston,techhub.social,Government & Policy,government_policy,false +weston,techhub.social,Space,space,false +weston,techhub.social,Technology,technology,false +samfazakerly,mas.to,Architecture & Design,architecture_design,false +samfazakerly,mas.to,Democracy & Human Rights,democracy_human_rights,false +samfazakerly,mas.to,Humanities,humanities,false +samfazakerly,mas.to,Philosophy,philosophy,false +samfazakerly,mas.to,Photography,photography,false +samfazakerly,mas.to,Visual Arts,visual_arts,true +aydnkocek,newsmast.social,Academia & Research,academia_research,false +aydnkocek,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +aydnkocek,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false +aydnkocek,newsmast.social,Indigenous Peoples,indigenous_peoples,false +aydnkocek,newsmast.social,Politics,politics,true +mastertango,toots.tangoit.net,AI,ai,false +mastertango,toots.tangoit.net,Engineering,engineering,false +mastertango,toots.tangoit.net,Journalism & Comment,news_comment_data,false +ryan_kyn,mastodon.social,Breaking News,breaking_news,false +ryan_kyn,mastodon.social,Journalism & Comment,news_comment_data,true +jamal_ppt324,mastodon.social,Environment,environment,true +IlCava,mastodon.uno,Performing Arts,performing_arts,false +IlCava,mastodon.uno,Pets,pets,false +jmcastagnetto,mastodon.social,Mathematics,mathematics,false +jmcastagnetto,mastodon.social,Movies,movies,false +jmcastagnetto,mastodon.social,Music,music,false +Dynamicallydisabled,spore.social,Academia & Research,academia_research,false +Dynamicallydisabled,spore.social,Activism & Civil Rights,activism_civil_rights,false +Dynamicallydisabled,spore.social,AI,ai,false +Dynamicallydisabled,spore.social,Architecture & Design,architecture_design,false +Dynamicallydisabled,spore.social,Biodiversity & Rewilding,biodiversity_rewilding,false +Dynamicallydisabled,spore.social,Biology,biology,false +Dynamicallydisabled,spore.social,Black Voices,black_voices,false +Dynamicallydisabled,spore.social,Books & Literature,books_literature,false +Dynamicallydisabled,spore.social,Chemistry,chemistry,false +Dynamicallydisabled,spore.social,Climate change,climate_change,false +Dynamicallydisabled,spore.social,Creative Arts,creative_arts,false +Dynamicallydisabled,spore.social,Democracy & Human Rights,democracy_human_rights,false +Dynamicallydisabled,spore.social,Energy & Pollution,energy_pollution,false +Dynamicallydisabled,spore.social,Environment,environment,false +Dynamicallydisabled,spore.social,Food & Drink,food_drink,false +Dynamicallydisabled,spore.social,Gaming,gaming,false +Dynamicallydisabled,spore.social,Healthcare,healthcare,false +Dynamicallydisabled,spore.social,History,history,false +Dynamicallydisabled,spore.social,Humanities,humanities,false +Dynamicallydisabled,spore.social,"Hunger, Disease & Water",hunger_disease_water,false +Dynamicallydisabled,spore.social,Immigrants Rights,immigrants_rights,false +Dynamicallydisabled,spore.social,Indigenous Peoples,indigenous_peoples,false +Dynamicallydisabled,spore.social,Law & Justice,law_justice,false +Dynamicallydisabled,spore.social,LGBTQ+,lgbtq,false +Dynamicallydisabled,spore.social,Mathematics,mathematics,false +Dynamicallydisabled,spore.social,Mental Health & Wellbeing,mental_health_wellbeing,false +Dynamicallydisabled,spore.social,Movies,movies,false +Dynamicallydisabled,spore.social,Music,music,false +Dynamicallydisabled,spore.social,Nature & Wildlife,nature_wildlife,false +Dynamicallydisabled,spore.social,Journalism & Comment,news_comment_data,false +Dynamicallydisabled,spore.social,Performing Arts,performing_arts,false +Dynamicallydisabled,spore.social,Pets,pets,false +Dynamicallydisabled,spore.social,Philosophy,philosophy,false +Dynamicallydisabled,spore.social,Photography,photography,false +Dynamicallydisabled,spore.social,Physics,physics,false +Dynamicallydisabled,spore.social,Poverty & Inequality,poverty_inequality,false +Dynamicallydisabled,spore.social,Puzzles,puzzles,false +Dynamicallydisabled,spore.social,Science,science,false +Dynamicallydisabled,spore.social,Social Media,social_media,false +Dynamicallydisabled,spore.social,Social Sciences,social_sciences,false +Dynamicallydisabled,spore.social,Space,space,false +Dynamicallydisabled,spore.social,Technology,technology,false +Dynamicallydisabled,spore.social,TV & Radio,tv_radio,false +Dynamicallydisabled,spore.social,Visual Arts,visual_arts,false +Dynamicallydisabled,spore.social,Weather,weather,false +Dynamicallydisabled,spore.social,Women’s Voices,women_voices,false +Dynamicallydisabled,spore.social,Workers Rights,workers_rights,false +Dynamicallydisabled,spore.social,Disabled Voices,disabled_voices,true +jmcastagnetto,mastodon.social,Philosophy,philosophy,false +jmcastagnetto,mastodon.social,Physics,physics,false +jmcastagnetto,mastodon.social,Politics,politics,false +jmcastagnetto,mastodon.social,Poverty & Inequality,poverty_inequality,false +jmcastagnetto,mastodon.social,Programming,programming,false +jmcastagnetto,mastodon.social,Science,science,false +jmcastagnetto,mastodon.social,Social Sciences,social_sciences,false +jmcastagnetto,mastodon.social,Space,space,false +jmcastagnetto,mastodon.social,Technology,technology,false +jmcastagnetto,mastodon.social,Visual Arts,visual_arts,false +jmcastagnetto,mastodon.social,Academia & Research,academia_research,true +IlCava,mastodon.uno,Photography,photography,false +IlCava,mastodon.uno,Physics,physics,false +bjh,sueden.social,Visual Arts,visual_arts,false +Kingfisher,universeodon.com,Books & Literature,books_literature,false +ravi101,newsmast.social,AI,ai,false +ravi101,newsmast.social,Business,business,false +ravi101,newsmast.social,Markets & Finance,markets_finance,false +trezzer,social.linux.pizza,Books & Literature,books_literature,false +ravi101,newsmast.social,Science,science,false +trezzer,social.linux.pizza,Democracy & Human Rights,democracy_human_rights,false +trezzer,social.linux.pizza,Disabled Voices,disabled_voices,false +trezzer,social.linux.pizza,Gaming,gaming,false +trezzer,social.linux.pizza,Humanities,humanities,false +ravi101,newsmast.social,Technology,technology,true +mastertango,toots.tangoit.net,Programming,programming,false +mastertango,toots.tangoit.net,Social Media,social_media,false +mastertango,toots.tangoit.net,Technology,technology,false +mastertango,toots.tangoit.net,Ukraine Invasion,ukraine_invasion,false +mastertango,toots.tangoit.net,Weather,weather,false +mastertango,toots.tangoit.net,Breaking News,breaking_news,true +elperronegro,shmg.online,Democracy & Human Rights,democracy_human_rights,false +elperronegro,shmg.online,Food & Drink,food_drink,false +elperronegro,shmg.online,Football,football,false +elperronegro,shmg.online,"Hunger, Disease & Water",hunger_disease_water,false +follow,twitter.social,Academia & Research,academia_research,false +follow,twitter.social,Activism & Civil Rights,activism_civil_rights,false +follow,twitter.social,AI,ai,false +elperronegro,shmg.online,Technology,technology,false +elperronegro,shmg.online,Travel,travel,false +elperronegro,shmg.online,Nature & Wildlife,nature_wildlife,true +follow,twitter.social,Architecture & Design,architecture_design,false +trezzer,social.linux.pizza,Movies,movies,false +trezzer,social.linux.pizza,Journalism & Comment,news_comment_data,false +_hellogoodbye,mastodon.social,Black Voices,black_voices,false +_hellogoodbye,mastodon.social,Disabled Voices,disabled_voices,false +_hellogoodbye,mastodon.social,Immigrants Rights,immigrants_rights,false +_hellogoodbye,mastodon.social,Indigenous Peoples,indigenous_peoples,false +_hellogoodbye,mastodon.social,LGBTQ+,lgbtq,false +_hellogoodbye,mastodon.social,Women’s Voices,women_voices,false +_hellogoodbye,mastodon.social,Activism & Civil Rights,activism_civil_rights,true +trezzer,social.linux.pizza,Photography,photography,false +trezzer,social.linux.pizza,Poverty & Inequality,poverty_inequality,false +trezzer,social.linux.pizza,Science,science,false +trezzer,social.linux.pizza,Technology,technology,false +follow,twitter.social,Biodiversity & Rewilding,biodiversity_rewilding,false +follow,twitter.social,Biology,biology,false +follow,twitter.social,Black Voices,black_voices,false +follow,twitter.social,Books & Literature,books_literature,false +follow,twitter.social,Breaking News,breaking_news,false +follow,twitter.social,Business,business,false +follow,twitter.social,Chemistry,chemistry,false +follow,twitter.social,Climate change,climate_change,false +follow,twitter.social,Creative Arts,creative_arts,false +follow,twitter.social,Democracy & Human Rights,democracy_human_rights,false +follow,twitter.social,Disabled Voices,disabled_voices,false +follow,twitter.social,Energy & Pollution,energy_pollution,false +f_johnson,historians.social,Activism & Civil Rights,activism_civil_rights,false +f_johnson,historians.social,Biodiversity & Rewilding,biodiversity_rewilding,false +f_johnson,historians.social,Black Voices,black_voices,false +f_johnson,historians.social,Climate change,climate_change,false +f_johnson,historians.social,Democracy & Human Rights,democracy_human_rights,false +f_johnson,historians.social,Disabled Voices,disabled_voices,false +f_johnson,historians.social,Energy & Pollution,energy_pollution,false +f_johnson,historians.social,Environment,environment,false +f_johnson,historians.social,Government & Policy,government_policy,false +f_johnson,historians.social,"Hunger, Disease & Water",hunger_disease_water,false +f_johnson,historians.social,Immigrants Rights,immigrants_rights,false +f_johnson,historians.social,Indigenous Peoples,indigenous_peoples,false +f_johnson,historians.social,Movies,movies,false +f_johnson,historians.social,Journalism & Comment,news_comment_data,false +f_johnson,historians.social,Politics,politics,false +f_johnson,historians.social,Poverty & Inequality,poverty_inequality,false +f_johnson,historians.social,Ukraine Invasion,ukraine_invasion,false +f_johnson,historians.social,US Politics,us_politics,false +f_johnson,historians.social,Visual Arts,visual_arts,false +f_johnson,historians.social,Women’s Voices,women_voices,false +f_johnson,historians.social,History,history,true +kirukarki2,newsmast.social,Breaking News,breaking_news,false +chrisbrummel,hachyderm.io,Government & Policy,government_policy,false +chrisbrummel,hachyderm.io,Law & Justice,law_justice,false +chrisbrummel,hachyderm.io,Movies,movies,false +chrisbrummel,hachyderm.io,Politics,politics,false +chrisbrummel,hachyderm.io,Technology,technology,false +chrisbrummel,hachyderm.io,Architecture & Design,architecture_design,true +JGirCo,mstdn.social,Mathematics,mathematics,false +JGirCo,mstdn.social,Movies,movies,false +JGirCo,mstdn.social,Performing Arts,performing_arts,false +JGirCo,mstdn.social,Programming,programming,false +JGirCo,mstdn.social,Engineering,engineering,true +lazy_runner,lazy_runer@mastodon.social,AI,ai,false +lazy_runner,lazy_runer@mastodon.social,Democracy & Human Rights,democracy_human_rights,false +lazy_runner,lazy_runer@mastodon.social,Engineering,engineering,false +lazy_runner,lazy_runer@mastodon.social,Poverty & Inequality,poverty_inequality,false +lazy_runner,lazy_runer@mastodon.social,Programming,programming,false +lazy_runner,lazy_runer@mastodon.social,Science,science,false +lazy_runner,lazy_runer@mastodon.social,Space,space,false +lazy_runner,lazy_runer@mastodon.social,Technology,technology,false +lazy_runner,lazy_runer@mastodon.social,Ukraine Invasion,ukraine_invasion,false +lazy_runner,lazy_runer@mastodon.social,Breaking News,breaking_news,true +lazy_runner,lazy_runer@mastodon.social,Movies,movies,false +lazy_runner,lazy_runer@mastodon.social,Gaming,gaming,false +lazy_runner,lazy_runer@mastodon.social,TV & Radio,tv_radio,false +lazy_runner,lazy_runer@mastodon.social,Humour,humour,false +lazy_runner,lazy_runer@mastodon.social,Puzzles,puzzles,false +nr,mastodon.scot,Climate change,climate_change,false +nr,mastodon.scot,Environment,environment,false +nr,mastodon.scot,Government & Policy,government_policy,false +nr,mastodon.scot,Politics,politics,false +nr,mastodon.scot,Breaking News,breaking_news,true +trezzer,social.linux.pizza,Ukraine Invasion,ukraine_invasion,false +jelv,mastodon.nl,AI,ai,false +jelv,mastodon.nl,Architecture & Design,architecture_design,false +jelv,mastodon.nl,Biodiversity & Rewilding,biodiversity_rewilding,false +jelv,mastodon.nl,Books & Literature,books_literature,false +jelv,mastodon.nl,Climate change,climate_change,false +jelv,mastodon.nl,Democracy & Human Rights,democracy_human_rights,false +jelv,mastodon.nl,Energy & Pollution,energy_pollution,false +jelv,mastodon.nl,Environment,environment,false +jelv,mastodon.nl,"Hunger, Disease & Water",hunger_disease_water,false +jelv,mastodon.nl,Poverty & Inequality,poverty_inequality,false +jelv,mastodon.nl,Science,science,false +jelv,mastodon.nl,Space,space,false +jelv,mastodon.nl,Technology,technology,false +jelv,mastodon.nl,Programming,programming,true +trezzer,social.linux.pizza,Breaking News,breaking_news,true +IlCava,mastodon.uno,Nature & Wildlife,nature_wildlife,false +IlCava,mastodon.uno,Journalism & Comment,news_comment_data,false +IlCava,mastodon.uno,Performing Arts,performing_arts,false +IlCava,mastodon.uno,Pets,pets,false +IlCava,mastodon.uno,Photography,photography,false +IlCava,mastodon.uno,Physics,physics,false +thedogspaw,mastodon.social,Technology,technology,false +anthonybwilson,mstdn.social,Journalism & Comment,news_comment_data,false +anthonybwilson,mstdn.social,Politics,politics,false +anthonybwilson,mstdn.social,Social Media,social_media,false +anthonybwilson,mstdn.social,Technology,technology,false +anthonybwilson,mstdn.social,Ukraine Invasion,ukraine_invasion,false +anthonybwilson,mstdn.social,US Politics,us_politics,false +anthonybwilson,mstdn.social,US Sport,us_sport,false +anthonybwilson,mstdn.social,Weather,weather,false +anthonybwilson,mstdn.social,Breaking News,breaking_news,true +thedogspaw,mastodon.social,Books & Literature,books_literature,false +JAVPPT,newsmast.social,Breaking News,breaking_news,false +WetHat,fosstodon.org,AI,ai,false +IlCava,mastodon.uno,Politics,politics,false +IlCava,mastodon.uno,Poverty & Inequality,poverty_inequality,false +IlCava,mastodon.uno,Programming,programming,false +JAVPPT,newsmast.social,Social Media,social_media,false +nr,mastodon.scot,Activism & Civil Rights,activism_civil_rights,false +nr,mastodon.scot,LGBTQ+,lgbtq,false +nr,mastodon.scot,Humanities,humanities,false +nr,mastodon.scot,Social Sciences,social_sciences,false +nr,mastodon.scot,History,history,false +nr,mastodon.scot,Philosophy,philosophy,false +nr,mastodon.scot,Books & Literature,books_literature,false +nr,mastodon.scot,Photography,photography,false +nr,mastodon.scot,Architecture & Design,architecture_design,false +codrut,mastodon.ie,Breaking News,breaking_news,false +codrut,mastodon.ie,Environment,environment,false +codrut,mastodon.ie,Mental Health & Wellbeing,mental_health_wellbeing,false +codrut,mastodon.ie,Science,science,false +codrut,mastodon.ie,Sport,sport,false +codrut,mastodon.ie,Technology,technology,false +codrut,mastodon.ie,LGBTQ+,lgbtq,true +dave42w,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false +dave42w,newsmast.social,Climate change,climate_change,false +dave42w,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +dave42w,newsmast.social,Energy & Pollution,energy_pollution,false +dave42w,newsmast.social,Poverty & Inequality,poverty_inequality,false +dave42w,newsmast.social,Programming,programming,true +Archnemysis,mastodon.social,Mathematics,mathematics,false +yosoybartsolo,tkz.one,AI,ai,false +yosoybartsolo,tkz.one,Democracy & Human Rights,democracy_human_rights,false +yosoybartsolo,tkz.one,Government & Policy,government_policy,false +yosoybartsolo,tkz.one,"Hunger, Disease & Water",hunger_disease_water,false +yosoybartsolo,tkz.one,Journalism & Comment,news_comment_data,false +yosoybartsolo,tkz.one,Politics,politics,false +yosoybartsolo,tkz.one,Poverty & Inequality,poverty_inequality,false +yosoybartsolo,tkz.one,Programming,programming,false +yosoybartsolo,tkz.one,Philosophy,philosophy,true +muchanchoasado,tkz.one,Biology,biology,false +muchanchoasado,tkz.one,Food & Drink,food_drink,false +muchanchoasado,tkz.one,Gaming,gaming,false +muchanchoasado,tkz.one,Humour,humour,false +muchanchoasado,tkz.one,Movies,movies,false +muchanchoasado,tkz.one,Performing Arts,performing_arts,false +muchanchoasado,tkz.one,Physics,physics,false +muchanchoasado,tkz.one,Music,music,true +nothing34,newsmast.social,Government & Policy,government_policy,false +nothing34,newsmast.social,Healthcare,healthcare,false +nothing34,newsmast.social,Law & Justice,law_justice,false +nothing34,newsmast.social,Politics,politics,false +nothing34,newsmast.social,US Politics,us_politics,false +nothing34,newsmast.social,Academia & Research,academia_research,true +hoer356,newsmast.social,Biology,biology,false +hoer356,newsmast.social,History,history,false +hoer356,newsmast.social,Humanities,humanities,false +hoer356,newsmast.social,Mathematics,mathematics,false +hoer356,newsmast.social,Philosophy,philosophy,false +hoer356,newsmast.social,Physics,physics,false +hoer356,newsmast.social,Science,science,false +hoer356,newsmast.social,Social Sciences,social_sciences,false +hoer356,newsmast.social,Space,space,false +hoer356,newsmast.social,Chemistry,chemistry,true +abc35,newsmast.social,Academia & Research,academia_research,false +abc35,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +abc35,newsmast.social,Healthcare,healthcare,false +abc35,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false +abc35,newsmast.social,Law & Justice,law_justice,false +abc35,newsmast.social,Politics,politics,false +abc35,newsmast.social,Poverty & Inequality,poverty_inequality,false +abc35,newsmast.social,US Politics,us_politics,false +abc35,newsmast.social,Government & Policy,government_policy,true +roler34,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false +roler34,newsmast.social,Black Voices,black_voices,false +roler34,newsmast.social,Climate change,climate_change,false +roler34,newsmast.social,Disabled Voices,disabled_voices,false +roler34,newsmast.social,Energy & Pollution,energy_pollution,false +roler34,newsmast.social,Environment,environment,false +roler34,newsmast.social,Immigrants Rights,immigrants_rights,false +roler34,newsmast.social,Indigenous Peoples,indigenous_peoples,false +roler34,newsmast.social,LGBTQ+,lgbtq,false +roler34,newsmast.social,Women’s Voices,women_voices,false +roler34,newsmast.social,Activism & Civil Rights,activism_civil_rights,true +dylan_thiam,newsmast.social,AI,ai,false +dylan_thiam,newsmast.social,Biology,biology,false +dylan_thiam,newsmast.social,Space,space,false +dylan_thiam,newsmast.social,Technology,technology,false +dylan_thiam,newsmast.social,Markets & Finance,markets_finance,true +NMFeed_Monitor,mstdn.social,Breaking News,breaking_news,false +NMFeed_Monitor,mstdn.social,Physics,physics,false +NMFeed_Monitor,mstdn.social,Science,science,false +NMFeed_Monitor,mstdn.social,Social Media,social_media,false +NMFeed_Monitor,mstdn.social,Space,space,false +NMFeed_Monitor,mstdn.social,Ukraine Invasion,ukraine_invasion,false +NMFeed_Monitor,mstdn.social,Weather,weather,false +NMFeed_Monitor,mstdn.social,Journalism & Comment,news_comment_data,true +saskia_newsmast,mastodon.social,Gaming,gaming,false +saskia_newsmast,mastodon.social,TV & Radio,tv_radio,false +nwd,mastodon.online,Breaking News,breaking_news,false +nwd,mastodon.online,Journalism & Comment,news_comment_data,false +nwd,mastodon.online,Science,science,false +nwd,mastodon.online,Space,space,false +nwd,mastodon.online,Technology,technology,true +mikeffarrell,mas.to,Democracy & Human Rights,democracy_human_rights,false +mikeffarrell,mas.to,Environment,environment,false +mikeffarrell,mas.to,Law & Justice,law_justice,false +mikeffarrell,mas.to,Poverty & Inequality,poverty_inequality,false +mikeffarrell,mas.to,US Sport,us_sport,false +mikeffarrell,mas.to,US Politics,us_politics,true +F_johnson1848,mastodon.social,Biodiversity & Rewilding,biodiversity_rewilding,false +F_johnson1848,mastodon.social,Democracy & Human Rights,democracy_human_rights,false +F_johnson1848,mastodon.social,Energy & Pollution,energy_pollution,false +F_johnson1848,mastodon.social,Environment,environment,false +F_johnson1848,mastodon.social,"Hunger, Disease & Water",hunger_disease_water,false +F_johnson1848,mastodon.social,Journalism & Comment,news_comment_data,false +F_johnson1848,mastodon.social,Poverty & Inequality,poverty_inequality,false +F_johnson1848,mastodon.social,Ukraine Invasion,ukraine_invasion,false +F_johnson1848,mastodon.social,Climate change,climate_change,true +cheeaun,mastodon.social,Breaking News,breaking_news,false +cheeaun,mastodon.social,Engineering,engineering,false +cheeaun,mastodon.social,Food & Drink,food_drink,false +cheeaun,mastodon.social,Programming,programming,false +cheeaun,mastodon.social,Technology,technology,true +K3V1NFLYNN,c.im,Travel,travel,false +K3V1NFLYNN,c.im,Pets,pets,false +K3V1NFLYNN,c.im,Food & Drink,food_drink,false +K3V1NFLYNN,c.im,Nature & Wildlife,nature_wildlife,false +K3V1NFLYNN,c.im,Puzzles,puzzles,false +K3V1NFLYNN,c.im,Humour,humour,false +K3V1NFLYNN,c.im,Mental Health & Wellbeing,mental_health_wellbeing,false +K3V1NFLYNN,c.im,Creative Arts,creative_arts,false +K3V1NFLYNN,c.im,US Politics,us_politics,false +K3V1NFLYNN,c.im,Academia & Research,academia_research,false +K3V1NFLYNN,c.im,Healthcare,healthcare,false +K3V1NFLYNN,c.im,Government & Policy,government_policy,false +K3V1NFLYNN,c.im,Politics,politics,false +K3V1NFLYNN,c.im,Law & Justice,law_justice,false +K3V1NFLYNN,c.im,Ukraine Invasion,ukraine_invasion,false +K3V1NFLYNN,c.im,Social Media,social_media,false +K3V1NFLYNN,c.im,Weather,weather,false +K3V1NFLYNN,c.im,Journalism & Comment,news_comment_data,false +K3V1NFLYNN,c.im,"Hunger, Disease & Water",hunger_disease_water,false +K3V1NFLYNN,c.im,Democracy & Human Rights,democracy_human_rights,false +K3V1NFLYNN,c.im,Poverty & Inequality,poverty_inequality,false +K3V1NFLYNN,c.im,Climate change,climate_change,false +K3V1NFLYNN,c.im,Biodiversity & Rewilding,biodiversity_rewilding,false +K3V1NFLYNN,c.im,Energy & Pollution,energy_pollution,false +K3V1NFLYNN,c.im,Environment,environment,false +K3V1NFLYNN,c.im,Indigenous Peoples,indigenous_peoples,false +K3V1NFLYNN,c.im,Disabled Voices,disabled_voices,false +K3V1NFLYNN,c.im,LGBTQ+,lgbtq,false +K3V1NFLYNN,c.im,Immigrants Rights,immigrants_rights,false +K3V1NFLYNN,c.im,Black Voices,black_voices,false +K3V1NFLYNN,c.im,Women’s Voices,women_voices,false +K3V1NFLYNN,c.im,Activism & Civil Rights,activism_civil_rights,false +K3V1NFLYNN,c.im,Markets & Finance,markets_finance,false +K3V1NFLYNN,c.im,Workers Rights,workers_rights,false +K3V1NFLYNN,c.im,Business,business,false +K3V1NFLYNN,c.im,AI,ai,false +K3V1NFLYNN,c.im,Engineering,engineering,false +K3V1NFLYNN,c.im,Programming,programming,false +K3V1NFLYNN,c.im,Physics,physics,false +K3V1NFLYNN,c.im,Biology,biology,false +K3V1NFLYNN,c.im,Space,space,false +K3V1NFLYNN,c.im,Chemistry,chemistry,false +K3V1NFLYNN,c.im,Technology,technology,false +K3V1NFLYNN,c.im,Mathematics,mathematics,false +K3V1NFLYNN,c.im,Science,science,false +K3V1NFLYNN,c.im,Social Sciences,social_sciences,false +K3V1NFLYNN,c.im,History,history,false +K3V1NFLYNN,c.im,Philosophy,philosophy,false +K3V1NFLYNN,c.im,Humanities,humanities,false +K3V1NFLYNN,c.im,Visual Arts,visual_arts,false +K3V1NFLYNN,c.im,Architecture & Design,architecture_design,false +K3V1NFLYNN,c.im,TV & Radio,tv_radio,false +K3V1NFLYNN,c.im,Books & Literature,books_literature,false +K3V1NFLYNN,c.im,Photography,photography,false +K3V1NFLYNN,c.im,Performing Arts,performing_arts,false +K3V1NFLYNN,c.im,Gaming,gaming,false +K3V1NFLYNN,c.im,Movies,movies,false +K3V1NFLYNN,c.im,Music,music,false +IlCava,mastodon.uno,Politics,politics,false +IlCava,mastodon.uno,Poverty & Inequality,poverty_inequality,false +IlCava,mastodon.uno,Programming,programming,false +IlCava,mastodon.uno,Puzzles,puzzles,false +lilythelonelygirl,hear-me.social,Black Voices,black_voices,false +ecwarner,mastodon.social,Breaking News,breaking_news,false +ecwarner,mastodon.social,LGBTQ+,lgbtq,true +Archnemysis,mastodon.social,Physics,physics,false +Archnemysis,mastodon.social,Space,space,false +Archnemysis,mastodon.social,Technology,technology,false +Archnemysis,mastodon.social,Ukraine Invasion,ukraine_invasion,false +Archnemysis,mastodon.social,US Politics,us_politics,false +Archnemysis,mastodon.social,US Sport,us_sport,false +Archnemysis,mastodon.social,Breaking News,breaking_news,true +90sCraig,pb.craignt.com,Business,business,false +90sCraig,pb.craignt.com,Engineering,engineering,false +90sCraig,pb.craignt.com,Markets & Finance,markets_finance,false +90sCraig,pb.craignt.com,Mathematics,mathematics,false +90sCraig,pb.craignt.com,Physics,physics,false +90sCraig,pb.craignt.com,Programming,programming,false +90sCraig,pb.craignt.com,Science,science,false +90sCraig,pb.craignt.com,Space,space,false +90sCraig,pb.craignt.com,Technology,technology,false +90sCraig,pb.craignt.com,Workers Rights,workers_rights,false +90sCraig,pb.craignt.com,AI,ai,true +spear292000,mastodon.social,Movies,movies,false +spear292000,mastodon.social,Music,music,false +spear292000,mastodon.social,Performing Arts,performing_arts,false +spear292000,mastodon.social,Philosophy,philosophy,false +spear292000,mastodon.social,Photography,photography,false +spear292000,mastodon.social,Programming,programming,false +spear292000,mastodon.social,Technology,technology,false +spear292000,mastodon.social,TV & Radio,tv_radio,false +spear292000,mastodon.social,Visual Arts,visual_arts,false +spear292000,mastodon.social,Gaming,gaming,true +min_thu,newsmast.social,Activism & Civil Rights,activism_civil_rights,false +min_thu,newsmast.social,Black Voices,black_voices,false +min_thu,newsmast.social,Immigrants Rights,immigrants_rights,false +min_thu,newsmast.social,Indigenous Peoples,indigenous_peoples,false +min_thu,newsmast.social,LGBTQ+,lgbtq,false +min_thu,newsmast.social,Women’s Voices,women_voices,false +min_thu,newsmast.social,Disabled Voices,disabled_voices,true +lightonflux,mastodon.social,AI,ai,false +lightonflux,mastodon.social,Democracy & Human Rights,democracy_human_rights,false +lightonflux,mastodon.social,"Hunger, Disease & Water",hunger_disease_water,false +lightonflux,mastodon.social,Journalism & Comment,news_comment_data,false +lightonflux,mastodon.social,Poverty & Inequality,poverty_inequality,false +lightonflux,mastodon.social,Technology,technology,false +lightonflux,mastodon.social,Ukraine Invasion,ukraine_invasion,true +davetechg,newsmast.social,AI,ai,false +davetechg,newsmast.social,Business,business,false +davetechg,newsmast.social,Engineering,engineering,false +davetechg,newsmast.social,Markets & Finance,markets_finance,false +davetechg,newsmast.social,Technology,technology,true +ecwarner,mastodon.social,AI,ai,false +ecwarner,mastodon.social,Science,science,false +ecwarner,mastodon.social,Technology,technology,false +eljhkrr,gumzo.africa,Democracy & Human Rights,democracy_human_rights,false +eljhkrr,gumzo.africa,Journalism & Comment,news_comment_data,false +eljhkrr,gumzo.africa,Poverty & Inequality,poverty_inequality,false +eljhkrr,gumzo.africa,Social Media,social_media,false +eljhkrr,gumzo.africa,Ukraine Invasion,ukraine_invasion,false +eljhkrr,gumzo.africa,Weather,weather,false +eljhkrr,gumzo.africa,Breaking News,breaking_news,true +arunshah240,mastodon.social,Technology,technology,true +djape11,newsmast.social,AI,ai,false +djape11,newsmast.social,Breaking News,breaking_news,false +djape11,newsmast.social,Climate change,climate_change,false +djape11,newsmast.social,Food & Drink,food_drink,false +djape11,newsmast.social,Markets & Finance,markets_finance,false +K3V1NFLYNN,c.im,Sport,sport,false +K3V1NFLYNN,c.im,US Sport,us_sport,false +K3V1NFLYNN,c.im,Football,football,false +IlCava,mastodon.uno,Social Media,social_media,false +IlCava,mastodon.uno,Space,space,false +WetHat,fosstodon.org,Biology,biology,false +WetHat,fosstodon.org,Chemistry,chemistry,false +WetHat,fosstodon.org,Engineering,engineering,false +JackPine,ohai.social,Biology,biology,false +JackPine,ohai.social,Chemistry,chemistry,false +JackPine,ohai.social,Engineering,engineering,false +JackPine,ohai.social,Mathematics,mathematics,false +JackPine,ohai.social,Journalism & Comment,news_comment_data,false +JackPine,ohai.social,Physics,physics,false +JackPine,ohai.social,Science,science,false +JackPine,ohai.social,Space,space,false +JackPine,ohai.social,Technology,technology,false +JackPine,ohai.social,Ukraine Invasion,ukraine_invasion,false +JackPine,ohai.social,Weather,weather,false +JackPine,ohai.social,Breaking News,breaking_news,true +K3V1NFLYNN,c.im,Breaking News,breaking_news,true +box464,mastodon.social,AI,ai,false +box464,mastodon.social,Creative Arts,creative_arts,false +box464,mastodon.social,Humour,humour,false +box464,mastodon.social,Pets,pets,false +box464,mastodon.social,Programming,programming,false +box464,mastodon.social,Travel,travel,false +box464,mastodon.social,TV & Radio,tv_radio,false +box464,mastodon.social,Technology,technology,true +drdrowland,fediscience.org,AI,ai,false +drdrowland,fediscience.org,Democracy & Human Rights,democracy_human_rights,false +drdrowland,fediscience.org,Engineering,engineering,false +drdrowland,fediscience.org,Programming,programming,false +drdrowland,fediscience.org,Technology,technology,false +drdrowland,fediscience.org,Physics,physics,true +Vijayvaradharaj,mastodon.social,Technology,technology,true +sithu,mastodon.social,Creative Arts,creative_arts,false +sithu,mastodon.social,Food & Drink,food_drink,false +thejustinto,newsmast.social,AI,ai,false +thejustinto,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false +thejustinto,newsmast.social,Biology,biology,false +thejustinto,newsmast.social,Breaking News,breaking_news,false +thejustinto,newsmast.social,Chemistry,chemistry,false +thejustinto,newsmast.social,Climate change,climate_change,false +thejustinto,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +thejustinto,newsmast.social,Energy & Pollution,energy_pollution,false +thejustinto,newsmast.social,Environment,environment,false +thejustinto,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false +thejustinto,newsmast.social,Mathematics,mathematics,false +thejustinto,newsmast.social,Journalism & Comment,news_comment_data,false +thejustinto,newsmast.social,Physics,physics,false +thejustinto,newsmast.social,Poverty & Inequality,poverty_inequality,false +thejustinto,newsmast.social,Programming,programming,false +thejustinto,newsmast.social,Science,science,false +thejustinto,newsmast.social,Engineering,engineering,true +sithu,mastodon.social,Humour,humour,false +sithu,mastodon.social,Mental Health & Wellbeing,mental_health_wellbeing,false +sithu,mastodon.social,Pets,pets,false +sithu,mastodon.social,Puzzles,puzzles,false +sithu,mastodon.social,Travel,travel,false +sithu,mastodon.social,Nature & Wildlife,nature_wildlife,true +90sCraig,pb.craignt.com,Movies,movies,false +thedogspaw,mastodon.social,Breaking News,breaking_news,false +miroslavglavic,newsmast.social,Government & Policy,government_policy,false +miroslavglavic,newsmast.social,Law & Justice,law_justice,false +miroslavglavic,newsmast.social,Journalism & Comment,news_comment_data,false +miroslavglavic,newsmast.social,Weather,weather,false +miroslavglavic,newsmast.social,Breaking News,breaking_news,true +simonwood,mastodon.social,Government & Policy,government_policy,false +simonwood,mastodon.social,Movies,movies,false +simonwood,mastodon.social,Photography,photography,false +simonwood,mastodon.social,TV & Radio,tv_radio,false +simonwood,mastodon.social,Technology,technology,true +eljhkrr,gumzo.africa,Space,space,false +eljhkrr,gumzo.africa,Chemistry,chemistry,false +eljhkrr,gumzo.africa,Mathematics,mathematics,false +eljhkrr,gumzo.africa,Science,science,false +djape11,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false +djape11,newsmast.social,Travel,travel,false +djape11,newsmast.social,Technology,technology,true +vincentaujapon,social.4f9e1738.ignorelist.com,AI,ai,false +vincentaujapon,social.4f9e1738.ignorelist.com,Architecture & Design,architecture_design,false +vincentaujapon,social.4f9e1738.ignorelist.com,Climate change,climate_change,false +vincentaujapon,social.4f9e1738.ignorelist.com,Engineering,engineering,false +vincentaujapon,social.4f9e1738.ignorelist.com,Photography,photography,false +vincentaujapon,social.4f9e1738.ignorelist.com,Programming,programming,false +vincentaujapon,social.4f9e1738.ignorelist.com,Science,science,false +vincentaujapon,social.4f9e1738.ignorelist.com,Space,space,false +vincentaujapon,social.4f9e1738.ignorelist.com,Ukraine Invasion,ukraine_invasion,false +vincentaujapon,social.4f9e1738.ignorelist.com,US Politics,us_politics,false +vincentaujapon,social.4f9e1738.ignorelist.com,Breaking News,breaking_news,true +tritonforcex,mastodon.social,Breaking News,breaking_news,false +tritonforcex,mastodon.social,Food & Drink,food_drink,false +tritonforcex,mastodon.social,Gaming,gaming,false +tritonforcex,mastodon.social,Humour,humour,false +tritonforcex,mastodon.social,Journalism & Comment,news_comment_data,false +tritonforcex,mastodon.social,Politics,politics,false +tritonforcex,mastodon.social,Technology,technology,false +tritonforcex,mastodon.social,Ukraine Invasion,ukraine_invasion,false +tritonforcex,mastodon.social,Weather,weather,false +thejustinto,newsmast.social,Social Media,social_media,false +thejustinto,newsmast.social,Space,space,false +thejustinto,newsmast.social,Technology,technology,false +thejustinto,newsmast.social,Ukraine Invasion,ukraine_invasion,false +thejustinto,newsmast.social,Weather,weather,false +diggincrudetruestories,mastodon.social,AI,ai,false +diggincrudetruestories,mastodon.social,Engineering,engineering,false +diggincrudetruestories,mastodon.social,Movies,movies,false +8awaffle,hachyderm.io,Engineering,engineering,false +equaton,mastodon.online,Breaking News,breaking_news,false +equaton,mastodon.online,Journalism & Comment,news_comment_data,false +mayel,sunbeam.city,Academia & Research,academia_research,false +mayel,sunbeam.city,Breaking News,breaking_news,false +mayel,sunbeam.city,Democracy & Human Rights,democracy_human_rights,false +mayel,sunbeam.city,Social Media,social_media,false +mayel,sunbeam.city,Programming,programming,true +equaton,mastodon.online,Science,science,false +equaton,mastodon.online,Social Media,social_media,false +equaton,mastodon.online,Technology,technology,true +8awaffle,hachyderm.io,Science,science,false +diggincrudetruestories,mastodon.social,Music,music,false +diggincrudetruestories,mastodon.social,Performing Arts,performing_arts,false +IlCava,mastodon.uno,Puzzles,puzzles,false +spinopsys,aus.social,AI,ai,false +spinopsys,aus.social,Democracy & Human Rights,democracy_human_rights,false +frsterm,sueden.social,Biology,biology,false +frsterm,sueden.social,Democracy & Human Rights,democracy_human_rights,false +frsterm,sueden.social,Engineering,engineering,false +frsterm,sueden.social,Journalism & Comment,news_comment_data,false +frsterm,sueden.social,Physics,physics,false +frsterm,sueden.social,Politics,politics,false +frsterm,sueden.social,Science,science,false +frsterm,sueden.social,Space,space,false +frsterm,sueden.social,US Politics,us_politics,false +frsterm,sueden.social,Technology,technology,true +spinopsys,aus.social,"Hunger, Disease & Water",hunger_disease_water,false +spinopsys,aus.social,Poverty & Inequality,poverty_inequality,false +spinopsys,aus.social,Sport,sport,false +spinopsys,aus.social,Technology,technology,true +mapache,hachyderm.io,AI,ai,false +mapache,hachyderm.io,Engineering,engineering,false +mapache,hachyderm.io,Programming,programming,false +mapache,hachyderm.io,US Politics,us_politics,false +mapache,hachyderm.io,Technology,technology,true +guidostevens,mastodon.green,AI,ai,false +guidostevens,mastodon.green,Biodiversity & Rewilding,biodiversity_rewilding,false +guidostevens,mastodon.green,Energy & Pollution,energy_pollution,false +guidostevens,mastodon.green,Engineering,engineering,false +guidostevens,mastodon.green,Environment,environment,false +guidostevens,mastodon.green,History,history,false +guidostevens,mastodon.green,Humanities,humanities,false +guidostevens,mastodon.green,Philosophy,philosophy,false +guidostevens,mastodon.green,Programming,programming,false +guidostevens,mastodon.green,Social Sciences,social_sciences,false +guidostevens,mastodon.green,Technology,technology,false +guidostevens,mastodon.green,Climate change,climate_change,true +bobstarr,mastodon.social,Government & Policy,government_policy,false +bobstarr,mastodon.social,Journalism & Comment,news_comment_data,false +bobstarr,mastodon.social,Politics,politics,false +bobstarr,mastodon.social,Technology,technology,false +bobstarr,mastodon.social,Breaking News,breaking_news,true +Theblueone,mastodon.social,Academia & Research,academia_research,false +Theblueone,mastodon.social,Books & Literature,books_literature,false +Theblueone,mastodon.social,Climate change,climate_change,false +Theblueone,mastodon.social,Energy & Pollution,energy_pollution,false +Theblueone,mastodon.social,History,history,false +Theblueone,mastodon.social,Law & Justice,law_justice,false +Theblueone,mastodon.social,Mental Health & Wellbeing,mental_health_wellbeing,false +Theblueone,mastodon.social,Music,music,false +Theblueone,mastodon.social,Journalism & Comment,news_comment_data,false +Theblueone,mastodon.social,Photography,photography,false +Theblueone,mastodon.social,Physics,physics,false +Theblueone,mastodon.social,Politics,politics,false +Theblueone,mastodon.social,Poverty & Inequality,poverty_inequality,false +Theblueone,mastodon.social,Science,science,false +Theblueone,mastodon.social,Social Sciences,social_sciences,false +Theblueone,mastodon.social,Space,space,false +Theblueone,mastodon.social,Technology,technology,false +Theblueone,mastodon.social,Breaking News,breaking_news,true +Tombo,mstdn.ca,Academia & Research,academia_research,false +Tombo,mstdn.ca,Activism & Civil Rights,activism_civil_rights,false +Tombo,mstdn.ca,AI,ai,false +Tombo,mstdn.ca,Biodiversity & Rewilding,biodiversity_rewilding,false +Tombo,mstdn.ca,Biology,biology,false +Tombo,mstdn.ca,Breaking News,breaking_news,false +Tombo,mstdn.ca,Chemistry,chemistry,false +Tombo,mstdn.ca,Climate change,climate_change,false +Tombo,mstdn.ca,Energy & Pollution,energy_pollution,false +Tombo,mstdn.ca,Engineering,engineering,false +Tombo,mstdn.ca,Environment,environment,false +Tombo,mstdn.ca,Government & Policy,government_policy,false +Tombo,mstdn.ca,Healthcare,healthcare,false +Tombo,mstdn.ca,History,history,false +Tombo,mstdn.ca,Humanities,humanities,false +Tombo,mstdn.ca,"Hunger, Disease & Water",hunger_disease_water,false +Tombo,mstdn.ca,Indigenous Peoples,indigenous_peoples,false +Tombo,mstdn.ca,Law & Justice,law_justice,false +Tombo,mstdn.ca,Mathematics,mathematics,false +Tombo,mstdn.ca,Journalism & Comment,news_comment_data,false +Tombo,mstdn.ca,Philosophy,philosophy,false +Tombo,mstdn.ca,Physics,physics,false +Tombo,mstdn.ca,Politics,politics,false +Tombo,mstdn.ca,Poverty & Inequality,poverty_inequality,false +Tombo,mstdn.ca,Democracy & Human Rights,democracy_human_rights,true +thedogspaw,mastodon.social,Biology,biology,false +Theblueone,mastodon.social,US Politics,us_politics,false +Theblueone,mastodon.social,Visual Arts,visual_arts,false +diggincrudetruestories,mastodon.social,Photography,photography,false +diggincrudetruestories,mastodon.social,Programming,programming,false +diggincrudetruestories,mastodon.social,Space,space,false +8awaffle,hachyderm.io,Space,space,false +8awaffle,hachyderm.io,Technology,technology,false +8awaffle,hachyderm.io,Breaking News,breaking_news,true +maurofmf,mastodon.scot,AI,ai,false +maurofmf,mastodon.scot,Climate change,climate_change,false +maurofmf,mastodon.scot,Energy & Pollution,energy_pollution,false +maurofmf,mastodon.scot,Environment,environment,false +maurofmf,mastodon.scot,Football,football,false +maurofmf,mastodon.scot,Technology,technology,false +maurofmf,mastodon.scot,Programming,programming,true +IlCava,mastodon.uno,Sport,sport,false +IlCava,mastodon.uno,Technology,technology,false +IlCava,mastodon.uno,Travel,travel,false +drizzly_august,newsmast.social,Engineering,engineering,false +drizzly_august,newsmast.social,Government & Policy,government_policy,false +drizzly_august,newsmast.social,Law & Justice,law_justice,false +drizzly_august,newsmast.social,Poverty & Inequality,poverty_inequality,false +drizzly_august,newsmast.social,US Politics,us_politics,false +drizzly_august,newsmast.social,Technology,technology,true +lilythelonelygirl,hear-me.social,Disabled Voices,disabled_voices,false +lilythelonelygirl,hear-me.social,History,history,false +lilythelonelygirl,hear-me.social,Humanities,humanities,false +lilythelonelygirl,hear-me.social,Immigrants Rights,immigrants_rights,false +smalls,infosec.exchange,AI,ai,false +smalls,infosec.exchange,Biology,biology,false +smalls,infosec.exchange,Breaking News,breaking_news,false +smalls,infosec.exchange,Chemistry,chemistry,false +smalls,infosec.exchange,Engineering,engineering,false +smalls,infosec.exchange,History,history,false +smalls,infosec.exchange,Humanities,humanities,false +smalls,infosec.exchange,Mathematics,mathematics,false +smalls,infosec.exchange,Journalism & Comment,news_comment_data,false +smalls,infosec.exchange,Philosophy,philosophy,false +smalls,infosec.exchange,Physics,physics,false +smalls,infosec.exchange,Programming,programming,false +smalls,infosec.exchange,Science,science,false +smalls,infosec.exchange,Social Media,social_media,false +smalls,infosec.exchange,Social Sciences,social_sciences,false +smalls,infosec.exchange,Space,space,false +smalls,infosec.exchange,Ukraine Invasion,ukraine_invasion,false +smalls,infosec.exchange,Weather,weather,false +smalls,infosec.exchange,Technology,technology,true +tnypxl,mstdn.social,Academia & Research,academia_research,false +tnypxl,mstdn.social,AI,ai,false +latif,newsmast.social,AI,ai,false +latif,newsmast.social,Engineering,engineering,false +latif,newsmast.social,Humanities,humanities,false +latif,newsmast.social,Programming,programming,false +latif,newsmast.social,Technology,technology,true +lilythelonelygirl,hear-me.social,Indigenous Peoples,indigenous_peoples,false +lilythelonelygirl,hear-me.social,LGBTQ+,lgbtq,false +lilythelonelygirl,hear-me.social,Journalism & Comment,news_comment_data,false +lilythelonelygirl,hear-me.social,Philosophy,philosophy,false +lilythelonelygirl,hear-me.social,Social Media,social_media,false +lilythelonelygirl,hear-me.social,Ukraine Invasion,ukraine_invasion,false +lilythelonelygirl,hear-me.social,Weather,weather,false +lilythelonelygirl,hear-me.social,Women’s Voices,women_voices,false +tnypxl,mstdn.social,Government & Policy,government_policy,false +tnypxl,mstdn.social,Healthcare,healthcare,false +youronlyone,newsmast.social,Biology,biology,false +youronlyone,newsmast.social,Books & Literature,books_literature,false +youronlyone,newsmast.social,Chemistry,chemistry,false +youronlyone,newsmast.social,Engineering,engineering,false +youronlyone,newsmast.social,Gaming,gaming,false +youronlyone,newsmast.social,Mathematics,mathematics,false +youronlyone,newsmast.social,Movies,movies,false +youronlyone,newsmast.social,Photography,photography,false +youronlyone,newsmast.social,Programming,programming,false +youronlyone,newsmast.social,Science,science,false +youronlyone,newsmast.social,Space,space,false +youronlyone,newsmast.social,Technology,technology,false +youronlyone,newsmast.social,TV & Radio,tv_radio,false +youronlyone,newsmast.social,Physics,physics,true +tnypxl,mstdn.social,History,history,false +tnypxl,mstdn.social,Technology,technology,false +tnypxl,mstdn.social,Programming,programming,true +toaskoas,mastodon.bayern,Engineering,engineering,false +toaskoas,mastodon.bayern,Poverty & Inequality,poverty_inequality,false +toaskoas,mastodon.bayern,Programming,programming,false +toaskoas,mastodon.bayern,Social Media,social_media,false +toaskoas,mastodon.bayern,Breaking News,breaking_news,true +Caramel,newsmast.social,AI,ai,false +Caramel,newsmast.social,Movies,movies,false +Caramel,newsmast.social,Music,music,false +Caramel,newsmast.social,Performing Arts,performing_arts,false +Caramel,newsmast.social,Photography,photography,false +Caramel,newsmast.social,Technology,technology,false +Caramel,newsmast.social,TV & Radio,tv_radio,false +Caramel,newsmast.social,Visual Arts,visual_arts,false +Caramel,newsmast.social,Programming,programming,true +snoopy,newsmast.social,Architecture & Design,architecture_design,false +snoopy,newsmast.social,Biology,biology,false +snoopy,newsmast.social,Chemistry,chemistry,false +snoopy,newsmast.social,Humanities,humanities,false +Tombo,mstdn.ca,Programming,programming,false +Tombo,mstdn.ca,Science,science,false +Tombo,mstdn.ca,Social Media,social_media,false +Tombo,mstdn.ca,Social Sciences,social_sciences,false +Tombo,mstdn.ca,Space,space,false +Tombo,mstdn.ca,Technology,technology,false +Tombo,mstdn.ca,Ukraine Invasion,ukraine_invasion,false +Tombo,mstdn.ca,US Politics,us_politics,false +Tombo,mstdn.ca,Weather,weather,false +Tombo,mstdn.ca,Women’s Voices,women_voices,false +diggincrudetruestories,mastodon.social,Visual Arts,visual_arts,false +granvalenti,mastodon.social,Breaking News,breaking_news,false +granvalenti,mastodon.social,Movies,movies,false +granvalenti,mastodon.social,Journalism & Comment,news_comment_data,false +granvalenti,mastodon.social,Visual Arts,visual_arts,false +granvalenti,mastodon.social,Books & Literature,books_literature,true +diggincrudetruestories,mastodon.social,Technology,technology,true +FOT,masto.ai,Academia & Research,academia_research,false +FOT,masto.ai,Activism & Civil Rights,activism_civil_rights,false +dance_along_the_edge,socel.net,Activism & Civil Rights,activism_civil_rights,false +dance_along_the_edge,socel.net,Architecture & Design,architecture_design,false +dance_along_the_edge,socel.net,Breaking News,breaking_news,false +dance_along_the_edge,socel.net,Climate change,climate_change,false +dance_along_the_edge,socel.net,Creative Arts,creative_arts,false +dance_along_the_edge,socel.net,Democracy & Human Rights,democracy_human_rights,false +dance_along_the_edge,socel.net,Environment,environment,false +dance_along_the_edge,socel.net,Food & Drink,food_drink,false +dance_along_the_edge,socel.net,Humour,humour,false +mehluv,mastinsaan.in,Creative Arts,creative_arts,false +mehluv,mastinsaan.in,Food & Drink,food_drink,false +mehluv,mastinsaan.in,History,history,false +mehluv,mastinsaan.in,Humanities,humanities,false +mehluv,mastinsaan.in,LGBTQ+,lgbtq,false +mehluv,mastinsaan.in,Movies,movies,false +mehluv,mastinsaan.in,Music,music,false +mehluv,mastinsaan.in,Philosophy,philosophy,false +mehluv,mastinsaan.in,Puzzles,puzzles,false +mehluv,mastinsaan.in,Social Sciences,social_sciences,false +mehluv,mastinsaan.in,TV & Radio,tv_radio,false +mehluv,mastinsaan.in,Visual Arts,visual_arts,false +mehluv,mastinsaan.in,Gaming,gaming,true +dance_along_the_edge,socel.net,Mental Health & Wellbeing,mental_health_wellbeing,false +dance_along_the_edge,socel.net,Movies,movies,false +dance_along_the_edge,socel.net,Music,music,false +dance_along_the_edge,socel.net,Nature & Wildlife,nature_wildlife,false +dance_along_the_edge,socel.net,Performing Arts,performing_arts,false +dance_along_the_edge,socel.net,Pets,pets,false +dance_along_the_edge,socel.net,Philosophy,philosophy,false +dance_along_the_edge,socel.net,Photography,photography,false +duy,mas.to,Architecture & Design,architecture_design,false +duy,mas.to,Books & Literature,books_literature,false +duy,mas.to,Movies,movies,false +duy,mas.to,Music,music,false +duy,mas.to,Performing Arts,performing_arts,false +duy,mas.to,Visual Arts,visual_arts,false +duy,mas.to,Photography,photography,true +dance_along_the_edge,socel.net,Poverty & Inequality,poverty_inequality,false +dance_along_the_edge,socel.net,Science,science,false +dance_along_the_edge,socel.net,Social Sciences,social_sciences,false +dance_along_the_edge,socel.net,Space,space,false +dance_along_the_edge,socel.net,TV & Radio,tv_radio,false +dmt,ioc.exchange,Journalism & Comment,news_comment_data,false +dmt,ioc.exchange,Politics,politics,false +dmt,ioc.exchange,Science,science,false +dmt,ioc.exchange,Space,space,false +dmt,ioc.exchange,Government & Policy,government_policy,true +dance_along_the_edge,socel.net,Ukraine Invasion,ukraine_invasion,false +dance_along_the_edge,socel.net,Visual Arts,visual_arts,false +dance_along_the_edge,socel.net,Books & Literature,books_literature,true +WetHat,fosstodon.org,Mathematics,mathematics,false +WetHat,fosstodon.org,Physics,physics,false +drizzly_august,newsmast.social,Breaking News,breaking_news,false +drizzly_august,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +drizzly_august,newsmast.social,Engineering,engineering,false +drizzly_august,newsmast.social,Government & Policy,government_policy,false +drizzly_august,newsmast.social,Law & Justice,law_justice,false +drizzly_august,newsmast.social,Poverty & Inequality,poverty_inequality,false +drizzly_august,newsmast.social,Technology,technology,false +drizzly_august,newsmast.social,US Politics,us_politics,false +chris,arcticwind.social,Academia & Research,academia_research,false +chris,arcticwind.social,AI,ai,false +chris,arcticwind.social,Architecture & Design,architecture_design,false +chris,arcticwind.social,Books & Literature,books_literature,false +chris,arcticwind.social,Engineering,engineering,false +chris,arcticwind.social,Government & Policy,government_policy,false +chris,arcticwind.social,Healthcare,healthcare,false +chris,arcticwind.social,Law & Justice,law_justice,false +chris,arcticwind.social,Music,music,false +chris,arcticwind.social,Journalism & Comment,news_comment_data,false +chris,arcticwind.social,Performing Arts,performing_arts,false +chris,arcticwind.social,Politics,politics,false +chris,arcticwind.social,Science,science,false +chris,arcticwind.social,Breaking News,breaking_news,true +90sCraig,pb.craignt.com,Humour,humour,false +90sCraig,pb.craignt.com,Travel,travel,false +thedogspaw,mastodon.social,Democracy & Human Rights,democracy_human_rights,false +thedogspaw,mastodon.social,Physics,physics,false +thedogspaw,mastodon.social,Science,science,false +thedogspaw,mastodon.social,Ukraine Invasion,ukraine_invasion,false +thedogspaw,mastodon.social,US Politics,us_politics,false +thedogspaw,mastodon.social,Politics,politics,true +rlabas,mastodon.social,AI,ai,false +rlabas,mastodon.social,Biodiversity & Rewilding,biodiversity_rewilding,false +rlabas,mastodon.social,Climate change,climate_change,false +rlabas,mastodon.social,Engineering,engineering,false +rlabas,mastodon.social,Environment,environment,false +chris,arcticwind.social,Social Media,social_media,false +chris,arcticwind.social,Space,space,false +chris,arcticwind.social,Technology,technology,false +chris,arcticwind.social,Ukraine Invasion,ukraine_invasion,false +chris,arcticwind.social,US Politics,us_politics,false +chris,arcticwind.social,Weather,weather,false +FOT,masto.ai,Biology,biology,false +FOT,masto.ai,Democracy & Human Rights,democracy_human_rights,false +FOT,masto.ai,Environment,environment,false +bringolo,mastodon.social,Books & Literature,books_literature,false +bringolo,mastodon.social,Photography,photography,true +FOT,masto.ai,History,history,false +FOT,masto.ai,Indigenous Peoples,indigenous_peoples,false +IrwinFletcher0,mstdn.social,AI,ai,false +IrwinFletcher0,mstdn.social,Architecture & Design,architecture_design,false +IrwinFletcher0,mstdn.social,Breaking News,breaking_news,false +IrwinFletcher0,mstdn.social,Creative Arts,creative_arts,false +IrwinFletcher0,mstdn.social,Engineering,engineering,false +padraig,det.social,Biodiversity & Rewilding,biodiversity_rewilding,false +padraig,det.social,Climate change,climate_change,false +padraig,det.social,Democracy & Human Rights,democracy_human_rights,false +padraig,det.social,Energy & Pollution,energy_pollution,false +padraig,det.social,Environment,environment,false +padraig,det.social,Government & Policy,government_policy,false +padraig,det.social,Law & Justice,law_justice,false +padraig,det.social,Journalism & Comment,news_comment_data,false +padraig,det.social,Politics,politics,false +padraig,det.social,Social Media,social_media,false +padraig,det.social,Technology,technology,false +padraig,det.social,Ukraine Invasion,ukraine_invasion,false +padraig,det.social,Breaking News,breaking_news,true +smikwily,newsmast.social,Technology,technology,false +smikwily,newsmast.social,Gaming,gaming,false +smikwily,newsmast.social,Movies,movies,false +smikwily,newsmast.social,TV & Radio,tv_radio,false +IrwinFletcher0,mstdn.social,Food & Drink,food_drink,false +IrwinFletcher0,mstdn.social,Gaming,gaming,false +IrwinFletcher0,mstdn.social,Government & Policy,government_policy,false +IrwinFletcher0,mstdn.social,Healthcare,healthcare,false +IrwinFletcher0,mstdn.social,Humour,humour,false +FOT,masto.ai,Politics,politics,false +andy,social.thedevane.family,Creative Arts,creative_arts,false +andy,social.thedevane.family,Engineering,engineering,false +andy,social.thedevane.family,Food & Drink,food_drink,false +andy,social.thedevane.family,Nature & Wildlife,nature_wildlife,false +andy,social.thedevane.family,Journalism & Comment,news_comment_data,false +andy,social.thedevane.family,Pets,pets,false +andy,social.thedevane.family,Programming,programming,false +andy,social.thedevane.family,Puzzles,puzzles,false +andy,social.thedevane.family,Science,science,false +andy,social.thedevane.family,Social Media,social_media,false +andy,social.thedevane.family,Space,space,false +andy,social.thedevane.family,Travel,travel,false +andy,social.thedevane.family,US Sport,us_sport,false +andy,social.thedevane.family,Technology,technology,true +nebo333,@mastodon.social,Academia & Research,academia_research,false +nebo333,@mastodon.social,Architecture & Design,architecture_design,false +nebo333,@mastodon.social,Breaking News,breaking_news,false +nebo333,@mastodon.social,Journalism & Comment,news_comment_data,false +nebo333,@mastodon.social,Politics,politics,false +nebo333,@mastodon.social,Science,science,false +nebo333,@mastodon.social,US Politics,us_politics,false +nebo333,@mastodon.social,AI,ai,true +DerPeder,@social.sp-codes.de,Academia & Research,academia_research,false +DerPeder,@social.sp-codes.de,Democracy & Human Rights,democracy_human_rights,false +DerPeder,@social.sp-codes.de,Journalism & Comment,news_comment_data,false +DerPeder,@social.sp-codes.de,Politics,politics,false +DerPeder,@social.sp-codes.de,Science,science,false +DerPeder,@social.sp-codes.de,Social Media,social_media,false +DerPeder,@social.sp-codes.de,Technology,technology,false +DerPeder,@social.sp-codes.de,Breaking News,breaking_news,true +wolfw,newsmast.social,Academia & Research,academia_research,false +wolfw,newsmast.social,Activism & Civil Rights,activism_civil_rights,false +wolfw,newsmast.social,Books & Literature,books_literature,false +wolfw,newsmast.social,Breaking News,breaking_news,false +wolfw,newsmast.social,Movies,movies,false +wolfw,newsmast.social,Music,music,false +wolfw,newsmast.social,Journalism & Comment,news_comment_data,false +wolfw,newsmast.social,Performing Arts,performing_arts,false +wolfw,newsmast.social,Philosophy,philosophy,false +wolfw,newsmast.social,Politics,politics,false +wolfw,newsmast.social,Social Sciences,social_sciences,false +wolfw,newsmast.social,US Politics,us_politics,false +wolfw,newsmast.social,Visual Arts,visual_arts,false +wolfw,newsmast.social,Women’s Voices,women_voices,false +wolfw,newsmast.social,Workers Rights,workers_rights,false +wolfw,newsmast.social,Democracy & Human Rights,democracy_human_rights,true +CoopCoding,newsmast.social,AI,ai,false +CoopCoding,newsmast.social,Engineering,engineering,false +CoopCoding,newsmast.social,Space,space,false +CoopCoding,newsmast.social,Technology,technology,false +CoopCoding,newsmast.social,Programming,programming,true +Sarahp,mastodon.social,AI,ai,false +Sarahp,mastodon.social,Books & Literature,books_literature,false +Sarahp,mastodon.social,Breaking News,breaking_news,false +Sarahp,mastodon.social,Humanities,humanities,false +Sarahp,mastodon.social,Mental Health & Wellbeing,mental_health_wellbeing,false +Sarahp,mastodon.social,Movies,movies,false +Sarahp,mastodon.social,Music,music,false +Sarahp,mastodon.social,Nature & Wildlife,nature_wildlife,false +Sarahp,mastodon.social,Journalism & Comment,news_comment_data,false +Sarahp,mastodon.social,Social Media,social_media,false +Sarahp,mastodon.social,Social Sciences,social_sciences,false +Sarahp,mastodon.social,Travel,travel,false +Sarahp,mastodon.social,Technology,technology,true +FOT,masto.ai,Science,science,false +FOT,masto.ai,Space,space,false +mcleod5000,mastodon.social,Food & Drink,food_drink,true +FOT,masto.ai,Ukraine Invasion,ukraine_invasion,false +IlCava,mastodon.uno,Social Media,social_media,false +IlCava,mastodon.uno,Space,space,false +trick,idic.social,AI,ai,false +mcleod5000,mastodon.social,Mental Health & Wellbeing,mental_health_wellbeing,false +mcleod5000,mastodon.social,Puzzles,puzzles,false +mcleod5000,mastodon.social,Social Media,social_media,false +mcleod5000,mastodon.social,Technology,technology,false +halans,mastodon.social,AI,ai,false +halans,mastodon.social,Climate change,climate_change,false +halans,mastodon.social,Science,science,false +halans,mastodon.social,Social Sciences,social_sciences,false +halans,mastodon.social,Space,space,false +jarjan,mederland.nl,Activism & Civil Rights,activism_civil_rights,false +jarjan,mederland.nl,Climate change,climate_change,false +jarjan,mederland.nl,LGBTQ+,lgbtq,false +jarjan,mederland.nl,Programming,programming,false +jarjan,mederland.nl,Technology,technology,false +jarjan,mederland.nl,Democracy & Human Rights,democracy_human_rights,true +mikhailt,mastodon.social,AI,ai,false +mikhailt,mastodon.social,Biology,biology,false +mikhailt,mastodon.social,Breaking News,breaking_news,false +mikhailt,mastodon.social,Climate change,climate_change,false +mikhailt,mastodon.social,Democracy & Human Rights,democracy_human_rights,false +mikhailt,mastodon.social,Engineering,engineering,false +mikhailt,mastodon.social,Physics,physics,false +mikhailt,mastodon.social,Programming,programming,false +mikhailt,mastodon.social,Science,science,false +mikhailt,mastodon.social,Technology,technology,false +mikhailt,mastodon.social,US Politics,us_politics,false +mikhailt,mastodon.social,Space,space,true +halans,mastodon.social,Technology,technology,true +IrwinFletcher0,mstdn.social,Law & Justice,law_justice,false +IrwinFletcher0,mstdn.social,Mental Health & Wellbeing,mental_health_wellbeing,false +IrwinFletcher0,mstdn.social,Movies,movies,false +IrwinFletcher0,mstdn.social,Music,music,false +IrwinFletcher0,mstdn.social,Nature & Wildlife,nature_wildlife,false +IrwinFletcher0,mstdn.social,Performing Arts,performing_arts,false +IrwinFletcher0,mstdn.social,Pets,pets,false +IrwinFletcher0,mstdn.social,Photography,photography,false +IrwinFletcher0,mstdn.social,Programming,programming,false +IrwinFletcher0,mstdn.social,Puzzles,puzzles,false +IrwinFletcher0,mstdn.social,Science,science,false +IrwinFletcher0,mstdn.social,Social Media,social_media,false +IrwinFletcher0,mstdn.social,Space,space,false +IrwinFletcher0,mstdn.social,Sport,sport,false +IrwinFletcher0,mstdn.social,Travel,travel,false +IrwinFletcher0,mstdn.social,TV & Radio,tv_radio,false +IrwinFletcher0,mstdn.social,US Politics,us_politics,false +IrwinFletcher0,mstdn.social,US Sport,us_sport,false +IrwinFletcher0,mstdn.social,Visual Arts,visual_arts,false +IrwinFletcher0,mstdn.social,Technology,technology,true +cpchannel,mastodon.online,AI,ai,false +cpchannel,mastodon.online,Breaking News,breaking_news,false +cpchannel,mastodon.online,Engineering,engineering,false +cpchannel,mastodon.online,Gaming,gaming,false +cpchannel,mastodon.online,Movies,movies,false +cpchannel,mastodon.online,Music,music,false +cpchannel,mastodon.online,Journalism & Comment,news_comment_data,false +cpchannel,mastodon.online,Photography,photography,false +cpchannel,mastodon.online,Technology,technology,true +rlabas,mastodon.social,Food & Drink,food_drink,false +rlabas,mastodon.social,Mental Health & Wellbeing,mental_health_wellbeing,false +rlabas,mastodon.social,Physics,physics,false +rlabas,mastodon.social,Science,science,false +rlabas,mastodon.social,Space,space,false +rlabas,mastodon.social,Technology,technology,false +rlabas,mastodon.social,Travel,travel,false +rlabas,mastodon.social,Energy & Pollution,energy_pollution,true +5h331v4,social.linux.pizza,Academia & Research,academia_research,false +5h331v4,social.linux.pizza,Democracy & Human Rights,democracy_human_rights,false +5h331v4,social.linux.pizza,Food & Drink,food_drink,false +5h331v4,social.linux.pizza,Gaming,gaming,false +5h331v4,social.linux.pizza,Government & Policy,government_policy,false +5h331v4,social.linux.pizza,Healthcare,healthcare,false +5h331v4,social.linux.pizza,Law & Justice,law_justice,false +5h331v4,social.linux.pizza,Markets & Finance,markets_finance,false +5h331v4,social.linux.pizza,Music,music,false +5h331v4,social.linux.pizza,Journalism & Comment,news_comment_data,false +5h331v4,social.linux.pizza,Politics,politics,false +5h331v4,social.linux.pizza,Social Media,social_media,false +5h331v4,social.linux.pizza,Technology,technology,false +5h331v4,social.linux.pizza,US Politics,us_politics,false +5h331v4,social.linux.pizza,Breaking News,breaking_news,true +imRam,c.im,Journalism & Comment,news_comment_data,false +imRam,c.im,Social Media,social_media,false +imRam,c.im,Ukraine Invasion,ukraine_invasion,false +imRam,c.im,Weather,weather,false +imRam,c.im,Breaking News,breaking_news,true +tritonforcex,mastodon.social,US Politics,us_politics,true +furbyonsteroids,ohai.social,Programming,programming,false +furbyonsteroids,ohai.social,Science,science,false +furbyonsteroids,ohai.social,Space,space,false +furbyonsteroids,ohai.social,Technology,technology,false +furbyonsteroids,ohai.social,Breaking News,breaking_news,true +andypiper,macaw.social,Gaming,gaming,false +andypiper,macaw.social,Movies,movies,false +andypiper,macaw.social,Photography,photography,false +andypiper,macaw.social,Programming,programming,false +andypiper,macaw.social,Space,space,false +andypiper,macaw.social,Technology,technology,true +IlCava,mastodon.uno,TV & Radio,tv_radio,false +IlCava,mastodon.uno,Ukraine Invasion,ukraine_invasion,false +trick,idic.social,Breaking News,breaking_news,false +trick,idic.social,Engineering,engineering,false +trick,idic.social,Technology,technology,false +trick,idic.social,LGBTQ+,lgbtq,true +IlCava,mastodon.uno,US Politics,us_politics,false +IlCava,mastodon.uno,US Sport,us_sport,false +WetHat,fosstodon.org,Science,science,false +WetHat,fosstodon.org,Space,space,false +WetHat,fosstodon.org,Technology,technology,false +Dvlahakis,fosstodon.org,AI,ai,false +Dvlahakis,fosstodon.org,Breaking News,breaking_news,false +Dvlahakis,fosstodon.org,Business,business,false +Dvlahakis,fosstodon.org,Democracy & Human Rights,democracy_human_rights,false +Dvlahakis,fosstodon.org,Engineering,engineering,false +Dvlahakis,fosstodon.org,Government & Policy,government_policy,false +Dvlahakis,fosstodon.org,Mathematics,mathematics,false +Dvlahakis,fosstodon.org,Physics,physics,false +Dvlahakis,fosstodon.org,Programming,programming,false +Dvlahakis,fosstodon.org,Science,science,false +Dvlahakis,fosstodon.org,Space,space,false +Dvlahakis,fosstodon.org,Weather,weather,false +Dvlahakis,fosstodon.org,Technology,technology,true +Dvlahakis,fosstodon.org,Gaming,gaming,false +WetHat,fosstodon.org,Programming,programming,true +DEW1970,newsmast.social,Humour,humour,false +DEW1970,newsmast.social,Books & Literature,books_literature,true +1100101,dresden.network,Climate change,climate_change,false +1100101,dresden.network,Energy & Pollution,energy_pollution,false +1100101,dresden.network,Environment,environment,false +tchambers,indieweb.social,Politics,politics,false +tchambers,indieweb.social,Social Media,social_media,false +tchambers,indieweb.social,Technology,technology,false +tchambers,indieweb.social,Ukraine Invasion,ukraine_invasion,false +tchambers,indieweb.social,Breaking News,breaking_news,true +thedogspaw,mastodon.social,Movies,movies,false +1100101,dresden.network,Poverty & Inequality,poverty_inequality,false +1100101,dresden.network,Space,space,false +1100101,dresden.network,Science,science,true +wbbdaily,flipboard.social,US Sport,us_sport,false +darth_akeda,mastodon.social,Academia & Research,academia_research,false +darth_akeda,mastodon.social,Activism & Civil Rights,activism_civil_rights,false +darth_akeda,mastodon.social,AI,ai,false +DEW1970,newsmast.social,Architecture & Design,architecture_design,false +DEW1970,newsmast.social,Biology,biology,false +DEW1970,newsmast.social,Food & Drink,food_drink,false +DEW1970,newsmast.social,Football,football,false +DEW1970,newsmast.social,Healthcare,healthcare,false +DEW1970,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false +DEW1970,newsmast.social,Movies,movies,false +DEW1970,newsmast.social,Music,music,false +DEW1970,newsmast.social,Nature & Wildlife,nature_wildlife,false +DEW1970,newsmast.social,Performing Arts,performing_arts,false +DEW1970,newsmast.social,Pets,pets,false +DEW1970,newsmast.social,Photography,photography,false +DEW1970,newsmast.social,Politics,politics,false +DEW1970,newsmast.social,Science,science,false +DEW1970,newsmast.social,Social Media,social_media,false +DEW1970,newsmast.social,Space,space,false +DEW1970,newsmast.social,Travel,travel,false +DEW1970,newsmast.social,TV & Radio,tv_radio,false +DEW1970,newsmast.social,Weather,weather,false +Greg,newsmast.social,Humanities,humanities,false +Greg,newsmast.social,Humour,humour,false +Greg,newsmast.social,Mathematics,mathematics,false +Greg,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false +Greg,newsmast.social,Nature & Wildlife,nature_wildlife,false +Greg,newsmast.social,Journalism & Comment,news_comment_data,false +Greg,newsmast.social,Philosophy,philosophy,false +Greg,newsmast.social,Programming,programming,false +Greg,newsmast.social,Science,science,false +Greg,newsmast.social,Social Sciences,social_sciences,false +Greg,newsmast.social,Technology,technology,false +Greg,newsmast.social,Breaking News,breaking_news,true +theinstantwin,mastodon.world,AI,ai,false +theinstantwin,mastodon.world,History,history,false +theinstantwin,mastodon.world,Social Sciences,social_sciences,false +theinstantwin,mastodon.world,US Sport,us_sport,false +theinstantwin,mastodon.world,Technology,technology,true +Elioz,newsmast.social,Activism & Civil Rights,activism_civil_rights,false +Elioz,newsmast.social,AI,ai,false +Elioz,newsmast.social,Architecture & Design,architecture_design,false +Elioz,newsmast.social,Black Voices,black_voices,false +Elioz,newsmast.social,Books & Literature,books_literature,false +Elioz,newsmast.social,Breaking News,breaking_news,false +Elioz,newsmast.social,Business,business,false +Elioz,newsmast.social,Engineering,engineering,false +Elioz,newsmast.social,Environment,environment,false +Elioz,newsmast.social,Humour,humour,false +Elioz,newsmast.social,LGBTQ+,lgbtq,false +SeoN8,mastodon.cloud,Engineering,engineering,false +SeoN8,mastodon.cloud,Physics,physics,false +SeoN8,mastodon.cloud,Science,science,false +SeoN8,mastodon.cloud,Space,space,false +SeoN8,mastodon.cloud,Sport,sport,false +SeoN8,mastodon.cloud,Technology,technology,true +Elioz,newsmast.social,Movies,movies,false +Elioz,newsmast.social,Music,music,false +Elioz,newsmast.social,Performing Arts,performing_arts,false +Elioz,newsmast.social,Pets,pets,false +Elioz,newsmast.social,Photography,photography,false +Elioz,newsmast.social,Programming,programming,false +Elioz,newsmast.social,Technology,technology,false +Elioz,newsmast.social,Travel,travel,false +Elioz,newsmast.social,TV & Radio,tv_radio,false +Elioz,newsmast.social,Ukraine Invasion,ukraine_invasion,false +Elioz,newsmast.social,Visual Arts,visual_arts,false +Elioz,newsmast.social,Creative Arts,creative_arts,true +FOT,masto.ai,Weather,weather,false +FOT,masto.ai,Breaking News,breaking_news,true +lilythelonelygirl,hear-me.social,Activism & Civil Rights,activism_civil_rights,false +lilythelonelygirl,hear-me.social,Breaking News,breaking_news,true +shelldoor,newsmast.social,AI,ai,false +shelldoor,newsmast.social,Breaking News,breaking_news,false +bjh,sueden.social,Architecture & Design,architecture_design,false +bjh,sueden.social,Creative Arts,creative_arts,false +bjh,sueden.social,Science,science,false +shelldoor,newsmast.social,Engineering,engineering,false +bjh,sueden.social,Photography,photography,true +yethiha,newsmast.social,Breaking News,breaking_news,false +benjamin,newsmast.social,Biology,biology,false +benjamin,newsmast.social,Breaking News,breaking_news,false +benjamin,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +benjamin,newsmast.social,Physics,physics,false +benjamin,newsmast.social,Poverty & Inequality,poverty_inequality,false +benjamin,newsmast.social,Programming,programming,false +benjamin,newsmast.social,Science,science,false +benjamin,newsmast.social,Space,space,false +benjamin,newsmast.social,Technology,technology,false +benjamin,newsmast.social,US Sport,us_sport,false +benjamin,newsmast.social,Social Media,social_media,true +dimillian,mastodon.social,AI,ai,false +dimillian,mastodon.social,Engineering,engineering,false +dimillian,mastodon.social,Programming,programming,false +dimillian,mastodon.social,Science,science,false +dimillian,mastodon.social,Technology,technology,false +dimillian,mastodon.social,Ukraine Invasion,ukraine_invasion,false +dimillian,mastodon.social,Breaking News,breaking_news,true +m2knewsmast,newsmast.social,Academia & Research,academia_research,false +m2knewsmast,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +m2knewsmast,newsmast.social,Government & Policy,government_policy,false +m2knewsmast,newsmast.social,Healthcare,healthcare,false +m2knewsmast,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false +m2knewsmast,newsmast.social,Law & Justice,law_justice,false +m2knewsmast,newsmast.social,Journalism & Comment,news_comment_data,false +m2knewsmast,newsmast.social,Politics,politics,false +m2knewsmast,newsmast.social,Poverty & Inequality,poverty_inequality,false +m2knewsmast,newsmast.social,Social Media,social_media,false +m2knewsmast,newsmast.social,Ukraine Invasion,ukraine_invasion,false +m2knewsmast,newsmast.social,US Politics,us_politics,false +m2knewsmast,newsmast.social,Weather,weather,false +m2knewsmast,newsmast.social,Breaking News,breaking_news,true +Sushi,mamot.fr,Architecture & Design,architecture_design,false +Sushi,mamot.fr,Climate change,climate_change,false +Sushi,mamot.fr,Environment,environment,false +Sushi,mamot.fr,History,history,false +Sushi,mamot.fr,Social Sciences,social_sciences,false +Sushi,mamot.fr,Space,space,false +Sushi,mamot.fr,Technology,technology,false +Sushi,mamot.fr,Breaking News,breaking_news,true +chloe_661,newsmast.social,Programming,programming,false +chloe_661,newsmast.social,Space,space,false +chloe_661,newsmast.social,Sport,sport,false +chloe_661,newsmast.social,Technology,technology,false +chloe_661,newsmast.social,Football,football,true +thedogspaw,mastodon.social,Journalism & Comment,news_comment_data,false +thedogspaw,mastodon.social,Space,space,false +ericsfeed,mas.to,Engineering,engineering,false +ericsfeed,mas.to,History,history,false +ericsfeed,mas.to,Law & Justice,law_justice,false +ericsfeed,mas.to,Science,science,false +ericsfeed,mas.to,Breaking News,breaking_news,true +shanelord,shanelord@social.shas.am,Breaking News,breaking_news,false +shanelord,shanelord@social.shas.am,Food & Drink,food_drink,false +shanelord,shanelord@social.shas.am,Humour,humour,false +shanelord,shanelord@social.shas.am,Movies,movies,false +shanelord,shanelord@social.shas.am,Music,music,false +shanelord,shanelord@social.shas.am,Technology,technology,false +shanelord,shanelord@social.shas.am,Travel,travel,false +shanelord,shanelord@social.shas.am,Gaming,gaming,true +zenchyii,mastodon.social,Academia & Research,academia_research,false +zenchyii,mastodon.social,Healthcare,healthcare,false +zenchyii,mastodon.social,Space,space,false +zenchyii,mastodon.social,US Politics,us_politics,false +zenchyii,mastodon.social,Programming,programming,true +nick,pebble.social,Pets,pets,false +nick,pebble.social,Politics,politics,false +nick,pebble.social,Social Media,social_media,false +nick,pebble.social,Technology,technology,false +nick,pebble.social,Travel,travel,false +nick,pebble.social,TV & Radio,tv_radio,false +nick,pebble.social,US Politics,us_politics,false +nick,pebble.social,Weather,weather,false +nick,pebble.social,Breaking News,breaking_news,true +fwd7,newsmast.social,Academia & Research,academia_research,false +regis,social.vivaldi.net,AI,ai,false +regis,social.vivaldi.net,Architecture & Design,architecture_design,false +regis,social.vivaldi.net,Programming,programming,false +regis,social.vivaldi.net,Travel,travel,false +regis,social.vivaldi.net,Technology,technology,true +fwd7,newsmast.social,AI,ai,false +fwd7,newsmast.social,Books & Literature,books_literature,false +fwd7,newsmast.social,Breaking News,breaking_news,false +fwd7,newsmast.social,Football,football,false +fwd7,newsmast.social,Gaming,gaming,false +fwd7,newsmast.social,Government & Policy,government_policy,false +dianirawan,newsmast.social,Academia & Research,academia_research,false +fwd7,newsmast.social,Music,music,false +Maily,newsmast.social,AI,ai,false +Maily,newsmast.social,Movies,movies,false +Maily,newsmast.social,Music,music,false +Maily,newsmast.social,Technology,technology,false +Maily,newsmast.social,Women’s Voices,women_voices,true +fwd7,newsmast.social,Social Sciences,social_sciences,false +mgye,newsmast.social,Activism & Civil Rights,activism_civil_rights,false +mgye,newsmast.social,AI,ai,false +mgye,newsmast.social,Biology,biology,false +mgye,newsmast.social,Black Voices,black_voices,false +mgye,newsmast.social,Business,business,false +mgye,newsmast.social,Chemistry,chemistry,false +mgye,newsmast.social,Disabled Voices,disabled_voices,false +mgye,newsmast.social,Engineering,engineering,false +mgye,newsmast.social,Government & Policy,government_policy,false +mgye,newsmast.social,Healthcare,healthcare,false +mgye,newsmast.social,Immigrants Rights,immigrants_rights,false +mgye,newsmast.social,Indigenous Peoples,indigenous_peoples,false +mgye,newsmast.social,Law & Justice,law_justice,false +mgye,newsmast.social,LGBTQ+,lgbtq,false +mgye,newsmast.social,Markets & Finance,markets_finance,false +mgye,newsmast.social,Mathematics,mathematics,false +mgye,newsmast.social,Physics,physics,false +mgye,newsmast.social,Politics,politics,false +mgye,newsmast.social,Programming,programming,false +mgye,newsmast.social,Science,science,false +mgye,newsmast.social,Space,space,false +mgye,newsmast.social,Technology,technology,false +mgye,newsmast.social,US Politics,us_politics,false +mgye,newsmast.social,Women’s Voices,women_voices,false +mgye,newsmast.social,Workers Rights,workers_rights,false +AdmiralAckbar,twit.social,AI,ai,false +AdmiralAckbar,twit.social,Biodiversity & Rewilding,biodiversity_rewilding,false +AdmiralAckbar,twit.social,Breaking News,breaking_news,false +AdmiralAckbar,twit.social,Engineering,engineering,false +AdmiralAckbar,twit.social,Environment,environment,false +AdmiralAckbar,twit.social,Mathematics,mathematics,false +AdmiralAckbar,twit.social,Mental Health & Wellbeing,mental_health_wellbeing,false +AdmiralAckbar,twit.social,Nature & Wildlife,nature_wildlife,false +AdmiralAckbar,twit.social,Journalism & Comment,news_comment_data,false +AdmiralAckbar,twit.social,Pets,pets,false +AdmiralAckbar,twit.social,Physics,physics,false +AdmiralAckbar,twit.social,Programming,programming,false +AdmiralAckbar,twit.social,Science,science,false +AdmiralAckbar,twit.social,Space,space,false +AdmiralAckbar,twit.social,Travel,travel,false +AdmiralAckbar,twit.social,Technology,technology,true +mgye,newsmast.social,Academia & Research,academia_research,true +fwd7,newsmast.social,Sport,sport,false +fwd7,newsmast.social,Technology,technology,false +lyracqua,infosec.exchange,Humour,humour,false +lyracqua,infosec.exchange,Programming,programming,false +lyracqua,infosec.exchange,Puzzles,puzzles,false +lyracqua,infosec.exchange,Travel,travel,false +lyracqua,infosec.exchange,Technology,technology,true +m2knmst,newsmast.social,Activism & Civil Rights,activism_civil_rights,false +m2knmst,newsmast.social,Black Voices,black_voices,false +m2knmst,newsmast.social,Disabled Voices,disabled_voices,false +m2knmst,newsmast.social,History,history,false +m2knmst,newsmast.social,Humanities,humanities,false +m2knmst,newsmast.social,Immigrants Rights,immigrants_rights,false +m2knmst,newsmast.social,Indigenous Peoples,indigenous_peoples,false +m2knmst,newsmast.social,LGBTQ+,lgbtq,false +m2knmst,newsmast.social,Journalism & Comment,news_comment_data,false +m2knmst,newsmast.social,Philosophy,philosophy,false +jenericw,mstdn.party,Architecture & Design,architecture_design,false +jenericw,mstdn.party,Biology,biology,false +jenericw,mstdn.party,Books & Literature,books_literature,false +m2knmst,newsmast.social,Social Media,social_media,false +jenericw,mstdn.party,Business,business,false +jenericw,mstdn.party,Chemistry,chemistry,false +jenericw,mstdn.party,Energy & Pollution,energy_pollution,false +jenericw,mstdn.party,Engineering,engineering,false +m2knmst,newsmast.social,Social Sciences,social_sciences,false +jenericw,mstdn.party,Gaming,gaming,false +m2knmst,newsmast.social,Ukraine Invasion,ukraine_invasion,false +m2knmst,newsmast.social,Weather,weather,false +m2knmst,newsmast.social,Women’s Voices,women_voices,false +jenericw,mstdn.party,AI,ai,false +m2knmst,newsmast.social,Breaking News,breaking_news,true +Jezebelley,mstdn.social,AI,ai,false +Jezebelley,mstdn.social,Breaking News,breaking_news,false +Jezebelley,mstdn.social,Government & Policy,government_policy,false +Jezebelley,mstdn.social,Politics,politics,false +Jezebelley,mstdn.social,Social Media,social_media,false +Jezebelley,mstdn.social,US Politics,us_politics,false +Jezebelley,mstdn.social,Movies,movies,false +Jezebelley,mstdn.social,Photography,photography,false +Jezebelley,mstdn.social,TV & Radio,tv_radio,false +Jezebelley,mstdn.social,Books & Literature,books_literature,false +Jezebelley,mstdn.social,Technology,technology,false +Jezebelley,mstdn.social,Gaming,gaming,true +jenericw,mstdn.party,History,history,false +jenericw,mstdn.party,Humanities,humanities,false +jenericw,mstdn.party,Markets & Finance,markets_finance,false +jenericw,mstdn.party,Mathematics,mathematics,false +jenericw,mstdn.party,Movies,movies,false +jenericw,mstdn.party,Music,music,false +jenericw,mstdn.party,Journalism & Comment,news_comment_data,false +jenericw,mstdn.party,Performing Arts,performing_arts,false +jenericw,mstdn.party,Philosophy,philosophy,false +jenericw,mstdn.party,Photography,photography,false +jenericw,mstdn.party,Physics,physics,false +jenericw,mstdn.party,Science,science,false +jenericw,mstdn.party,Social Media,social_media,false +jenericw,mstdn.party,Social Sciences,social_sciences,false +jenericw,mstdn.party,Space,space,false +jenericw,mstdn.party,Sport,sport,false +jenericw,mstdn.party,Technology,technology,false +jenericw,mstdn.party,TV & Radio,tv_radio,false +jenericw,mstdn.party,Ukraine Invasion,ukraine_invasion,false +jenericw,mstdn.party,US Sport,us_sport,false +jenericw,mstdn.party,Visual Arts,visual_arts,false +jenericw,mstdn.party,Weather,weather,false +lydiechen,newsmast.social,AI,ai,false +lydiechen,newsmast.social,Business,business,false +lydiechen,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +lydiechen,newsmast.social,Technology,technology,false +jtomchak,moth.social,Business,business,false +jtomchak,moth.social,Politics,politics,false +jtomchak,moth.social,Programming,programming,false +jtomchak,moth.social,Sport,sport,false +jtomchak,moth.social,Technology,technology,true +lydiechen,newsmast.social,Markets & Finance,markets_finance,true +climbinghummel,sueden.social,Academia & Research,academia_research,false +ekebonke,mastodon.online,Programming,programming,true +climbinghummel,sueden.social,AI,ai,false +climbinghummel,sueden.social,Biodiversity & Rewilding,biodiversity_rewilding,false +climbinghummel,sueden.social,Biology,biology,false +climbinghummel,sueden.social,Breaking News,breaking_news,false +climbinghummel,sueden.social,Business,business,false +climbinghummel,sueden.social,Chemistry,chemistry,false +climbinghummel,sueden.social,Climate change,climate_change,false +climbinghummel,sueden.social,Democracy & Human Rights,democracy_human_rights,false +msafaksari,newsmast.social,History,history,false +msafaksari,newsmast.social,Movies,movies,false +msafaksari,newsmast.social,Photography,photography,false +msafaksari,newsmast.social,Social Sciences,social_sciences,false +msafaksari,newsmast.social,AI,ai,true +tedcurran,indieweb.social,AI,ai,false +tedcurran,indieweb.social,Breaking News,breaking_news,false +tedcurran,indieweb.social,Democracy & Human Rights,democracy_human_rights,false +tedcurran,indieweb.social,Gaming,gaming,false +tedcurran,indieweb.social,History,history,false +tedcurran,indieweb.social,Mental Health & Wellbeing,mental_health_wellbeing,false +tedcurran,indieweb.social,Movies,movies,false +tedcurran,indieweb.social,Music,music,false +tedcurran,indieweb.social,Nature & Wildlife,nature_wildlife,false +tedcurran,indieweb.social,Journalism & Comment,news_comment_data,false +tedcurran,indieweb.social,Poverty & Inequality,poverty_inequality,false +tedcurran,indieweb.social,Social Sciences,social_sciences,false +tedcurran,indieweb.social,US Politics,us_politics,false +tedcurran,indieweb.social,Visual Arts,visual_arts,false +tedcurran,indieweb.social,Technology,technology,true +jimhillhouse,mastodon.social,AI,ai,false +jimhillhouse,mastodon.social,Business,business,false +jimhillhouse,mastodon.social,Engineering,engineering,false +jimhillhouse,mastodon.social,Markets & Finance,markets_finance,false +jimhillhouse,mastodon.social,Technology,technology,false +jimhillhouse,mastodon.social,Programming,programming,true +EiEi,newsmast.social,AI,ai,false +EiEi,newsmast.social,Biology,biology,false +EiEi,newsmast.social,Chemistry,chemistry,false +EiEi,newsmast.social,Engineering,engineering,false +EiEi,newsmast.social,Environment,environment,false +EiEi,newsmast.social,Mathematics,mathematics,false +EiEi,newsmast.social,Physics,physics,false +EiEi,newsmast.social,Programming,programming,false +EiEi,newsmast.social,Science,science,false +EiEi,newsmast.social,Space,space,false +EiEi,newsmast.social,Technology,technology,true +ekebonke,mastodon.online,Mathematics,mathematics,false +ekebonke,mastodon.online,Politics,politics,false +ekebonke,mastodon.online,Technology,technology,false +ekebonke,mastodon.online,Ukraine Invasion,ukraine_invasion,false +jenericw,mstdn.party,Government & Policy,government_policy,false +jenericw,mstdn.party,Healthcare,healthcare,false +jenericw,mstdn.party,Humour,humour,false +jenericw,mstdn.party,Food & Drink,food_drink,false +jenericw,mstdn.party,Travel,travel,false +jenericw,mstdn.party,Pets,pets,false +bart,moth.social,Music,music,false +bart,moth.social,Technology,technology,false +bart,moth.social,TV & Radio,tv_radio,false +bart,moth.social,Visual Arts,visual_arts,false +bart,moth.social,Journalism & Comment,news_comment_data,true +corb1n,mastodon.social,AI,ai,false +corb1n,mastodon.social,Business,business,false +corb1n,mastodon.social,Engineering,engineering,false +corb1n,mastodon.social,Markets & Finance,markets_finance,false +corb1n,mastodon.social,Programming,programming,false +corb1n,mastodon.social,Technology,technology,true +jenericw,mstdn.party,Democracy & Human Rights,democracy_human_rights,false +jenericw,mstdn.party,US Politics,us_politics,true +climbinghummel,sueden.social,Energy & Pollution,energy_pollution,false +climbinghummel,sueden.social,Engineering,engineering,false +climbinghummel,sueden.social,Environment,environment,false +climbinghummel,sueden.social,Government & Policy,government_policy,false +climbinghummel,sueden.social,Healthcare,healthcare,false +climbinghummel,sueden.social,History,history,false +climbinghummel,sueden.social,Humanities,humanities,false +climbinghummel,sueden.social,"Hunger, Disease & Water",hunger_disease_water,false +climbinghummel,sueden.social,Law & Justice,law_justice,false +climbinghummel,sueden.social,Markets & Finance,markets_finance,false +climbinghummel,sueden.social,Mathematics,mathematics,false +climbinghummel,sueden.social,Journalism & Comment,news_comment_data,false +climbinghummel,sueden.social,Philosophy,philosophy,false +climbinghummel,sueden.social,Physics,physics,false +climbinghummel,sueden.social,Politics,politics,false +climbinghummel,sueden.social,Poverty & Inequality,poverty_inequality,false +climbinghummel,sueden.social,Programming,programming,false +climbinghummel,sueden.social,Science,science,false +climbinghummel,sueden.social,Social Media,social_media,false +climbinghummel,sueden.social,Social Sciences,social_sciences,false +climbinghummel,sueden.social,Space,space,false +climbinghummel,sueden.social,Ukraine Invasion,ukraine_invasion,false +climbinghummel,sueden.social,US Politics,us_politics,false +climbinghummel,sueden.social,Weather,weather,false +climbinghummel,sueden.social,Workers Rights,workers_rights,false +climbinghummel,sueden.social,Technology,technology,true +fwd7,newsmast.social,Law & Justice,law_justice,true +dianirawan,newsmast.social,Breaking News,breaking_news,false +dianirawan,newsmast.social,Healthcare,healthcare,false +dianirawan,newsmast.social,Law & Justice,law_justice,false +dianirawan,newsmast.social,Journalism & Comment,news_comment_data,false +dianirawan,newsmast.social,Politics,politics,false +dianirawan,newsmast.social,Social Media,social_media,false +eklektikos,mastodon.uno,Academia & Research,academia_research,false +eklektikos,mastodon.uno,AI,ai,false +eklektikos,mastodon.uno,Architecture & Design,architecture_design,false +eklektikos,mastodon.uno,Biology,biology,false +eklektikos,mastodon.uno,Books & Literature,books_literature,false +eklektikos,mastodon.uno,Chemistry,chemistry,false +eklektikos,mastodon.uno,Democracy & Human Rights,democracy_human_rights,false +eklektikos,mastodon.uno,Engineering,engineering,false +eklektikos,mastodon.uno,Gaming,gaming,false +eklektikos,mastodon.uno,Government & Policy,government_policy,false +eklektikos,mastodon.uno,Healthcare,healthcare,false +eklektikos,mastodon.uno,History,history,false +eklektikos,mastodon.uno,Humanities,humanities,false +eklektikos,mastodon.uno,"Hunger, Disease & Water",hunger_disease_water,false +eklektikos,mastodon.uno,Law & Justice,law_justice,false +eklektikos,mastodon.uno,Mathematics,mathematics,false +eklektikos,mastodon.uno,Movies,movies,false +eklektikos,mastodon.uno,Music,music,false +eklektikos,mastodon.uno,Journalism & Comment,news_comment_data,false +eklektikos,mastodon.uno,Performing Arts,performing_arts,false +eklektikos,mastodon.uno,Philosophy,philosophy,false +eklektikos,mastodon.uno,Photography,photography,false +eklektikos,mastodon.uno,Physics,physics,false +eklektikos,mastodon.uno,Politics,politics,false +eklektikos,mastodon.uno,Poverty & Inequality,poverty_inequality,false +eklektikos,mastodon.uno,Programming,programming,false +eklektikos,mastodon.uno,Science,science,false +eklektikos,mastodon.uno,Social Media,social_media,false +eklektikos,mastodon.uno,Social Sciences,social_sciences,false +eklektikos,mastodon.uno,Space,space,false +eklektikos,mastodon.uno,Technology,technology,false +eklektikos,mastodon.uno,TV & Radio,tv_radio,false +eklektikos,mastodon.uno,Ukraine Invasion,ukraine_invasion,false +eklektikos,mastodon.uno,US Politics,us_politics,false +eklektikos,mastodon.uno,Visual Arts,visual_arts,false +eklektikos,mastodon.uno,Weather,weather,false +eklektikos,mastodon.uno,Breaking News,breaking_news,true +dianirawan,newsmast.social,Ukraine Invasion,ukraine_invasion,false +dianirawan,newsmast.social,US Politics,us_politics,false +thedogspaw,mastodon.social,Social Media,social_media,false +dianirawan,newsmast.social,Weather,weather,false +dianirawan,newsmast.social,Government & Policy,government_policy,true +IlCava,mastodon.uno,Sport,sport,false +IlCava,mastodon.uno,Technology,technology,false +IlCava,mastodon.uno,Travel,travel,false +IlCava,mastodon.uno,TV & Radio,tv_radio,false +IlCava,mastodon.uno,Ukraine Invasion,ukraine_invasion,false +IlCava,mastodon.uno,US Politics,us_politics,false +LosGrandeFocco,afterspace.rocks,Gaming,gaming,false +LosGrandeFocco,afterspace.rocks,Government & Policy,government_policy,false +LosGrandeFocco,afterspace.rocks,"Hunger, Disease & Water",hunger_disease_water,false +LosGrandeFocco,afterspace.rocks,Journalism & Comment,news_comment_data,false +LosGrandeFocco,afterspace.rocks,Photography,photography,false +LosGrandeFocco,afterspace.rocks,Politics,politics,false +LosGrandeFocco,afterspace.rocks,Poverty & Inequality,poverty_inequality,false +LosGrandeFocco,afterspace.rocks,Programming,programming,false +LosGrandeFocco,afterspace.rocks,Science,science,false +LosGrandeFocco,afterspace.rocks,Social Media,social_media,false +LosGrandeFocco,afterspace.rocks,Technology,technology,false +LosGrandeFocco,afterspace.rocks,Ukraine Invasion,ukraine_invasion,false +LosGrandeFocco,afterspace.rocks,US Politics,us_politics,false +LosGrandeFocco,afterspace.rocks,Visual Arts,visual_arts,true +nick,pebble.social,AI,ai,false +nick,pebble.social,Books & Literature,books_literature,false +nick,pebble.social,Engineering,engineering,false +nick,pebble.social,Food & Drink,food_drink,false +nick,pebble.social,Government & Policy,government_policy,false +nick,pebble.social,Humour,humour,false +nick,pebble.social,Mental Health & Wellbeing,mental_health_wellbeing,false +nick,pebble.social,Movies,movies,false +nick,pebble.social,Music,music,false +nick,pebble.social,Journalism & Comment,news_comment_data,false +hiphopheaven,rap.social,AI,ai,false +hiphopheaven,rap.social,Biology,biology,false +hiphopheaven,rap.social,Chemistry,chemistry,false +hiphopheaven,rap.social,Engineering,engineering,false +hiphopheaven,rap.social,Mathematics,mathematics,false +hiphopheaven,rap.social,Photography,photography,false +hiphopheaven,rap.social,Physics,physics,false +hiphopheaven,rap.social,Programming,programming,false +hiphopheaven,rap.social,Science,science,false +hiphopheaven,rap.social,Space,space,false +hiphopheaven,rap.social,Technology,technology,false +hiphopheaven,rap.social,Visual Arts,visual_arts,false +hiphopheaven,rap.social,Music,music,true +IlCava,mastodon.uno,Visual Arts,visual_arts,false +shelldoor,newsmast.social,Politics,politics,false +shelldoor,newsmast.social,Programming,programming,false +wysteria,baraag.net,Biology,biology,false +wysteria,baraag.net,Movies,movies,false +thedogspaw,mastodon.social,Workers Rights,workers_rights,false +Zhong,mstdn.social,AI,ai,false +misk,pol.social,Democracy & Human Rights,democracy_human_rights,false +misk,pol.social,Gaming,gaming,false +misk,pol.social,Markets & Finance,markets_finance,false +misk,pol.social,Movies,movies,false +misk,pol.social,Journalism & Comment,news_comment_data,false +misk,pol.social,Politics,politics,false +misk,pol.social,Space,space,false +misk,pol.social,Technology,technology,false +misk,pol.social,TV & Radio,tv_radio,false +misk,pol.social,Ukraine Invasion,ukraine_invasion,false +misk,pol.social,Workers Rights,workers_rights,false +misk,pol.social,Breaking News,breaking_news,true +Zhong,mstdn.social,Business,business,false +Zhong,mstdn.social,Engineering,engineering,false +Zhong,mstdn.social,Politics,politics,false +Zhong,mstdn.social,Science,science,false +Zhong,mstdn.social,Space,space,false +TheStarrCompanyNL,mastodon.social,AI,ai,false +TheStarrCompanyNL,mastodon.social,Architecture & Design,architecture_design,false +TheStarrCompanyNL,mastodon.social,Books & Literature,books_literature,false +TheStarrCompanyNL,mastodon.social,History,history,false +TheStarrCompanyNL,mastodon.social,Movies,movies,false +TheStarrCompanyNL,mastodon.social,Music,music,false +TheStarrCompanyNL,mastodon.social,Philosophy,philosophy,false +TheStarrCompanyNL,mastodon.social,Photography,photography,false +TheStarrCompanyNL,mastodon.social,Physics,physics,false +TheStarrCompanyNL,mastodon.social,Science,science,false +TheStarrCompanyNL,mastodon.social,Social Sciences,social_sciences,false +TheStarrCompanyNL,mastodon.social,Technology,technology,false +TheStarrCompanyNL,mastodon.social,TV & Radio,tv_radio,false +TheStarrCompanyNL,mastodon.social,Visual Arts,visual_arts,false +TheStarrCompanyNL,mastodon.social,Breaking News,breaking_news,true +vile_person,newsmast.social,Books & Literature,books_literature,false +vile_person,newsmast.social,Climate change,climate_change,false +vile_person,newsmast.social,Energy & Pollution,energy_pollution,false +vile_person,newsmast.social,Environment,environment,false +vile_person,newsmast.social,Gaming,gaming,false +vile_person,newsmast.social,LGBTQ+,lgbtq,false +vile_person,newsmast.social,Mathematics,mathematics,false +vile_person,newsmast.social,Music,music,false +vile_person,newsmast.social,Journalism & Comment,news_comment_data,false +vile_person,newsmast.social,Philosophy,philosophy,false +vile_person,newsmast.social,Photography,photography,false +vile_person,newsmast.social,Poverty & Inequality,poverty_inequality,false +vile_person,newsmast.social,Programming,programming,false +vile_person,newsmast.social,Women’s Voices,women_voices,false +vile_person,newsmast.social,Democracy & Human Rights,democracy_human_rights,true +renlok,mastodon.social,AI,ai,false +renlok,mastodon.social,Engineering,engineering,false +renlok,mastodon.social,Science,science,false +renlok,mastodon.social,Space,space,false +renlok,mastodon.social,Technology,technology,false +renlok,mastodon.social,Programming,programming,true +renlok,mastodon.social,Healthcare,healthcare,false +renlok,mastodon.social,Humour,humour,false +renlok,mastodon.social,Nature & Wildlife,nature_wildlife,false +renlok,mastodon.social,Travel,travel,false +satvika,newsmast.social,Technology,technology,true +NurseTed,newsmast.social,Journalism & Comment,news_comment_data,false +NurseTed,newsmast.social,Social Media,social_media,false +NurseTed,newsmast.social,Ukraine Invasion,ukraine_invasion,false +NurseTed,newsmast.social,Weather,weather,false +NurseTed,newsmast.social,Breaking News,breaking_news,true +richtong,mastodon.social,Engineering,engineering,false +richtong,mastodon.social,Programming,programming,false +richtong,mastodon.social,Space,space,false +richtong,mastodon.social,Technology,technology,false +richtong,mastodon.social,AI,ai,true +xavierho,newsmast.social,Academia & Research,academia_research,false +xavierho,newsmast.social,AI,ai,false +xavierho,newsmast.social,Breaking News,breaking_news,false +xavierho,newsmast.social,Journalism & Comment,news_comment_data,false +xavierho,newsmast.social,Politics,politics,false +xavierho,newsmast.social,Programming,programming,false +xavierho,newsmast.social,Ukraine Invasion,ukraine_invasion,false +xavierho,newsmast.social,Technology,technology,true +IlCava,mastodon.uno,Weather,weather,false +Zhong,mstdn.social,US Politics,us_politics,false +Zhong,mstdn.social,Technology,technology,true +ryankhan,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +ryankhan,newsmast.social,Government & Policy,government_policy,false +ryankhan,newsmast.social,Healthcare,healthcare,false +bricksguy,mastodon.social,LGBTQ+,lgbtq,false +bricksguy,mastodon.social,Mental Health & Wellbeing,mental_health_wellbeing,false +bricksguy,mastodon.social,Nature & Wildlife,nature_wildlife,false +bricksguy,mastodon.social,Puzzles,puzzles,false +bricksguy,mastodon.social,Technology,technology,false +bricksguy,mastodon.social,Travel,travel,false +bricksguy,mastodon.social,TV & Radio,tv_radio,false +bricksguy,mastodon.social,Breaking News,breaking_news,true +thedogspaw,mastodon.social,Gaming,gaming,false +ryankhan,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false +thedogspaw,mastodon.social,TV & Radio,tv_radio,false +ryankhan,newsmast.social,Law & Justice,law_justice,false +ryankhan,newsmast.social,Politics,politics,false +Sunfishstanford,hachyderm.io,AI,ai,false +Sunfishstanford,hachyderm.io,Breaking News,breaking_news,false +Sunfishstanford,hachyderm.io,Business,business,false +Sunfishstanford,hachyderm.io,Engineering,engineering,false +jayayess1190,mastodon.social,Environment,environment,false +jayayess1190,mastodon.social,Football,football,false +jayayess1190,mastodon.social,Science,science,false +jayayess1190,mastodon.social,Space,space,false +jayayess1190,mastodon.social,Technology,technology,true +Sunfishstanford,hachyderm.io,Mathematics,mathematics,false +Sunfishstanford,hachyderm.io,Physics,physics,false +Sunfishstanford,hachyderm.io,Programming,programming,false +Sunfishstanford,hachyderm.io,Technology,technology,true +ryankhan,newsmast.social,Poverty & Inequality,poverty_inequality,false +lime360,newsmast.social,AI,ai,false +lime360,newsmast.social,Breaking News,breaking_news,false +lime360,newsmast.social,Engineering,engineering,false +lime360,newsmast.social,History,history,false +lime360,newsmast.social,Humanities,humanities,false +lime360,newsmast.social,Journalism & Comment,news_comment_data,false +lime360,newsmast.social,Philosophy,philosophy,false +lime360,newsmast.social,Social Media,social_media,false +lime360,newsmast.social,Social Sciences,social_sciences,false +lime360,newsmast.social,Technology,technology,false +lime360,newsmast.social,Ukraine Invasion,ukraine_invasion,false +lime360,newsmast.social,Weather,weather,false +lime360,newsmast.social,Programming,programming,true +kevlong,mastodon.social,Politics,politics,false +kevlong,mastodon.social,Science,science,false +kevlong,mastodon.social,US Politics,us_politics,false +kevlong,mastodon.social,Sport,sport,true +yoda,mastodon.ir0k.de,Breaking News,breaking_news,false +yoda,mastodon.ir0k.de,Gaming,gaming,false +yoda,mastodon.ir0k.de,Humanities,humanities,false +yoda,mastodon.ir0k.de,Philosophy,philosophy,false +yoda,mastodon.ir0k.de,Technology,technology,false +yoda,mastodon.ir0k.de,Movies,movies,true +LosGrandeFocco,afterspace.rocks,AI,ai,false +LosGrandeFocco,afterspace.rocks,Breaking News,breaking_news,false +LosGrandeFocco,afterspace.rocks,Democracy & Human Rights,democracy_human_rights,false +tomo,newsmast.social,Music,music,false +tomo,newsmast.social,Sport,sport,false +tomo,newsmast.social,Technology,technology,false +tomo,newsmast.social,TV & Radio,tv_radio,false +tomo,newsmast.social,Weather,weather,false +tomo,newsmast.social,Social Media,social_media,true +ppttest456,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +ppttest456,newsmast.social,Government & Policy,government_policy,false +ppttest456,newsmast.social,Healthcare,healthcare,false +ppttest456,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false +ppttest456,newsmast.social,Law & Justice,law_justice,false +ppttest456,newsmast.social,Politics,politics,false +ppttest456,newsmast.social,Poverty & Inequality,poverty_inequality,false +ppttest456,newsmast.social,US Politics,us_politics,false +ppttest456,newsmast.social,Academia & Research,academia_research,true +Rebeccamwrites,mastodon.gamedev.place,Creative Arts,creative_arts,false +Rebeccamwrites,mastodon.gamedev.place,History,history,false +Rebeccamwrites,mastodon.gamedev.place,Humanities,humanities,false +Rebeccamwrites,mastodon.gamedev.place,Pets,pets,false +Rebeccamwrites,mastodon.gamedev.place,Science,science,false +Rebeccamwrites,mastodon.gamedev.place,Space,space,false +Rebeccamwrites,mastodon.gamedev.place,Technology,technology,false +Rebeccamwrites,mastodon.gamedev.place,TV & Radio,tv_radio,false +Rebeccamwrites,mastodon.gamedev.place,Visual Arts,visual_arts,false +Rebeccamwrites,mastodon.gamedev.place,Gaming,gaming,true +yemyatthu,c.im,Journalism & Comment,news_comment_data,false +yemyatthu,c.im,Social Media,social_media,false +yemyatthu,c.im,Ukraine Invasion,ukraine_invasion,false +yemyatthu,c.im,Weather,weather,false +yemyatthu,c.im,Breaking News,breaking_news,true +testpp34,newsmast.social,Academia & Research,academia_research,false +testpp34,newsmast.social,Healthcare,healthcare,false +testpp34,newsmast.social,Law & Justice,law_justice,false +testpp34,newsmast.social,Politics,politics,false +testpp34,newsmast.social,US Politics,us_politics,false +testpp34,newsmast.social,Government & Policy,government_policy,true +freelix,layer8.space,Visual Arts,visual_arts,false +normalniklas,mastodonsweden.se,Biodiversity & Rewilding,biodiversity_rewilding,false +normalniklas,mastodonsweden.se,Climate change,climate_change,false +normalniklas,mastodonsweden.se,Energy & Pollution,energy_pollution,false +normalniklas,mastodonsweden.se,Environment,environment,false +normalniklas,mastodonsweden.se,Gaming,gaming,false +normalniklas,mastodonsweden.se,Movies,movies,false +normalniklas,mastodonsweden.se,Music,music,false +thedogspaw,mastodon.social,Weather,weather,false +_youssef_0k,newsmast.social,Academia & Research,academia_research,false +_youssef_0k,newsmast.social,Activism & Civil Rights,activism_civil_rights,false +Argyle13,xarxa.cloud,Activism & Civil Rights,activism_civil_rights,false +Argyle13,xarxa.cloud,AI,ai,false +Argyle13,xarxa.cloud,Biodiversity & Rewilding,biodiversity_rewilding,false +Argyle13,xarxa.cloud,Biology,biology,false +Argyle13,xarxa.cloud,Books & Literature,books_literature,false +Argyle13,xarxa.cloud,Breaking News,breaking_news,false +Argyle13,xarxa.cloud,Business,business,false +Argyle13,xarxa.cloud,Chemistry,chemistry,false +Argyle13,xarxa.cloud,Climate change,climate_change,false +Argyle13,xarxa.cloud,Creative Arts,creative_arts,false +Argyle13,xarxa.cloud,Democracy & Human Rights,democracy_human_rights,false +Argyle13,xarxa.cloud,Energy & Pollution,energy_pollution,false +Argyle13,xarxa.cloud,Engineering,engineering,false +Argyle13,xarxa.cloud,Environment,environment,false +Argyle13,xarxa.cloud,Food & Drink,food_drink,false +Argyle13,xarxa.cloud,Football,football,false +Argyle13,xarxa.cloud,Gaming,gaming,false +CheekyMonkey75,mastodonapp.uk,Academia & Research,academia_research,false +CheekyMonkey75,mastodonapp.uk,AI,ai,false +CheekyMonkey75,mastodonapp.uk,Biodiversity & Rewilding,biodiversity_rewilding,false +CheekyMonkey75,mastodonapp.uk,Breaking News,breaking_news,false +CheekyMonkey75,mastodonapp.uk,Climate change,climate_change,false +CheekyMonkey75,mastodonapp.uk,Energy & Pollution,energy_pollution,false +CheekyMonkey75,mastodonapp.uk,Environment,environment,false +CheekyMonkey75,mastodonapp.uk,Government & Policy,government_policy,false +CheekyMonkey75,mastodonapp.uk,Healthcare,healthcare,false +CheekyMonkey75,mastodonapp.uk,History,history,false +CheekyMonkey75,mastodonapp.uk,Humanities,humanities,false +CheekyMonkey75,mastodonapp.uk,Law & Justice,law_justice,false +CheekyMonkey75,mastodonapp.uk,Journalism & Comment,news_comment_data,false +CheekyMonkey75,mastodonapp.uk,Physics,physics,false +CheekyMonkey75,mastodonapp.uk,Science,science,false +CheekyMonkey75,mastodonapp.uk,Social Sciences,social_sciences,false +CheekyMonkey75,mastodonapp.uk,Space,space,false +CheekyMonkey75,mastodonapp.uk,Technology,technology,false +CheekyMonkey75,mastodonapp.uk,Weather,weather,false +CheekyMonkey75,mastodonapp.uk,Politics,politics,true +Argyle13,xarxa.cloud,Government & Policy,government_policy,false +Argyle13,xarxa.cloud,Healthcare,healthcare,false +Argyle13,xarxa.cloud,History,history,false +Argyle13,xarxa.cloud,Humanities,humanities,false +Argyle13,xarxa.cloud,Humour,humour,false +Argyle13,xarxa.cloud,"Hunger, Disease & Water",hunger_disease_water,false +Argyle13,xarxa.cloud,Academia & Research,academia_research,false +normalniklas,mastodonsweden.se,Science,science,false +normalniklas,mastodonsweden.se,Space,space,false +normalniklas,mastodonsweden.se,Photography,photography,true +leo,twit.social,AI,ai,false +leo,twit.social,Biology,biology,false +leo,twit.social,Chemistry,chemistry,false +leo,twit.social,Engineering,engineering,false +leo,twit.social,Mathematics,mathematics,false +leo,twit.social,Physics,physics,false +leo,twit.social,Science,science,false +leo,twit.social,Space,space,false +leo,twit.social,Technology,technology,false +leo,twit.social,US Politics,us_politics,false +leo,twit.social,Programming,programming,true +DBailey635,mstdn.social,Academia & Research,academia_research,false +DBailey635,mstdn.social,Engineering,engineering,false +DBailey635,mstdn.social,Government & Policy,government_policy,false +DBailey635,mstdn.social,Social Media,social_media,false +DBailey635,mstdn.social,Space,space,false +DBailey635,mstdn.social,Technology,technology,false +DBailey635,mstdn.social,Breaking News,breaking_news,true +grislyeye,toot.io,Gaming,gaming,false +grislyeye,toot.io,Movies,movies,false +grislyeye,toot.io,Politics,politics,false +grislyeye,toot.io,Programming,programming,false +grislyeye,toot.io,Social Media,social_media,false +grislyeye,toot.io,Technology,technology,false +grislyeye,toot.io,TV & Radio,tv_radio,false +grislyeye,toot.io,Breaking News,breaking_news,true +grumpy_copi,social.tchncs.de,Breaking News,breaking_news,false +grumpy_copi,social.tchncs.de,Engineering,engineering,false +grumpy_copi,social.tchncs.de,Environment,environment,false +grumpy_copi,social.tchncs.de,Technology,technology,false +grumpy_copi,social.tchncs.de,Ukraine Invasion,ukraine_invasion,false +grumpy_copi,social.tchncs.de,Science,science,true +leobm,norden.social,AI,ai,false +leobm,norden.social,Engineering,engineering,false +leobm,norden.social,Journalism & Comment,news_comment_data,false +leobm,norden.social,Technology,technology,false +leobm,norden.social,Programming,programming,true +IlCava,mastodon.uno,Women’s Voices,women_voices,false +_youssef_0k,newsmast.social,Architecture & Design,architecture_design,false +_youssef_0k,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false +_youssef_0k,newsmast.social,Biology,biology,false +justwatch,newsmast.social,Academia & Research,academia_research,false +justwatch,newsmast.social,Activism & Civil Rights,activism_civil_rights,false +justwatch,newsmast.social,AI,ai,false +justwatch,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false +justwatch,newsmast.social,Black Voices,black_voices,false +justwatch,newsmast.social,Business,business,false +justwatch,newsmast.social,Climate change,climate_change,false +justwatch,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +justwatch,newsmast.social,Disabled Voices,disabled_voices,false +justwatch,newsmast.social,Energy & Pollution,energy_pollution,false +justwatch,newsmast.social,Engineering,engineering,false +justwatch,newsmast.social,Environment,environment,false +justwatch,newsmast.social,Government & Policy,government_policy,false +justwatch,newsmast.social,Healthcare,healthcare,false +justwatch,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false +justwatch,newsmast.social,Immigrants Rights,immigrants_rights,false +justwatch,newsmast.social,Indigenous Peoples,indigenous_peoples,false +justwatch,newsmast.social,Law & Justice,law_justice,false +justwatch,newsmast.social,LGBTQ+,lgbtq,false +justwatch,newsmast.social,Markets & Finance,markets_finance,false +justwatch,newsmast.social,Journalism & Comment,news_comment_data,false +justwatch,newsmast.social,Politics,politics,false +justwatch,newsmast.social,Poverty & Inequality,poverty_inequality,false +justwatch,newsmast.social,Programming,programming,false +justwatch,newsmast.social,Social Media,social_media,false +justwatch,newsmast.social,Technology,technology,false +justwatch,newsmast.social,Ukraine Invasion,ukraine_invasion,false +justwatch,newsmast.social,US Politics,us_politics,false +justwatch,newsmast.social,Weather,weather,false +justwatch,newsmast.social,Women’s Voices,women_voices,false +justwatch,newsmast.social,Workers Rights,workers_rights,false +justwatch,newsmast.social,Breaking News,breaking_news,true +IlCava,mastodon.uno,Science,science,true +ryankhan,newsmast.social,US Politics,us_politics,false +ryankhan,newsmast.social,Academia & Research,academia_research,true +shelldoor,newsmast.social,Technology,technology,false +janrif,newsmast.social,Activism & Civil Rights,activism_civil_rights,false +janrif,newsmast.social,AI,ai,false +janrif,newsmast.social,Breaking News,breaking_news,false +OlPatchy2Eyes,ieji.de,Humour,humour,false +saskia,newsmast.social,Women’s Voices,women_voices,false +mjgardner,social.sdf.org,Social Media,social_media,false +CaptE,mastodon.social,Architecture & Design,architecture_design,false +CaptE,mastodon.social,Biodiversity & Rewilding,biodiversity_rewilding,false +CaptE,mastodon.social,Books & Literature,books_literature,false +CaptE,mastodon.social,Climate change,climate_change,false +CaptE,mastodon.social,Food & Drink,food_drink,false +CaptE,mastodon.social,Humanities,humanities,false +CaptE,mastodon.social,Humour,humour,false +CaptE,mastodon.social,Music,music,false +CaptE,mastodon.social,Nature & Wildlife,nature_wildlife,false +CaptE,mastodon.social,Pets,pets,false +CaptE,mastodon.social,Social Media,social_media,false +ambientdread,toot.io,Academia & Research,academia_research,false +ambientdread,toot.io,Breaking News,breaking_news,false +ambientdread,toot.io,Democracy & Human Rights,democracy_human_rights,false +ambientdread,toot.io,Government & Policy,government_policy,false +ambientdread,toot.io,Healthcare,healthcare,false +ambientdread,toot.io,History,history,false +ambientdread,toot.io,Humanities,humanities,false +ambientdread,toot.io,"Hunger, Disease & Water",hunger_disease_water,false +ambientdread,toot.io,Law & Justice,law_justice,false +ambientdread,toot.io,Philosophy,philosophy,false +ambientdread,toot.io,Politics,politics,false +ambientdread,toot.io,Poverty & Inequality,poverty_inequality,false +ambientdread,toot.io,Social Media,social_media,false +ambientdread,toot.io,Social Sciences,social_sciences,false +ambientdread,toot.io,Ukraine Invasion,ukraine_invasion,false +ambientdread,toot.io,US Politics,us_politics,false +ambientdread,toot.io,Weather,weather,false +ambientdread,toot.io,Journalism & Comment,news_comment_data,true +CaptE,mastodon.social,Weather,weather,false +CaptE,mastodon.social,Women’s Voices,women_voices,false +snowka,scholar.social,Books & Literature,books_literature,false +snowka,scholar.social,Environment,environment,false +snowka,scholar.social,Humanities,humanities,false +snowka,scholar.social,Music,music,false +snowka,scholar.social,Breaking News,breaking_news,true +CaptE,mastodon.social,Breaking News,breaking_news,true +wbbdaily,flipboard.social,Social Media,social_media,false +EMcParland,newsmast.social,Breaking News,breaking_news,false +EMcParland,newsmast.social,Government & Policy,government_policy,false +EMcParland,newsmast.social,Journalism & Comment,news_comment_data,false +EMcParland,newsmast.social,Politics,politics,false +EMcParland,newsmast.social,Social Media,social_media,false +EMcParland,newsmast.social,Ukraine Invasion,ukraine_invasion,true +nchls,mas.to,AI,ai,false +nchls,mas.to,Food & Drink,food_drink,false +nchls,mas.to,Movies,movies,false +nchls,mas.to,Music,music,false +nchls,mas.to,Technology,technology,true +eob,social.coop,Breaking News,breaking_news,false +eob,social.coop,Business,business,false +eob,social.coop,Chemistry,chemistry,false +eob,social.coop,Climate change,climate_change,false +eob,social.coop,Democracy & Human Rights,democracy_human_rights,false +eob,social.coop,Engineering,engineering,false +_youssef_0k,newsmast.social,Black Voices,black_voices,false +minmaunghein,mastodon.social,AI,ai,false +minmaunghein,mastodon.social,Chemistry,chemistry,false +minmaunghein,mastodon.social,Engineering,engineering,false +minmaunghein,mastodon.social,Mathematics,mathematics,false +minmaunghein,mastodon.social,Physics,physics,false +minmaunghein,mastodon.social,Programming,programming,false +minmaunghein,mastodon.social,Science,science,false +Addictions2024,theaddict.ink,AI,ai,false +Addictions2024,theaddict.ink,Breaking News,breaking_news,false +Addictions2024,theaddict.ink,Social Media,social_media,false +Addictions2024,theaddict.ink,Weather,weather,false +Addictions2024,theaddict.ink,Technology,technology,true +minmaunghein,mastodon.social,Space,space,false +minmaunghein,mastodon.social,Technology,technology,false +minmaunghein,mastodon.social,Biology,biology,true +shelldoor,newsmast.social,Journalism & Comment,news_comment_data,true +Zed,infosec.exchange,Climate change,climate_change,false +Zed,infosec.exchange,Democracy & Human Rights,democracy_human_rights,false +Zed,infosec.exchange,Government & Policy,government_policy,false +Zed,infosec.exchange,Movies,movies,false +Zed,infosec.exchange,Politics,politics,false +Zed,infosec.exchange,Social Sciences,social_sciences,false +Zed,infosec.exchange,Technology,technology,false +Zed,infosec.exchange,AI,ai,true +darth_akeda,mastodon.social,Black Voices,black_voices,false +darth_akeda,mastodon.social,Breaking News,breaking_news,false +darth_akeda,mastodon.social,Democracy & Human Rights,democracy_human_rights,false +darth_akeda,mastodon.social,Government & Policy,government_policy,false +darth_akeda,mastodon.social,Indigenous Peoples,indigenous_peoples,false +mjgardner,social.sdf.org,Humour,humour,false +mjgardner,social.sdf.org,Mental Health & Wellbeing,mental_health_wellbeing,false +darth_akeda,mastodon.social,Journalism & Comment,news_comment_data,false +darth_akeda,mastodon.social,Poverty & Inequality,poverty_inequality,false +darth_akeda,mastodon.social,Social Media,social_media,false +darth_akeda,mastodon.social,Technology,technology,false +darth_akeda,mastodon.social,US Politics,us_politics,false +darth_akeda,mastodon.social,US Sport,us_sport,true +Curiosa2Blue,mstdn.social,Academia & Research,academia_research,false +Curiosa2Blue,mstdn.social,Activism & Civil Rights,activism_civil_rights,false +Curiosa2Blue,mstdn.social,AI,ai,false +Curiosa2Blue,mstdn.social,Biodiversity & Rewilding,biodiversity_rewilding,false +Curiosa2Blue,mstdn.social,Biology,biology,false +Curiosa2Blue,mstdn.social,Books & Literature,books_literature,false +yvz,mstdn.social,Academia & Research,academia_research,false +yvz,mstdn.social,AI,ai,false +yvz,mstdn.social,Biology,biology,false +yvz,mstdn.social,Breaking News,breaking_news,false +yvz,mstdn.social,Chemistry,chemistry,false +yvz,mstdn.social,Democracy & Human Rights,democracy_human_rights,false +yvz,mstdn.social,Engineering,engineering,false +yvz,mstdn.social,Government & Policy,government_policy,false +yvz,mstdn.social,Healthcare,healthcare,false +yvz,mstdn.social,"Hunger, Disease & Water",hunger_disease_water,false +yvz,mstdn.social,Law & Justice,law_justice,false +yvz,mstdn.social,Mathematics,mathematics,false +yvz,mstdn.social,Journalism & Comment,news_comment_data,false +yvz,mstdn.social,Physics,physics,false +yvz,mstdn.social,Politics,politics,false +Curiosa2Blue,mstdn.social,Business,business,false +Curiosa2Blue,mstdn.social,Climate change,climate_change,false +Curiosa2Blue,mstdn.social,Creative Arts,creative_arts,false +Curiosa2Blue,mstdn.social,Democracy & Human Rights,democracy_human_rights,false +Curiosa2Blue,mstdn.social,Energy & Pollution,energy_pollution,false +Curiosa2Blue,mstdn.social,Environment,environment,false +Curiosa2Blue,mstdn.social,Food & Drink,food_drink,false +Curiosa2Blue,mstdn.social,Government & Policy,government_policy,false +Curiosa2Blue,mstdn.social,Healthcare,healthcare,false +Curiosa2Blue,mstdn.social,History,history,false +Curiosa2Blue,mstdn.social,Humanities,humanities,false +Curiosa2Blue,mstdn.social,Humour,humour,false +Curiosa2Blue,mstdn.social,"Hunger, Disease & Water",hunger_disease_water,false +Curiosa2Blue,mstdn.social,Immigrants Rights,immigrants_rights,false +Curiosa2Blue,mstdn.social,Law & Justice,law_justice,false +Curiosa2Blue,mstdn.social,Mental Health & Wellbeing,mental_health_wellbeing,false +Curiosa2Blue,mstdn.social,Music,music,false +Curiosa2Blue,mstdn.social,Nature & Wildlife,nature_wildlife,false +Curiosa2Blue,mstdn.social,Journalism & Comment,news_comment_data,false +Curiosa2Blue,mstdn.social,Pets,pets,false +Curiosa2Blue,mstdn.social,Philosophy,philosophy,false +Curiosa2Blue,mstdn.social,Photography,photography,false +Curiosa2Blue,mstdn.social,Physics,physics,false +Curiosa2Blue,mstdn.social,Politics,politics,false +Curiosa2Blue,mstdn.social,Poverty & Inequality,poverty_inequality,false +Curiosa2Blue,mstdn.social,Puzzles,puzzles,false +Curiosa2Blue,mstdn.social,Science,science,false +Curiosa2Blue,mstdn.social,Social Media,social_media,false +Curiosa2Blue,mstdn.social,Social Sciences,social_sciences,false +Curiosa2Blue,mstdn.social,Space,space,false +Curiosa2Blue,mstdn.social,Technology,technology,false +Curiosa2Blue,mstdn.social,Travel,travel,false +Curiosa2Blue,mstdn.social,TV & Radio,tv_radio,false +Curiosa2Blue,mstdn.social,Ukraine Invasion,ukraine_invasion,false +Curiosa2Blue,mstdn.social,US Politics,us_politics,false +Curiosa2Blue,mstdn.social,Visual Arts,visual_arts,false +Curiosa2Blue,mstdn.social,Weather,weather,false +Curiosa2Blue,mstdn.social,Women’s Voices,women_voices,false +Curiosa2Blue,mstdn.social,Workers Rights,workers_rights,false +Curiosa2Blue,mstdn.social,Breaking News,breaking_news,true +thedogspaw,mastodon.social,Performing Arts,performing_arts,false +_youssef_0k,newsmast.social,Books & Literature,books_literature,false +madjo,mstdn.social,AI,ai,false +madjo,mstdn.social,Architecture & Design,architecture_design,false +madjo,mstdn.social,Biology,biology,false +madjo,mstdn.social,Books & Literature,books_literature,false +kamin,social.kghorvath.com,Breaking News,breaking_news,false +kamin,social.kghorvath.com,Music,music,false +kamin,social.kghorvath.com,Journalism & Comment,news_comment_data,false +kamin,social.kghorvath.com,US Sport,us_sport,false +kamin,social.kghorvath.com,Technology,technology,true +madjo,mstdn.social,Breaking News,breaking_news,false +madjo,mstdn.social,Chemistry,chemistry,false +madjo,mstdn.social,Democracy & Human Rights,democracy_human_rights,false +madjo,mstdn.social,Engineering,engineering,false +wbbdaily,flipboard.social,Humanities,humanities,false +wbbdaily,flipboard.social,Sport,sport,false +wbbdaily,flipboard.social,Technology,technology,false +_youssef_0k,newsmast.social,Breaking News,breaking_news,false +wbbdaily,flipboard.social,History,history,true +madjo,mstdn.social,Food & Drink,food_drink,false +madjo,mstdn.social,Gaming,gaming,false +madjo,mstdn.social,Humour,humour,false +madjo,mstdn.social,"Hunger, Disease & Water",hunger_disease_water,false +madjo,mstdn.social,Mathematics,mathematics,false +madjo,mstdn.social,Creative Arts,creative_arts,true +marcelo,newsmast.social,History,history,false +marcelo,newsmast.social,Journalism & Comment,news_comment_data,false +marcelo,newsmast.social,Philosophy,philosophy,false +marcelo,newsmast.social,Politics,politics,false +marcelo,newsmast.social,Social Sciences,social_sciences,false +marcelo,newsmast.social,Ukraine Invasion,ukraine_invasion,false +marcelo,newsmast.social,Democracy & Human Rights,democracy_human_rights,true +pixel,urusai.social,Humour,humour,false +pixel,urusai.social,Programming,programming,false +pixel,urusai.social,Science,science,false +pixel,urusai.social,Technology,technology,false +pixel,urusai.social,TV & Radio,tv_radio,false +pixel,urusai.social,Gaming,gaming,true +pinkoos,med-mastodon.com,AI,ai,false +pinkoos,med-mastodon.com,Biology,biology,false +pinkoos,med-mastodon.com,Food & Drink,food_drink,false +pinkoos,med-mastodon.com,Government & Policy,government_policy,false +pinkoos,med-mastodon.com,History,history,false +pinkoos,med-mastodon.com,Humanities,humanities,false +pinkoos,med-mastodon.com,Movies,movies,false +pinkoos,med-mastodon.com,Music,music,false +pinkoos,med-mastodon.com,Nature & Wildlife,nature_wildlife,false +pinkoos,med-mastodon.com,Journalism & Comment,news_comment_data,false +pinkoos,med-mastodon.com,Politics,politics,false +pinkoos,med-mastodon.com,Science,science,false +pinkoos,med-mastodon.com,Space,space,false +pinkoos,med-mastodon.com,Technology,technology,false +pinkoos,med-mastodon.com,Travel,travel,false +pinkoos,med-mastodon.com,TV & Radio,tv_radio,false +pinkoos,med-mastodon.com,US Politics,us_politics,false +pinkoos,med-mastodon.com,Breaking News,breaking_news,true +ekonomism,arvr.social,AI,ai,false +ekonomism,arvr.social,Government & Policy,government_policy,false +ekonomism,arvr.social,Healthcare,healthcare,false +ekonomism,arvr.social,Programming,programming,false +ekonomism,arvr.social,Science,science,false +ekonomism,arvr.social,Social Sciences,social_sciences,false +ekonomism,arvr.social,Ukraine Invasion,ukraine_invasion,false +ekonomism,arvr.social,Breaking News,breaking_news,true +_youssef_0k,newsmast.social,Business,business,false +madjo,mstdn.social,Mental Health & Wellbeing,mental_health_wellbeing,false +madjo,mstdn.social,Movies,movies,false +madjo,mstdn.social,Music,music,false +madjo,mstdn.social,Nature & Wildlife,nature_wildlife,false +madjo,mstdn.social,Journalism & Comment,news_comment_data,false +madjo,mstdn.social,Performing Arts,performing_arts,false +madjo,mstdn.social,Pets,pets,false +madjo,mstdn.social,Photography,photography,false +madjo,mstdn.social,Physics,physics,false +yzsm,mastodon.social,Academia & Research,academia_research,false +yzsm,mastodon.social,AI,ai,false +yzsm,mastodon.social,Biology,biology,false +yzsm,mastodon.social,Breaking News,breaking_news,false +yzsm,mastodon.social,Chemistry,chemistry,false +yzsm,mastodon.social,Democracy & Human Rights,democracy_human_rights,false +yzsm,mastodon.social,Engineering,engineering,false +yzsm,mastodon.social,Government & Policy,government_policy,false +yzsm,mastodon.social,Healthcare,healthcare,false +yzsm,mastodon.social,"Hunger, Disease & Water",hunger_disease_water,false +yzsm,mastodon.social,Law & Justice,law_justice,false +yzsm,mastodon.social,Mathematics,mathematics,false +yzsm,mastodon.social,Journalism & Comment,news_comment_data,false +yzsm,mastodon.social,Physics,physics,false +yzsm,mastodon.social,Politics,politics,false +yzsm,mastodon.social,Poverty & Inequality,poverty_inequality,false +yzsm,mastodon.social,Programming,programming,false +yzsm,mastodon.social,Science,science,false +yzsm,mastodon.social,Social Media,social_media,false +yzsm,mastodon.social,Space,space,false +yzsm,mastodon.social,Ukraine Invasion,ukraine_invasion,false +yzsm,mastodon.social,US Politics,us_politics,false +yzsm,mastodon.social,Weather,weather,false +yzsm,mastodon.social,Technology,technology,true +madjo,mstdn.social,Poverty & Inequality,poverty_inequality,false +madjo,mstdn.social,Programming,programming,false +madjo,mstdn.social,Puzzles,puzzles,false +madjo,mstdn.social,Science,science,false +madjo,mstdn.social,Social Media,social_media,false +madjo,mstdn.social,Space,space,false +ekonomism,newsmast.social,Government & Policy,government_policy,false +ekonomism,newsmast.social,Healthcare,healthcare,false +ekonomism,newsmast.social,Politics,politics,false +ekonomism,newsmast.social,Social Sciences,social_sciences,false +ekonomism,newsmast.social,Ukraine Invasion,ukraine_invasion,false +ekonomism,newsmast.social,Breaking News,breaking_news,true +madjo,mstdn.social,Technology,technology,false +madjo,mstdn.social,Travel,travel,false +madjo,mstdn.social,TV & Radio,tv_radio,false +madjo,mstdn.social,Ukraine Invasion,ukraine_invasion,false +madjo,mstdn.social,Visual Arts,visual_arts,false +madjo,mstdn.social,Weather,weather,false +_youssef_0k,newsmast.social,Chemistry,chemistry,false +alexdickson,newsmast.social,Creative Arts,creative_arts,false +nsmsn,mastodon.design,Academia & Research,academia_research,false +nsmsn,mastodon.design,Environment,environment,false +nsmsn,mastodon.design,Healthcare,healthcare,false +nsmsn,mastodon.design,History,history,false +nsmsn,mastodon.design,Music,music,false +nsmsn,mastodon.design,Philosophy,philosophy,false +nsmsn,mastodon.design,Physics,physics,false +nsmsn,mastodon.design,Science,science,false +nsmsn,mastodon.design,Space,space,false +nsmsn,mastodon.design,Visual Arts,visual_arts,false +nsmsn,mastodon.design,Architecture & Design,architecture_design,true +micheledm,mastodon.uno,AI,ai,false +micheledm,mastodon.uno,Books & Literature,books_literature,false +micheledm,mastodon.uno,Breaking News,breaking_news,false +micheledm,mastodon.uno,Business,business,false +micheledm,mastodon.uno,Engineering,engineering,false +private_penguin,mastodon.world,Football,football,false +private_penguin,mastodon.world,Gaming,gaming,false +private_penguin,mastodon.world,Pets,pets,false +private_penguin,mastodon.world,Technology,technology,false +private_penguin,mastodon.world,Humour,humour,true +youronlyone,newsmast.social,Social Media,social_media,false +youronlyone,newsmast.social,Disabled Voices,disabled_voices,false +youronlyone,newsmast.social,Weather,weather,false +micheledm,mastodon.uno,Food & Drink,food_drink,false +youronlyone,newsmast.social,History,history,false +micheledm,mastodon.uno,Gaming,gaming,false +youronlyone,newsmast.social,Food & Drink,food_drink,false +youronlyone,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false +micheledm,mastodon.uno,Markets & Finance,markets_finance,false +micheledm,mastodon.uno,Movies,movies,false +youronlyone,newsmast.social,Travel,travel,false +youronlyone,newsmast.social,Nature & Wildlife,nature_wildlife,false +micheledm,mastodon.uno,Music,music,false +micheledm,mastodon.uno,Journalism & Comment,news_comment_data,false +micheledm,mastodon.uno,Programming,programming,false +micheledm,mastodon.uno,Technology,technology,true +sebastian,pol.social,Social Media,social_media,false +sebastian,pol.social,Space,space,false +sebastian,pol.social,Technology,technology,false +sebastian,pol.social,Ukraine Invasion,ukraine_invasion,false +sebastian,pol.social,Programming,programming,true +catswhocode,mastodon.art,Gaming,gaming,false +catswhocode,mastodon.art,Mathematics,mathematics,false +catswhocode,mastodon.art,Music,music,false +catswhocode,mastodon.art,TV & Radio,tv_radio,false +Nathy,mastodon.art,AI,ai,false +Nathy,mastodon.art,Biodiversity & Rewilding,biodiversity_rewilding,false +Nathy,mastodon.art,Climate change,climate_change,false +Nathy,mastodon.art,Creative Arts,creative_arts,false +Nathy,mastodon.art,Democracy & Human Rights,democracy_human_rights,false +Argyle13,xarxa.cloud,Immigrants Rights,immigrants_rights,false +Argyle13,xarxa.cloud,Law & Justice,law_justice,false +Nathy,mastodon.art,Environment,environment,false +Nathy,mastodon.art,Food & Drink,food_drink,false +Argyle13,xarxa.cloud,LGBTQ+,lgbtq,false +Nathy,mastodon.art,History,history,false +Nathy,mastodon.art,Humanities,humanities,false +Nathy,mastodon.art,Humour,humour,false +Argyle13,xarxa.cloud,Markets & Finance,markets_finance,false +Nathy,mastodon.art,Mathematics,mathematics,false +Nathy,mastodon.art,Mental Health & Wellbeing,mental_health_wellbeing,false +Nathy,mastodon.art,Movies,movies,false +Nathy,mastodon.art,Music,music,false +Nathy,mastodon.art,Performing Arts,performing_arts,false +Nathy,mastodon.art,Pets,pets,false +Nathy,mastodon.art,Philosophy,philosophy,false +Nathy,mastodon.art,Photography,photography,false +Nathy,mastodon.art,Physics,physics,false +Nathy,mastodon.art,Poverty & Inequality,poverty_inequality,false +Nathy,mastodon.art,Programming,programming,false +Nathy,mastodon.art,Puzzles,puzzles,false +Nathy,mastodon.art,Science,science,false +Nathy,mastodon.art,Social Sciences,social_sciences,false +Argyle13,xarxa.cloud,Mathematics,mathematics,false +Argyle13,xarxa.cloud,Movies,movies,false +Argyle13,xarxa.cloud,Nature & Wildlife,nature_wildlife,false +Nathy,mastodon.art,Visual Arts,visual_arts,false +Argyle13,xarxa.cloud,Journalism & Comment,news_comment_data,false +Argyle13,xarxa.cloud,Performing Arts,performing_arts,false +Argyle13,xarxa.cloud,Philosophy,philosophy,false +janrif,newsmast.social,Business,business,false +janrif,newsmast.social,Government & Policy,government_policy,false +janrif,newsmast.social,Healthcare,healthcare,false +janrif,newsmast.social,History,history,false +janrif,newsmast.social,Humanities,humanities,false +researchnode,mastodon.social,Democracy & Human Rights,democracy_human_rights,false +researchnode,mastodon.social,Mathematics,mathematics,false +researchnode,mastodon.social,Politics,politics,false +researchnode,mastodon.social,Programming,programming,false +researchnode,mastodon.social,Science,science,false +researchnode,mastodon.social,Space,space,false +researchnode,mastodon.social,US Politics,us_politics,false +researchnode,mastodon.social,Academia & Research,academia_research,true +kevlong,mastodon.social,US Sport,us_sport,false +janrif,newsmast.social,Immigrants Rights,immigrants_rights,false +janrif,newsmast.social,Indigenous Peoples,indigenous_peoples,false +janrif,newsmast.social,Law & Justice,law_justice,false +janrif,newsmast.social,Markets & Finance,markets_finance,false +janrif,newsmast.social,Journalism & Comment,news_comment_data,false +janrif,newsmast.social,Philosophy,philosophy,false +m0bi,newsmast.social,Breaking News,breaking_news,false +m0bi,newsmast.social,Journalism & Comment,news_comment_data,false +m0bi,newsmast.social,Science,science,false +m0bi,newsmast.social,Space,space,false +m0bi,newsmast.social,Ukraine Invasion,ukraine_invasion,false +m0bi,newsmast.social,Programming,programming,true +twitchandmoan,c.im,Black Voices,black_voices,false +twitchandmoan,c.im,Creative Arts,creative_arts,false +twitchandmoan,c.im,Food & Drink,food_drink,false +twitchandmoan,c.im,Humour,humour,false +twitchandmoan,c.im,Movies,movies,false +twitchandmoan,c.im,Photography,photography,false +twitchandmoan,c.im,Social Media,social_media,false +twitchandmoan,c.im,TV & Radio,tv_radio,false +twitchandmoan,c.im,Visual Arts,visual_arts,false +twitchandmoan,c.im,Women’s Voices,women_voices,false +twitchandmoan,c.im,Gaming,gaming,true +DemocracyMattersALot,mstdn.social,Government & Policy,government_policy,false +DemocracyMattersALot,mstdn.social,Healthcare,healthcare,false +DemocracyMattersALot,mstdn.social,Law & Justice,law_justice,false +DemocracyMattersALot,mstdn.social,Politics,politics,false +DemocracyMattersALot,mstdn.social,US Politics,us_politics,true +billyanders,mstdn.social,AI,ai,false +billyanders,mstdn.social,Breaking News,breaking_news,false +billyanders,mstdn.social,Engineering,engineering,false +billyanders,mstdn.social,Law & Justice,law_justice,false +billyanders,mstdn.social,Programming,programming,false +billyanders,mstdn.social,Social Media,social_media,false +billyanders,mstdn.social,Technology,technology,false +billyanders,mstdn.social,Politics,politics,true +Nathy,mastodon.art,Books & Literature,books_literature,false +flynsarmy,mastodon.gamedev.place,Energy & Pollution,energy_pollution,false +Nathy,mastodon.art,Travel,travel,false +Nathy,mastodon.art,Nature & Wildlife,nature_wildlife,true +flynsarmy,mastodon.gamedev.place,Physics,physics,false +flynsarmy,mastodon.gamedev.place,Science,science,false +flynsarmy,mastodon.gamedev.place,Technology,technology,false +flynsarmy,mastodon.gamedev.place,Programming,programming,true +PamelaSchure,universeodon.com,AI,ai,false +PamelaSchure,universeodon.com,Biodiversity & Rewilding,biodiversity_rewilding,false +PamelaSchure,universeodon.com,Climate change,climate_change,false +PamelaSchure,universeodon.com,Politics,politics,false +PamelaSchure,universeodon.com,Technology,technology,false +PamelaSchure,universeodon.com,Ukraine Invasion,ukraine_invasion,false +PamelaSchure,universeodon.com,US Politics,us_politics,false +PamelaSchure,universeodon.com,Breaking News,breaking_news,true +truegem,mastodon.social,Architecture & Design,architecture_design,false +truegem,mastodon.social,Environment,environment,false +truegem,mastodon.social,History,history,false +truegem,mastodon.social,Humour,humour,false +truegem,mastodon.social,Movies,movies,false +truegem,mastodon.social,Programming,programming,false +truegem,mastodon.social,Puzzles,puzzles,false +truegem,mastodon.social,Technology,technology,false +truegem,mastodon.social,Travel,travel,false +truegem,mastodon.social,Breaking News,breaking_news,true +Argyle13,xarxa.cloud,Physics,physics,false +Argyle13,xarxa.cloud,Politics,politics,false +Argyle13,xarxa.cloud,Poverty & Inequality,poverty_inequality,false +Argyle13,xarxa.cloud,Programming,programming,false +Argyle13,xarxa.cloud,Puzzles,puzzles,false +Argyle13,xarxa.cloud,Science,science,false +Argyle13,xarxa.cloud,Social Media,social_media,false +Argyle13,xarxa.cloud,Social Sciences,social_sciences,false +Argyle13,xarxa.cloud,Space,space,false +Argyle13,xarxa.cloud,Sport,sport,false +harrylyon,newsmast.social,Activism & Civil Rights,activism_civil_rights,false +Argyle13,xarxa.cloud,Travel,travel,false +Argyle13,xarxa.cloud,TV & Radio,tv_radio,false +io,s.cafe,Breaking News,breaking_news,false +R3amD3,mastodon.social,Breaking News,breaking_news,false +R3amD3,mastodon.social,Movies,movies,false +R3amD3,mastodon.social,Music,music,false +R3amD3,mastodon.social,Journalism & Comment,news_comment_data,false +R3amD3,mastodon.social,Photography,photography,false +R3amD3,mastodon.social,Gaming,gaming,true +io,s.cafe,Science,science,false +io,s.cafe,Social Media,social_media,false +io,s.cafe,Space,space,false +io,s.cafe,Technology,technology,true +bernini,social.coop,Breaking News,breaking_news,false +bernini,social.coop,Environment,environment,false +bernini,social.coop,Mental Health & Wellbeing,mental_health_wellbeing,false +bernini,social.coop,Physics,physics,false +bernini,social.coop,Space,space,false +bernini,social.coop,AI,ai,true +zsotykai,mas.to,Books & Literature,books_literature,false +zsotykai,mas.to,Breaking News,breaking_news,false +zsotykai,mas.to,Engineering,engineering,false +zsotykai,mas.to,Movies,movies,false +zsotykai,mas.to,Journalism & Comment,news_comment_data,false +zsotykai,mas.to,Technology,technology,false +zsotykai,mas.to,Programming,programming,true +realgnomidad,newsmast.social,Academia & Research,academia_research,false +realgnomidad,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +realgnomidad,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false +realgnomidad,newsmast.social,Law & Justice,law_justice,false +realgnomidad,newsmast.social,Politics,politics,false +realgnomidad,newsmast.social,Poverty & Inequality,poverty_inequality,false +realgnomidad,newsmast.social,US Politics,us_politics,false +realgnomidad,newsmast.social,Government & Policy,government_policy,true +aloppnow,cunnin.me,AI,ai,false +aloppnow,cunnin.me,Books & Literature,books_literature,false +aloppnow,cunnin.me,Breaking News,breaking_news,false +aloppnow,cunnin.me,Climate change,climate_change,false +aloppnow,cunnin.me,Environment,environment,false +aloppnow,cunnin.me,Gaming,gaming,false +aloppnow,cunnin.me,Music,music,false +aloppnow,cunnin.me,Programming,programming,false +aloppnow,cunnin.me,Science,science,false +aloppnow,cunnin.me,Space,space,false +aloppnow,cunnin.me,US Politics,us_politics,false +aloppnow,cunnin.me,Visual Arts,visual_arts,false +aloppnow,cunnin.me,Technology,technology,true +notabird,mstdn.social,Government & Policy,government_policy,false +notabird,mstdn.social,Law & Justice,law_justice,false +notabird,mstdn.social,Journalism & Comment,news_comment_data,false +notabird,mstdn.social,Programming,programming,false +notabird,mstdn.social,Science,science,false +notabird,mstdn.social,Technology,technology,false +notabird,mstdn.social,US Politics,us_politics,false +notabird,mstdn.social,Breaking News,breaking_news,true +bibliotech,mastodon.social,Activism & Civil Rights,activism_civil_rights,false +bibliotech,mastodon.social,Black Voices,black_voices,false +bibliotech,mastodon.social,Books & Literature,books_literature,false +bibliotech,mastodon.social,Disabled Voices,disabled_voices,false +bibliotech,mastodon.social,Gaming,gaming,false +bibliotech,mastodon.social,History,history,false +bibliotech,mastodon.social,LGBTQ+,lgbtq,false +bibliotech,mastodon.social,Movies,movies,false +bibliotech,mastodon.social,Philosophy,philosophy,false +bibliotech,mastodon.social,Social Media,social_media,false +bibliotech,mastodon.social,Technology,technology,false +bibliotech,mastodon.social,TV & Radio,tv_radio,false +bibliotech,mastodon.social,Women’s Voices,women_voices,false +bibliotech,mastodon.social,Breaking News,breaking_news,true +amiya_rbehera,mas.to,Democracy & Human Rights,democracy_human_rights,false +amiya_rbehera,mas.to,"Hunger, Disease & Water",hunger_disease_water,false +amiya_rbehera,mas.to,Politics,politics,false +amiya_rbehera,mas.to,Poverty & Inequality,poverty_inequality,false +amiya_rbehera,mas.to,Academia & Research,academia_research,true +Roundtrip,federate.social,Architecture & Design,architecture_design,false +Roundtrip,federate.social,Books & Literature,books_literature,false +Roundtrip,federate.social,Breaking News,breaking_news,false +Roundtrip,federate.social,Government & Policy,government_policy,false +Roundtrip,federate.social,Law & Justice,law_justice,false +Roundtrip,federate.social,Movies,movies,false +Roundtrip,federate.social,Journalism & Comment,news_comment_data,false +Roundtrip,federate.social,Science,science,false +Roundtrip,federate.social,Space,space,false +Roundtrip,federate.social,Technology,technology,false +Roundtrip,federate.social,TV & Radio,tv_radio,false +Roundtrip,federate.social,US Politics,us_politics,false +Roundtrip,federate.social,Photography,photography,true +Argyle13,xarxa.cloud,US Politics,us_politics,false +Argyle13,xarxa.cloud,Weather,weather,false +Argyle13,xarxa.cloud,Women’s Voices,women_voices,false +Argyle13,xarxa.cloud,Workers Rights,workers_rights,false +_youssef_0k,newsmast.social,Climate change,climate_change,false +Argyle13,xarxa.cloud,Technology,technology,true +Hazelcrazygoatlady,sunbeam.city,Activism & Civil Rights,activism_civil_rights,false +Hazelcrazygoatlady,sunbeam.city,Architecture & Design,architecture_design,false +Hazelcrazygoatlady,sunbeam.city,Books & Literature,books_literature,false +Hazelcrazygoatlady,sunbeam.city,Environment,environment,false +Hazelcrazygoatlady,sunbeam.city,Indigenous Peoples,indigenous_peoples,false +Hazelcrazygoatlady,sunbeam.city,LGBTQ+,lgbtq,false +Hazelcrazygoatlady,sunbeam.city,Biodiversity & Rewilding,biodiversity_rewilding,true +_youssef_0k,newsmast.social,Creative Arts,creative_arts,false +janrif,newsmast.social,Social Media,social_media,false +janrif,newsmast.social,Social Sciences,social_sciences,false +janrif,newsmast.social,Technology,technology,false +janrif,newsmast.social,Ukraine Invasion,ukraine_invasion,false +janrif,newsmast.social,US Politics,us_politics,false +janrif,newsmast.social,Weather,weather,false +janrif,newsmast.social,Women’s Voices,women_voices,false +janrif,newsmast.social,Workers Rights,workers_rights,false +janrif,newsmast.social,Politics,politics,true +drakakis,universeodon.com,Books & Literature,books_literature,false +vlp00,newsmast.social,Breaking News,breaking_news,false +vlp00,newsmast.social,Engineering,engineering,false +vlp00,newsmast.social,Journalism & Comment,news_comment_data,false +vlp00,newsmast.social,Programming,programming,false +vlp00,newsmast.social,Social Media,social_media,false +vlp00,newsmast.social,Technology,technology,false +vlp00,newsmast.social,Ukraine Invasion,ukraine_invasion,false +drakakis,universeodon.com,History,history,false +drakakis,universeodon.com,Law & Justice,law_justice,false +drakakis,universeodon.com,Movies,movies,false +drakakis,universeodon.com,Music,music,false +drakakis,universeodon.com,Politics,politics,false +drakakis,universeodon.com,Poverty & Inequality,poverty_inequality,false +drakakis,universeodon.com,Social Media,social_media,false +drakakis,universeodon.com,Social Sciences,social_sciences,false +drakakis,universeodon.com,Technology,technology,false +drakakis,universeodon.com,TV & Radio,tv_radio,false +drakakis,universeodon.com,Ukraine Invasion,ukraine_invasion,false +JMMaok,mastodon.online,Breaking News,breaking_news,false +JMMaok,mastodon.online,Democracy & Human Rights,democracy_human_rights,false +JMMaok,mastodon.online,Journalism & Comment,news_comment_data,false +JMMaok,mastodon.online,Poverty & Inequality,poverty_inequality,false +JMMaok,mastodon.online,Social Media,social_media,false +JMMaok,mastodon.online,Social Sciences,social_sciences,false +JMMaok,mastodon.online,Technology,technology,false +JMMaok,mastodon.online,US Politics,us_politics,false +JMMaok,mastodon.online,Workers Rights,workers_rights,false +JMMaok,mastodon.online,Government & Policy,government_policy,true +instepphysio,newsmast.social,Academia & Research,academia_research,false +instepphysio,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false +instepphysio,newsmast.social,Climate change,climate_change,false +tschigi,swiss.social,Biodiversity & Rewilding,biodiversity_rewilding,false +tschigi,swiss.social,Climate change,climate_change,false +tschigi,swiss.social,Programming,programming,false +instepphysio,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +tschigi,swiss.social,Technology,technology,false +instepphysio,newsmast.social,Environment,environment,false +instepphysio,newsmast.social,Government & Policy,government_policy,false +instepphysio,newsmast.social,Healthcare,healthcare,false +instepphysio,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false +instepphysio,newsmast.social,Law & Justice,law_justice,false +drakakis,universeodon.com,Breaking News,breaking_news,true +CStJames,kolektiva.social,AI,ai,false +CStJames,kolektiva.social,Biology,biology,false +CStJames,kolektiva.social,Business,business,false +CStJames,kolektiva.social,Chemistry,chemistry,false +CStJames,kolektiva.social,Democracy & Human Rights,democracy_human_rights,false +CStJames,kolektiva.social,Football,football,false +CStJames,kolektiva.social,Government & Policy,government_policy,false +CStJames,kolektiva.social,Healthcare,healthcare,false +domy,mstdn.social,Programming,programming,false +CStJames,kolektiva.social,Markets & Finance,markets_finance,false +CStJames,kolektiva.social,Mathematics,mathematics,false +CStJames,kolektiva.social,Journalism & Comment,news_comment_data,false +CStJames,kolektiva.social,Physics,physics,false +CStJames,kolektiva.social,Politics,politics,false +CStJames,kolektiva.social,Programming,programming,false +CStJames,kolektiva.social,Science,science,false +CStJames,kolektiva.social,Social Media,social_media,false +CStJames,kolektiva.social,Space,space,false +CStJames,kolektiva.social,Sport,sport,false +CStJames,kolektiva.social,Technology,technology,false +CStJames,kolektiva.social,Ukraine Invasion,ukraine_invasion,false +CStJames,kolektiva.social,US Sport,us_sport,false +CStJames,kolektiva.social,Weather,weather,false +CStJames,kolektiva.social,Breaking News,breaking_news,true +harrylyon,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false +harrylyon,newsmast.social,Climate change,climate_change,false +harrylyon,newsmast.social,Disabled Voices,disabled_voices,false +harrylyon,newsmast.social,Energy & Pollution,energy_pollution,false +tne_556,mastodon.social,AI,ai,false +tne_556,mastodon.social,Democracy & Human Rights,democracy_human_rights,false +tne_556,mastodon.social,Engineering,engineering,false +tne_556,mastodon.social,"Hunger, Disease & Water",hunger_disease_water,false +tne_556,mastodon.social,Journalism & Comment,news_comment_data,false +tne_556,mastodon.social,Poverty & Inequality,poverty_inequality,false +tne_556,mastodon.social,Programming,programming,false +tne_556,mastodon.social,Social Media,social_media,false +tne_556,mastodon.social,Technology,technology,false +tne_556,mastodon.social,Ukraine Invasion,ukraine_invasion,false +tne_556,mastodon.social,Weather,weather,false +tne_556,mastodon.social,Breaking News,breaking_news,true +harrylyon,newsmast.social,Environment,environment,false +kimschulz,social.data.coop,AI,ai,false +kimschulz,social.data.coop,Biodiversity & Rewilding,biodiversity_rewilding,false +kimschulz,social.data.coop,Biology,biology,false +kimschulz,social.data.coop,Breaking News,breaking_news,false +kimschulz,social.data.coop,Chemistry,chemistry,false +kimschulz,social.data.coop,Climate change,climate_change,false +kimschulz,social.data.coop,Democracy & Human Rights,democracy_human_rights,false +kimschulz,social.data.coop,Energy & Pollution,energy_pollution,false +kimschulz,social.data.coop,Engineering,engineering,false +kimschulz,social.data.coop,Environment,environment,false +kimschulz,social.data.coop,"Hunger, Disease & Water",hunger_disease_water,false +kimschulz,social.data.coop,Mathematics,mathematics,false +kimschulz,social.data.coop,Journalism & Comment,news_comment_data,false +kimschulz,social.data.coop,Physics,physics,false +kimschulz,social.data.coop,Poverty & Inequality,poverty_inequality,false +kimschulz,social.data.coop,Programming,programming,false +kimschulz,social.data.coop,Science,science,false +kimschulz,social.data.coop,Social Media,social_media,false +kimschulz,social.data.coop,Space,space,false +kimschulz,social.data.coop,Ukraine Invasion,ukraine_invasion,false +kimschulz,social.data.coop,Weather,weather,false +kimschulz,social.data.coop,Technology,technology,true +cmonster,thecanadian.social,Journalism & Comment,news_comment_data,false +cmonster,thecanadian.social,Science,science,false +cmonster,thecanadian.social,US Sport,us_sport,false +cmonster,thecanadian.social,Weather,weather,false +cmonster,thecanadian.social,Space,space,true +tschigi,swiss.social,Space,space,true +worldbyisa,newsmast.social,Architecture & Design,architecture_design,false +worldbyisa,newsmast.social,Books & Literature,books_literature,false +worldbyisa,newsmast.social,Creative Arts,creative_arts,false +worldbyisa,newsmast.social,Nature & Wildlife,nature_wildlife,false +worldbyisa,newsmast.social,Travel,travel,true +youronlyone,c.im,History,history,false +ikuturso,mastodon.social,AI,ai,false +ikuturso,mastodon.social,Books & Literature,books_literature,false +ikuturso,mastodon.social,Democracy & Human Rights,democracy_human_rights,false +ikuturso,mastodon.social,Gaming,gaming,false +ikuturso,mastodon.social,Markets & Finance,markets_finance,false +ikuturso,mastodon.social,Movies,movies,false +ikuturso,mastodon.social,Politics,politics,false +ikuturso,mastodon.social,Poverty & Inequality,poverty_inequality,false +ikuturso,mastodon.social,Programming,programming,false +ikuturso,mastodon.social,Science,science,false +ikuturso,mastodon.social,Space,space,false +ikuturso,mastodon.social,Technology,technology,false +harrylyon,newsmast.social,Immigrants Rights,immigrants_rights,false +harrylyon,newsmast.social,Indigenous Peoples,indigenous_peoples,false +harrylyon,newsmast.social,LGBTQ+,lgbtq,false +catswhocode,mastodon.art,Technology,technology,true +harrylyon,newsmast.social,Black Voices,black_voices,true +_youssef_0k,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +aclrian,det.social,US Politics,us_politics,false +aclrian,det.social,Academia & Research,academia_research,false +aclrian,det.social,AI,ai,false +aclrian,det.social,Books & Literature,books_literature,false +aclrian,det.social,Breaking News,breaking_news,false +aclrian,det.social,Business,business,false +aclrian,det.social,Climate change,climate_change,false +aclrian,det.social,Gaming,gaming,false +aclrian,det.social,Government & Policy,government_policy,false +aclrian,det.social,Law & Justice,law_justice,false +aclrian,det.social,LGBTQ+,lgbtq,false +aclrian,det.social,Markets & Finance,markets_finance,false +aclrian,det.social,Movies,movies,false +aclrian,det.social,Music,music,false +aclrian,det.social,Journalism & Comment,news_comment_data,false +aclrian,det.social,Politics,politics,false +aclrian,det.social,Programming,programming,false +aclrian,det.social,Puzzles,puzzles,false +aclrian,det.social,Science,science,false +aclrian,det.social,Social Media,social_media,false +aclrian,det.social,Social Media,social_media,false +aclrian,det.social,Space,space,false +aclrian,det.social,Space,space,false +aclrian,det.social,Technology,technology,false +aclrian,det.social,Technology,technology,false +aclrian,det.social,Ukraine Invasion,ukraine_invasion,false +aclrian,det.social,Weather,weather,false +aclrian,det.social,US Politics,us_politics,true +cmonster,thecanadian.social,Books & Literature,books_literature,false +cmonster,thecanadian.social,Music,music,false +cmonster,thecanadian.social,TV & Radio,tv_radio,false +cmonster,thecanadian.social,Movies,movies,false +cmonster,thecanadian.social,Visual Arts,visual_arts,false +_youssef_0k,newsmast.social,Disabled Voices,disabled_voices,false +sydney_aokay,mastodon.social,Academia & Research,academia_research,false +_youssef_0k,newsmast.social,Energy & Pollution,energy_pollution,false +sydney_aokay,mastodon.social,AI,ai,false +sydney_aokay,mastodon.social,Architecture & Design,architecture_design,false +sydney_aokay,mastodon.social,Biodiversity & Rewilding,biodiversity_rewilding,false +sydney_aokay,mastodon.social,Biology,biology,false +sydney_aokay,mastodon.social,Black Voices,black_voices,false +sydney_aokay,mastodon.social,Books & Literature,books_literature,false +sydney_aokay,mastodon.social,Chemistry,chemistry,false +sydney_aokay,mastodon.social,Climate change,climate_change,false +sydney_aokay,mastodon.social,Creative Arts,creative_arts,false +youronlyone,c.im,Biodiversity & Rewilding,biodiversity_rewilding,false +youronlyone,c.im,Books & Literature,books_literature,false +youronlyone,c.im,Disabled Voices,disabled_voices,false +youronlyone,c.im,Environment,environment,false +youronlyone,c.im,Food & Drink,food_drink,false +youronlyone,c.im,Immigrants Rights,immigrants_rights,false +youronlyone,c.im,Mental Health & Wellbeing,mental_health_wellbeing,false +youronlyone,c.im,Movies,movies,false +youronlyone,c.im,Photography,photography,false +youronlyone,c.im,Programming,programming,false +youronlyone,c.im,Science,science,false +youronlyone,c.im,Technology,technology,false +youronlyone,c.im,Travel,travel,false +youronlyone,c.im,Weather,weather,false +youronlyone,c.im,Breaking News,breaking_news,true +youronlyone,c.im,Social Media,social_media,false +youronlyone,c.im,Academia & Research,academia_research,false +youronlyone,c.im,Engineering,engineering,false +youronlyone,c.im,Biology,biology,false +youronlyone,c.im,Chemistry,chemistry,false +youronlyone,c.im,Mathematics,mathematics,false +youronlyone,c.im,Physics,physics,false +youronlyone,c.im,Space,space,false +youronlyone,c.im,Gaming,gaming,false +youronlyone,c.im,TV & Radio,tv_radio,false +youronlyone,c.im,Nature & Wildlife,nature_wildlife,false +youronlyone,c.im,Humour,humour,false +sithubo_pt,newsmast.social,Academia & Research,academia_research,false +sithubo_pt,newsmast.social,Activism & Civil Rights,activism_civil_rights,false +sithubo_pt,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false +sithubo_pt,newsmast.social,Black Voices,black_voices,false +sithubo_pt,newsmast.social,Climate change,climate_change,false +sithubo_pt,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +sithubo_pt,newsmast.social,Disabled Voices,disabled_voices,false +sithubo_pt,newsmast.social,Energy & Pollution,energy_pollution,false +sithubo_pt,newsmast.social,Environment,environment,false +sithubo_pt,newsmast.social,Government & Policy,government_policy,false +sithubo_pt,newsmast.social,Healthcare,healthcare,false +sithubo_pt,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false +sithubo_pt,newsmast.social,Immigrants Rights,immigrants_rights,false +sithubo_pt,newsmast.social,Indigenous Peoples,indigenous_peoples,false +markr,newsmast.social,AI,ai,false +markr,newsmast.social,Architecture & Design,architecture_design,false +markr,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false +markr,newsmast.social,Biology,biology,false +markr,newsmast.social,Books & Literature,books_literature,false +markr,newsmast.social,Chemistry,chemistry,false +markr,newsmast.social,Climate change,climate_change,false +markr,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +markr,newsmast.social,Energy & Pollution,energy_pollution,false +markr,newsmast.social,Engineering,engineering,false +markr,newsmast.social,Environment,environment,false +markr,newsmast.social,Gaming,gaming,false +markr,newsmast.social,History,history,false +markr,newsmast.social,Humanities,humanities,false +markr,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false +markr,newsmast.social,Mathematics,mathematics,false +markr,newsmast.social,Movies,movies,false +markr,newsmast.social,Music,music,false +markr,newsmast.social,Journalism & Comment,news_comment_data,false +markr,newsmast.social,Performing Arts,performing_arts,false +markr,newsmast.social,Philosophy,philosophy,false +markr,newsmast.social,Photography,photography,false +markr,newsmast.social,Physics,physics,false +markr,newsmast.social,Poverty & Inequality,poverty_inequality,false +markr,newsmast.social,Programming,programming,false +markr,newsmast.social,Science,science,false +markr,newsmast.social,Social Sciences,social_sciences,false +markr,newsmast.social,Space,space,false +markr,newsmast.social,Technology,technology,false +markr,newsmast.social,TV & Radio,tv_radio,false +markr,newsmast.social,Visual Arts,visual_arts,false +markr,newsmast.social,Breaking News,breaking_news,true +mjgardner,social.sdf.org,Gaming,gaming,false +mjgardner,social.sdf.org,Music,music,false +mjgardner,social.sdf.org,Space,space,false +mjgardner,social.sdf.org,Technology,technology,false +mjgardner,social.sdf.org,Programming,programming,true +trygvekalland,snabelen.no,Democracy & Human Rights,democracy_human_rights,false +trygvekalland,snabelen.no,Politics,politics,false +trygvekalland,snabelen.no,Science,science,false +trygvekalland,snabelen.no,Technology,technology,false +trygvekalland,snabelen.no,Ukraine Invasion,ukraine_invasion,false +trygvekalland,snabelen.no,Breaking News,breaking_news,true +sydney_aokay,mastodon.social,Democracy & Human Rights,democracy_human_rights,false +sydney_aokay,mastodon.social,Disabled Voices,disabled_voices,false +Xaq,mastodon.sdf.org,Journalism & Comment,news_comment_data,false +Xaq,mastodon.sdf.org,Physics,physics,false +Xaq,mastodon.sdf.org,Science,science,false +Xaq,mastodon.sdf.org,Ukraine Invasion,ukraine_invasion,false +Xaq,mastodon.sdf.org,Space,space,true +Jason381,mastodon.social,Government & Policy,government_policy,false +Jason381,mastodon.social,Science,science,false +Jason381,mastodon.social,Social Media,social_media,false +Jason381,mastodon.social,Technology,technology,false +Jason381,mastodon.social,Breaking News,breaking_news,true +yvz,mstdn.social,Poverty & Inequality,poverty_inequality,false +yvz,mstdn.social,Programming,programming,false +yvz,mstdn.social,Science,science,false +yvz,mstdn.social,Social Media,social_media,false +yvz,mstdn.social,Space,space,false +yvz,mstdn.social,Ukraine Invasion,ukraine_invasion,false +yvz,mstdn.social,US Politics,us_politics,false +yvz,mstdn.social,Weather,weather,false +Jimellisuk,mstdn.social,Academia & Research,academia_research,false +Jimellisuk,mstdn.social,Activism & Civil Rights,activism_civil_rights,false +Jimellisuk,mstdn.social,AI,ai,false +Jimellisuk,mstdn.social,Architecture & Design,architecture_design,false +Jimellisuk,mstdn.social,Biodiversity & Rewilding,biodiversity_rewilding,false +Jimellisuk,mstdn.social,Biology,biology,false +Jimellisuk,mstdn.social,Books & Literature,books_literature,false +Jimellisuk,mstdn.social,Chemistry,chemistry,false +Jimellisuk,mstdn.social,Climate change,climate_change,false +Jimellisuk,mstdn.social,Democracy & Human Rights,democracy_human_rights,false +Jimellisuk,mstdn.social,Energy & Pollution,energy_pollution,false +Jimellisuk,mstdn.social,Engineering,engineering,false +Jimellisuk,mstdn.social,Environment,environment,false +Jimellisuk,mstdn.social,Gaming,gaming,false +Jimellisuk,mstdn.social,Government & Policy,government_policy,false +Jimellisuk,mstdn.social,Healthcare,healthcare,false +Jimellisuk,mstdn.social,History,history,false +Jimellisuk,mstdn.social,Humanities,humanities,false +Jimellisuk,mstdn.social,"Hunger, Disease & Water",hunger_disease_water,false +Jimellisuk,mstdn.social,Law & Justice,law_justice,false +Jimellisuk,mstdn.social,Mathematics,mathematics,false +Jimellisuk,mstdn.social,Movies,movies,false +Jimellisuk,mstdn.social,Music,music,false +Jimellisuk,mstdn.social,Journalism & Comment,news_comment_data,false +Jimellisuk,mstdn.social,Performing Arts,performing_arts,false +Jimellisuk,mstdn.social,Philosophy,philosophy,false +Jimellisuk,mstdn.social,Photography,photography,false +Jimellisuk,mstdn.social,Physics,physics,false +Jimellisuk,mstdn.social,Politics,politics,false +Jimellisuk,mstdn.social,Poverty & Inequality,poverty_inequality,false +Jimellisuk,mstdn.social,Programming,programming,false +Jimellisuk,mstdn.social,Science,science,false +Jimellisuk,mstdn.social,Breaking News,breaking_news,true +yvz,mstdn.social,Technology,technology,true +csolisr,hub.azkware.net,Biodiversity & Rewilding,biodiversity_rewilding,false +csolisr,hub.azkware.net,Biology,biology,false +csolisr,hub.azkware.net,Chemistry,chemistry,false +csolisr,hub.azkware.net,Engineering,engineering,false +csolisr,hub.azkware.net,Environment,environment,false +csolisr,hub.azkware.net,History,history,false +csolisr,hub.azkware.net,Humanities,humanities,false +csolisr,hub.azkware.net,Mathematics,mathematics,false +csolisr,hub.azkware.net,Philosophy,philosophy,false +csolisr,hub.azkware.net,Physics,physics,false +csolisr,hub.azkware.net,Programming,programming,false +csolisr,hub.azkware.net,Science,science,false +csolisr,hub.azkware.net,Social Sciences,social_sciences,false +csolisr,hub.azkware.net,Space,space,false +csolisr,hub.azkware.net,Technology,technology,false +csolisr,hub.azkware.net,Breaking News,breaking_news,true +steffoz,mastodon.social,AI,ai,false +steffoz,mastodon.social,Books & Literature,books_literature,false +steffoz,mastodon.social,Climate change,climate_change,false +steffoz,mastodon.social,Journalism & Comment,news_comment_data,false +Jimellisuk,mstdn.social,Social Media,social_media,false +Jimellisuk,mstdn.social,Social Sciences,social_sciences,false +Jimellisuk,mstdn.social,Space,space,false +Jimellisuk,mstdn.social,Technology,technology,false +Jimellisuk,mstdn.social,TV & Radio,tv_radio,false +Jimellisuk,mstdn.social,Ukraine Invasion,ukraine_invasion,false +Jimellisuk,mstdn.social,US Politics,us_politics,false +Jimellisuk,mstdn.social,Visual Arts,visual_arts,false +Jimellisuk,mstdn.social,Weather,weather,false +mjgardner,social.sdf.org,Philosophy,philosophy,false +sydney_aokay,mastodon.social,Energy & Pollution,energy_pollution,false +sydney_aokay,mastodon.social,Engineering,engineering,false +sydney_aokay,mastodon.social,Environment,environment,false +sithubo_pt,newsmast.social,Law & Justice,law_justice,false +sithubo_pt,newsmast.social,LGBTQ+,lgbtq,false +sithubo_pt,newsmast.social,Journalism & Comment,news_comment_data,false +sithubo_pt,newsmast.social,Politics,politics,false +sithubo_pt,newsmast.social,Poverty & Inequality,poverty_inequality,false +sithubo_pt,newsmast.social,Social Media,social_media,false +sithubo_pt,newsmast.social,Ukraine Invasion,ukraine_invasion,false +sithubo_pt,newsmast.social,US Politics,us_politics,false +sithubo_pt,newsmast.social,Weather,weather,false +sithubo_pt,newsmast.social,Women’s Voices,women_voices,false +sithubo_pt,newsmast.social,Breaking News,breaking_news,true +ikuturso,mastodon.social,US Politics,us_politics,false +khabeko,techhub.social,AI,ai,false +wysteria,baraag.net,Space,space,false +wysteria,baraag.net,Visual Arts,visual_arts,false +wysteria,baraag.net,Programming,programming,true +khabeko,techhub.social,Biology,biology,false +khabeko,techhub.social,Breaking News,breaking_news,false +khabeko,techhub.social,Chemistry,chemistry,false +khabeko,techhub.social,Engineering,engineering,false +OlPatchy2Eyes,ieji.de,Environment,environment,false +ikuturso,mastodon.social,Weather,weather,false +ikuturso,mastodon.social,Ukraine Invasion,ukraine_invasion,true +steffoz,mastodon.social,Poverty & Inequality,poverty_inequality,false +steffoz,mastodon.social,Programming,programming,false +steffoz,mastodon.social,Mental Health & Wellbeing,mental_health_wellbeing,true +OlPatchy2Eyes,ieji.de,Climate change,climate_change,false +GlobalRewilding,newsmast.social,Academia & Research,academia_research,false +GlobalRewilding,newsmast.social,Climate change,climate_change,false +GlobalRewilding,newsmast.social,Environment,environment,false +GlobalRewilding,newsmast.social,Government & Policy,government_policy,false +khaled57,newsmast.social,Creative Arts,creative_arts,false +khaled57,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +khaled57,newsmast.social,Food & Drink,food_drink,false +khaled57,newsmast.social,Humour,humour,false +khaled57,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false +khaled57,newsmast.social,Nature & Wildlife,nature_wildlife,false +khaled57,newsmast.social,Pets,pets,false +khaled57,newsmast.social,Poverty & Inequality,poverty_inequality,false +khaled57,newsmast.social,Puzzles,puzzles,false +khaled57,newsmast.social,Travel,travel,false +khaled57,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,true +GlobalRewilding,newsmast.social,Science,science,false +sweetroll,climatejustice.social,Biology,biology,false +sweetroll,climatejustice.social,Books & Literature,books_literature,false +sweetroll,climatejustice.social,Climate change,climate_change,false +sweetroll,climatejustice.social,Creative Arts,creative_arts,false +sweetroll,climatejustice.social,Disabled Voices,disabled_voices,false +sweetroll,climatejustice.social,Environment,environment,false +sweetroll,climatejustice.social,Food & Drink,food_drink,false +sweetroll,climatejustice.social,Gaming,gaming,false +sweetroll,climatejustice.social,Immigrants Rights,immigrants_rights,false +sweetroll,climatejustice.social,LGBTQ+,lgbtq,false +sweetroll,climatejustice.social,Mental Health & Wellbeing,mental_health_wellbeing,false +sweetroll,climatejustice.social,Nature & Wildlife,nature_wildlife,false +sweetroll,climatejustice.social,Physics,physics,false +sweetroll,climatejustice.social,Science,science,false +sweetroll,climatejustice.social,Women’s Voices,women_voices,false +sweetroll,climatejustice.social,Pets,pets,true +petri,newsmast.social,Breaking News,breaking_news,false +petri,newsmast.social,Engineering,engineering,false +petri,newsmast.social,Programming,programming,false +petri,newsmast.social,Science,science,false +petri,newsmast.social,Space,space,false +justingood,hachyderm.io,Black Voices,black_voices,false +justingood,hachyderm.io,Gaming,gaming,false +justingood,hachyderm.io,LGBTQ+,lgbtq,false +justingood,hachyderm.io,Physics,physics,false +justingood,hachyderm.io,Programming,programming,false +justingood,hachyderm.io,Science,science,false +justingood,hachyderm.io,Space,space,false +justingood,hachyderm.io,Technology,technology,false +justingood,hachyderm.io,TV & Radio,tv_radio,false +justingood,hachyderm.io,Engineering,engineering,true +petri,newsmast.social,Weather,weather,false +petri,newsmast.social,Technology,technology,true +themadcodger,pdx.social,AI,ai,false +themadcodger,pdx.social,Breaking News,breaking_news,false +themadcodger,pdx.social,Environment,environment,false +themadcodger,pdx.social,Politics,politics,false +themadcodger,pdx.social,US Politics,us_politics,false +themadcodger,pdx.social,Weather,weather,false +themadcodger,pdx.social,Technology,technology,true +eob,social.coop,AI,ai,false +eob,social.coop,Biology,biology,false +huntsyea,indieweb.social,Business,business,false +huntsyea,indieweb.social,Programming,programming,false +huntsyea,indieweb.social,Technology,technology,true +eob,social.coop,Government & Policy,government_policy,false +eob,social.coop,History,history,false +eob,social.coop,Mathematics,mathematics,false +eob,social.coop,Journalism & Comment,news_comment_data,false +eob,social.coop,Philosophy,philosophy,false +eob,social.coop,Physics,physics,false +eob,social.coop,Politics,politics,false +eob,social.coop,Programming,programming,false +eob,social.coop,Science,science,false +eob,social.coop,Space,space,false +eob,social.coop,US Politics,us_politics,false +eob,social.coop,Technology,technology,true +sydney_aokay,mastodon.social,Food & Drink,food_drink,false +sydney_aokay,mastodon.social,Gaming,gaming,false +sydney_aokay,mastodon.social,Government & Policy,government_policy,false +sydney_aokay,mastodon.social,Healthcare,healthcare,false +sydney_aokay,mastodon.social,History,history,false +sydney_aokay,mastodon.social,Humanities,humanities,false +sydney_aokay,mastodon.social,Humour,humour,false +sydney_aokay,mastodon.social,"Hunger, Disease & Water",hunger_disease_water,false +sydney_aokay,mastodon.social,Immigrants Rights,immigrants_rights,false +a132,fediscience.org,AI,ai,false +sydney_aokay,mastodon.social,Indigenous Peoples,indigenous_peoples,false +a132,fediscience.org,Engineering,engineering,false +sydney_aokay,mastodon.social,Law & Justice,law_justice,false +a132,fediscience.org,Mathematics,mathematics,false +a132,fediscience.org,Programming,programming,false +a132,fediscience.org,Science,science,false +a132,fediscience.org,Space,space,false +a132,fediscience.org,Academia & Research,academia_research,true +sydney_aokay,mastodon.social,LGBTQ+,lgbtq,false +sydney_aokay,mastodon.social,Mathematics,mathematics,false +sydney_aokay,mastodon.social,Mental Health & Wellbeing,mental_health_wellbeing,false +rgaida,mastodon.social,AI,ai,false +rgaida,mastodon.social,Breaking News,breaking_news,false +rgaida,mastodon.social,Engineering,engineering,false +rgaida,mastodon.social,Social Sciences,social_sciences,false +rgaida,mastodon.social,Space,space,false +rgaida,mastodon.social,Technology,technology,false +rgaida,mastodon.social,Programming,programming,true +brian,dads.so,Programming,programming,false +brian,dads.so,Science,science,false +brian,dads.so,Technology,technology,true +ernie,writing.exchange,Breaking News,breaking_news,false +ernie,writing.exchange,Business,business,false +ernie,writing.exchange,Music,music,false +ernie,writing.exchange,Journalism & Comment,news_comment_data,false +ernie,writing.exchange,US Politics,us_politics,false +ernie,writing.exchange,Technology,technology,true +benfell,infosec.exchange,Biodiversity & Rewilding,biodiversity_rewilding,false +benfell,infosec.exchange,Breaking News,breaking_news,false +benfell,infosec.exchange,Chemistry,chemistry,false +benfell,infosec.exchange,Climate change,climate_change,false +benfell,infosec.exchange,Democracy & Human Rights,democracy_human_rights,false +benfell,infosec.exchange,Energy & Pollution,energy_pollution,false +benfell,infosec.exchange,Environment,environment,false +benfell,infosec.exchange,Government & Policy,government_policy,false +benfell,infosec.exchange,Healthcare,healthcare,false +benfell,infosec.exchange,History,history,false +benfell,infosec.exchange,Humanities,humanities,false +benfell,infosec.exchange,"Hunger, Disease & Water",hunger_disease_water,false +benfell,infosec.exchange,Law & Justice,law_justice,false +benfell,infosec.exchange,Journalism & Comment,news_comment_data,false +benfell,infosec.exchange,Philosophy,philosophy,false +benfell,infosec.exchange,Physics,physics,false +benfell,infosec.exchange,Politics,politics,false +benfell,infosec.exchange,Poverty & Inequality,poverty_inequality,false +benfell,infosec.exchange,Science,science,false +benfell,infosec.exchange,Social Sciences,social_sciences,false +benfell,infosec.exchange,Space,space,false +benfell,infosec.exchange,Technology,technology,false +benfell,infosec.exchange,Ukraine Invasion,ukraine_invasion,false +benfell,infosec.exchange,US Politics,us_politics,false +benfell,infosec.exchange,Weather,weather,false +benfell,infosec.exchange,Workers Rights,workers_rights,false +benfell,infosec.exchange,Academia & Research,academia_research,true +phelan,mastodon.ie,Architecture & Design,architecture_design,false +phelan,mastodon.ie,Biodiversity & Rewilding,biodiversity_rewilding,false +phelan,mastodon.ie,Climate change,climate_change,false +phelan,mastodon.ie,History,history,false +phelan,mastodon.ie,Music,music,false +phelan,mastodon.ie,Philosophy,philosophy,false +phelan,mastodon.ie,Photography,photography,false +phelan,mastodon.ie,Programming,programming,false +phelan,mastodon.ie,Technology,technology,false +phelan,mastodon.ie,Visual Arts,visual_arts,false +phelan,mastodon.ie,Environment,environment,true +joewynne,mindly.social,Biology,biology,false +joewynne,mindly.social,Environment,environment,false +joewynne,mindly.social,Poverty & Inequality,poverty_inequality,false +joewynne,mindly.social,Science,science,false +joewynne,mindly.social,Biodiversity & Rewilding,biodiversity_rewilding,true +oschene,mastodon.social,Mathematics,mathematics,false +oschene,mastodon.social,Science,science,false +oschene,mastodon.social,Space,space,false +oschene,mastodon.social,Technology,technology,false +oschene,mastodon.social,Weather,weather,false +oschene,mastodon.social,Breaking News,breaking_news,true +aichessem,universeodon.com,AI,ai,false +aichessem,universeodon.com,Biology,biology,false +aichessem,universeodon.com,Breaking News,breaking_news,false +aichessem,universeodon.com,Chemistry,chemistry,false +aichessem,universeodon.com,Engineering,engineering,false +aichessem,universeodon.com,Mathematics,mathematics,false +aichessem,universeodon.com,Journalism & Comment,news_comment_data,false +aichessem,universeodon.com,Programming,programming,false +aichessem,universeodon.com,Science,science,false +aichessem,universeodon.com,Space,space,false +aichessem,universeodon.com,Technology,technology,false +aichessem,universeodon.com,Weather,weather,false +aichessem,universeodon.com,Physics,physics,true +sydney_aokay,mastodon.social,Movies,movies,false +sydney_aokay,mastodon.social,Music,music,false +sydney_aokay,mastodon.social,Nature & Wildlife,nature_wildlife,false +sydney_aokay,mastodon.social,Journalism & Comment,news_comment_data,false +sydney_aokay,mastodon.social,Performing Arts,performing_arts,false +sydney_aokay,mastodon.social,Pets,pets,false +Tealk,rollenspiel.social,Engineering,engineering,false +Tealk,rollenspiel.social,Physics,physics,false +Tealk,rollenspiel.social,Programming,programming,false +Tealk,rollenspiel.social,Science,science,false +Tealk,rollenspiel.social,Space,space,false +Tealk,rollenspiel.social,Technology,technology,true +sydney_aokay,mastodon.social,Philosophy,philosophy,false +sydney_aokay,mastodon.social,Photography,photography,false +sydney_aokay,mastodon.social,Physics,physics,false +sydney_aokay,mastodon.social,Politics,politics,false +sydney_aokay,mastodon.social,Poverty & Inequality,poverty_inequality,false +sydney_aokay,mastodon.social,Programming,programming,false +sydney_aokay,mastodon.social,Puzzles,puzzles,false +sydney_aokay,mastodon.social,Science,science,false +sydney_aokay,mastodon.social,Social Media,social_media,false +sydney_aokay,mastodon.social,Social Sciences,social_sciences,false +julieninthesky,mastodon.art,Architecture & Design,architecture_design,false +julieninthesky,mastodon.art,Environment,environment,false +julieninthesky,mastodon.art,Movies,movies,false +julieninthesky,mastodon.art,Music,music,false +julieninthesky,mastodon.art,Performing Arts,performing_arts,false +julieninthesky,mastodon.art,Photography,photography,false +julieninthesky,mastodon.art,Programming,programming,false +julieninthesky,mastodon.art,Science,science,false +julieninthesky,mastodon.art,Technology,technology,false +julieninthesky,mastodon.art,Visual Arts,visual_arts,true +sydney_aokay,mastodon.social,Space,space,false +sydney_aokay,mastodon.social,Sport,sport,false +sydney_aokay,mastodon.social,Technology,technology,false +sydney_aokay,mastodon.social,Travel,travel,false +sydney_aokay,mastodon.social,TV & Radio,tv_radio,false +sydney_aokay,mastodon.social,US Politics,us_politics,false +sydney_aokay,mastodon.social,Visual Arts,visual_arts,false +sydney_aokay,mastodon.social,Women’s Voices,women_voices,false +sydney_aokay,mastodon.social,Activism & Civil Rights,activism_civil_rights,true +d_krueger,mas.to,Academia & Research,academia_research,false +d_krueger,mas.to,Biodiversity & Rewilding,biodiversity_rewilding,false +d_krueger,mas.to,Business,business,false +OlPatchy2Eyes,ieji.de,Energy & Pollution,energy_pollution,false +GlobalRewilding,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,true +KyawZinLinn123,newsmast.social,AI,ai,false +KyawZinLinn123,newsmast.social,Biology,biology,false +KyawZinLinn123,newsmast.social,Chemistry,chemistry,false +KyawZinLinn123,newsmast.social,Engineering,engineering,false +KyawZinLinn123,newsmast.social,Mathematics,mathematics,false +KyawZinLinn123,newsmast.social,Physics,physics,false +KyawZinLinn123,newsmast.social,Science,science,false +KyawZinLinn123,newsmast.social,Space,space,false +KyawZinLinn123,newsmast.social,Technology,technology,false +KyawZinLinn123,newsmast.social,Programming,programming,true +DadeMurphy,burma.social,Journalism & Comment,news_comment_data,false +DadeMurphy,burma.social,Poverty & Inequality,poverty_inequality,false +DadeMurphy,burma.social,Academia & Research,academia_research,false +DadeMurphy,burma.social,Healthcare,healthcare,false +DadeMurphy,burma.social,Politics,politics,false +DadeMurphy,burma.social,US Politics,us_politics,false +mttaggart,newsmast.social,Academia & Research,academia_research,false +mttaggart,newsmast.social,Activism & Civil Rights,activism_civil_rights,false +mttaggart,newsmast.social,AI,ai,false +mttaggart,newsmast.social,Architecture & Design,architecture_design,false +mttaggart,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false +mttaggart,newsmast.social,Biology,biology,false +mttaggart,newsmast.social,Black Voices,black_voices,false +mttaggart,newsmast.social,Books & Literature,books_literature,false +mttaggart,newsmast.social,Breaking News,breaking_news,false +mttaggart,newsmast.social,Business,business,false +mttaggart,newsmast.social,Chemistry,chemistry,false +mttaggart,newsmast.social,Climate change,climate_change,false +mttaggart,newsmast.social,Creative Arts,creative_arts,false +mttaggart,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +mttaggart,newsmast.social,Disabled Voices,disabled_voices,false +mttaggart,newsmast.social,Energy & Pollution,energy_pollution,false +mttaggart,newsmast.social,Engineering,engineering,false +mttaggart,newsmast.social,Environment,environment,false +DadeMurphy,burma.social,Environment,environment,false +DadeMurphy,burma.social,Climate change,climate_change,false +DadeMurphy,burma.social,Black Voices,black_voices,false +DadeMurphy,burma.social,Disabled Voices,disabled_voices,false +DadeMurphy,burma.social,Business,business,false +DadeMurphy,burma.social,Humanities,humanities,false +DadeMurphy,burma.social,History,history,false +DadeMurphy,burma.social,Performing Arts,performing_arts,false +DadeMurphy,burma.social,Football,football,false +DadeMurphy,burma.social,Puzzles,puzzles,false +DadeMurphy,burma.social,Travel,travel,false +mttaggart,newsmast.social,Food & Drink,food_drink,false +mttaggart,newsmast.social,Gaming,gaming,false +mttaggart,newsmast.social,Government & Policy,government_policy,false +mttaggart,newsmast.social,Healthcare,healthcare,false +mttaggart,newsmast.social,History,history,false +mttaggart,newsmast.social,Humanities,humanities,false +mttaggart,newsmast.social,Humour,humour,false +mttaggart,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false +mttaggart,newsmast.social,Immigrants Rights,immigrants_rights,false +mttaggart,newsmast.social,Indigenous Peoples,indigenous_peoples,false +mttaggart,newsmast.social,Law & Justice,law_justice,false +mttaggart,newsmast.social,LGBTQ+,lgbtq,false +mttaggart,newsmast.social,Markets & Finance,markets_finance,false +mttaggart,newsmast.social,Mathematics,mathematics,false +mttaggart,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false +mttaggart,newsmast.social,Movies,movies,false +mttaggart,newsmast.social,Music,music,false +mttaggart,newsmast.social,Nature & Wildlife,nature_wildlife,false +mttaggart,newsmast.social,Journalism & Comment,news_comment_data,false +mttaggart,newsmast.social,Performing Arts,performing_arts,false +mttaggart,newsmast.social,Pets,pets,false +mttaggart,newsmast.social,Philosophy,philosophy,false +mttaggart,newsmast.social,Photography,photography,false +mttaggart,newsmast.social,Physics,physics,false +mttaggart,newsmast.social,Politics,politics,false +mttaggart,newsmast.social,Poverty & Inequality,poverty_inequality,false +mttaggart,newsmast.social,Programming,programming,false +mttaggart,newsmast.social,Puzzles,puzzles,false +mttaggart,newsmast.social,Science,science,false +mttaggart,newsmast.social,Social Media,social_media,false +mttaggart,newsmast.social,Social Sciences,social_sciences,false +mttaggart,newsmast.social,Space,space,false +mttaggart,newsmast.social,Travel,travel,false +mttaggart,newsmast.social,TV & Radio,tv_radio,false +mttaggart,newsmast.social,Ukraine Invasion,ukraine_invasion,false +mttaggart,newsmast.social,US Politics,us_politics,false +mttaggart,newsmast.social,Visual Arts,visual_arts,false +mttaggart,newsmast.social,Weather,weather,false +mttaggart,newsmast.social,Women’s Voices,women_voices,false +mttaggart,newsmast.social,Workers Rights,workers_rights,false +mttaggart,newsmast.social,Technology,technology,true +sydney_aokay,mastodon.social,Breaking News,breaking_news,false +alexdickson,newsmast.social,Food & Drink,food_drink,false +alexdickson,newsmast.social,History,history,false +alexdickson,newsmast.social,Humanities,humanities,false +alexdickson,newsmast.social,Humour,humour,false +alexdickson,newsmast.social,Markets & Finance,markets_finance,false +alexdickson,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false +a,linuxrocks.online,Books & Literature,books_literature,false +a,linuxrocks.online,Engineering,engineering,false +a,linuxrocks.online,Immigrants Rights,immigrants_rights,false +a,linuxrocks.online,Technology,technology,false +a,linuxrocks.online,Programming,programming,true +alexdickson,newsmast.social,Nature & Wildlife,nature_wildlife,false +dcm,social.sunet.se,Books & Literature,books_literature,false +dcm,social.sunet.se,Breaking News,breaking_news,false +dcm,social.sunet.se,Gaming,gaming,false +dcm,social.sunet.se,Humanities,humanities,false +dcm,social.sunet.se,Movies,movies,false +dcm,social.sunet.se,Music,music,false +dcm,social.sunet.se,Philosophy,philosophy,false +dcm,social.sunet.se,Politics,politics,false +dcm,social.sunet.se,Science,science,false +dcm,social.sunet.se,Technology,technology,false +dcm,social.sunet.se,Ukraine Invasion,ukraine_invasion,false +dcm,social.sunet.se,AI,ai,true +berot3,newsmast.social,Breaking News,breaking_news,false +berot3,newsmast.social,Journalism & Comment,news_comment_data,false +berot3,newsmast.social,Programming,programming,false +berot3,newsmast.social,Social Media,social_media,false +berot3,newsmast.social,Technology,technology,false +berot3,newsmast.social,Ukraine Invasion,ukraine_invasion,false +berot3,newsmast.social,Weather,weather,false +berot3,newsmast.social,AI,ai,true +johnlago,mastodon.social,AI,ai,false +johnlago,mastodon.social,Breaking News,breaking_news,false +johnlago,mastodon.social,Gaming,gaming,false +johnlago,mastodon.social,Movies,movies,false +johnlago,mastodon.social,Journalism & Comment,news_comment_data,false +johnlago,mastodon.social,Performing Arts,performing_arts,false +johnlago,mastodon.social,Photography,photography,false +johnlago,mastodon.social,Programming,programming,false +johnlago,mastodon.social,Science,science,false +johnlago,mastodon.social,Social Media,social_media,false +johnlago,mastodon.social,Space,space,false +johnlago,mastodon.social,TV & Radio,tv_radio,false +johnlago,mastodon.social,Technology,technology,true +joshmike35,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +joshmike35,newsmast.social,Government & Policy,government_policy,false +joshmike35,newsmast.social,Healthcare,healthcare,false +joshmike35,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false +joshmike35,newsmast.social,Law & Justice,law_justice,false +joshmike35,newsmast.social,Politics,politics,false +joshmike35,newsmast.social,Poverty & Inequality,poverty_inequality,false +joshmike35,newsmast.social,US Politics,us_politics,false +joshmike35,newsmast.social,Academia & Research,academia_research,true +wooWike23,newsmast.social,Breaking News,breaking_news,false +wooWike23,newsmast.social,Journalism & Comment,news_comment_data,false +wooWike23,newsmast.social,Social Media,social_media,false +wooWike23,newsmast.social,Ukraine Invasion,ukraine_invasion,false +wooWike23,newsmast.social,Weather,weather,true +bech,mstdn.dk,Climate change,climate_change,false +bech,mstdn.dk,Energy & Pollution,energy_pollution,false +bech,mstdn.dk,Science,science,false +bech,mstdn.dk,Space,space,false +bech,mstdn.dk,Technology,technology,false +bech,mstdn.dk,Visual Arts,visual_arts,false +alexdickson,newsmast.social,Pets,pets,false +alexdickson,newsmast.social,Philosophy,philosophy,false +alexdickson,newsmast.social,Puzzles,puzzles,false +Marakana,mastodon.social,AI,ai,false +andrew,andrew.masto.host,Food & Drink,food_drink,false +andrew,andrew.masto.host,Football,football,false +andrew,andrew.masto.host,Nature & Wildlife,nature_wildlife,false +andrew,andrew.masto.host,Travel,travel,false +andrew,andrew.masto.host,Technology,technology,true +Marakana,mastodon.social,Food & Drink,food_drink,false +Marakana,mastodon.social,Politics,politics,false +Marakana,mastodon.social,Programming,programming,false +Marakana,mastodon.social,Puzzles,puzzles,false +Marakana,mastodon.social,Technology,technology,false +oatmeal,kolektiva.social,AI,ai,false +oatmeal,kolektiva.social,History,history,false +oatmeal,kolektiva.social,Journalism & Comment,news_comment_data,false +oatmeal,kolektiva.social,Programming,programming,false +oatmeal,kolektiva.social,Humanities,humanities,true +Marakana,mastodon.social,Breaking News,breaking_news,true +nathan,social.lostinok.com,Academia & Research,academia_research,false +nathan,social.lostinok.com,AI,ai,false +nathan,social.lostinok.com,Biology,biology,false +nathan,social.lostinok.com,Books & Literature,books_literature,false +nathan,social.lostinok.com,Breaking News,breaking_news,false +nathan,social.lostinok.com,Business,business,false +nathan,social.lostinok.com,Energy & Pollution,energy_pollution,false +nathan,social.lostinok.com,Engineering,engineering,false +nathan,social.lostinok.com,Environment,environment,false +nathan,social.lostinok.com,Government & Policy,government_policy,false +nathan,social.lostinok.com,History,history,false +nathan,social.lostinok.com,Humanities,humanities,false +nathan,social.lostinok.com,Law & Justice,law_justice,false +nathan,social.lostinok.com,Markets & Finance,markets_finance,false +nathan,social.lostinok.com,Movies,movies,false +nathan,social.lostinok.com,Music,music,false +alexdickson,newsmast.social,Social Sciences,social_sciences,false +alexdickson,newsmast.social,Workers Rights,workers_rights,false +alexdickson,newsmast.social,Business,business,true +_youssef_0k,newsmast.social,Engineering,engineering,false +_youssef_0k,newsmast.social,Environment,environment,false +_youssef_0k,newsmast.social,Food & Drink,food_drink,false +_youssef_0k,newsmast.social,Football,football,false +_youssef_0k,newsmast.social,Gaming,gaming,false +_youssef_0k,newsmast.social,Government & Policy,government_policy,false +_youssef_0k,newsmast.social,Healthcare,healthcare,false +_youssef_0k,newsmast.social,History,history,false +_youssef_0k,newsmast.social,Humanities,humanities,false +_youssef_0k,newsmast.social,Humour,humour,false +_youssef_0k,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false +_youssef_0k,newsmast.social,Immigrants Rights,immigrants_rights,false +_youssef_0k,newsmast.social,Indigenous Peoples,indigenous_peoples,false +_youssef_0k,newsmast.social,Law & Justice,law_justice,false +_youssef_0k,newsmast.social,LGBTQ+,lgbtq,false +_youssef_0k,newsmast.social,Markets & Finance,markets_finance,false +_youssef_0k,newsmast.social,Mathematics,mathematics,false +_youssef_0k,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false +_youssef_0k,newsmast.social,Movies,movies,false +_youssef_0k,newsmast.social,Music,music,false +_youssef_0k,newsmast.social,Nature & Wildlife,nature_wildlife,false +_youssef_0k,newsmast.social,Journalism & Comment,news_comment_data,false +_youssef_0k,newsmast.social,Performing Arts,performing_arts,false +_youssef_0k,newsmast.social,Pets,pets,false +_youssef_0k,newsmast.social,Philosophy,philosophy,false +_youssef_0k,newsmast.social,Photography,photography,false +sinclair,techhub.social,Technology,technology,true +zheka296,newsmast.social,Breaking News,breaking_news,false +zheka296,newsmast.social,Chemistry,chemistry,false +zheka296,newsmast.social,Immigrants Rights,immigrants_rights,false +zheka296,newsmast.social,Mathematics,mathematics,false +zheka296,newsmast.social,Weather,weather,true +mpmilestogo,moth.social,Mental Health & Wellbeing,mental_health_wellbeing,false +mpmilestogo,moth.social,Social Media,social_media,false +mpmilestogo,moth.social,Technology,technology,false +mpmilestogo,moth.social,Travel,travel,false +mpmilestogo,moth.social,Breaking News,breaking_news,true +mpmilestogo,moth.social,History,history,false +mpmilestogo,moth.social,Social Sciences,social_sciences,false +mpmilestogo,moth.social,Photography,photography,false +mpmilestogo,moth.social,Books & Literature,books_literature,false +hanism,newsmast.social,AI,ai,false +hanism,newsmast.social,Biology,biology,false +hanism,newsmast.social,Breaking News,breaking_news,false +hanism,newsmast.social,Chemistry,chemistry,false +hanism,newsmast.social,Engineering,engineering,false +hanism,newsmast.social,Mathematics,mathematics,false +hanism,newsmast.social,Journalism & Comment,news_comment_data,false +hanism,newsmast.social,Physics,physics,false +hanism,newsmast.social,Programming,programming,false +hanism,newsmast.social,Science,science,false +hanism,newsmast.social,Technology,technology,false +hanism,newsmast.social,Space,space,true +b_o_b_o,newsmast.social,Journalism & Comment,news_comment_data,false +b_o_b_o,newsmast.social,Social Media,social_media,false +b_o_b_o,newsmast.social,Ukraine Invasion,ukraine_invasion,false +b_o_b_o,newsmast.social,Weather,weather,false +b_o_b_o,newsmast.social,Breaking News,breaking_news,true +torogbeck,newsmast.social,Activism & Civil Rights,activism_civil_rights,false +torogbeck,newsmast.social,Creative Arts,creative_arts,false +bech,mstdn.dk,Programming,programming,true +torogbeck,newsmast.social,Government & Policy,government_policy,false +torogbeck,newsmast.social,History,history,false +torogbeck,newsmast.social,Humanities,humanities,false +torogbeck,newsmast.social,Humour,humour,false +torogbeck,newsmast.social,Law & Justice,law_justice,false +torogbeck,newsmast.social,LGBTQ+,lgbtq,false +torogbeck,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false +torogbeck,newsmast.social,Movies,movies,false +torogbeck,newsmast.social,Music,music,false +torogbeck,newsmast.social,Nature & Wildlife,nature_wildlife,false +torogbeck,newsmast.social,Journalism & Comment,news_comment_data,false +torogbeck,newsmast.social,Politics,politics,false +torogbeck,newsmast.social,Programming,programming,false +torogbeck,newsmast.social,Social Media,social_media,false +torogbeck,newsmast.social,Social Sciences,social_sciences,false +torogbeck,newsmast.social,Technology,technology,false +torogbeck,newsmast.social,TV & Radio,tv_radio,false +torogbeck,newsmast.social,US Politics,us_politics,false +torogbeck,newsmast.social,Weather,weather,false +torogbeck,newsmast.social,Breaking News,breaking_news,true +johnDaonld,newsmast.social,Architecture & Design,architecture_design,false +johnDaonld,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false +johnDaonld,newsmast.social,Books & Literature,books_literature,false +johnDaonld,newsmast.social,Climate change,climate_change,false +jramompichel2023,mastodon.social,Creative Arts,creative_arts,false +nathan,social.lostinok.com,Journalism & Comment,news_comment_data,false +nathan,social.lostinok.com,Performing Arts,performing_arts,false +nathan,social.lostinok.com,Philosophy,philosophy,false +nathan,social.lostinok.com,Photography,photography,false +nathan,social.lostinok.com,Physics,physics,false +nathan,social.lostinok.com,Politics,politics,false +nathan,social.lostinok.com,Science,science,false +nathan,social.lostinok.com,Social Media,social_media,false +dexterrat,mathstodon.xyz,Architecture & Design,architecture_design,false +dexterrat,mathstodon.xyz,Books & Literature,books_literature,false +dexterrat,mathstodon.xyz,Breaking News,breaking_news,false +dexterrat,mathstodon.xyz,Football,football,false +dexterrat,mathstodon.xyz,Gaming,gaming,false +dexterrat,mathstodon.xyz,Movies,movies,false +dexterrat,mathstodon.xyz,Music,music,false +dexterrat,mathstodon.xyz,Journalism & Comment,news_comment_data,false +dexterrat,mathstodon.xyz,Photography,photography,false +dexterrat,mathstodon.xyz,Social Media,social_media,false +dexterrat,mathstodon.xyz,Sport,sport,false +dexterrat,mathstodon.xyz,TV & Radio,tv_radio,false +dexterrat,mathstodon.xyz,Ukraine Invasion,ukraine_invasion,false +dexterrat,mathstodon.xyz,US Sport,us_sport,false +dexterrat,mathstodon.xyz,Visual Arts,visual_arts,false +dexterrat,mathstodon.xyz,Weather,weather,false +dexterrat,mathstodon.xyz,Performing Arts,performing_arts,true +F_johnson1848,mastodon.social,Movies,movies,false +dexterrat,mathstodon.xyz,Science,science,false +dexterrat,mathstodon.xyz,Mathematics,mathematics,false +dexterrat,mathstodon.xyz,Physics,physics,false +dexterrat,mathstodon.xyz,Space,space,false +nathan,social.lostinok.com,Social Sciences,social_sciences,false +nathan,social.lostinok.com,Space,space,false +nathan,social.lostinok.com,Technology,technology,false +nathan,social.lostinok.com,TV & Radio,tv_radio,false +nathan,social.lostinok.com,Ukraine Invasion,ukraine_invasion,false +nathan,social.lostinok.com,US Politics,us_politics,false +nathan,social.lostinok.com,Visual Arts,visual_arts,false +nathan,social.lostinok.com,Programming,programming,true +DadeMurphy,burma.social,Democracy & Human Rights,democracy_human_rights,false +DadeMurphy,burma.social,Government & Policy,government_policy,false +DadeMurphy,burma.social,Immigrants Rights,immigrants_rights,false +DadeMurphy,burma.social,LGBTQ+,lgbtq,false +DadeMurphy,burma.social,Markets & Finance,markets_finance,false +DadeMurphy,burma.social,Social Sciences,social_sciences,false +DadeMurphy,burma.social,Philosophy,philosophy,false +thedogspaw,mastodon.social,Academia & Research,academia_research,false +hraluoma,mastodon.social,AI,ai,false +hraluoma,mastodon.social,Biodiversity & Rewilding,biodiversity_rewilding,false +hraluoma,mastodon.social,Engineering,engineering,false +hraluoma,mastodon.social,Environment,environment,false +hraluoma,mastodon.social,Journalism & Comment,news_comment_data,false +hraluoma,mastodon.social,Physics,physics,false +hraluoma,mastodon.social,Programming,programming,false +hraluoma,mastodon.social,Science,science,false +hraluoma,mastodon.social,Social Media,social_media,false +hraluoma,mastodon.social,Space,space,false +hraluoma,mastodon.social,Technology,technology,false +hraluoma,mastodon.social,Breaking News,breaking_news,true +robertartois,mas.to,Science,science,false +robertartois,mas.to,Space,space,false +robertartois,mas.to,Technology,technology,false +bre4ch3r,mastodon.social,Breaking News,breaking_news,false +bre4ch3r,mastodon.social,Humour,humour,false +bre4ch3r,mastodon.social,Social Media,social_media,false +bre4ch3r,mastodon.social,Weather,weather,false +bre4ch3r,mastodon.social,Technology,technology,true +robertartois,mas.to,TV & Radio,tv_radio,false +MrAdamJohn,mysocial.community,AI,ai,false +MrAdamJohn,mysocial.community,Architecture & Design,architecture_design,false +MrAdamJohn,mysocial.community,Biology,biology,false +MrAdamJohn,mysocial.community,Books & Literature,books_literature,false +MrAdamJohn,mysocial.community,Breaking News,breaking_news,false +MrAdamJohn,mysocial.community,Chemistry,chemistry,false +MrAdamJohn,mysocial.community,Democracy & Human Rights,democracy_human_rights,false +MrAdamJohn,mysocial.community,Engineering,engineering,false +MrAdamJohn,mysocial.community,Gaming,gaming,false +MrAdamJohn,mysocial.community,History,history,false +MrAdamJohn,mysocial.community,Humanities,humanities,false +MrAdamJohn,mysocial.community,"Hunger, Disease & Water",hunger_disease_water,false +MrAdamJohn,mysocial.community,Markets & Finance,markets_finance,false +MrAdamJohn,mysocial.community,Mathematics,mathematics,false +MrAdamJohn,mysocial.community,Movies,movies,false +MrAdamJohn,mysocial.community,Music,music,false +MrAdamJohn,mysocial.community,Journalism & Comment,news_comment_data,false +MrAdamJohn,mysocial.community,Performing Arts,performing_arts,false +MrAdamJohn,mysocial.community,Philosophy,philosophy,false +MrAdamJohn,mysocial.community,Photography,photography,false +MrAdamJohn,mysocial.community,Physics,physics,false +MrAdamJohn,mysocial.community,Poverty & Inequality,poverty_inequality,false +MrAdamJohn,mysocial.community,Programming,programming,false +MrAdamJohn,mysocial.community,Science,science,false +MrAdamJohn,mysocial.community,Social Media,social_media,false +MrAdamJohn,mysocial.community,Social Sciences,social_sciences,false +MrAdamJohn,mysocial.community,Space,space,false +MrAdamJohn,mysocial.community,Technology,technology,false +MrAdamJohn,mysocial.community,TV & Radio,tv_radio,false +MrAdamJohn,mysocial.community,Ukraine Invasion,ukraine_invasion,false +MrAdamJohn,mysocial.community,Visual Arts,visual_arts,false +MrAdamJohn,mysocial.community,Weather,weather,false +MrAdamJohn,mysocial.community,Workers Rights,workers_rights,false +MrAdamJohn,mysocial.community,Business,business,true +johnDaonld,newsmast.social,Energy & Pollution,energy_pollution,false +_youssef_0k,newsmast.social,Physics,physics,false +d_krueger,mas.to,Democracy & Human Rights,democracy_human_rights,false +d_krueger,mas.to,Energy & Pollution,energy_pollution,false +d_krueger,mas.to,Environment,environment,false +d_krueger,mas.to,Football,football,false +expert,attractive.space,AI,ai,false +expert,attractive.space,Architecture & Design,architecture_design,false +expert,attractive.space,Books & Literature,books_literature,false +expert,attractive.space,Engineering,engineering,false +expert,attractive.space,Immigrants Rights,immigrants_rights,false +expert,attractive.space,Photography,photography,false +expert,attractive.space,Programming,programming,false +expert,attractive.space,Technology,technology,true +mango,social.tchncs.de,Climate change,climate_change,false +mango,social.tchncs.de,Environment,environment,false +mango,social.tchncs.de,Humanities,humanities,false +mango,social.tchncs.de,Indigenous Peoples,indigenous_peoples,false +mango,social.tchncs.de,Science,science,false +mango,social.tchncs.de,Social Sciences,social_sciences,false +mango,social.tchncs.de,Energy & Pollution,energy_pollution,true +PoLaRobs,fediscience.org,Biodiversity & Rewilding,biodiversity_rewilding,false +PoLaRobs,fediscience.org,Energy & Pollution,energy_pollution,false +PoLaRobs,fediscience.org,Environment,environment,false +PoLaRobs,fediscience.org,Science,science,false +PoLaRobs,fediscience.org,Climate change,climate_change,true +savvdm,masto.nu,Physics,physics,false +savvdm,masto.nu,Science,science,false +savvdm,masto.nu,Space,space,false +savvdm,masto.nu,Technology,technology,false +savvdm,masto.nu,Programming,programming,true +savvdm,masto.nu,Photography,photography,false +rickcdmx,mastodon.social,Visual Arts,visual_arts,false +rickcdmx,mastodon.social,Democracy & Human Rights,democracy_human_rights,false +rickcdmx,mastodon.social,Photography,photography,false +rickcdmx,mastodon.social,Science,science,false +rickcdmx,mastodon.social,TV & Radio,tv_radio,false +rickcdmx,mastodon.social,Visual Arts,visual_arts,false +rickcdmx,mastodon.social,Movies,movies,true +kakerlake,newsmast.social,Engineering,engineering,false +kakerlake,newsmast.social,Photography,photography,false +kakerlake,newsmast.social,Science,science,false +kakerlake,newsmast.social,Visual Arts,visual_arts,false +kakerlake,newsmast.social,Technology,technology,true +Brian,bgarr.com,Nature & Wildlife,nature_wildlife,true +paulpeace,mastodon.social,Biodiversity & Rewilding,biodiversity_rewilding,false +paulpeace,mastodon.social,Breaking News,breaking_news,false +paulpeace,mastodon.social,Climate change,climate_change,false +paulpeace,mastodon.social,Science,science,false +paulpeace,mastodon.social,Social Sciences,social_sciences,false +paulpeace,mastodon.social,Environment,environment,true +Brian,bgarr.com,Creative Arts,creative_arts,false +Brian,bgarr.com,Programming,programming,false +Brian,bgarr.com,Technology,technology,false +Brian,bgarr.com,Travel,travel,false +henning,mastodon.online,Biology,biology,false +henning,mastodon.online,Breaking News,breaking_news,false +henning,mastodon.online,Science,science,false +henning,mastodon.online,Technology,technology,false +henning,mastodon.online,Ukraine Invasion,ukraine_invasion,false +henning,mastodon.online,Programming,programming,true +ryancurrie,mastodon.scot,Football,football,false +ryancurrie,mastodon.scot,Humour,humour,false +ryancurrie,mastodon.scot,Movies,movies,false +ryancurrie,mastodon.scot,TV & Radio,tv_radio,false +ryancurrie,mastodon.scot,Breaking News,breaking_news,true +F_johnson1848,mastodon.social,Women’s Voices,women_voices,false +F_johnson1848,mastodon.social,Black Voices,black_voices,false +F_johnson1848,mastodon.social,Disabled Voices,disabled_voices,false +F_johnson1848,mastodon.social,Activism & Civil Rights,activism_civil_rights,false +F_johnson1848,mastodon.social,Immigrants Rights,immigrants_rights,false +F_johnson1848,mastodon.social,Indigenous Peoples,indigenous_peoples,false +johnDaonld,newsmast.social,Gaming,gaming,false +requiem,mastodonapp.uk,Architecture & Design,architecture_design,false +requiem,mastodonapp.uk,Books & Literature,books_literature,false +requiem,mastodonapp.uk,Engineering,engineering,false +requiem,mastodonapp.uk,Movies,movies,false +requiem,mastodonapp.uk,Journalism & Comment,news_comment_data,false +requiem,mastodonapp.uk,Technology,technology,false +requiem,mastodonapp.uk,Weather,weather,false +requiem,mastodonapp.uk,Breaking News,breaking_news,true +panicky_patzer,mastodon.social,Academia & Research,academia_research,false +panicky_patzer,mastodon.social,AI,ai,false +panicky_patzer,mastodon.social,Biodiversity & Rewilding,biodiversity_rewilding,false +panicky_patzer,mastodon.social,Biology,biology,false +d_krueger,mas.to,Government & Policy,government_policy,false +d_krueger,mas.to,Healthcare,healthcare,false +panicky_patzer,mastodon.social,Chemistry,chemistry,false +panicky_patzer,mastodon.social,Climate change,climate_change,false +panicky_patzer,mastodon.social,Democracy & Human Rights,democracy_human_rights,false +aerxi,mastodon.social,AI,ai,false +aerxi,mastodon.social,Breaking News,breaking_news,false +aerxi,mastodon.social,Technology,technology,false +aerxi,mastodon.social,Weather,weather,false +aerxi,mastodon.social,Programming,programming,true +DadeMurphy,burma.social,Law & Justice,law_justice,false +DadeMurphy,burma.social,Biodiversity & Rewilding,biodiversity_rewilding,false +DadeMurphy,burma.social,Energy & Pollution,energy_pollution,false +DadeMurphy,burma.social,Activism & Civil Rights,activism_civil_rights,false +DadeMurphy,burma.social,Science,science,false +DadeMurphy,burma.social,Biology,biology,false +DadeMurphy,burma.social,Books & Literature,books_literature,false +DadeMurphy,burma.social,Visual Arts,visual_arts,false +DadeMurphy,burma.social,Sport,sport,false +DadeMurphy,burma.social,US Sport,us_sport,false +DadeMurphy,burma.social,Creative Arts,creative_arts,false +DadeMurphy,burma.social,Humour,humour,false +panicky_patzer,mastodon.social,Energy & Pollution,energy_pollution,false +panicky_patzer,mastodon.social,Engineering,engineering,false +panicky_patzer,mastodon.social,Environment,environment,false +panicky_patzer,mastodon.social,Government & Policy,government_policy,false +panicky_patzer,mastodon.social,Healthcare,healthcare,false +panicky_patzer,mastodon.social,History,history,false +panicky_patzer,mastodon.social,Humanities,humanities,false +panicky_patzer,mastodon.social,"Hunger, Disease & Water",hunger_disease_water,false +panicky_patzer,mastodon.social,Law & Justice,law_justice,false +panicky_patzer,mastodon.social,Mathematics,mathematics,false +panicky_patzer,mastodon.social,Journalism & Comment,news_comment_data,false +panicky_patzer,mastodon.social,Philosophy,philosophy,false +panicky_patzer,mastodon.social,Physics,physics,false +panicky_patzer,mastodon.social,Politics,politics,false +panicky_patzer,mastodon.social,Poverty & Inequality,poverty_inequality,false +panicky_patzer,mastodon.social,Programming,programming,false +panicky_patzer,mastodon.social,Science,science,false +panicky_patzer,mastodon.social,Social Media,social_media,false +panicky_patzer,mastodon.social,Social Sciences,social_sciences,false +panicky_patzer,mastodon.social,Space,space,false +panicky_patzer,mastodon.social,Technology,technology,false +wwrr,newsmast.social,AI,ai,false +panicky_patzer,mastodon.social,Breaking News,breaking_news,true +wwrr,newsmast.social,Engineering,engineering,false +wwrr,newsmast.social,Government & Policy,government_policy,false +wwrr,newsmast.social,Healthcare,healthcare,false +wwrr,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false +wwrr,newsmast.social,Law & Justice,law_justice,false +wwrr,newsmast.social,Politics,politics,false +wwrr,newsmast.social,Poverty & Inequality,poverty_inequality,false +wwrr,newsmast.social,Programming,programming,false +wwrr,newsmast.social,Technology,technology,false +wwrr,newsmast.social,US Politics,us_politics,false +wwrr,newsmast.social,Breaking News,breaking_news,true +ScottStarkey,hoosier.social,Weather,weather,false +ScottStarkey,hoosier.social,Breaking News,breaking_news,true +mutthew,mastodon.social,Academia & Research,academia_research,false +mutthew,mastodon.social,Activism & Civil Rights,activism_civil_rights,false +mutthew,mastodon.social,AI,ai,false +mutthew,mastodon.social,Architecture & Design,architecture_design,false +mutthew,mastodon.social,Biodiversity & Rewilding,biodiversity_rewilding,false +mutthew,mastodon.social,Biology,biology,false +mutthew,mastodon.social,Black Voices,black_voices,false +mutthew,mastodon.social,Books & Literature,books_literature,false +mutthew,mastodon.social,Breaking News,breaking_news,false +mutthew,mastodon.social,Chemistry,chemistry,false +mutthew,mastodon.social,Climate change,climate_change,false +mutthew,mastodon.social,Creative Arts,creative_arts,false +mutthew,mastodon.social,Democracy & Human Rights,democracy_human_rights,false +mutthew,mastodon.social,Disabled Voices,disabled_voices,false +mutthew,mastodon.social,Energy & Pollution,energy_pollution,false +mutthew,mastodon.social,Engineering,engineering,false +mutthew,mastodon.social,Environment,environment,false +mutthew,mastodon.social,Food & Drink,food_drink,false +mutthew,mastodon.social,Gaming,gaming,false +mutthew,mastodon.social,Government & Policy,government_policy,false +mutthew,mastodon.social,Healthcare,healthcare,false +mutthew,mastodon.social,History,history,false +mutthew,mastodon.social,Humanities,humanities,false +mutthew,mastodon.social,Humour,humour,false +mutthew,mastodon.social,"Hunger, Disease & Water",hunger_disease_water,false +mutthew,mastodon.social,Immigrants Rights,immigrants_rights,false +mutthew,mastodon.social,Indigenous Peoples,indigenous_peoples,false +mutthew,mastodon.social,Law & Justice,law_justice,false +mutthew,mastodon.social,LGBTQ+,lgbtq,false +mutthew,mastodon.social,Mathematics,mathematics,false +mutthew,mastodon.social,Mental Health & Wellbeing,mental_health_wellbeing,false +mutthew,mastodon.social,Movies,movies,false +mutthew,mastodon.social,Music,music,false +d_krueger,mas.to,"Hunger, Disease & Water",hunger_disease_water,false +d_krueger,mas.to,Law & Justice,law_justice,false +indie,mastodon.sdf.org,Activism & Civil Rights,activism_civil_rights,false +indie,mastodon.sdf.org,Biodiversity & Rewilding,biodiversity_rewilding,false +indie,mastodon.sdf.org,Biology,biology,false +indie,mastodon.sdf.org,Energy & Pollution,energy_pollution,false +indie,mastodon.sdf.org,Nature & Wildlife,nature_wildlife,false +indie,mastodon.sdf.org,Physics,physics,false +indie,mastodon.sdf.org,Women’s Voices,women_voices,false +indie,mastodon.sdf.org,Indigenous Peoples,indigenous_peoples,true +max_batsyn,mas.to,Academia & Research,academia_research,false +brian,fedinerds.net,AI,ai,false +brian,fedinerds.net,Books & Literature,books_literature,false +brian,fedinerds.net,Breaking News,breaking_news,false +brian,fedinerds.net,Food & Drink,food_drink,false +brian,fedinerds.net,History,history,false +brian,fedinerds.net,Humanities,humanities,false +brian,fedinerds.net,Humour,humour,false +brian,fedinerds.net,Movies,movies,false +brian,fedinerds.net,Music,music,false +brian,fedinerds.net,Journalism & Comment,news_comment_data,false +brian,fedinerds.net,Pets,pets,false +brian,fedinerds.net,Photography,photography,false +brian,fedinerds.net,Social Sciences,social_sciences,false +brian,fedinerds.net,Technology,technology,false +brian,fedinerds.net,Travel,travel,false +brian,fedinerds.net,TV & Radio,tv_radio,false +brian,fedinerds.net,Performing Arts,performing_arts,true +max_batsyn,mas.to,Activism & Civil Rights,activism_civil_rights,false +max_batsyn,mas.to,Architecture & Design,architecture_design,false +max_batsyn,mas.to,Books & Literature,books_literature,false +max_batsyn,mas.to,Environment,environment,false +Rainer,climatejustice.social,Activism & Civil Rights,activism_civil_rights,false +Rainer,climatejustice.social,Biodiversity & Rewilding,biodiversity_rewilding,false +Rainer,climatejustice.social,Books & Literature,books_literature,false +Rainer,climatejustice.social,Disabled Voices,disabled_voices,false +Rainer,climatejustice.social,Immigrants Rights,immigrants_rights,false +Rainer,climatejustice.social,Indigenous Peoples,indigenous_peoples,false +Rainer,climatejustice.social,LGBTQ+,lgbtq,false +Rainer,climatejustice.social,Movies,movies,false +Rainer,climatejustice.social,Journalism & Comment,news_comment_data,false +Rainer,climatejustice.social,Space,space,false +Rainer,climatejustice.social,TV & Radio,tv_radio,false +Rainer,climatejustice.social,Ukraine Invasion,ukraine_invasion,false +Rainer,climatejustice.social,Breaking News,breaking_news,true +Blindworrell,mastodon.social,AI,ai,false +Blindworrell,mastodon.social,Healthcare,healthcare,false +Blindworrell,mastodon.social,Markets & Finance,markets_finance,false +Blindworrell,mastodon.social,Science,science,false +Blindworrell,mastodon.social,Space,space,false +Blindworrell,mastodon.social,US Politics,us_politics,false +Blindworrell,mastodon.social,Technology,technology,true +srijit,newsmast.social,Environment,environment,false +jecture,mastodon.social,Breaking News,breaking_news,false +jecture,mastodon.social,Democracy & Human Rights,democracy_human_rights,false +jecture,mastodon.social,Humanities,humanities,false +jecture,mastodon.social,Journalism & Comment,news_comment_data,false +jecture,mastodon.social,Science,science,false +jecture,mastodon.social,Technology,technology,false +jecture,mastodon.social,AI,ai,true +jeze,mstdn.social,Architecture & Design,architecture_design,false +jeze,mstdn.social,Breaking News,breaking_news,false +jeze,mstdn.social,LGBTQ+,lgbtq,false +jeze,mstdn.social,Movies,movies,false +jeze,mstdn.social,Photography,photography,false +jeze,mstdn.social,Social Media,social_media,false +jeze,mstdn.social,Technology,technology,false +jeze,mstdn.social,US Politics,us_politics,false +jeze,mstdn.social,Gaming,gaming,true +jeze,mstdn.social,Democracy & Human Rights,democracy_human_rights,false +jeze,mstdn.social,Poverty & Inequality,poverty_inequality,false +jeze,mstdn.social,Climate change,climate_change,false +jeze,mstdn.social,Women’s Voices,women_voices,false +jeze,mstdn.social,AI,ai,false +jeze,mstdn.social,Humour,humour,false +jeze,mstdn.social,Mental Health & Wellbeing,mental_health_wellbeing,false +jeze,mstdn.social,Nature & Wildlife,nature_wildlife,false +jeze,mstdn.social,Travel,travel,false +johnDaonld,newsmast.social,History,history,false +max_batsyn,mas.to,Gaming,gaming,false +max_batsyn,mas.to,History,history,false +max_batsyn,mas.to,Humanities,humanities,false +max_batsyn,mas.to,LGBTQ+,lgbtq,false +max_batsyn,mas.to,Movies,movies,false +max_batsyn,mas.to,Music,music,false +max_batsyn,mas.to,Philosophy,philosophy,false +max_batsyn,mas.to,Visual Arts,visual_arts,false +max_batsyn,mas.to,Photography,photography,true +d_krueger,mas.to,Markets & Finance,markets_finance,false +d_krueger,mas.to,Movies,movies,false +d_krueger,mas.to,Photography,photography,false +johnDaonld,newsmast.social,Humanities,humanities,false +johnDaonld,newsmast.social,Movies,movies,false +DadeMurphy,burma.social,Indigenous Peoples,indigenous_peoples,false +johnDaonld,newsmast.social,Music,music,false +johnDaonld,newsmast.social,Performing Arts,performing_arts,false +johnDaonld,newsmast.social,Philosophy,philosophy,false +johnDaonld,newsmast.social,Photography,photography,false +mwshook,pdx.social,Biology,biology,false +mwshook,pdx.social,Breaking News,breaking_news,false +mwshook,pdx.social,Humour,humour,false +mwshook,pdx.social,Nature & Wildlife,nature_wildlife,false +mwshook,pdx.social,Pets,pets,false +mwshook,pdx.social,Physics,physics,false +mwshook,pdx.social,Science,science,false +ricmac,mastodon.social,AI,ai,false +ricmac,mastodon.social,Architecture & Design,architecture_design,false +ricmac,mastodon.social,Books & Literature,books_literature,false +ricmac,mastodon.social,Engineering,engineering,false +ricmac,mastodon.social,Gaming,gaming,false +ricmac,mastodon.social,History,history,false +ricmac,mastodon.social,Humanities,humanities,false +ricmac,mastodon.social,Movies,movies,false +ricmac,mastodon.social,Music,music,false +ricmac,mastodon.social,Performing Arts,performing_arts,false +ricmac,mastodon.social,Philosophy,philosophy,false +ricmac,mastodon.social,Photography,photography,false +ricmac,mastodon.social,Programming,programming,false +ricmac,mastodon.social,Social Sciences,social_sciences,false +ricmac,mastodon.social,TV & Radio,tv_radio,false +ricmac,mastodon.social,Visual Arts,visual_arts,false +ricmac,mastodon.social,Technology,technology,true +mwshook,pdx.social,Space,space,false +mwshook,pdx.social,Technology,technology,true +peterthepainter,newsmast.social,History,history,false +peterthepainter,newsmast.social,Humanities,humanities,false +peterthepainter,newsmast.social,Journalism & Comment,news_comment_data,false +peterthepainter,newsmast.social,Philosophy,philosophy,false +peterthepainter,newsmast.social,Ukraine Invasion,ukraine_invasion,false +peterthepainter,newsmast.social,Breaking News,breaking_news,true +johnDaonld,newsmast.social,Social Sciences,social_sciences,false +johnDaonld,newsmast.social,TV & Radio,tv_radio,false +warmaster,mastodon.social,AI,ai,false +warmaster,mastodon.social,Business,business,false +warmaster,mastodon.social,Engineering,engineering,false +warmaster,mastodon.social,Programming,programming,false +warmaster,mastodon.social,Science,science,false +warmaster,mastodon.social,Space,space,false +warmaster,mastodon.social,Technology,technology,true +nick,tootr.co,AI,ai,false +nick,tootr.co,Engineering,engineering,false +nick,tootr.co,Government & Policy,government_policy,false +nick,tootr.co,Journalism & Comment,news_comment_data,false +nick,tootr.co,Politics,politics,false +nick,tootr.co,Programming,programming,false +nick,tootr.co,Social Media,social_media,false +nick,tootr.co,Technology,technology,false +nick,tootr.co,US Politics,us_politics,false +nick,tootr.co,Breaking News,breaking_news,true +ATOxley,mastodon.sdf.org,Activism & Civil Rights,activism_civil_rights,false +ATOxley,mastodon.sdf.org,AI,ai,false +ATOxley,mastodon.sdf.org,Biodiversity & Rewilding,biodiversity_rewilding,false +mutthew,mastodon.social,Nature & Wildlife,nature_wildlife,false +mutthew,mastodon.social,Journalism & Comment,news_comment_data,false +mutthew,mastodon.social,Performing Arts,performing_arts,false +mutthew,mastodon.social,Pets,pets,false +mutthew,mastodon.social,Philosophy,philosophy,false +mutthew,mastodon.social,Photography,photography,false +mutthew,mastodon.social,Physics,physics,false +mutthew,mastodon.social,Politics,politics,false +mutthew,mastodon.social,Poverty & Inequality,poverty_inequality,false +mutthew,mastodon.social,Programming,programming,false +mutthew,mastodon.social,Puzzles,puzzles,false +mutthew,mastodon.social,Science,science,false +mutthew,mastodon.social,Social Media,social_media,false +mutthew,mastodon.social,Social Sciences,social_sciences,false +mutthew,mastodon.social,Space,space,false +mutthew,mastodon.social,Travel,travel,false +mutthew,mastodon.social,TV & Radio,tv_radio,false +mutthew,mastodon.social,Ukraine Invasion,ukraine_invasion,false +mutthew,mastodon.social,US Politics,us_politics,false +mutthew,mastodon.social,Visual Arts,visual_arts,false +mutthew,mastodon.social,Weather,weather,false +mutthew,mastodon.social,Women’s Voices,women_voices,false +mutthew,mastodon.social,Technology,technology,true +dreamingawake09,newsmast.social,AI,ai,false +dreamingawake09,newsmast.social,Breaking News,breaking_news,false +dreamingawake09,newsmast.social,Creative Arts,creative_arts,false +dreamingawake09,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +dreamingawake09,newsmast.social,Engineering,engineering,false +dreamingawake09,newsmast.social,Food & Drink,food_drink,false +chris,pkm.social,Business,business,false +chris,pkm.social,Climate change,climate_change,false +chris,pkm.social,Energy & Pollution,energy_pollution,false +chris,pkm.social,Technology,technology,false +chris,pkm.social,AI,ai,true +tsybulin,mastodon.social,Engineering,engineering,false +tsybulin,mastodon.social,Social Media,social_media,false +textdump,newsmast.social,Academia & Research,academia_research,false +textdump,newsmast.social,Architecture & Design,architecture_design,false +textdump,newsmast.social,Biology,biology,false +textdump,newsmast.social,Books & Literature,books_literature,false +textdump,newsmast.social,Breaking News,breaking_news,false +textdump,newsmast.social,Chemistry,chemistry,false +textdump,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +textdump,newsmast.social,Gaming,gaming,false +textdump,newsmast.social,Government & Policy,government_policy,false +textdump,newsmast.social,Healthcare,healthcare,false +textdump,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false +textdump,newsmast.social,Law & Justice,law_justice,false +textdump,newsmast.social,Mathematics,mathematics,false +textdump,newsmast.social,Movies,movies,false +textdump,newsmast.social,Music,music,false +textdump,newsmast.social,Journalism & Comment,news_comment_data,false +textdump,newsmast.social,Performing Arts,performing_arts,false +textdump,newsmast.social,Photography,photography,false +textdump,newsmast.social,Physics,physics,false +textdump,newsmast.social,Politics,politics,false +textdump,newsmast.social,Poverty & Inequality,poverty_inequality,false +textdump,newsmast.social,Science,science,false +textdump,newsmast.social,Social Media,social_media,false +textdump,newsmast.social,Space,space,false +textdump,newsmast.social,TV & Radio,tv_radio,false +textdump,newsmast.social,US Politics,us_politics,false +textdump,newsmast.social,Visual Arts,visual_arts,false +textdump,newsmast.social,Weather,weather,false +textdump,newsmast.social,Ukraine Invasion,ukraine_invasion,true +tsybulin,mastodon.social,Technology,technology,false +tsybulin,mastodon.social,Ukraine Invasion,ukraine_invasion,false +tsybulin,mastodon.social,Programming,programming,true +DadeMurphy,burma.social,Women’s Voices,women_voices,false +jeroen,sociabl.be,Academia & Research,academia_research,false +russjr08,bitforged.social,AI,ai,false +russjr08,bitforged.social,Engineering,engineering,false +russjr08,bitforged.social,Programming,programming,false +russjr08,bitforged.social,Science,science,false +russjr08,bitforged.social,Space,space,false +russjr08,bitforged.social,Technology,technology,true +jeroen,sociabl.be,Breaking News,breaking_news,false +jeroen,sociabl.be,Engineering,engineering,false +swrogers,social.targaryen.house,Academia & Research,academia_research,false +swrogers,social.targaryen.house,Biology,biology,false +swrogers,social.targaryen.house,Breaking News,breaking_news,false +swrogers,social.targaryen.house,Chemistry,chemistry,false +swrogers,social.targaryen.house,Engineering,engineering,false +swrogers,social.targaryen.house,Government & Policy,government_policy,false +swrogers,social.targaryen.house,Mathematics,mathematics,false +swrogers,social.targaryen.house,Journalism & Comment,news_comment_data,false +swrogers,social.targaryen.house,Physics,physics,false +swrogers,social.targaryen.house,Programming,programming,false +swrogers,social.targaryen.house,Science,science,false +swrogers,social.targaryen.house,Space,space,false +swrogers,social.targaryen.house,Technology,technology,true +TheatreReviews,mastodonapp.uk,Performing Arts,performing_arts,true +eugene135,mastodon.social,Academia & Research,academia_research,false +eugene135,mastodon.social,AI,ai,false +eugene135,mastodon.social,Engineering,engineering,false +eugene135,mastodon.social,Government & Policy,government_policy,false +eugene135,mastodon.social,Healthcare,healthcare,false +eugene135,mastodon.social,Law & Justice,law_justice,false +eugene135,mastodon.social,Politics,politics,false +eugene135,mastodon.social,Technology,technology,false +eugene135,mastodon.social,US Politics,us_politics,false +eugene135,mastodon.social,Programming,programming,true +brian,dads.so,Philosophy,philosophy,false +brian,dads.so,Social Sciences,social_sciences,false +brian,dads.so,Humanities,humanities,false +brian,dads.so,Books & Literature,books_literature,false +brian,dads.so,Movies,movies,false +brian,dads.so,Gaming,gaming,false +brian,dads.so,Food & Drink,food_drink,false +brian,dads.so,Humour,humour,false +brian,dads.so,Mental Health & Wellbeing,mental_health_wellbeing,false +brian,dads.so,Travel,travel,false +brian,dads.so,Sport,sport,false +epicureandad,dads.so,Books & Literature,books_literature,false +epicureandad,dads.so,Humanities,humanities,false +epicureandad,dads.so,Mental Health & Wellbeing,mental_health_wellbeing,false +epicureandad,dads.so,Travel,travel,false +epicureandad,dads.so,Philosophy,philosophy,true +cmonster,thecanadian.social,Government & Policy,government_policy,false +cmonster,thecanadian.social,Law & Justice,law_justice,false +DasVedanya,mastodon.social,AI,ai,false +DasVedanya,mastodon.social,Biology,biology,false +DasVedanya,mastodon.social,Breaking News,breaking_news,false +DasVedanya,mastodon.social,Chemistry,chemistry,false +DasVedanya,mastodon.social,Engineering,engineering,false +DasVedanya,mastodon.social,Mathematics,mathematics,false +DasVedanya,mastodon.social,Journalism & Comment,news_comment_data,false +DasVedanya,mastodon.social,Physics,physics,false +DasVedanya,mastodon.social,Programming,programming,false +DasVedanya,mastodon.social,Science,science,false +DasVedanya,mastodon.social,Social Media,social_media,false +DasVedanya,mastodon.social,Technology,technology,false +DasVedanya,mastodon.social,Ukraine Invasion,ukraine_invasion,false +DasVedanya,mastodon.social,Weather,weather,false +DasVedanya,mastodon.social,Space,space,true +johnDaonld,newsmast.social,Visual Arts,visual_arts,false +johnDaonld,newsmast.social,Environment,environment,true +_youssef_0k,newsmast.social,Politics,politics,false +_youssef_0k,newsmast.social,Poverty & Inequality,poverty_inequality,false +_youssef_0k,newsmast.social,Programming,programming,false +_youssef_0k,newsmast.social,Puzzles,puzzles,false +DadeMurphy,burma.social,Architecture & Design,architecture_design,false +jeroen,sociabl.be,Space,space,false +jeroen,sociabl.be,Technology,technology,false +jeroen,sociabl.be,US Politics,us_politics,false +jeroen,sociabl.be,Government & Policy,government_policy,true +wbbdaily,flipboard.social,Social Sciences,social_sciences,false +Yeekasoose,mstdn.social,AI,ai,false +Yeekasoose,mstdn.social,Business,business,false +Yeekasoose,mstdn.social,Climate change,climate_change,false +Yeekasoose,mstdn.social,Democracy & Human Rights,democracy_human_rights,false +Yeekasoose,mstdn.social,Energy & Pollution,energy_pollution,false +Yeekasoose,mstdn.social,Engineering,engineering,false +Yeekasoose,mstdn.social,Environment,environment,false +Yeekasoose,mstdn.social,History,history,false +Yeekasoose,mstdn.social,Journalism & Comment,news_comment_data,false +Yeekasoose,mstdn.social,Philosophy,philosophy,false +Yeekasoose,mstdn.social,Physics,physics,false +Yeekasoose,mstdn.social,Politics,politics,false +Yeekasoose,mstdn.social,Poverty & Inequality,poverty_inequality,false +Yeekasoose,mstdn.social,Programming,programming,false +Yeekasoose,mstdn.social,Science,science,false +Yeekasoose,mstdn.social,Social Sciences,social_sciences,false +Yeekasoose,mstdn.social,Space,space,false +Yeekasoose,mstdn.social,Technology,technology,false +Yeekasoose,mstdn.social,Ukraine Invasion,ukraine_invasion,false +Yeekasoose,mstdn.social,Breaking News,breaking_news,true +Jason381,mastodon.social,Engineering,engineering,false +Jason381,mastodon.social,Politics,politics,false +Jason381,mastodon.social,History,history,false +Jason381,mastodon.social,Humanities,humanities,false +Jason381,mastodon.social,Gaming,gaming,false +Jason381,mastodon.social,Movies,movies,false +Jason381,mastodon.social,Music,music,false +Jason381,mastodon.social,TV & Radio,tv_radio,false +Jason381,mastodon.social,Humour,humour,false +Jason381,mastodon.social,Mental Health & Wellbeing,mental_health_wellbeing,false +beta_123,newsmast.social,Breaking News,breaking_news,false +robertartois,mas.to,AI,ai,false +robertartois,mas.to,Architecture & Design,architecture_design,false +robertartois,mas.to,Biodiversity & Rewilding,biodiversity_rewilding,false +robertartois,mas.to,Biology,biology,false +robertartois,mas.to,Breaking News,breaking_news,false +robertartois,mas.to,Climate change,climate_change,false +robertartois,mas.to,Creative Arts,creative_arts,false +robertartois,mas.to,Democracy & Human Rights,democracy_human_rights,false +robertartois,mas.to,Energy & Pollution,energy_pollution,false +robertartois,mas.to,Engineering,engineering,false +robertartois,mas.to,Environment,environment,false +robertartois,mas.to,Food & Drink,food_drink,false +robertartois,mas.to,Gaming,gaming,false +robertartois,mas.to,Government & Policy,government_policy,false +robertartois,mas.to,Humour,humour,false +robertartois,mas.to,Law & Justice,law_justice,false +robertartois,mas.to,Mental Health & Wellbeing,mental_health_wellbeing,false +robertartois,mas.to,Movies,movies,false +robertartois,mas.to,Nature & Wildlife,nature_wildlife,false +robertartois,mas.to,Journalism & Comment,news_comment_data,false +robertartois,mas.to,Pets,pets,false +robertartois,mas.to,Physics,physics,false +STROHminator,fosstodon.org,AI,ai,false +STROHminator,fosstodon.org,Architecture & Design,architecture_design,false +STROHminator,fosstodon.org,Business,business,false +STROHminator,fosstodon.org,Climate change,climate_change,false +STROHminator,fosstodon.org,Creative Arts,creative_arts,false +STROHminator,fosstodon.org,Democracy & Human Rights,democracy_human_rights,false +STROHminator,fosstodon.org,Energy & Pollution,energy_pollution,false +STROHminator,fosstodon.org,Engineering,engineering,false +STROHminator,fosstodon.org,Environment,environment,false +STROHminator,fosstodon.org,Food & Drink,food_drink,false +STROHminator,fosstodon.org,Gaming,gaming,false +STROHminator,fosstodon.org,Government & Policy,government_policy,false +STROHminator,fosstodon.org,Humour,humour,false +STROHminator,fosstodon.org,Law & Justice,law_justice,false +STROHminator,fosstodon.org,Markets & Finance,markets_finance,false +STROHminator,fosstodon.org,Mental Health & Wellbeing,mental_health_wellbeing,false +STROHminator,fosstodon.org,Breaking News,breaking_news,true +robertartois,mas.to,Politics,politics,false +robertartois,mas.to,Poverty & Inequality,poverty_inequality,false +beta_123,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +robertartois,mas.to,Academia & Research,academia_research,false +robertartois,mas.to,Books & Literature,books_literature,true +beta_123,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false +beta_123,newsmast.social,Journalism & Comment,news_comment_data,false +beta_123,newsmast.social,Ukraine Invasion,ukraine_invasion,false +beta_123,newsmast.social,Weather,weather,false +beta_123,newsmast.social,Poverty & Inequality,poverty_inequality,true +moko,mstdn.ca,Programming,programming,false +kiko,newsmast.social,Programming,programming,false +kiko,newsmast.social,Social Media,social_media,false +kiko,newsmast.social,Technology,technology,false +kiko,newsmast.social,US Sport,us_sport,false +kiko,newsmast.social,Football,football,true +beta_123,newsmast.social,Social Media,social_media,false +STROHminator,fosstodon.org,Movies,movies,false +STROHminator,fosstodon.org,Music,music,false +STROHminator,fosstodon.org,Nature & Wildlife,nature_wildlife,false +STROHminator,fosstodon.org,Pets,pets,false +STROHminator,fosstodon.org,Physics,physics,false +STROHminator,fosstodon.org,Poverty & Inequality,poverty_inequality,false +STROHminator,fosstodon.org,Science,science,false +STROHminator,fosstodon.org,Space,space,false +STROHminator,fosstodon.org,Technology,technology,false +STROHminator,fosstodon.org,Travel,travel,false +STROHminator,fosstodon.org,TV & Radio,tv_radio,false +STROHminator,fosstodon.org,US Politics,us_politics,false +STROHminator,fosstodon.org,Weather,weather,false +STROHminator,fosstodon.org,Workers Rights,workers_rights,false +_youssef_0k,newsmast.social,Science,science,false +_youssef_0k,newsmast.social,Social Media,social_media,false +_youssef_0k,newsmast.social,Social Sciences,social_sciences,false +DadeMurphy,burma.social,Food & Drink,food_drink,false +DadeMurphy,burma.social,Nature & Wildlife,nature_wildlife,false +_youssef_0k,newsmast.social,Space,space,false +_youssef_0k,newsmast.social,Sport,sport,false +iggy_b,mastodon.social,Architecture & Design,architecture_design,false +iggy_b,mastodon.social,Breaking News,breaking_news,false +iggy_b,mastodon.social,Democracy & Human Rights,democracy_human_rights,false +iggy_b,mastodon.social,Food & Drink,food_drink,false +CitizenWald,historians.social,Architecture & Design,architecture_design,false +CitizenWald,historians.social,Breaking News,breaking_news,false +CitizenWald,historians.social,Humanities,humanities,false +CitizenWald,historians.social,Music,music,false +CitizenWald,historians.social,Journalism & Comment,news_comment_data,false +CitizenWald,historians.social,Philosophy,philosophy,false +CitizenWald,historians.social,Social Sciences,social_sciences,false +CitizenWald,historians.social,Ukraine Invasion,ukraine_invasion,false +CitizenWald,historians.social,Visual Arts,visual_arts,false +CitizenWald,historians.social,History,history,true +bech,mstdn.dk,Democracy & Human Rights,democracy_human_rights,false +bech,mstdn.dk,Movies,movies,false +bech,mstdn.dk,Books & Literature,books_literature,false +bech,mstdn.dk,Government & Policy,government_policy,false +bech,mstdn.dk,Politics,politics,false +DadeMurphy,burma.social,Technology,technology,true +bech,mstdn.dk,Architecture & Design,architecture_design,false +iggy_b,mastodon.social,Government & Policy,government_policy,false +iggy_b,mastodon.social,Humour,humour,false +iggy_b,mastodon.social,Movies,movies,false +Realzombiegeek,fosstodon.org,Breaking News,breaking_news,false +Realzombiegeek,fosstodon.org,Physics,physics,false +Realzombiegeek,fosstodon.org,Programming,programming,false +Realzombiegeek,fosstodon.org,Science,science,false +Realzombiegeek,fosstodon.org,Technology,technology,true +ScottStarkey,hoosier.social,Creative Arts,creative_arts,false +ScottStarkey,hoosier.social,Gaming,gaming,false +ScottStarkey,hoosier.social,Humour,humour,false +DadeMurphy,burma.social,Breaking News,breaking_news,false +DadeMurphy,burma.social,Chemistry,chemistry,false +DadeMurphy,burma.social,"Hunger, Disease & Water",hunger_disease_water,false +DadeMurphy,burma.social,Mathematics,mathematics,false +DadeMurphy,burma.social,Physics,physics,false +DadeMurphy,burma.social,Social Media,social_media,false +DadeMurphy,burma.social,Space,space,false +DadeMurphy,burma.social,Ukraine Invasion,ukraine_invasion,false +DadeMurphy,burma.social,Weather,weather,false +DadeMurphy,burma.social,Workers Rights,workers_rights,false +DadeMurphy,burma.social,Gaming,gaming,false +DadeMurphy,burma.social,Movies,movies,false +DadeMurphy,burma.social,Music,music,false +DadeMurphy,burma.social,Photography,photography,false +DadeMurphy,burma.social,TV & Radio,tv_radio,false +ScottStarkey,hoosier.social,Law & Justice,law_justice,false +ScottStarkey,hoosier.social,Mental Health & Wellbeing,mental_health_wellbeing,false +ScottStarkey,hoosier.social,Journalism & Comment,news_comment_data,false +weblink,newsmast.social,AI,ai,false +weblink,newsmast.social,Disabled Voices,disabled_voices,false +weblink,newsmast.social,Energy & Pollution,energy_pollution,false +weblink,newsmast.social,Engineering,engineering,false +weblink,newsmast.social,Humanities,humanities,false +weblink,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false +weblink,newsmast.social,Programming,programming,false +weblink,newsmast.social,Science,science,false +weblink,newsmast.social,Space,space,false +weblink,newsmast.social,Technology,technology,true +ScottStarkey,hoosier.social,Politics,politics,false +ScottStarkey,hoosier.social,Puzzles,puzzles,false +ScottStarkey,hoosier.social,Ukraine Invasion,ukraine_invasion,false +ScottStarkey,hoosier.social,US Politics,us_politics,false +ScottStarkey,hoosier.social,US Sport,us_sport,false +ScottStarkey,hoosier.social,Visual Arts,visual_arts,false +lolzek,mastodon.social,Books & Literature,books_literature,false +lolzek,mastodon.social,Creative Arts,creative_arts,false +lolzek,mastodon.social,History,history,false +lolzek,mastodon.social,Humour,humour,false +lolzek,mastodon.social,Food & Drink,food_drink,true +anaslm10,newsmast.social,Science,science,false +romeroabelleira,ruby.social,Architecture & Design,architecture_design,false +romeroabelleira,ruby.social,Gaming,gaming,false +romeroabelleira,ruby.social,Humanities,humanities,false +romeroabelleira,ruby.social,Music,music,false +romeroabelleira,ruby.social,Philosophy,philosophy,false +romeroabelleira,ruby.social,Science,science,false +romeroabelleira,ruby.social,Space,space,false +romeroabelleira,ruby.social,Technology,technology,false +romeroabelleira,ruby.social,Visual Arts,visual_arts,false +romeroabelleira,ruby.social,Programming,programming,true +Dragonholley,mastodon.social,Gaming,gaming,true +_youssef_0k,newsmast.social,Technology,technology,false +_youssef_0k,newsmast.social,Travel,travel,false +_youssef_0k,newsmast.social,TV & Radio,tv_radio,false +d_krueger,mas.to,Politics,politics,false +d_krueger,mas.to,Poverty & Inequality,poverty_inequality,false +d_krueger,mas.to,TV & Radio,tv_radio,false +FELO_rob,mastodon.social,Architecture & Design,architecture_design,false +FELO_rob,mastodon.social,Books & Literature,books_literature,false +FELO_rob,mastodon.social,Gaming,gaming,false +FELO_rob,mastodon.social,Government & Policy,government_policy,false +FELO_rob,mastodon.social,Poverty & Inequality,poverty_inequality,false +FELO_rob,mastodon.social,Visual Arts,visual_arts,false +FELO_rob,mastodon.social,Democracy & Human Rights,democracy_human_rights,true +DadeMurphy,burma.social,Mental Health & Wellbeing,mental_health_wellbeing,false +DadeMurphy,burma.social,Pets,pets,false +philomath,social.lol,Breaking News,breaking_news,true +atrom,m.ai6yr.org,Breaking News,breaking_news,false +atrom,m.ai6yr.org,Politics,politics,false +atrom,m.ai6yr.org,Programming,programming,false +atrom,m.ai6yr.org,Technology,technology,false +atrom,m.ai6yr.org,US Politics,us_politics,true +philomath,social.lol,Activism & Civil Rights,activism_civil_rights,false +philomath,social.lol,Black Voices,black_voices,false +philomath,social.lol,Books & Literature,books_literature,false +philomath,social.lol,Business,business,false +ifnotnowboston,mastodon.social,Democracy & Human Rights,democracy_human_rights,false +ifnotnowboston,mastodon.social,Government & Policy,government_policy,false +ifnotnowboston,mastodon.social,"Hunger, Disease & Water",hunger_disease_water,false +ifnotnowboston,mastodon.social,Journalism & Comment,news_comment_data,false +ifnotnowboston,mastodon.social,Politics,politics,false +ifnotnowboston,mastodon.social,Social Media,social_media,false +ifnotnowboston,mastodon.social,US Politics,us_politics,false +ifnotnowboston,mastodon.social,Breaking News,breaking_news,true +philomath,social.lol,Democracy & Human Rights,democracy_human_rights,false +philomath,social.lol,Disabled Voices,disabled_voices,false +philomath,social.lol,Environment,environment,false +philomath,social.lol,Gaming,gaming,false +philomath,social.lol,History,history,false +andrew,melder.social,Books & Literature,books_literature,false +andrew,melder.social,Gaming,gaming,false +andrew,melder.social,Photography,photography,false +andrew,melder.social,Mental Health & Wellbeing,mental_health_wellbeing,true +philomath,social.lol,Humanities,humanities,false +philomath,social.lol,Immigrants Rights,immigrants_rights,false +philomath,social.lol,Indigenous Peoples,indigenous_peoples,false +philomath,social.lol,LGBTQ+,lgbtq,false +philomath,social.lol,Philosophy,philosophy,false +philomath,social.lol,Photography,photography,false +philomath,social.lol,Science,science,false +philomath,social.lol,Social Sciences,social_sciences,false +philomath,social.lol,Space,space,false +philomath,social.lol,Technology,technology,false +philomath,social.lol,Ukraine Invasion,ukraine_invasion,false +philomath,social.lol,Women’s Voices,women_voices,false +philomath,social.lol,Workers Rights,workers_rights,false +ad_on_is,mastodon.world,AI,ai,false +ad_on_is,mastodon.world,Biology,biology,false +ad_on_is,mastodon.world,Breaking News,breaking_news,false +ad_on_is,mastodon.world,Business,business,false +ad_on_is,mastodon.world,Chemistry,chemistry,false +ad_on_is,mastodon.world,Engineering,engineering,false +bismillah345,newsmast.social,Breaking News,breaking_news,false +bismillah345,newsmast.social,Engineering,engineering,false +bismillah345,newsmast.social,Journalism & Comment,news_comment_data,false +bismillah345,newsmast.social,Programming,programming,false +bismillah345,newsmast.social,Social Media,social_media,false +bismillah345,newsmast.social,Technology,technology,false +bismillah345,newsmast.social,Ukraine Invasion,ukraine_invasion,false +bismillah345,newsmast.social,Weather,weather,false +bismillah345,newsmast.social,AI,ai,true +ad_on_is,mastodon.world,Mathematics,mathematics,false +ad_on_is,mastodon.world,Journalism & Comment,news_comment_data,false +ad_on_is,mastodon.world,Physics,physics,false +Dragonholley,mastodon.social,AI,ai,false +Dragonholley,mastodon.social,Architecture & Design,architecture_design,false +Dragonholley,mastodon.social,Biology,biology,false +Dragonholley,mastodon.social,Books & Literature,books_literature,false +Dragonholley,mastodon.social,Chemistry,chemistry,false +Dragonholley,mastodon.social,Creative Arts,creative_arts,false +Dragonholley,mastodon.social,Engineering,engineering,false +Dragonholley,mastodon.social,Food & Drink,food_drink,false +Dragonholley,mastodon.social,Football,football,false +Dragonholley,mastodon.social,Humour,humour,false +Dragonholley,mastodon.social,Mathematics,mathematics,false +Dragonholley,mastodon.social,Mental Health & Wellbeing,mental_health_wellbeing,false +Dragonholley,mastodon.social,Movies,movies,false +Dragonholley,mastodon.social,Music,music,false +ad_on_is,mastodon.world,Science,science,false +ad_on_is,mastodon.world,Social Media,social_media,false +ad_on_is,mastodon.world,Space,space,false +ad_on_is,mastodon.world,Technology,technology,false +ad_on_is,mastodon.world,Programming,programming,true +David_Bartlett,mindly.social,Books & Literature,books_literature,false +David_Bartlett,mindly.social,Social Media,social_media,false +David_Bartlett,mindly.social,Technology,technology,false +David_Bartlett,mindly.social,TV & Radio,tv_radio,false +David_Bartlett,mindly.social,Journalism & Comment,news_comment_data,true +jramompichel2023,mastodon.social,Philosophy,philosophy,false +dreamingawake09,newsmast.social,Football,football,false +dreamingawake09,newsmast.social,History,history,false +dreamingawake09,newsmast.social,Humanities,humanities,false +dreamingawake09,newsmast.social,Humour,humour,false +dreamingawake09,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false +dreamingawake09,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false +dreamingawake09,newsmast.social,Nature & Wildlife,nature_wildlife,false +dreamingawake09,newsmast.social,Journalism & Comment,news_comment_data,false +dreamingawake09,newsmast.social,Pets,pets,false +dreamingawake09,newsmast.social,Philosophy,philosophy,false +dreamingawake09,newsmast.social,Poverty & Inequality,poverty_inequality,false +dreamingawake09,newsmast.social,Programming,programming,false +dreamingawake09,newsmast.social,Puzzles,puzzles,false +dreamingawake09,newsmast.social,Social Media,social_media,false +dreamingawake09,newsmast.social,Social Sciences,social_sciences,false +dreamingawake09,newsmast.social,Sport,sport,false +dreamingawake09,newsmast.social,Travel,travel,false +dreamingawake09,newsmast.social,Ukraine Invasion,ukraine_invasion,false +dreamingawake09,newsmast.social,US Sport,us_sport,false +dreamingawake09,newsmast.social,Weather,weather,false +dreamingawake09,newsmast.social,Technology,technology,true +Kingfisher,universeodon.com,Breaking News,breaking_news,false +Kingfisher,universeodon.com,Music,music,false +Kingfisher,universeodon.com,Journalism & Comment,news_comment_data,false +Kingfisher,universeodon.com,Photography,photography,false +Kingfisher,universeodon.com,Space,space,false +Kingfisher,universeodon.com,Visual Arts,visual_arts,false +Kingfisher,universeodon.com,Weather,weather,false +Kingfisher,universeodon.com,Science,science,true +_youssef_0k,newsmast.social,Ukraine Invasion,ukraine_invasion,false +wbbdaily,flipboard.social,Creative Arts,creative_arts,false +yemyatthu_cs,mastodon.social,Breaking News,breaking_news,false +EmillaFilipowic,newsmast.social,Academia & Research,academia_research,false +EmillaFilipowic,newsmast.social,Activism & Civil Rights,activism_civil_rights,false +EmillaFilipowic,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false +EmillaFilipowic,newsmast.social,Black Voices,black_voices,false +EmillaFilipowic,newsmast.social,Business,business,false +EmillaFilipowic,newsmast.social,Climate change,climate_change,false +EmillaFilipowic,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +EmillaFilipowic,newsmast.social,Disabled Voices,disabled_voices,false +EmillaFilipowic,newsmast.social,Energy & Pollution,energy_pollution,false +EmillaFilipowic,newsmast.social,Environment,environment,false +EmillaFilipowic,newsmast.social,Government & Policy,government_policy,false +EmillaFilipowic,newsmast.social,Healthcare,healthcare,false +EmillaFilipowic,newsmast.social,History,history,false +EmillaFilipowic,newsmast.social,Humanities,humanities,false +EmillaFilipowic,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false +EmillaFilipowic,newsmast.social,Immigrants Rights,immigrants_rights,false +EmillaFilipowic,newsmast.social,Indigenous Peoples,indigenous_peoples,false +EmillaFilipowic,newsmast.social,Law & Justice,law_justice,false +EmillaFilipowic,newsmast.social,LGBTQ+,lgbtq,false +EmillaFilipowic,newsmast.social,Markets & Finance,markets_finance,false +EmillaFilipowic,newsmast.social,Journalism & Comment,news_comment_data,false +EmillaFilipowic,newsmast.social,Philosophy,philosophy,false +EmillaFilipowic,newsmast.social,Politics,politics,false +EmillaFilipowic,newsmast.social,Poverty & Inequality,poverty_inequality,false +EmillaFilipowic,newsmast.social,Social Media,social_media,false +EmillaFilipowic,newsmast.social,Social Sciences,social_sciences,false +EmillaFilipowic,newsmast.social,Ukraine Invasion,ukraine_invasion,false +EmillaFilipowic,newsmast.social,US Politics,us_politics,false +EmillaFilipowic,newsmast.social,Weather,weather,false +EmillaFilipowic,newsmast.social,Women’s Voices,women_voices,false +EmillaFilipowic,newsmast.social,Workers Rights,workers_rights,false +EmillaFilipowic,newsmast.social,Breaking News,breaking_news,true +hn,mastodon.social,Climate change,climate_change,false +hn,mastodon.social,Democracy & Human Rights,democracy_human_rights,false +hn,mastodon.social,Energy & Pollution,energy_pollution,false +hn,mastodon.social,Environment,environment,false +hn,mastodon.social,Journalism & Comment,news_comment_data,false +hn,mastodon.social,Poverty & Inequality,poverty_inequality,false +hn,mastodon.social,Science,science,false +hn,mastodon.social,Technology,technology,false +hn,mastodon.social,Breaking News,breaking_news,true +guzz,newsmast.social,Breaking News,breaking_news,false +wbbdaily,flipboard.social,Journalism & Comment,news_comment_data,false +michaelgraaf,cheeseburger.social,Academia & Research,academia_research,false +michaelgraaf,cheeseburger.social,AI,ai,false +michaelgraaf,cheeseburger.social,Biodiversity & Rewilding,biodiversity_rewilding,false +michaelgraaf,cheeseburger.social,Black Voices,black_voices,false +michaelgraaf,cheeseburger.social,Climate change,climate_change,false +michaelgraaf,cheeseburger.social,Democracy & Human Rights,democracy_human_rights,false +michaelgraaf,cheeseburger.social,Disabled Voices,disabled_voices,false +michaelgraaf,cheeseburger.social,Energy & Pollution,energy_pollution,false +michaelgraaf,cheeseburger.social,Engineering,engineering,false +michaelgraaf,cheeseburger.social,Environment,environment,false +michaelgraaf,cheeseburger.social,Government & Policy,government_policy,false +michaelgraaf,cheeseburger.social,Healthcare,healthcare,false +michaelgraaf,cheeseburger.social,"Hunger, Disease & Water",hunger_disease_water,false +michaelgraaf,cheeseburger.social,Immigrants Rights,immigrants_rights,false +michaelgraaf,cheeseburger.social,Indigenous Peoples,indigenous_peoples,false +michaelgraaf,cheeseburger.social,Law & Justice,law_justice,false +michaelgraaf,cheeseburger.social,LGBTQ+,lgbtq,false +michaelgraaf,cheeseburger.social,Politics,politics,false +travtasy,newsmast.social,Architecture & Design,architecture_design,false +travtasy,newsmast.social,Food & Drink,food_drink,false +travtasy,newsmast.social,Photography,photography,false +travtasy,newsmast.social,Visual Arts,visual_arts,false +travtasy,newsmast.social,Travel,travel,true +sinclair,techhub.social,Puzzles,puzzles,false +sinclair,techhub.social,Programming,programming,false +sinclair,techhub.social,Philosophy,philosophy,false +sinclair,techhub.social,Movies,movies,false +sinclair,techhub.social,TV & Radio,tv_radio,false +michaelgraaf,cheeseburger.social,Poverty & Inequality,poverty_inequality,false +michaelgraaf,cheeseburger.social,Programming,programming,false +michaelgraaf,cheeseburger.social,Technology,technology,false +michaelgraaf,cheeseburger.social,US Politics,us_politics,false +michaelgraaf,cheeseburger.social,Women’s Voices,women_voices,false +michaelgraaf,cheeseburger.social,Activism & Civil Rights,activism_civil_rights,true +panicky_patzer,mastodon.social,Ukraine Invasion,ukraine_invasion,false +panicky_patzer,mastodon.social,US Politics,us_politics,false +panicky_patzer,mastodon.social,Weather,weather,false +benjaminkruse,mastodon.social,Physics,physics,false +benjaminkruse,mastodon.social,Science,science,false +benjaminkruse,mastodon.social,Space,space,false +benjaminkruse,mastodon.social,Technology,technology,false +benjaminkruse,mastodon.social,Breaking News,breaking_news,true +_youssef_0k,newsmast.social,US Politics,us_politics,false +aronrussel,mastodon.social,Architecture & Design,architecture_design,false +aronrussel,mastodon.social,Creative Arts,creative_arts,false +aronrussel,mastodon.social,Environment,environment,false +aronrussel,mastodon.social,Food & Drink,food_drink,false +aronrussel,mastodon.social,Humour,humour,false +aronrussel,mastodon.social,Nature & Wildlife,nature_wildlife,false +aronrussel,mastodon.social,Pets,pets,false +aronrussel,mastodon.social,Photography,photography,false +aronrussel,mastodon.social,Politics,politics,false +aronrussel,mastodon.social,Social Media,social_media,false +aronrussel,mastodon.social,Sport,sport,false +aronrussel,mastodon.social,Technology,technology,false +aronrussel,mastodon.social,Travel,travel,false +aronrussel,mastodon.social,Football,football,true +OpalTiger,newsmast.social,Architecture & Design,architecture_design,false +OpalTiger,newsmast.social,Books & Literature,books_literature,false +OpalTiger,newsmast.social,Breaking News,breaking_news,false +OpalTiger,newsmast.social,Creative Arts,creative_arts,false +OpalTiger,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +mehron,mastodon.social,Activism & Civil Rights,activism_civil_rights,false +mehron,mastodon.social,Architecture & Design,architecture_design,false +mehron,mastodon.social,Books & Literature,books_literature,false +mehron,mastodon.social,Visual Arts,visual_arts,false +mehron,mastodon.social,Breaking News,breaking_news,true +OpalTiger,newsmast.social,Disabled Voices,disabled_voices,false +OpalTiger,newsmast.social,History,history,false +OpalTiger,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false +OpalTiger,newsmast.social,Performing Arts,performing_arts,false +OpalTiger,newsmast.social,Politics,politics,false +OpalTiger,newsmast.social,Poverty & Inequality,poverty_inequality,false +OpalTiger,newsmast.social,Technology,technology,false +OpalTiger,newsmast.social,TV & Radio,tv_radio,false +OpalTiger,newsmast.social,Visual Arts,visual_arts,false +OpalTiger,newsmast.social,Activism & Civil Rights,activism_civil_rights,true +apollon,mastodon.online,Democracy & Human Rights,democracy_human_rights,false +apollon,mastodon.online,Humanities,humanities,false +apollon,mastodon.online,Philosophy,philosophy,false +apollon,mastodon.online,Politics,politics,false +apollon,mastodon.online,Poverty & Inequality,poverty_inequality,false +apollon,mastodon.online,Social Media,social_media,false +apollon,mastodon.online,Social Sciences,social_sciences,false +apollon,mastodon.online,Technology,technology,false +ATOxley,mastodon.sdf.org,Breaking News,breaking_news,false +ATOxley,mastodon.sdf.org,Climate change,climate_change,false +ATOxley,mastodon.sdf.org,Democracy & Human Rights,democracy_human_rights,false +apollon,mastodon.online,AI,ai,false +apollon,mastodon.online,Music,music,true +ATOxley,mastodon.sdf.org,Energy & Pollution,energy_pollution,false +ATOxley,mastodon.sdf.org,Engineering,engineering,false +ATOxley,mastodon.sdf.org,Environment,environment,false +ATOxley,mastodon.sdf.org,Government & Policy,government_policy,false +ATOxley,mastodon.sdf.org,Healthcare,healthcare,false +brentnatzle,mastodon.social,Politics,politics,false +brentnatzle,mastodon.social,Social Media,social_media,false +brentnatzle,mastodon.social,US Politics,us_politics,false +brentnatzle,mastodon.social,Weather,weather,false +brentnatzle,mastodon.social,Breaking News,breaking_news,true +ATOxley,mastodon.sdf.org,"Hunger, Disease & Water",hunger_disease_water,false +ATOxley,mastodon.sdf.org,Politics,politics,false +ATOxley,mastodon.sdf.org,Science,science,false +ATOxley,mastodon.sdf.org,Space,space,false +mateussbentes,mastodon.social,Biology,biology,false +mateussbentes,mastodon.social,Chemistry,chemistry,false +mateussbentes,mastodon.social,Mathematics,mathematics,false +mateussbentes,mastodon.social,Physics,physics,false +mateussbentes,mastodon.social,Science,science,false +mateussbentes,mastodon.social,Space,space,true +jvalleroy,fosstodon.org,Energy & Pollution,energy_pollution,false +jvalleroy,fosstodon.org,Environment,environment,false +jvalleroy,fosstodon.org,Space,space,false +jvalleroy,fosstodon.org,Technology,technology,false +jvalleroy,fosstodon.org,Programming,programming,true +justinionn,social.vivaldi.net,Architecture & Design,architecture_design,false +justinionn,social.vivaldi.net,Books & Literature,books_literature,false +justinionn,social.vivaldi.net,Breaking News,breaking_news,false +justinionn,social.vivaldi.net,Creative Arts,creative_arts,false +justinionn,social.vivaldi.net,Food & Drink,food_drink,false +justinionn,social.vivaldi.net,Humanities,humanities,false +justinionn,social.vivaldi.net,Humour,humour,false +justinionn,social.vivaldi.net,LGBTQ+,lgbtq,false +justinionn,social.vivaldi.net,Mental Health & Wellbeing,mental_health_wellbeing,false +justinionn,social.vivaldi.net,Movies,movies,false +justinionn,social.vivaldi.net,Music,music,false +justinionn,social.vivaldi.net,Nature & Wildlife,nature_wildlife,false +justinionn,social.vivaldi.net,Journalism & Comment,news_comment_data,false +justinionn,social.vivaldi.net,Performing Arts,performing_arts,false +justinionn,social.vivaldi.net,Technology,technology,false +justinionn,social.vivaldi.net,Travel,travel,false +justinionn,social.vivaldi.net,Visual Arts,visual_arts,false +justinionn,social.vivaldi.net,TV & Radio,tv_radio,true +_youssef_0k,newsmast.social,US Sport,us_sport,false +laurids,mastodon.social,Academia & Research,academia_research,false +laurids,mastodon.social,Architecture & Design,architecture_design,false +laurids,mastodon.social,Biodiversity & Rewilding,biodiversity_rewilding,false +laurids,mastodon.social,Biology,biology,false +laurids,mastodon.social,Books & Literature,books_literature,false +laurids,mastodon.social,Breaking News,breaking_news,false +laurids,mastodon.social,Chemistry,chemistry,false +laurids,mastodon.social,Climate change,climate_change,false +laurids,mastodon.social,Creative Arts,creative_arts,false +laurids,mastodon.social,Democracy & Human Rights,democracy_human_rights,false +laurids,mastodon.social,Energy & Pollution,energy_pollution,false +laurids,mastodon.social,Engineering,engineering,false +laurids,mastodon.social,Environment,environment,false +laurids,mastodon.social,Food & Drink,food_drink,false +laurids,mastodon.social,Football,football,false +laurids,mastodon.social,Gaming,gaming,false +laurids,mastodon.social,Government & Policy,government_policy,false +laurids,mastodon.social,History,history,false +laurids,mastodon.social,Humanities,humanities,false +laurids,mastodon.social,Humour,humour,false +laurids,mastodon.social,Movies,movies,false +laurids,mastodon.social,Nature & Wildlife,nature_wildlife,false +laurids,mastodon.social,Pets,pets,false +laurids,mastodon.social,Photography,photography,false +laurids,mastodon.social,Physics,physics,false +laurids,mastodon.social,Politics,politics,false +laurids,mastodon.social,Science,science,false +laurids,mastodon.social,Social Media,social_media,false +laurids,mastodon.social,Social Sciences,social_sciences,false +laurids,mastodon.social,Space,space,false +laurids,mastodon.social,Technology,technology,false +laurids,mastodon.social,Travel,travel,false +laurids,mastodon.social,TV & Radio,tv_radio,false +laurids,mastodon.social,Ukraine Invasion,ukraine_invasion,false +laurids,mastodon.social,US Politics,us_politics,false +laurids,mastodon.social,Visual Arts,visual_arts,false +laurids,mastodon.social,Programming,programming,true +_youssef_0k,newsmast.social,Visual Arts,visual_arts,false +_youssef_0k,newsmast.social,Weather,weather,false +_youssef_0k,newsmast.social,Women’s Voices,women_voices,false +_youssef_0k,newsmast.social,Workers Rights,workers_rights,false +_youssef_0k,newsmast.social,AI,ai,true +follow,twitter.social,Engineering,engineering,false +follow,twitter.social,Environment,environment,false +follow,twitter.social,Food & Drink,food_drink,false +tchambers,indieweb.social,Space,space,false +ATOxley,mastodon.sdf.org,Technology,technology,false +ATOxley,mastodon.sdf.org,Poverty & Inequality,poverty_inequality,true +tchambers,indieweb.social,Environment,environment,false +tchambers,indieweb.social,Climate change,climate_change,false +occuros,mastodon.gamedev.place,Biology,biology,false +occuros,mastodon.gamedev.place,Breaking News,breaking_news,false +follow,twitter.social,Football,football,false +follow,twitter.social,Gaming,gaming,false +follow,twitter.social,Government & Policy,government_policy,false +follow,twitter.social,Healthcare,healthcare,false +follow,twitter.social,History,history,false +follow,twitter.social,Humanities,humanities,false +lety,doesstuff.social,Academia & Research,academia_research,false +lety,doesstuff.social,Activism & Civil Rights,activism_civil_rights,false +lety,doesstuff.social,AI,ai,false +lety,doesstuff.social,Architecture & Design,architecture_design,false +lety,doesstuff.social,Biodiversity & Rewilding,biodiversity_rewilding,false +lety,doesstuff.social,Biology,biology,false +lety,doesstuff.social,Black Voices,black_voices,false +lety,doesstuff.social,Books & Literature,books_literature,false +quaewpos,kanoa.de,Academia & Research,academia_research,false +quaewpos,kanoa.de,AI,ai,false +quaewpos,kanoa.de,Biology,biology,false +quaewpos,kanoa.de,Chemistry,chemistry,false +quaewpos,kanoa.de,Democracy & Human Rights,democracy_human_rights,false +quaewpos,kanoa.de,Engineering,engineering,false +quaewpos,kanoa.de,Government & Policy,government_policy,false +quaewpos,kanoa.de,Healthcare,healthcare,false +quaewpos,kanoa.de,"Hunger, Disease & Water",hunger_disease_water,false +quaewpos,kanoa.de,Law & Justice,law_justice,false +quaewpos,kanoa.de,Mathematics,mathematics,false +quaewpos,kanoa.de,Journalism & Comment,news_comment_data,false +quaewpos,kanoa.de,Physics,physics,false +quaewpos,kanoa.de,Politics,politics,false +quaewpos,kanoa.de,Poverty & Inequality,poverty_inequality,false +quaewpos,kanoa.de,Programming,programming,false +quaewpos,kanoa.de,Science,science,false +quaewpos,kanoa.de,Social Media,social_media,false +quaewpos,kanoa.de,Space,space,false +quaewpos,kanoa.de,Technology,technology,false +quaewpos,kanoa.de,Ukraine Invasion,ukraine_invasion,false +quaewpos,kanoa.de,US Politics,us_politics,false +quaewpos,kanoa.de,Weather,weather,false +quaewpos,kanoa.de,Breaking News,breaking_news,true +lety,doesstuff.social,Breaking News,breaking_news,false +lety,doesstuff.social,Business,business,false +lety,doesstuff.social,Chemistry,chemistry,false +lety,doesstuff.social,Climate change,climate_change,false +lety,doesstuff.social,Creative Arts,creative_arts,false +follow,twitter.social,Humour,humour,false +follow,twitter.social,"Hunger, Disease & Water",hunger_disease_water,false +follow,twitter.social,Immigrants Rights,immigrants_rights,false +follow,twitter.social,Indigenous Peoples,indigenous_peoples,false +wbbdaily,flipboard.social,Breaking News,breaking_news,false +follow,twitter.social,Law & Justice,law_justice,false +follow,twitter.social,LGBTQ+,lgbtq,false +follow,twitter.social,Markets & Finance,markets_finance,false +follow,twitter.social,Mathematics,mathematics,false +follow,twitter.social,Mental Health & Wellbeing,mental_health_wellbeing,false +follow,twitter.social,Movies,movies,false +d_krueger,mas.to,US Politics,us_politics,false +TimBondy,mstdn.social,Academia & Research,academia_research,false +FreddieJ,newsmast.social,Nature & Wildlife,nature_wildlife,false +TimBondy,mstdn.social,Biodiversity & Rewilding,biodiversity_rewilding,false +TimBondy,mstdn.social,Biology,biology,false +TimBondy,mstdn.social,Chemistry,chemistry,false +TimBondy,mstdn.social,Climate change,climate_change,false +TimBondy,mstdn.social,Creative Arts,creative_arts,false +TimBondy,mstdn.social,Energy & Pollution,energy_pollution,false +follow,twitter.social,Music,music,false +follow,twitter.social,Nature & Wildlife,nature_wildlife,false +follow,twitter.social,Journalism & Comment,news_comment_data,false +follow,twitter.social,Performing Arts,performing_arts,false +follow,twitter.social,Pets,pets,false +follow,twitter.social,Philosophy,philosophy,false +vpol,mastodon.social,Engineering,engineering,false +vpol,mastodon.social,Journalism & Comment,news_comment_data,false +vpol,mastodon.social,Science,science,false +vpol,mastodon.social,Space,space,false +vpol,mastodon.social,Technology,technology,false +vpol,mastodon.social,Programming,programming,true +chino,newsmast.social,AI,ai,false +chino,newsmast.social,Business,business,false +chino,newsmast.social,Markets & Finance,markets_finance,false +chino,newsmast.social,Science,science,false +chino,newsmast.social,Space,space,false +chino,newsmast.social,Technology,technology,false +chino,newsmast.social,Breaking News,breaking_news,true +TimBondy,mstdn.social,Environment,environment,false +TimBondy,mstdn.social,Food & Drink,food_drink,false +andadapt,newsmast.social,AI,ai,false +andadapt,newsmast.social,Architecture & Design,architecture_design,false +leibi,social.bau-ha.us,Academia & Research,academia_research,false +leibi,social.bau-ha.us,AI,ai,false +leibi,social.bau-ha.us,Biodiversity & Rewilding,biodiversity_rewilding,false +leibi,social.bau-ha.us,Climate change,climate_change,false +leibi,social.bau-ha.us,Democracy & Human Rights,democracy_human_rights,false +leibi,social.bau-ha.us,Energy & Pollution,energy_pollution,false +leibi,social.bau-ha.us,Engineering,engineering,false +leibi,social.bau-ha.us,Environment,environment,false +leibi,social.bau-ha.us,Government & Policy,government_policy,false +leibi,social.bau-ha.us,Healthcare,healthcare,false +leibi,social.bau-ha.us,"Hunger, Disease & Water",hunger_disease_water,false +leibi,social.bau-ha.us,Law & Justice,law_justice,false +leibi,social.bau-ha.us,Journalism & Comment,news_comment_data,false +leibi,social.bau-ha.us,Physics,physics,false +leibi,social.bau-ha.us,Politics,politics,false +leibi,social.bau-ha.us,Poverty & Inequality,poverty_inequality,false +leibi,social.bau-ha.us,Programming,programming,false +leibi,social.bau-ha.us,Science,science,false +leibi,social.bau-ha.us,Social Media,social_media,false +leibi,social.bau-ha.us,Space,space,false +leibi,social.bau-ha.us,Technology,technology,false +leibi,social.bau-ha.us,Ukraine Invasion,ukraine_invasion,false +leibi,social.bau-ha.us,Breaking News,breaking_news,true +andadapt,newsmast.social,Biology,biology,false +andadapt,newsmast.social,Books & Literature,books_literature,false +andadapt,newsmast.social,Business,business,false +andadapt,newsmast.social,Chemistry,chemistry,false +andadapt,newsmast.social,Creative Arts,creative_arts,false +andadapt,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +davidfield,pebble.social,AI,ai,false +davidfield,pebble.social,Breaking News,breaking_news,false +davidfield,pebble.social,Movies,movies,false +davidfield,pebble.social,Photography,photography,false +davidfield,pebble.social,Science,science,false +davidfield,pebble.social,Space,space,false +davidfield,pebble.social,Technology,technology,true +victoriavito,mastodon.social,Mental Health & Wellbeing,mental_health_wellbeing,false +victoriavito,mastodon.social,Movies,movies,false +victoriavito,mastodon.social,Music,music,false +victoriavito,mastodon.social,Technology,technology,false +victoriavito,mastodon.social,Food & Drink,food_drink,true +psp1973,fosstodon.org,AI,ai,false +psp1973,fosstodon.org,Biology,biology,false +psp1973,fosstodon.org,Books & Literature,books_literature,false +psp1973,fosstodon.org,Breaking News,breaking_news,false +psp1973,fosstodon.org,Engineering,engineering,false +psp1973,fosstodon.org,Gaming,gaming,false +psp1973,fosstodon.org,Movies,movies,false +psp1973,fosstodon.org,Music,music,false +psp1973,fosstodon.org,Journalism & Comment,news_comment_data,false +psp1973,fosstodon.org,Photography,photography,false +psp1973,fosstodon.org,Physics,physics,false +psp1973,fosstodon.org,Science,science,false +psp1973,fosstodon.org,Social Media,social_media,false +psp1973,fosstodon.org,Space,space,false +psp1973,fosstodon.org,Technology,technology,false +psp1973,fosstodon.org,TV & Radio,tv_radio,false +psp1973,fosstodon.org,Visual Arts,visual_arts,false +psp1973,fosstodon.org,Weather,weather,false +psp1973,fosstodon.org,Programming,programming,true +jacklund,freeradical.zone,Activism & Civil Rights,activism_civil_rights,false +jacklund,freeradical.zone,Biodiversity & Rewilding,biodiversity_rewilding,false +jacklund,freeradical.zone,Black Voices,black_voices,false +jacklund,freeradical.zone,Climate change,climate_change,false +jacklund,freeradical.zone,Democracy & Human Rights,democracy_human_rights,false +jacklund,freeradical.zone,Energy & Pollution,energy_pollution,false +jacklund,freeradical.zone,Environment,environment,false +jacklund,freeradical.zone,Government & Policy,government_policy,false +jacklund,freeradical.zone,History,history,false +jacklund,freeradical.zone,"Hunger, Disease & Water",hunger_disease_water,false +jacklund,freeradical.zone,Immigrants Rights,immigrants_rights,false +jacklund,freeradical.zone,Indigenous Peoples,indigenous_peoples,false +jacklund,freeradical.zone,LGBTQ+,lgbtq,false +jacklund,freeradical.zone,Mathematics,mathematics,false +jacklund,freeradical.zone,Journalism & Comment,news_comment_data,false +jacklund,freeradical.zone,Philosophy,philosophy,false +jacklund,freeradical.zone,Physics,physics,false +jacklund,freeradical.zone,Politics,politics,false +jacklund,freeradical.zone,Poverty & Inequality,poverty_inequality,false +jacklund,freeradical.zone,Programming,programming,false +jacklund,freeradical.zone,Science,science,false +jacklund,freeradical.zone,Social Media,social_media,false +jacklund,freeradical.zone,Space,space,false +jacklund,freeradical.zone,Technology,technology,false +jacklund,freeradical.zone,Ukraine Invasion,ukraine_invasion,false +jacklund,freeradical.zone,US Politics,us_politics,false +jacklund,freeradical.zone,Weather,weather,false +jacklund,freeradical.zone,Women’s Voices,women_voices,false +jacklund,freeradical.zone,Breaking News,breaking_news,true +follow,twitter.social,Photography,photography,false +pkreissel,volksverpetzer.social,Ukraine Invasion,ukraine_invasion,false +TimBondy,mstdn.social,Football,football,false +TimBondy,mstdn.social,Government & Policy,government_policy,false +TimBondy,mstdn.social,Healthcare,healthcare,false +TimBondy,mstdn.social,Humour,humour,false +davidvasandani,social.coop,AI,ai,false +davidvasandani,social.coop,Democracy & Human Rights,democracy_human_rights,false +davidvasandani,social.coop,Science,science,false +davidvasandani,social.coop,Space,space,false +davidvasandani,social.coop,Technology,technology,false +davidvasandani,social.coop,Engineering,engineering,true +TimBondy,mstdn.social,Law & Justice,law_justice,false +TimBondy,mstdn.social,Mathematics,mathematics,false +TimBondy,mstdn.social,Mental Health & Wellbeing,mental_health_wellbeing,false +TimBondy,mstdn.social,Nature & Wildlife,nature_wildlife,false +TimBondy,mstdn.social,Pets,pets,false +TimBondy,mstdn.social,Physics,physics,false +TimBondy,mstdn.social,Politics,politics,false +TimBondy,mstdn.social,Puzzles,puzzles,false +TimBondy,mstdn.social,Science,science,false +TimBondy,mstdn.social,Space,space,false +TimBondy,mstdn.social,Sport,sport,false +TimBondy,mstdn.social,Travel,travel,false +TimBondy,mstdn.social,US Sport,us_sport,false +TimBondy,mstdn.social,US Politics,us_politics,true +randulo,mozilla.social,Performing Arts,performing_arts,false +randulo,mozilla.social,Books & Literature,books_literature,false +randulo,mozilla.social,Programming,programming,false +randulo,mozilla.social,Science,science,false +randulo,mozilla.social,Space,space,false +randulo,mozilla.social,Technology,technology,false +randulo,mozilla.social,Movies,movies,true +occuros,mastodon.gamedev.place,Engineering,engineering,false +occuros,mastodon.gamedev.place,Physics,physics,false +occuros,mastodon.gamedev.place,Science,science,false +occuros,mastodon.gamedev.place,Programming,programming,true +Robinbonhomme,mastodon.social,Humour,humour,false +Robinbonhomme,mastodon.social,Science,science,false +Robinbonhomme,mastodon.social,Social Sciences,social_sciences,false +Robinbonhomme,mastodon.social,Travel,travel,false +Robinbonhomme,mastodon.social,Mental Health & Wellbeing,mental_health_wellbeing,true +gsyhiap,kind.social,Business,business,false +gsyhiap,kind.social,Engineering,engineering,false +gsyhiap,kind.social,Government & Policy,government_policy,false +gsyhiap,kind.social,Markets & Finance,markets_finance,false +gsyhiap,kind.social,Mathematics,mathematics,false +gsyhiap,kind.social,Politics,politics,false +gsyhiap,kind.social,Science,science,false +gsyhiap,kind.social,Space,space,false +gsyhiap,kind.social,Technology,technology,false +gsyhiap,kind.social,US Politics,us_politics,false +gsyhiap,kind.social,Workers Rights,workers_rights,true +SabahH,newsmast.social,Breaking News,breaking_news,false +SabahH,newsmast.social,Business,business,false +SabahH,newsmast.social,Creative Arts,creative_arts,false +SabahH,newsmast.social,Markets & Finance,markets_finance,false +SabahH,newsmast.social,Movies,movies,false +SabahH,newsmast.social,Music,music,false +SabahH,newsmast.social,Performing Arts,performing_arts,false +SabahH,newsmast.social,Photography,photography,false +SabahH,newsmast.social,Social Media,social_media,false +SabahH,newsmast.social,Travel,travel,false +SabahH,newsmast.social,TV & Radio,tv_radio,false +SabahH,newsmast.social,Visual Arts,visual_arts,false +SabahH,newsmast.social,Journalism & Comment,news_comment_data,true +priester,mastodon.social,Academia & Research,academia_research,false +priester,mastodon.social,AI,ai,false +priester,mastodon.social,Architecture & Design,architecture_design,false +priester,mastodon.social,Biodiversity & Rewilding,biodiversity_rewilding,false +priester,mastodon.social,Biology,biology,false +priester,mastodon.social,Books & Literature,books_literature,false +priester,mastodon.social,Breaking News,breaking_news,false +priester,mastodon.social,Chemistry,chemistry,false +priester,mastodon.social,Climate change,climate_change,false +priester,mastodon.social,Creative Arts,creative_arts,false +priester,mastodon.social,Democracy & Human Rights,democracy_human_rights,false +priester,mastodon.social,Energy & Pollution,energy_pollution,false +priester,mastodon.social,Engineering,engineering,false +priester,mastodon.social,Humanities,humanities,true +iggy_b,mastodon.social,Music,music,false +iggy_b,mastodon.social,Nature & Wildlife,nature_wildlife,false +iggy_b,mastodon.social,Performing Arts,performing_arts,false +iggy_b,mastodon.social,Photography,photography,false +iggy_b,mastodon.social,Politics,politics,false +iggy_b,mastodon.social,Social Media,social_media,false +iggy_b,mastodon.social,Sport,sport,false +iggy_b,mastodon.social,Technology,technology,false +iggy_b,mastodon.social,Travel,travel,false +mleaning,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +mleaning,newsmast.social,Mathematics,mathematics,false +mleaning,newsmast.social,Physics,physics,false +mleaning,newsmast.social,Science,science,false +mleaning,newsmast.social,Breaking News,breaking_news,true +andadapt,newsmast.social,Engineering,engineering,false +andadapt,newsmast.social,Food & Drink,food_drink,false +andadapt,newsmast.social,Gaming,gaming,false +andadapt,newsmast.social,History,history,false +andadapt,newsmast.social,Humanities,humanities,false +andadapt,newsmast.social,Humour,humour,false +andadapt,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false +andadapt,newsmast.social,Markets & Finance,markets_finance,false +andadapt,newsmast.social,Mathematics,mathematics,false +andadapt,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false +andadapt,newsmast.social,Movies,movies,false +andadapt,newsmast.social,Music,music,false +andadapt,newsmast.social,Nature & Wildlife,nature_wildlife,false +andadapt,newsmast.social,Journalism & Comment,news_comment_data,false +andadapt,newsmast.social,Performing Arts,performing_arts,false +andadapt,newsmast.social,Pets,pets,false +andadapt,newsmast.social,Philosophy,philosophy,false +andadapt,newsmast.social,Photography,photography,false +andadapt,newsmast.social,Physics,physics,false +andadapt,newsmast.social,Poverty & Inequality,poverty_inequality,false +andadapt,newsmast.social,Programming,programming,false +andadapt,newsmast.social,Puzzles,puzzles,false +andadapt,newsmast.social,Science,science,false +andadapt,newsmast.social,Social Media,social_media,false +andadapt,newsmast.social,Social Sciences,social_sciences,false +andadapt,newsmast.social,Space,space,false +andadapt,newsmast.social,Technology,technology,false +andadapt,newsmast.social,Travel,travel,false +andadapt,newsmast.social,TV & Radio,tv_radio,false +andadapt,newsmast.social,Ukraine Invasion,ukraine_invasion,false +andadapt,newsmast.social,Visual Arts,visual_arts,false +andadapt,newsmast.social,Weather,weather,false +andadapt,newsmast.social,Workers Rights,workers_rights,false +andadapt,newsmast.social,Breaking News,breaking_news,true +iggy_b,mastodon.social,Visual Arts,visual_arts,false +iggy_b,mastodon.social,Football,football,true +IlCava,mastodon.uno,US Sport,us_sport,false +IlCava,mastodon.uno,Visual Arts,visual_arts,false +pkreissel,volksverpetzer.social,Biology,biology,false +IlCava,mastodon.uno,Weather,weather,false +pkreissel,volksverpetzer.social,Democracy & Human Rights,democracy_human_rights,false +sinclair,techhub.social,Social Sciences,social_sciences,false +jhantytown89,newsmast.social,Poverty & Inequality,poverty_inequality,false +danielbowmaniel,mastodon.sdf.org,Science,science,false +danielbowmaniel,mastodon.sdf.org,Technology,technology,false +danielbowmaniel,mastodon.sdf.org,US Politics,us_politics,false +danielbowmaniel,mastodon.sdf.org,US Sport,us_sport,false +danielbowmaniel,mastodon.sdf.org,Visual Arts,visual_arts,false +danielbowmaniel,mastodon.sdf.org,Weather,weather,false +mjgardner,social.sdf.org,Physics,physics,false +mjgardner,social.sdf.org,TV & Radio,tv_radio,false +mjgardner,social.sdf.org,History,history,false +chrisg,aus.social,Academia & Research,academia_research,false +chrisg,aus.social,Activism & Civil Rights,activism_civil_rights,false +chrisg,aus.social,AI,ai,false +chrisg,aus.social,Architecture & Design,architecture_design,false +chrisg,aus.social,Biodiversity & Rewilding,biodiversity_rewilding,false +chrisg,aus.social,Biology,biology,false +chrisg,aus.social,Black Voices,black_voices,false +chrisg,aus.social,Books & Literature,books_literature,false +chrisg,aus.social,Business,business,false +chrisg,aus.social,Chemistry,chemistry,false +chrisg,aus.social,Climate change,climate_change,false +chrisg,aus.social,Creative Arts,creative_arts,false +chrisg,aus.social,Democracy & Human Rights,democracy_human_rights,false +chrisg,aus.social,Disabled Voices,disabled_voices,false +chrisg,aus.social,Energy & Pollution,energy_pollution,false +chrisg,aus.social,Engineering,engineering,false +chrisg,aus.social,Environment,environment,false +chrisg,aus.social,Food & Drink,food_drink,false +chrisg,aus.social,Gaming,gaming,false +chrisg,aus.social,Government & Policy,government_policy,false +chrisg,aus.social,Healthcare,healthcare,false +chrisg,aus.social,History,history,false +chrisg,aus.social,Humanities,humanities,false +chrisg,aus.social,Humour,humour,false +chrisg,aus.social,Immigrants Rights,immigrants_rights,false +chrisg,aus.social,Indigenous Peoples,indigenous_peoples,false +chrisg,aus.social,Law & Justice,law_justice,false +chrisg,aus.social,LGBTQ+,lgbtq,false +chrisg,aus.social,Markets & Finance,markets_finance,false +chrisg,aus.social,Mathematics,mathematics,false +chrisg,aus.social,Mental Health & Wellbeing,mental_health_wellbeing,false +chrisg,aus.social,Movies,movies,false +chrisg,aus.social,Music,music,false +priester,mastodon.social,Environment,environment,false +priester,mastodon.social,Food & Drink,food_drink,false +priester,mastodon.social,Gaming,gaming,false +priester,mastodon.social,Government & Policy,government_policy,false +priester,mastodon.social,Healthcare,healthcare,false +priester,mastodon.social,History,history,false +priester,mastodon.social,Humour,humour,false +priester,mastodon.social,"Hunger, Disease & Water",hunger_disease_water,false +priester,mastodon.social,Law & Justice,law_justice,false +priester,mastodon.social,Mathematics,mathematics,false +priester,mastodon.social,Mental Health & Wellbeing,mental_health_wellbeing,false +priester,mastodon.social,Movies,movies,false +priester,mastodon.social,Music,music,false +priester,mastodon.social,Nature & Wildlife,nature_wildlife,false +priester,mastodon.social,Journalism & Comment,news_comment_data,false +priester,mastodon.social,Performing Arts,performing_arts,false +priester,mastodon.social,Pets,pets,false +priester,mastodon.social,Philosophy,philosophy,false +priester,mastodon.social,Photography,photography,false +priester,mastodon.social,Physics,physics,false +priester,mastodon.social,Politics,politics,false +priester,mastodon.social,Poverty & Inequality,poverty_inequality,false +priester,mastodon.social,Programming,programming,false +priester,mastodon.social,Puzzles,puzzles,false +priester,mastodon.social,Science,science,false +priester,mastodon.social,Social Media,social_media,false +priester,mastodon.social,Social Sciences,social_sciences,false +priester,mastodon.social,Space,space,false +priester,mastodon.social,Technology,technology,false +priester,mastodon.social,Travel,travel,false +priester,mastodon.social,TV & Radio,tv_radio,false +priester,mastodon.social,Ukraine Invasion,ukraine_invasion,false +priester,mastodon.social,US Politics,us_politics,false +priester,mastodon.social,Visual Arts,visual_arts,false +priester,mastodon.social,Weather,weather,false +IlCava,mastodon.uno,Women’s Voices,women_voices,false +IlCava,mastodon.uno,Science,science,true +d_krueger,mas.to,Workers Rights,workers_rights,false +d_krueger,mas.to,Climate change,climate_change,true +khabeko,techhub.social,Mathematics,mathematics,false +khabeko,techhub.social,Physics,physics,false +khabeko,techhub.social,Programming,programming,false +follow,twitter.social,Physics,physics,false +follow,twitter.social,Politics,politics,false +follow,twitter.social,Poverty & Inequality,poverty_inequality,false +follow,twitter.social,Programming,programming,false +follow,twitter.social,Puzzles,puzzles,false +follow,twitter.social,Science,science,false +follow,twitter.social,Social Sciences,social_sciences,false +follow,twitter.social,Space,space,false +follow,twitter.social,Sport,sport,false +BobDoodle,pnw.zone,Breaking News,breaking_news,false +BobDoodle,pnw.zone,Climate change,climate_change,false +BobDoodle,pnw.zone,Democracy & Human Rights,democracy_human_rights,false +BobDoodle,pnw.zone,Energy & Pollution,energy_pollution,false +BobDoodle,pnw.zone,Government & Policy,government_policy,false +BobDoodle,pnw.zone,Healthcare,healthcare,false +BobDoodle,pnw.zone,"Hunger, Disease & Water",hunger_disease_water,false +BobDoodle,pnw.zone,Law & Justice,law_justice,false +BobDoodle,pnw.zone,Journalism & Comment,news_comment_data,false +BobDoodle,pnw.zone,Poverty & Inequality,poverty_inequality,false +BobDoodle,pnw.zone,Social Media,social_media,false +BobDoodle,pnw.zone,Social Sciences,social_sciences,false +BobDoodle,pnw.zone,US Politics,us_politics,false +BobDoodle,pnw.zone,Ukraine Invasion,ukraine_invasion,true +follow,twitter.social,Technology,technology,false +follow,twitter.social,Travel,travel,false +heathenstorm,mastodon.social,AI,ai,false +heathenstorm,mastodon.social,Programming,programming,false +heathenstorm,mastodon.social,Space,space,false +heathenstorm,mastodon.social,Technology,technology,false +heathenstorm,mastodon.social,Social Media,social_media,true +Deanmobley,mastodon.social,Architecture & Design,architecture_design,false +Deanmobley,mastodon.social,Chemistry,chemistry,false +Deanmobley,mastodon.social,Creative Arts,creative_arts,false +Deanmobley,mastodon.social,Food & Drink,food_drink,false +Deanmobley,mastodon.social,History,history,false +Deanmobley,mastodon.social,Humanities,humanities,false +Deanmobley,mastodon.social,Humour,humour,false +Deanmobley,mastodon.social,Mental Health & Wellbeing,mental_health_wellbeing,false +Deanmobley,mastodon.social,Movies,movies,false +Deanmobley,mastodon.social,Music,music,false +Deanmobley,mastodon.social,Nature & Wildlife,nature_wildlife,false +Deanmobley,mastodon.social,Performing Arts,performing_arts,false +Deanmobley,mastodon.social,Philosophy,philosophy,false +Deanmobley,mastodon.social,Physics,physics,false +Deanmobley,mastodon.social,Science,science,false +Deanmobley,mastodon.social,Social Sciences,social_sciences,false +Deanmobley,mastodon.social,Space,space,false +Deanmobley,mastodon.social,TV & Radio,tv_radio,false +Deanmobley,mastodon.social,Visual Arts,visual_arts,false +Deanmobley,mastodon.social,Books & Literature,books_literature,true +Tony62Pineview,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false +Tony62Pineview,newsmast.social,Climate change,climate_change,false +Tony62Pineview,newsmast.social,Energy & Pollution,energy_pollution,false +Tony62Pineview,newsmast.social,Football,football,false +Tony62Pineview,newsmast.social,Humanities,humanities,false +Tony62Pineview,newsmast.social,Music,music,false +Tony62Pineview,newsmast.social,Journalism & Comment,news_comment_data,false +Tony62Pineview,newsmast.social,Performing Arts,performing_arts,false +Tony62Pineview,newsmast.social,TV & Radio,tv_radio,false +Tony62Pineview,newsmast.social,US Sport,us_sport,false +Tony62Pineview,newsmast.social,Environment,environment,true +gardito,mastodon.social,Activism & Civil Rights,activism_civil_rights,false +gardito,mastodon.social,AI,ai,false +gardito,mastodon.social,Climate change,climate_change,false +gardito,mastodon.social,Democracy & Human Rights,democracy_human_rights,false +gardito,mastodon.social,Engineering,engineering,false +gardito,mastodon.social,Environment,environment,false +gardito,mastodon.social,Government & Policy,government_policy,false +gardito,mastodon.social,Healthcare,healthcare,false +gardito,mastodon.social,History,history,false +gardito,mastodon.social,Humanities,humanities,false +gardito,mastodon.social,"Hunger, Disease & Water",hunger_disease_water,false +gardito,mastodon.social,Journalism & Comment,news_comment_data,false +gardito,mastodon.social,Philosophy,philosophy,false +gardito,mastodon.social,Politics,politics,false +gardito,mastodon.social,Poverty & Inequality,poverty_inequality,false +gardito,mastodon.social,Science,science,false +gardito,mastodon.social,Social Media,social_media,false +flyoverproj,lor.sh,Academia & Research,academia_research,false +flyoverproj,lor.sh,AI,ai,false +flyoverproj,lor.sh,Black Voices,black_voices,false +flyoverproj,lor.sh,Climate change,climate_change,false +flyoverproj,lor.sh,Democracy & Human Rights,democracy_human_rights,false +flyoverproj,lor.sh,Disabled Voices,disabled_voices,false +flyoverproj,lor.sh,Energy & Pollution,energy_pollution,false +flyoverproj,lor.sh,Government & Policy,government_policy,false +flyoverproj,lor.sh,Healthcare,healthcare,false +flyoverproj,lor.sh,Humanities,humanities,false +flyoverproj,lor.sh,"Hunger, Disease & Water",hunger_disease_water,false +flyoverproj,lor.sh,Immigrants Rights,immigrants_rights,false +flyoverproj,lor.sh,Indigenous Peoples,indigenous_peoples,false +flyoverproj,lor.sh,Law & Justice,law_justice,false +flyoverproj,lor.sh,LGBTQ+,lgbtq,false +flyoverproj,lor.sh,Movies,movies,false +flyoverproj,lor.sh,Performing Arts,performing_arts,false +flyoverproj,lor.sh,Politics,politics,false +flyoverproj,lor.sh,Poverty & Inequality,poverty_inequality,false +flyoverproj,lor.sh,Social Media,social_media,false +flyoverproj,lor.sh,Social Sciences,social_sciences,false +flyoverproj,lor.sh,Technology,technology,false +flyoverproj,lor.sh,TV & Radio,tv_radio,false +flyoverproj,lor.sh,Ukraine Invasion,ukraine_invasion,false +flyoverproj,lor.sh,US Politics,us_politics,false +flyoverproj,lor.sh,Visual Arts,visual_arts,false +flyoverproj,lor.sh,Women’s Voices,women_voices,false +flyoverproj,lor.sh,Activism & Civil Rights,activism_civil_rights,true +gardito,mastodon.social,Social Sciences,social_sciences,false +gardito,mastodon.social,Space,space,false +gardito,mastodon.social,Technology,technology,false +gardito,mastodon.social,US Politics,us_politics,false +gardito,mastodon.social,Weather,weather,false +gardito,mastodon.social,Breaking News,breaking_news,true +sophia,newsmast.social,Activism & Civil Rights,activism_civil_rights,false +Cormac,mastodon.london,Activism & Civil Rights,activism_civil_rights,false +Cormac,mastodon.london,Architecture & Design,architecture_design,false +Cormac,mastodon.london,Books & Literature,books_literature,false +Cormac,mastodon.london,Democracy & Human Rights,democracy_human_rights,false +Cormac,mastodon.london,History,history,false +Cormac,mastodon.london,Movies,movies,false +Cormac,mastodon.london,Social Sciences,social_sciences,false +Cormac,mastodon.london,Technology,technology,false +Cormac,mastodon.london,Humanities,humanities,true +OlPatchy2Eyes,ieji.de,Gaming,gaming,false +syncretist,writing.exchange,Humanities,humanities,false +syncretist,writing.exchange,Journalism & Comment,news_comment_data,false +syncretist,writing.exchange,Science,science,false +syncretist,writing.exchange,Social Sciences,social_sciences,false +Name,mstdn.plus,AI,ai,false +Name,mstdn.plus,Football,football,false +Name,mstdn.plus,Sport,sport,false +Name,mstdn.plus,Weather,weather,false +Name,mstdn.plus,Breaking News,breaking_news,true +syncretist,writing.exchange,Space,space,false +syncretist,writing.exchange,Breaking News,breaking_news,true +OlPatchy2Eyes,ieji.de,Architecture & Design,architecture_design,false +johannesalbrecth,bolha.us,AI,ai,false +johannesalbrecth,bolha.us,Architecture & Design,architecture_design,false +johannesalbrecth,bolha.us,Biology,biology,false +johannesalbrecth,bolha.us,Books & Literature,books_literature,false +johannesalbrecth,bolha.us,Breaking News,breaking_news,false +johannesalbrecth,bolha.us,Chemistry,chemistry,false +johannesalbrecth,bolha.us,Engineering,engineering,false +johannesalbrecth,bolha.us,Gaming,gaming,false +johannesalbrecth,bolha.us,History,history,false +johannesalbrecth,bolha.us,Humanities,humanities,false +johannesalbrecth,bolha.us,Humour,humour,false +Del_the_funk66,mastodon.social,Academia & Research,academia_research,false +Del_the_funk66,mastodon.social,AI,ai,false +Del_the_funk66,mastodon.social,Books & Literature,books_literature,false +Del_the_funk66,mastodon.social,Breaking News,breaking_news,false +Del_the_funk66,mastodon.social,Business,business,false +Del_the_funk66,mastodon.social,Democracy & Human Rights,democracy_human_rights,false +Del_the_funk66,mastodon.social,Engineering,engineering,false +Del_the_funk66,mastodon.social,Environment,environment,false +Del_the_funk66,mastodon.social,Food & Drink,food_drink,false +Del_the_funk66,mastodon.social,Football,football,false +Del_the_funk66,mastodon.social,Gaming,gaming,false +Del_the_funk66,mastodon.social,Healthcare,healthcare,false +Del_the_funk66,mastodon.social,Humanities,humanities,false +Del_the_funk66,mastodon.social,Humour,humour,false +Del_the_funk66,mastodon.social,Law & Justice,law_justice,false +Del_the_funk66,mastodon.social,Government & Policy,government_policy,true +Del_the_funk66,mastodon.social,Markets & Finance,markets_finance,false +Del_the_funk66,mastodon.social,Mental Health & Wellbeing,mental_health_wellbeing,false +Del_the_funk66,mastodon.social,Movies,movies,false +Del_the_funk66,mastodon.social,Music,music,false +Del_the_funk66,mastodon.social,Journalism & Comment,news_comment_data,false +Del_the_funk66,mastodon.social,Pets,pets,false +Del_the_funk66,mastodon.social,Politics,politics,false +Del_the_funk66,mastodon.social,Poverty & Inequality,poverty_inequality,false +Del_the_funk66,mastodon.social,Programming,programming,false +Del_the_funk66,mastodon.social,Social Media,social_media,false +Del_the_funk66,mastodon.social,Technology,technology,false +Del_the_funk66,mastodon.social,Travel,travel,false +Del_the_funk66,mastodon.social,TV & Radio,tv_radio,false +Del_the_funk66,mastodon.social,US Politics,us_politics,false +Del_the_funk66,mastodon.social,Workers Rights,workers_rights,false +paulpeace,mastodon.social,Energy & Pollution,energy_pollution,false +ArnoC,eupolicy.social,Academia & Research,academia_research,false +ArnoC,eupolicy.social,AI,ai,false +ArnoC,eupolicy.social,Breaking News,breaking_news,false +ArnoC,eupolicy.social,Democracy & Human Rights,democracy_human_rights,false +cm5,mas.to,Biodiversity & Rewilding,biodiversity_rewilding,false +ArnoC,eupolicy.social,Government & Policy,government_policy,false +cm5,mas.to,Engineering,engineering,false +cm5,mas.to,Environment,environment,false +cm5,mas.to,Programming,programming,false +cm5,mas.to,Technology,technology,true +ArnoC,eupolicy.social,History,history,false +ArnoC,eupolicy.social,Humanities,humanities,false +ArnoC,eupolicy.social,Humour,humour,false +ArnoC,eupolicy.social,Law & Justice,law_justice,false +ArnoC,eupolicy.social,Mental Health & Wellbeing,mental_health_wellbeing,false +ArnoC,eupolicy.social,Philosophy,philosophy,false +ArnoC,eupolicy.social,Science,science,false +roomaroo,mastodon.green,AI,ai,false +roomaroo,mastodon.green,Biodiversity & Rewilding,biodiversity_rewilding,false +roomaroo,mastodon.green,Climate change,climate_change,false +roomaroo,mastodon.green,Energy & Pollution,energy_pollution,false +roomaroo,mastodon.green,Engineering,engineering,false +roomaroo,mastodon.green,Environment,environment,false +roomaroo,mastodon.green,Programming,programming,false +roomaroo,mastodon.green,Technology,technology,true +daniellean,newsmast.social,Activism & Civil Rights,activism_civil_rights,false +daniellean,newsmast.social,Black Voices,black_voices,false +daniellean,newsmast.social,Breaking News,breaking_news,false +daniellean,newsmast.social,Climate change,climate_change,false +daniellean,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +daniellean,newsmast.social,Environment,environment,false +daniellean,newsmast.social,Government & Policy,government_policy,false +daniellean,newsmast.social,Humanities,humanities,false +daniellean,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false +daniellean,newsmast.social,Immigrants Rights,immigrants_rights,false +daniellean,newsmast.social,Indigenous Peoples,indigenous_peoples,false +daniellean,newsmast.social,Journalism & Comment,news_comment_data,false +daniellean,newsmast.social,Social Media,social_media,false +daniellean,newsmast.social,Social Sciences,social_sciences,false +daniellean,newsmast.social,Women’s Voices,women_voices,false +daniellean,newsmast.social,LGBTQ+,lgbtq,true +daniellean,newsmast.social,Ukraine Invasion,ukraine_invasion,false +daniellean,newsmast.social,Weather,weather,false +daniellean,newsmast.social,Academia & Research,academia_research,false +daniellean,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false +daniellean,newsmast.social,Disabled Voices,disabled_voices,false +daniellean,newsmast.social,Science,science,false +Greenarchist,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false +Greenarchist,newsmast.social,Breaking News,breaking_news,false +Greenarchist,newsmast.social,Energy & Pollution,energy_pollution,false +Greenarchist,newsmast.social,Science,science,false +Greenarchist,newsmast.social,Environment,environment,true +embibel,mastodon.online,Books & Literature,books_literature,false +embibel,mastodon.online,History,history,false +embibel,mastodon.online,Humanities,humanities,false +embibel,mastodon.online,Movies,movies,false +embibel,mastodon.online,Music,music,false +embibel,mastodon.online,Philosophy,philosophy,false +embibel,mastodon.online,Social Sciences,social_sciences,false +embibel,mastodon.online,Technology,technology,false +embibel,mastodon.online,Football,football,true +daniellean,newsmast.social,Poverty & Inequality,poverty_inequality,false +daniellean,newsmast.social,Politics,politics,false +daniellean,newsmast.social,US Politics,us_politics,false +daniellean,newsmast.social,Energy & Pollution,energy_pollution,false +nitinkhanna,mastodon.social,Architecture & Design,architecture_design,false +nitinkhanna,mastodon.social,Books & Literature,books_literature,false +nitinkhanna,mastodon.social,Breaking News,breaking_news,false +nitinkhanna,mastodon.social,Democracy & Human Rights,democracy_human_rights,false +nitinkhanna,mastodon.social,Environment,environment,false +nitinkhanna,mastodon.social,Gaming,gaming,false +nitinkhanna,mastodon.social,Government & Policy,government_policy,false +nitinkhanna,mastodon.social,Humour,humour,false +nitinkhanna,mastodon.social,Movies,movies,false +nitinkhanna,mastodon.social,Journalism & Comment,news_comment_data,false +nitinkhanna,mastodon.social,Physics,physics,false +nitinkhanna,mastodon.social,Science,science,false +nitinkhanna,mastodon.social,Space,space,false +nitinkhanna,mastodon.social,Technology,technology,false +nitinkhanna,mastodon.social,AI,ai,true +marcofrasca,mastodon.uno,Engineering,engineering,false +marcofrasca,mastodon.uno,Physics,physics,false +marcofrasca,mastodon.uno,Programming,programming,false +marcofrasca,mastodon.uno,Science,science,false +marcofrasca,mastodon.uno,Technology,technology,true +marcofrasca,mastodon.uno,Social Media,social_media,false +marcofrasca,mastodon.uno,Photography,photography,false +marcofrasca,mastodon.uno,Music,music,false +sophia,newsmast.social,AI,ai,false +ArnoC,eupolicy.social,Social Sciences,social_sciences,false +ArnoC,eupolicy.social,Technology,technology,true +sophia,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false +metalpig,mastodon.social,AI,ai,false +metalpig,mastodon.social,Biodiversity & Rewilding,biodiversity_rewilding,false +metalpig,mastodon.social,Climate change,climate_change,false +metalpig,mastodon.social,Creative Arts,creative_arts,false +metalpig,mastodon.social,Energy & Pollution,energy_pollution,false +metalpig,mastodon.social,Environment,environment,false +metalpig,mastodon.social,Food & Drink,food_drink,false +metalpig,mastodon.social,Humour,humour,false +metalpig,mastodon.social,Mental Health & Wellbeing,mental_health_wellbeing,false +metalpig,mastodon.social,Nature & Wildlife,nature_wildlife,false +metalpig,mastodon.social,Pets,pets,false +metalpig,mastodon.social,Programming,programming,false +metalpig,mastodon.social,Puzzles,puzzles,false +metalpig,mastodon.social,Technology,technology,false +metalpig,mastodon.social,Travel,travel,false +metalpig,mastodon.social,Engineering,engineering,true +wbbdaily,flipboard.social,Football,football,false +sophia,newsmast.social,Black Voices,black_voices,false +sophia,newsmast.social,Climate change,climate_change,false +sophia,newsmast.social,Disabled Voices,disabled_voices,false +sophia,newsmast.social,Energy & Pollution,energy_pollution,false +sophia,newsmast.social,Engineering,engineering,false +sophia,newsmast.social,Immigrants Rights,immigrants_rights,false +sophia,newsmast.social,Indigenous Peoples,indigenous_peoples,false +sophia,newsmast.social,LGBTQ+,lgbtq,false +sophia,newsmast.social,Programming,programming,false +sophia,newsmast.social,Technology,technology,false +sophia,newsmast.social,Women’s Voices,women_voices,false +sophia,newsmast.social,Environment,environment,true +pkreissel,volksverpetzer.social,"Hunger, Disease & Water",hunger_disease_water,false +pkreissel,volksverpetzer.social,Physics,physics,false +pkreissel,volksverpetzer.social,Science,science,false +pkreissel,volksverpetzer.social,Climate change,climate_change,true +mariosiniscalchi,mastodon.uno,Energy & Pollution,energy_pollution,false +follow,twitter.social,TV & Radio,tv_radio,false +follow,twitter.social,Ukraine Invasion,ukraine_invasion,false +follow,twitter.social,US Politics,us_politics,false +yanmoenaing,newsmast.social,Business,business,false +yanmoenaing,newsmast.social,Chemistry,chemistry,false +yanmoenaing,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +yanmoenaing,newsmast.social,Engineering,engineering,false +yanmoenaing,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false +yanmoenaing,newsmast.social,Markets & Finance,markets_finance,false +yanmoenaing,newsmast.social,Mathematics,mathematics,false +yanmoenaing,newsmast.social,Physics,physics,false +yanmoenaing,newsmast.social,Poverty & Inequality,poverty_inequality,false +yanmoenaing,newsmast.social,Programming,programming,false +yanmoenaing,newsmast.social,Science,science,false +yanmoenaing,newsmast.social,Technology,technology,false +yanmoenaing,newsmast.social,Workers Rights,workers_rights,false +yanmoenaing,newsmast.social,Space,space,false +alemida30,newsmast.social,Breaking News,breaking_news,false +alemida30,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +alemida30,newsmast.social,Humanities,humanities,false +alemida30,newsmast.social,Social Media,social_media,false +alemida30,newsmast.social,LGBTQ+,lgbtq,true +rizoid,mastodon.world,Chemistry,chemistry,false +rizoid,mastodon.world,Climate change,climate_change,false +rizoid,mastodon.world,Democracy & Human Rights,democracy_human_rights,false +rizoid,mastodon.world,Energy & Pollution,energy_pollution,false +rizoid,mastodon.world,Environment,environment,false +rizoid,mastodon.world,Law & Justice,law_justice,false +rizoid,mastodon.world,Journalism & Comment,news_comment_data,false +rizoid,mastodon.world,Politics,politics,false +rizoid,mastodon.world,Programming,programming,false +rizoid,mastodon.world,Science,science,false +rizoid,mastodon.world,Social Media,social_media,false +rizoid,mastodon.world,Space,space,false +rizoid,mastodon.world,Technology,technology,false +rizoid,mastodon.world,US Politics,us_politics,false +rizoid,mastodon.world,Weather,weather,false +rizoid,mastodon.world,Breaking News,breaking_news,true +ToposInstitute,newsmast.social,AI,ai,false +ToposInstitute,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +ToposInstitute,newsmast.social,Engineering,engineering,false +ToposInstitute,newsmast.social,Poverty & Inequality,poverty_inequality,false +ToposInstitute,newsmast.social,Science,science,false +ToposInstitute,newsmast.social,Technology,technology,false +ToposInstitute,newsmast.social,Mathematics,mathematics,true +irlrefuge,newsmast.social,Technology,technology,true +trinsdau,m.cmx.im,Democracy & Human Rights,democracy_human_rights,false +trinsdau,m.cmx.im,History,history,false +trinsdau,m.cmx.im,Humanities,humanities,false +trinsdau,m.cmx.im,"Hunger, Disease & Water",hunger_disease_water,false +trinsdau,m.cmx.im,Social Sciences,social_sciences,true +mariosiniscalchi,mastodon.uno,Environment,environment,false +mariosiniscalchi,mastodon.uno,Journalism & Comment,news_comment_data,false +mariosiniscalchi,mastodon.uno,Science,science,false +WelchE,newsmast.social,LGBTQ+,lgbtq,false +WelchE,newsmast.social,Indigenous Peoples,indigenous_peoples,false +WelchE,newsmast.social,Creative Arts,creative_arts,false +jhantytown89,newsmast.social,Science,science,false +jhantytown89,newsmast.social,Workers Rights,workers_rights,false +WelchE,newsmast.social,Food & Drink,food_drink,false +WelchE,newsmast.social,Nature & Wildlife,nature_wildlife,false +quillmatiq,mastodon.social,Breaking News,breaking_news,false +quillmatiq,mastodon.social,Business,business,false +quillmatiq,mastodon.social,Engineering,engineering,false +quillmatiq,mastodon.social,Social Media,social_media,false +quillmatiq,mastodon.social,Technology,technology,true +WelchE,newsmast.social,Puzzles,puzzles,false +mjgardner,social.sdf.org,Science,science,false +mjgardner,social.sdf.org,Movies,movies,false +mjgardner,social.sdf.org,Performing Arts,performing_arts,false +DrJLCLee,mastodon.green,Science,science,false +xomex,defcon.social,Mathematics,mathematics,false +xomex,defcon.social,Programming,programming,false +virtulis,loud.computer,Biology,biology,false +virtulis,loud.computer,Breaking News,breaking_news,false +virtulis,loud.computer,Climate change,climate_change,false +virtulis,loud.computer,Democracy & Human Rights,democracy_human_rights,false +virtulis,loud.computer,Energy & Pollution,energy_pollution,false +virtulis,loud.computer,Engineering,engineering,false +virtulis,loud.computer,Environment,environment,false +virtulis,loud.computer,Physics,physics,false +virtulis,loud.computer,Science,science,false +virtulis,loud.computer,Space,space,false +virtulis,loud.computer,Technology,technology,false +virtulis,loud.computer,Ukraine Invasion,ukraine_invasion,false +virtulis,loud.computer,Programming,programming,true +xomex,defcon.social,Space,space,false +xomex,defcon.social,Technology,technology,false +xomex,defcon.social,US Politics,us_politics,false +xomex,defcon.social,Science,science,true +johannesalbrecth,bolha.us,Mathematics,mathematics,false +johannesalbrecth,bolha.us,Mental Health & Wellbeing,mental_health_wellbeing,false +johannesalbrecth,bolha.us,Movies,movies,false +johannesalbrecth,bolha.us,Music,music,false +justinling,mastodon.online,Academia & Research,academia_research,false +justinling,mastodon.online,Democracy & Human Rights,democracy_human_rights,false +justinling,mastodon.online,Government & Policy,government_policy,false +justinling,mastodon.online,Journalism & Comment,news_comment_data,false +justinling,mastodon.online,Politics,politics,false +justinling,mastodon.online,Ukraine Invasion,ukraine_invasion,false +justinling,mastodon.online,US Politics,us_politics,false +justinling,mastodon.online,Breaking News,breaking_news,true +johannesalbrecth,bolha.us,Journalism & Comment,news_comment_data,false +johannesalbrecth,bolha.us,Performing Arts,performing_arts,false +johannesalbrecth,bolha.us,Philosophy,philosophy,false +johannesalbrecth,bolha.us,Photography,photography,false +johannesalbrecth,bolha.us,Physics,physics,false +johannesalbrecth,bolha.us,Programming,programming,false +johannesalbrecth,bolha.us,Puzzles,puzzles,false +johannesalbrecth,bolha.us,Science,science,false +johannesalbrecth,bolha.us,Social Media,social_media,false +johannesalbrecth,bolha.us,Social Sciences,social_sciences,false +johannesalbrecth,bolha.us,Space,space,false +johannesalbrecth,bolha.us,Technology,technology,false +johannesalbrecth,bolha.us,TV & Radio,tv_radio,false +johannesalbrecth,bolha.us,Ukraine Invasion,ukraine_invasion,false +johannesalbrecth,bolha.us,Visual Arts,visual_arts,false +johannesalbrecth,bolha.us,Weather,weather,false +johannesalbrecth,bolha.us,LGBTQ+,lgbtq,true +guidostevens,kolektiva.social,Biodiversity & Rewilding,biodiversity_rewilding,false +guidostevens,kolektiva.social,Business,business,false +guidostevens,kolektiva.social,Energy & Pollution,energy_pollution,false +guidostevens,kolektiva.social,Engineering,engineering,false +guidostevens,kolektiva.social,Environment,environment,false +guidostevens,kolektiva.social,History,history,false +guidostevens,kolektiva.social,Humanities,humanities,false +guidostevens,kolektiva.social,Philosophy,philosophy,false +guidostevens,kolektiva.social,Programming,programming,false +guidostevens,kolektiva.social,Social Sciences,social_sciences,false +guidostevens,kolektiva.social,Technology,technology,false +guidostevens,kolektiva.social,Climate change,climate_change,true +livelylion6,mastodon.social,Breaking News,breaking_news,true +zack,hachyderm.io,Democracy & Human Rights,democracy_human_rights,false +zack,hachyderm.io,"Hunger, Disease & Water",hunger_disease_water,false +zack,hachyderm.io,Journalism & Comment,news_comment_data,false +zack,hachyderm.io,Poverty & Inequality,poverty_inequality,false +zack,hachyderm.io,Breaking News,breaking_news,true +DadeMurphy,chaotic.fun,Breaking News,breaking_news,true +RevChrismok,dobbs.town,Academia & Research,academia_research,false +RevChrismok,dobbs.town,Activism & Civil Rights,activism_civil_rights,false +RevChrismok,dobbs.town,AI,ai,false +RevChrismok,dobbs.town,Architecture & Design,architecture_design,false +yatzy,mastodon.social,Academia & Research,academia_research,false +yatzy,mastodon.social,AI,ai,false +yatzy,mastodon.social,Architecture & Design,architecture_design,false +yatzy,mastodon.social,Books & Literature,books_literature,false +yatzy,mastodon.social,Breaking News,breaking_news,false +yatzy,mastodon.social,Business,business,false +yatzy,mastodon.social,Creative Arts,creative_arts,false +yatzy,mastodon.social,Energy & Pollution,energy_pollution,false +yatzy,mastodon.social,Environment,environment,false +yatzy,mastodon.social,Food & Drink,food_drink,false +yatzy,mastodon.social,Football,football,false +yatzy,mastodon.social,Gaming,gaming,false +yatzy,mastodon.social,Engineering,engineering,true +RevChrismok,dobbs.town,Biodiversity & Rewilding,biodiversity_rewilding,false +RevChrismok,dobbs.town,Biology,biology,false +RevChrismok,dobbs.town,Black Voices,black_voices,false +RevChrismok,dobbs.town,Books & Literature,books_literature,false +RevChrismok,dobbs.town,Business,business,false +RevChrismok,dobbs.town,Chemistry,chemistry,false +RevChrismok,dobbs.town,Climate change,climate_change,false +RevChrismok,dobbs.town,Democracy & Human Rights,democracy_human_rights,false +RevChrismok,dobbs.town,Energy & Pollution,energy_pollution,false +RevChrismok,dobbs.town,Engineering,engineering,false +RevChrismok,dobbs.town,Environment,environment,false +RevChrismok,dobbs.town,Gaming,gaming,false +RevChrismok,dobbs.town,Government & Policy,government_policy,false +RevChrismok,dobbs.town,Healthcare,healthcare,false +RevChrismok,dobbs.town,History,history,false +RevChrismok,dobbs.town,Humanities,humanities,false +RevChrismok,dobbs.town,"Hunger, Disease & Water",hunger_disease_water,false +RevChrismok,dobbs.town,Immigrants Rights,immigrants_rights,false +RevChrismok,dobbs.town,Indigenous Peoples,indigenous_peoples,false +RevChrismok,dobbs.town,Law & Justice,law_justice,false +RevChrismok,dobbs.town,LGBTQ+,lgbtq,false +RevChrismok,dobbs.town,Markets & Finance,markets_finance,false +RevChrismok,dobbs.town,Mathematics,mathematics,false +RevChrismok,dobbs.town,Movies,movies,false +RevChrismok,dobbs.town,Music,music,false +RevChrismok,dobbs.town,Journalism & Comment,news_comment_data,false +RevChrismok,dobbs.town,Performing Arts,performing_arts,false +RevChrismok,dobbs.town,Philosophy,philosophy,false +RevChrismok,dobbs.town,Photography,photography,false +RevChrismok,dobbs.town,Physics,physics,false +RevChrismok,dobbs.town,Politics,politics,false +RevChrismok,dobbs.town,Poverty & Inequality,poverty_inequality,false +RevChrismok,dobbs.town,Programming,programming,false +RevChrismok,dobbs.town,Science,science,false +RevChrismok,dobbs.town,Social Sciences,social_sciences,false +RevChrismok,dobbs.town,Technology,technology,false +RevChrismok,dobbs.town,TV & Radio,tv_radio,false +RevChrismok,dobbs.town,Ukraine Invasion,ukraine_invasion,false +RevChrismok,dobbs.town,US Politics,us_politics,false +RevChrismok,dobbs.town,Visual Arts,visual_arts,false +RevChrismok,dobbs.town,Weather,weather,false +RevChrismok,dobbs.town,Women’s Voices,women_voices,false +RevChrismok,dobbs.town,Workers Rights,workers_rights,false +RevChrismok,dobbs.town,Breaking News,breaking_news,true +follow,twitter.social,US Sport,us_sport,false +follow,twitter.social,Visual Arts,visual_arts,false +follow,twitter.social,Weather,weather,false +follow,twitter.social,Women’s Voices,women_voices,false +follow,twitter.social,Workers Rights,workers_rights,false +follow,twitter.social,Social Media,social_media,true +cmayes,notacult.social,Business,business,false +cmayes,notacult.social,Chemistry,chemistry,false +cmayes,notacult.social,Engineering,engineering,false +cmayes,notacult.social,Environment,environment,false +cmayes,notacult.social,History,history,false +cmayes,notacult.social,Humanities,humanities,false +cmayes,notacult.social,Programming,programming,false +cmayes,notacult.social,Science,science,false +cmayes,notacult.social,Social Sciences,social_sciences,false +cmayes,notacult.social,Space,space,false +cmayes,notacult.social,Technology,technology,false +cmayes,notacult.social,Workers Rights,workers_rights,false +cmayes,notacult.social,Breaking News,breaking_news,true +ivan,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false +ivan,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +ivan,newsmast.social,History,history,false +ivan,newsmast.social,Social Sciences,social_sciences,false +ivan,newsmast.social,Breaking News,breaking_news,true +rzylber,mastodon.social,Climate change,climate_change,false +rzylber,mastodon.social,Philosophy,philosophy,false +rzylber,mastodon.social,Science,science,false +rzylber,mastodon.social,Social Sciences,social_sciences,false +rzylber,mastodon.social,Programming,programming,true +arunshah,social.vivaldi.net,Breaking News,breaking_news,false +arunshah,social.vivaldi.net,Democracy & Human Rights,democracy_human_rights,false +arunshah,social.vivaldi.net,Engineering,engineering,false +arunshah,social.vivaldi.net,"Hunger, Disease & Water",hunger_disease_water,false +arunshah,social.vivaldi.net,Journalism & Comment,news_comment_data,false +arunshah,social.vivaldi.net,Poverty & Inequality,poverty_inequality,false +arunshah,social.vivaldi.net,Programming,programming,false +arunshah,social.vivaldi.net,Social Media,social_media,false +arunshah,social.vivaldi.net,Technology,technology,false +arunshah,social.vivaldi.net,Ukraine Invasion,ukraine_invasion,false +arunshah,social.vivaldi.net,Weather,weather,false +arunshah,social.vivaldi.net,AI,ai,true +lety,doesstuff.social,Democracy & Human Rights,democracy_human_rights,false +lety,doesstuff.social,Disabled Voices,disabled_voices,false +lety,doesstuff.social,Energy & Pollution,energy_pollution,false +lety,doesstuff.social,Engineering,engineering,false +lety,doesstuff.social,Environment,environment,false +lety,doesstuff.social,Food & Drink,food_drink,false +lety,doesstuff.social,Football,football,false +lety,doesstuff.social,Gaming,gaming,false +lety,doesstuff.social,Government & Policy,government_policy,false +lety,doesstuff.social,Healthcare,healthcare,false +lety,doesstuff.social,History,history,false +mariosiniscalchi,mastodon.uno,Ukraine Invasion,ukraine_invasion,true +cult247,mastodon.social,Breaking News,breaking_news,false +cult247,mastodon.social,Environment,environment,false +cult247,mastodon.social,Photography,photography,false +cult247,mastodon.social,Weather,weather,false +cult247,mastodon.social,Movies,movies,true +lety,doesstuff.social,Humanities,humanities,false +lety,doesstuff.social,Humour,humour,false +lety,doesstuff.social,"Hunger, Disease & Water",hunger_disease_water,false +lety,doesstuff.social,Immigrants Rights,immigrants_rights,false +lety,doesstuff.social,Indigenous Peoples,indigenous_peoples,false +lety,doesstuff.social,Law & Justice,law_justice,false +lety,doesstuff.social,LGBTQ+,lgbtq,false +lety,doesstuff.social,Markets & Finance,markets_finance,false +lety,doesstuff.social,Mathematics,mathematics,false +lety,doesstuff.social,Mental Health & Wellbeing,mental_health_wellbeing,false +lety,doesstuff.social,Movies,movies,false +lety,doesstuff.social,Music,music,false +danielbowmaniel,mastodon.sdf.org,Breaking News,breaking_news,false +danielbowmaniel,mastodon.sdf.org,Architecture & Design,architecture_design,false +danielbowmaniel,mastodon.sdf.org,Books & Literature,books_literature,false +danielbowmaniel,mastodon.sdf.org,Climate change,climate_change,false +danielbowmaniel,mastodon.sdf.org,Engineering,engineering,false +danielbowmaniel,mastodon.sdf.org,Gaming,gaming,false +danielbowmaniel,mastodon.sdf.org,Government & Policy,government_policy,false +danielbowmaniel,mastodon.sdf.org,Law & Justice,law_justice,false +danielbowmaniel,mastodon.sdf.org,Journalism & Comment,news_comment_data,false +danielbowmaniel,mastodon.sdf.org,Performing Arts,performing_arts,false +danielbowmaniel,mastodon.sdf.org,Photography,photography,false +paradym3,newsmast.social,Ukraine Invasion,ukraine_invasion,false +paradym3,newsmast.social,US Politics,us_politics,false +paradym3,newsmast.social,Weather,weather,false +paradym3,newsmast.social,Workers Rights,workers_rights,false +paradym3,newsmast.social,Academia & Research,academia_research,false +paradym3,newsmast.social,AI,ai,false +paradym3,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false +paradym3,newsmast.social,Biology,biology,false +paradym3,newsmast.social,Business,business,false +paradym3,newsmast.social,Chemistry,chemistry,false +paradym3,newsmast.social,Climate change,climate_change,false +paradym3,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +paradym3,newsmast.social,Energy & Pollution,energy_pollution,false +paradym3,newsmast.social,Engineering,engineering,false +paradym3,newsmast.social,Environment,environment,false +paradym3,newsmast.social,Food & Drink,food_drink,false +paradym3,newsmast.social,Gaming,gaming,false +paradym3,newsmast.social,Government & Policy,government_policy,false +paradym3,newsmast.social,Healthcare,healthcare,false +paradym3,newsmast.social,History,history,false +paradym3,newsmast.social,Humanities,humanities,false +paradym3,newsmast.social,Humour,humour,false +paradym3,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false +paradym3,newsmast.social,Law & Justice,law_justice,false +paradym3,newsmast.social,Markets & Finance,markets_finance,false +paradym3,newsmast.social,Mathematics,mathematics,false +paradym3,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false +paradym3,newsmast.social,Movies,movies,false +paradym3,newsmast.social,Music,music,false +paradym3,newsmast.social,Nature & Wildlife,nature_wildlife,false +paradym3,newsmast.social,Journalism & Comment,news_comment_data,false +paradym3,newsmast.social,Pets,pets,false +paradym3,newsmast.social,Philosophy,philosophy,false +paradym3,newsmast.social,Physics,physics,false +paradym3,newsmast.social,Politics,politics,false +paradym3,newsmast.social,Poverty & Inequality,poverty_inequality,false +paradym3,newsmast.social,Programming,programming,false +paradym3,newsmast.social,Puzzles,puzzles,false +paradym3,newsmast.social,Science,science,false +paradym3,newsmast.social,Social Media,social_media,false +paradym3,newsmast.social,Social Sciences,social_sciences,false +paradym3,newsmast.social,Space,space,false +paradym3,newsmast.social,Technology,technology,false +paradym3,newsmast.social,Travel,travel,false +paradym3,newsmast.social,TV & Radio,tv_radio,false +paradym3,newsmast.social,Ukraine Invasion,ukraine_invasion,false +paradym3,newsmast.social,US Politics,us_politics,false +paradym3,newsmast.social,Weather,weather,false +paradym3,newsmast.social,Workers Rights,workers_rights,false +paradym3,newsmast.social,Breaking News,breaking_news,true +danielbowmaniel,mastodon.sdf.org,Politics,politics,false +danielbowmaniel,mastodon.sdf.org,Science,science,false +danielbowmaniel,mastodon.sdf.org,Technology,technology,false +danielbowmaniel,mastodon.sdf.org,US Politics,us_politics,false +danielbowmaniel,mastodon.sdf.org,US Sport,us_sport,false +danielbowmaniel,mastodon.sdf.org,Visual Arts,visual_arts,false +danielbowmaniel,mastodon.sdf.org,Weather,weather,false +moko,mstdn.ca,AI,ai,false +moko,mstdn.ca,Climate change,climate_change,false +moko,mstdn.ca,Environment,environment,false +moko,mstdn.ca,Science,science,false +moko,mstdn.ca,Space,space,false +moko,mstdn.ca,Technology,technology,false +moko,mstdn.ca,Breaking News,breaking_news,true +danielbowmaniel,mastodon.sdf.org,Environment,environment,true +Sven,newsmast.social,AI,ai,false +Sven,newsmast.social,Biology,biology,false +Sven,newsmast.social,Business,business,false +Sven,newsmast.social,Healthcare,healthcare,false +Sven,newsmast.social,Mathematics,mathematics,false +Sven,newsmast.social,Physics,physics,false +Sven,newsmast.social,Programming,programming,false +Sven,newsmast.social,Space,space,false +Sven,newsmast.social,Technology,technology,false +Sven,newsmast.social,US Politics,us_politics,false +Sven,newsmast.social,Breaking News,breaking_news,true +tex,mas.to,Academia & Research,academia_research,false +lety,doesstuff.social,Journalism & Comment,news_comment_data,false +lety,doesstuff.social,Performing Arts,performing_arts,false +lety,doesstuff.social,Pets,pets,false +lety,doesstuff.social,Philosophy,philosophy,false +lety,doesstuff.social,Photography,photography,false +lety,doesstuff.social,Physics,physics,false +lety,doesstuff.social,Politics,politics,false +lety,doesstuff.social,Poverty & Inequality,poverty_inequality,false +lety,doesstuff.social,Programming,programming,false +lety,doesstuff.social,Puzzles,puzzles,false +lety,doesstuff.social,Science,science,false +lety,doesstuff.social,Social Media,social_media,false +tobias,social.diekershoff.de,AI,ai,false +tobias,social.diekershoff.de,Architecture & Design,architecture_design,false +tobias,social.diekershoff.de,Biodiversity & Rewilding,biodiversity_rewilding,false +tobias,social.diekershoff.de,Biology,biology,false +tobias,social.diekershoff.de,Books & Literature,books_literature,false +tobias,social.diekershoff.de,Breaking News,breaking_news,false +tobias,social.diekershoff.de,Chemistry,chemistry,false +tobias,social.diekershoff.de,Climate change,climate_change,false +tobias,social.diekershoff.de,Energy & Pollution,energy_pollution,false +tobias,social.diekershoff.de,Engineering,engineering,false +tobias,social.diekershoff.de,Environment,environment,false +tobias,social.diekershoff.de,Gaming,gaming,false +tobias,social.diekershoff.de,Mathematics,mathematics,false +tobias,social.diekershoff.de,Movies,movies,false +tobias,social.diekershoff.de,Music,music,false +tobias,social.diekershoff.de,Journalism & Comment,news_comment_data,false +tobias,social.diekershoff.de,Performing Arts,performing_arts,false +tobias,social.diekershoff.de,Photography,photography,false +tobias,social.diekershoff.de,Programming,programming,false +tobias,social.diekershoff.de,Science,science,false +tobias,social.diekershoff.de,Social Media,social_media,false +tobias,social.diekershoff.de,Space,space,false +tobias,social.diekershoff.de,Technology,technology,false +tobias,social.diekershoff.de,TV & Radio,tv_radio,false +tobias,social.diekershoff.de,Ukraine Invasion,ukraine_invasion,false +tobias,social.diekershoff.de,Visual Arts,visual_arts,false +tobias,social.diekershoff.de,Weather,weather,false +tobias,social.diekershoff.de,Physics,physics,true +orimori,mastodon.social,Biodiversity & Rewilding,biodiversity_rewilding,false +orimori,mastodon.social,Biology,biology,false +orimori,mastodon.social,Chemistry,chemistry,false +orimori,mastodon.social,Climate change,climate_change,false +orimori,mastodon.social,Energy & Pollution,energy_pollution,false +orimori,mastodon.social,Mathematics,mathematics,false +orimori,mastodon.social,Physics,physics,false +orimori,mastodon.social,Science,science,false +orimori,mastodon.social,Space,space,false +orimori,mastodon.social,Environment,environment,true +orianavmatos,newsmast.social,Movies,movies,false +thelightoflife,universeodon.com,Business,business,false +thelightoflife,universeodon.com,Markets & Finance,markets_finance,false +thelightoflife,universeodon.com,Mathematics,mathematics,false +thelightoflife,universeodon.com,Physics,physics,false +thelightoflife,universeodon.com,Social Sciences,social_sciences,false +thelightoflife,universeodon.com,Workers Rights,workers_rights,false +thelightoflife,universeodon.com,Biology,biology,true +Ethgar,Berlin.social,Biodiversity & Rewilding,biodiversity_rewilding,false +Ethgar,Berlin.social,Climate change,climate_change,false +Ethgar,Berlin.social,Democracy & Human Rights,democracy_human_rights,false +Ethgar,Berlin.social,Energy & Pollution,energy_pollution,false +Ethgar,Berlin.social,Engineering,engineering,false +Ethgar,Berlin.social,Mathematics,mathematics,false +Ethgar,Berlin.social,Politics,politics,false +Ethgar,Berlin.social,Science,science,false +Ethgar,Berlin.social,Space,space,false +Ethgar,Berlin.social,Technology,technology,false +Ethgar,Berlin.social,Programming,programming,true +dai,mastodon.social,AI,ai,false +dai,mastodon.social,Engineering,engineering,false +dai,mastodon.social,Programming,programming,false +dai,mastodon.social,Social Sciences,social_sciences,false +dai,mastodon.social,Technology,technology,true +nigelp,newsmast.social,AI,ai,false +nigelp,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false +nigelp,newsmast.social,Biology,biology,false +nigelp,newsmast.social,Breaking News,breaking_news,false +nigelp,newsmast.social,Chemistry,chemistry,false +nigelp,newsmast.social,Climate change,climate_change,false +nigelp,newsmast.social,Energy & Pollution,energy_pollution,false +nigelp,newsmast.social,Engineering,engineering,false +nigelp,newsmast.social,Environment,environment,false +nigelp,newsmast.social,Food & Drink,food_drink,false +mariana_16,mastodon.social,Academia & Research,academia_research,false +mariana_16,mastodon.social,Activism & Civil Rights,activism_civil_rights,false +mariana_16,mastodon.social,Black Voices,black_voices,false +mariana_16,mastodon.social,Democracy & Human Rights,democracy_human_rights,false +mariana_16,mastodon.social,Disabled Voices,disabled_voices,false +mariana_16,mastodon.social,Government & Policy,government_policy,false +mariana_16,mastodon.social,Healthcare,healthcare,false +mariana_16,mastodon.social,"Hunger, Disease & Water",hunger_disease_water,false +mariana_16,mastodon.social,Immigrants Rights,immigrants_rights,false +nigelp,newsmast.social,Gaming,gaming,false +nigelp,newsmast.social,Humour,humour,false +nigelp,newsmast.social,Movies,movies,false +nigelp,newsmast.social,Music,music,false +nigelp,newsmast.social,Nature & Wildlife,nature_wildlife,false +nigelp,newsmast.social,Journalism & Comment,news_comment_data,false +nigelp,newsmast.social,Photography,photography,false +nigelp,newsmast.social,Physics,physics,false +nigelp,newsmast.social,Programming,programming,false +nigelp,newsmast.social,Science,science,false +nigelp,newsmast.social,Social Media,social_media,false +nigelp,newsmast.social,Ukraine Invasion,ukraine_invasion,false +nigelp,newsmast.social,Weather,weather,false +nigelp,newsmast.social,Technology,technology,true +lety,doesstuff.social,Social Sciences,social_sciences,false +lety,doesstuff.social,Space,space,false +lety,doesstuff.social,Sport,sport,false +lety,doesstuff.social,Technology,technology,false +lety,doesstuff.social,Travel,travel,false +lety,doesstuff.social,TV & Radio,tv_radio,false +lety,doesstuff.social,Ukraine Invasion,ukraine_invasion,false +lety,doesstuff.social,US Politics,us_politics,false +lety,doesstuff.social,US Sport,us_sport,false +lety,doesstuff.social,Visual Arts,visual_arts,false +lety,doesstuff.social,Weather,weather,false +lety,doesstuff.social,Women’s Voices,women_voices,false +lety,doesstuff.social,Workers Rights,workers_rights,false +lety,doesstuff.social,Nature & Wildlife,nature_wildlife,true +tex,mas.to,Activism & Civil Rights,activism_civil_rights,false +ekaasha,newsmast.social,AI,ai,false +ekaasha,newsmast.social,Business,business,false +ekaasha,newsmast.social,Creative Arts,creative_arts,false +ekaasha,newsmast.social,Engineering,engineering,false +ekaasha,newsmast.social,Food & Drink,food_drink,false +ekaasha,newsmast.social,Humour,humour,false +ekaasha,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false +ekaasha,newsmast.social,Nature & Wildlife,nature_wildlife,false +ekaasha,newsmast.social,Pets,pets,false +ekaasha,newsmast.social,Programming,programming,false +ekaasha,newsmast.social,Puzzles,puzzles,false +ekaasha,newsmast.social,Technology,technology,false +ekaasha,newsmast.social,Travel,travel,false +ekaasha,newsmast.social,Workers Rights,workers_rights,false +ekaasha,newsmast.social,Markets & Finance,markets_finance,true +mjgardner,social.sdf.org,Books & Literature,books_literature,false +tex,mas.to,AI,ai,false +tex,mas.to,Biodiversity & Rewilding,biodiversity_rewilding,false +tex,mas.to,Biology,biology,false +tex,mas.to,Chemistry,chemistry,false +tex,mas.to,Climate change,climate_change,false +tex,mas.to,Democracy & Human Rights,democracy_human_rights,false +tex,mas.to,Energy & Pollution,energy_pollution,false +tex,mas.to,Engineering,engineering,false +tex,mas.to,Environment,environment,false +Twitter,twitter.social,Social Media,social_media,false +HelOWeen,digitalcourage.social,Breaking News,breaking_news,false +HelOWeen,digitalcourage.social,Climate change,climate_change,false +HelOWeen,digitalcourage.social,Journalism & Comment,news_comment_data,false +HelOWeen,digitalcourage.social,Programming,programming,false +HelOWeen,digitalcourage.social,Space,space,false +HelOWeen,digitalcourage.social,Technology,technology,false +HelOWeen,digitalcourage.social,Ukraine Invasion,ukraine_invasion,true +yatzy,mastodon.social,History,history,false +yatzy,mastodon.social,Humanities,humanities,false +yatzy,mastodon.social,Humour,humour,false +yatzy,mastodon.social,Markets & Finance,markets_finance,false +yatzy,mastodon.social,Mathematics,mathematics,false +yatzy,mastodon.social,Mental Health & Wellbeing,mental_health_wellbeing,false +yatzy,mastodon.social,Nature & Wildlife,nature_wildlife,false +yatzy,mastodon.social,Journalism & Comment,news_comment_data,false +yatzy,mastodon.social,Performing Arts,performing_arts,false +yatzy,mastodon.social,Pets,pets,false +yatzy,mastodon.social,Philosophy,philosophy,false +yatzy,mastodon.social,Photography,photography,false +yatzy,mastodon.social,Politics,politics,false +yatzy,mastodon.social,Programming,programming,false +yatzy,mastodon.social,Puzzles,puzzles,false +yatzy,mastodon.social,Science,science,false +yatzy,mastodon.social,Social Media,social_media,false +yatzy,mastodon.social,Social Sciences,social_sciences,false +yatzy,mastodon.social,Sport,sport,false +yatzy,mastodon.social,Technology,technology,false +yatzy,mastodon.social,Travel,travel,false +yatzy,mastodon.social,Visual Arts,visual_arts,false +chetwilliams,fosstodon.org,Books & Literature,books_literature,false +chetwilliams,fosstodon.org,Engineering,engineering,false +chetwilliams,fosstodon.org,Food & Drink,food_drink,false +chetwilliams,fosstodon.org,Gaming,gaming,false +chetwilliams,fosstodon.org,Mental Health & Wellbeing,mental_health_wellbeing,false +chetwilliams,fosstodon.org,Movies,movies,false +chetwilliams,fosstodon.org,Music,music,false +chetwilliams,fosstodon.org,Nature & Wildlife,nature_wildlife,false +chetwilliams,fosstodon.org,Photography,photography,false +chetwilliams,fosstodon.org,Programming,programming,false +chetwilliams,fosstodon.org,Travel,travel,false +chetwilliams,fosstodon.org,TV & Radio,tv_radio,false +chetwilliams,fosstodon.org,Visual Arts,visual_arts,false +chetwilliams,fosstodon.org,Technology,technology,true +mkilby,hachyderm.io,Academia & Research,academia_research,false +mkilby,hachyderm.io,Architecture & Design,architecture_design,false +mkilby,hachyderm.io,Black Voices,black_voices,false +mkilby,hachyderm.io,Books & Literature,books_literature,false +mkilby,hachyderm.io,Breaking News,breaking_news,false +mariana_16,mastodon.social,Indigenous Peoples,indigenous_peoples,false +mariana_16,mastodon.social,Law & Justice,law_justice,false +mariana_16,mastodon.social,Politics,politics,false +mariana_16,mastodon.social,Poverty & Inequality,poverty_inequality,false +mariana_16,mastodon.social,US Politics,us_politics,false +mariana_16,mastodon.social,Women’s Voices,women_voices,false +mariana_16,mastodon.social,LGBTQ+,lgbtq,true +mjgardner,social.sdf.org,Creative Arts,creative_arts,false +tom,tomkahe.com,Breaking News,breaking_news,false +tom,tomkahe.com,Politics,politics,false +tom,tomkahe.com,Social Media,social_media,false +tom,tomkahe.com,US Politics,us_politics,false +tom,tomkahe.com,US Sport,us_sport,true +tex,mas.to,Government & Policy,government_policy,false +mistercharlie,indieweb.social,Environment,environment,false +LuizIQ,mastodon.social,Breaking News,breaking_news,false +LuizIQ,mastodon.social,Creative Arts,creative_arts,false +LuizIQ,mastodon.social,Food & Drink,food_drink,false +LuizIQ,mastodon.social,Humour,humour,false +LuizIQ,mastodon.social,Mental Health & Wellbeing,mental_health_wellbeing,false +LuizIQ,mastodon.social,Nature & Wildlife,nature_wildlife,false +LuizIQ,mastodon.social,Journalism & Comment,news_comment_data,false +LuizIQ,mastodon.social,Pets,pets,false +LuizIQ,mastodon.social,Puzzles,puzzles,false +LuizIQ,mastodon.social,Social Media,social_media,false +LuizIQ,mastodon.social,Ukraine Invasion,ukraine_invasion,false +LuizIQ,mastodon.social,Weather,weather,false +LuizIQ,mastodon.social,Travel,travel,true +mistercharlie,indieweb.social,Mathematics,mathematics,false +mistercharlie,indieweb.social,Movies,movies,false +mistercharlie,indieweb.social,Journalism & Comment,news_comment_data,false +mistercharlie,indieweb.social,Performing Arts,performing_arts,false +Claire_XIV,ffxiv-mastodon.com,Books & Literature,books_literature,false +Claire_XIV,ffxiv-mastodon.com,Movies,movies,false +Claire_XIV,ffxiv-mastodon.com,Music,music,false +curlicious,iosdev.space,Academia & Research,academia_research,false +curlicious,iosdev.space,AI,ai,false +curlicious,iosdev.space,Biodiversity & Rewilding,biodiversity_rewilding,false +curlicious,iosdev.space,Business,business,false +curlicious,iosdev.space,Engineering,engineering,false +curlicious,iosdev.space,Environment,environment,false +curlicious,iosdev.space,Government & Policy,government_policy,false +curlicious,iosdev.space,Law & Justice,law_justice,false +curlicious,iosdev.space,Politics,politics,false +curlicious,iosdev.space,US Politics,us_politics,false +curlicious,iosdev.space,Programming,programming,true +thm,newsmast.social,AI,ai,false +thm,newsmast.social,Business,business,false +thm,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +thm,newsmast.social,Engineering,engineering,false +thm,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false +thm,newsmast.social,Markets & Finance,markets_finance,false +thm,newsmast.social,Journalism & Comment,news_comment_data,false +thm,newsmast.social,Poverty & Inequality,poverty_inequality,false +thm,newsmast.social,Programming,programming,false +thm,newsmast.social,Social Media,social_media,false +thm,newsmast.social,Technology,technology,false +thm,newsmast.social,Ukraine Invasion,ukraine_invasion,false +thm,newsmast.social,Weather,weather,false +thm,newsmast.social,Workers Rights,workers_rights,false +thm,newsmast.social,Breaking News,breaking_news,true +therfff,newsmast.social,Biology,biology,false +therfff,newsmast.social,Business,business,false +therfff,newsmast.social,Chemistry,chemistry,false +therfff,newsmast.social,Engineering,engineering,false +therfff,newsmast.social,Markets & Finance,markets_finance,false +therfff,newsmast.social,Mathematics,mathematics,false +therfff,newsmast.social,Physics,physics,false +therfff,newsmast.social,Programming,programming,false +therfff,newsmast.social,Science,science,false +therfff,newsmast.social,Space,space,false +therfff,newsmast.social,Technology,technology,false +therfff,newsmast.social,Workers Rights,workers_rights,false +therfff,newsmast.social,AI,ai,true +kristian,falk.cafe,Creative Arts,creative_arts,false +kristian,falk.cafe,Humour,humour,false +kristian,falk.cafe,Mental Health & Wellbeing,mental_health_wellbeing,false +kristian,falk.cafe,Nature & Wildlife,nature_wildlife,false +kristian,falk.cafe,Puzzles,puzzles,false +kristian,falk.cafe,AI,ai,true +hallenbeck,mastodon.social,AI,ai,false +hallenbeck,mastodon.social,Biodiversity & Rewilding,biodiversity_rewilding,false +hallenbeck,mastodon.social,Biology,biology,false +hallenbeck,mastodon.social,Books & Literature,books_literature,false +hallenbeck,mastodon.social,Breaking News,breaking_news,false +hallenbeck,mastodon.social,Business,business,false +hallenbeck,mastodon.social,Environment,environment,false +hallenbeck,mastodon.social,History,history,false +hallenbeck,mastodon.social,Journalism & Comment,news_comment_data,false +hallenbeck,mastodon.social,Philosophy,philosophy,false +hallenbeck,mastodon.social,Programming,programming,false +hallenbeck,mastodon.social,Social Media,social_media,false +hallenbeck,mastodon.social,Technology,technology,false +hallenbeck,mastodon.social,Ukraine Invasion,ukraine_invasion,false +hallenbeck,mastodon.social,Visual Arts,visual_arts,false +hallenbeck,mastodon.social,Football,football,true +nicolas_horvath,mastodon.social,AI,ai,false +nicolas_horvath,mastodon.social,Breaking News,breaking_news,false +nicolas_horvath,mastodon.social,Engineering,engineering,false +nicolas_horvath,mastodon.social,Journalism & Comment,news_comment_data,false +nicolas_horvath,mastodon.social,Programming,programming,false +nicolas_horvath,mastodon.social,Technology,technology,true +mjgardner,social.sdf.org,Weather,weather,false +BrightHalo,mastodon.social,Academia & Research,academia_research,false +BrightHalo,mastodon.social,Biology,biology,false +BrightHalo,mastodon.social,Breaking News,breaking_news,false +BrightHalo,mastodon.social,Chemistry,chemistry,false +BrightHalo,mastodon.social,Government & Policy,government_policy,false +BrightHalo,mastodon.social,Healthcare,healthcare,false +BrightHalo,mastodon.social,Law & Justice,law_justice,false +BrightHalo,mastodon.social,Mathematics,mathematics,false +BrightHalo,mastodon.social,Physics,physics,false +BrightHalo,mastodon.social,Politics,politics,false +BrightHalo,mastodon.social,Programming,programming,false +BrightHalo,mastodon.social,Science,science,false +BrightHalo,mastodon.social,Space,space,false +BrightHalo,mastodon.social,Technology,technology,false +BrightHalo,mastodon.social,Ukraine Invasion,ukraine_invasion,false +BrightHalo,mastodon.social,US Politics,us_politics,false +BrightHalo,mastodon.social,Workers Rights,workers_rights,false +BrightHalo,mastodon.social,AI,ai,true +tex,mas.to,Healthcare,healthcare,false +samuel,social.spejset.org,Biodiversity & Rewilding,biodiversity_rewilding,false +samuel,social.spejset.org,Politics,politics,false +samuel,social.spejset.org,Programming,programming,false +samuel,social.spejset.org,Science,science,false +samuel,social.spejset.org,Technology,technology,false +samuel,social.spejset.org,Climate change,climate_change,true +tex,mas.to,History,history,false +mkilby,hachyderm.io,Business,business,false +mkilby,hachyderm.io,Climate change,climate_change,false +mkilby,hachyderm.io,Democracy & Human Rights,democracy_human_rights,false +mkilby,hachyderm.io,Disabled Voices,disabled_voices,false +mkilby,hachyderm.io,Engineering,engineering,false +mkilby,hachyderm.io,Gaming,gaming,false +mkilby,hachyderm.io,Government & Policy,government_policy,false +mkilby,hachyderm.io,Healthcare,healthcare,false +mkilby,hachyderm.io,History,history,false +mkilby,hachyderm.io,Humanities,humanities,false +mkilby,hachyderm.io,Humour,humour,false +mkilby,hachyderm.io,"Hunger, Disease & Water",hunger_disease_water,false +mkilby,hachyderm.io,Immigrants Rights,immigrants_rights,false +mkilby,hachyderm.io,Indigenous Peoples,indigenous_peoples,false +mkilby,hachyderm.io,Law & Justice,law_justice,false +mkilby,hachyderm.io,LGBTQ+,lgbtq,false +mkilby,hachyderm.io,Markets & Finance,markets_finance,false +mkilby,hachyderm.io,Mathematics,mathematics,false +mkilby,hachyderm.io,Mental Health & Wellbeing,mental_health_wellbeing,false +mkilby,hachyderm.io,Movies,movies,false +mkilby,hachyderm.io,Nature & Wildlife,nature_wildlife,false +mkilby,hachyderm.io,Journalism & Comment,news_comment_data,false +mkilby,hachyderm.io,Performing Arts,performing_arts,false +mkilby,hachyderm.io,Pets,pets,false +mkilby,hachyderm.io,Philosophy,philosophy,false +mkilby,hachyderm.io,Physics,physics,false +mkilby,hachyderm.io,Politics,politics,false +mkilby,hachyderm.io,Poverty & Inequality,poverty_inequality,false +mkilby,hachyderm.io,Programming,programming,false +mkilby,hachyderm.io,Science,science,false +mkilby,hachyderm.io,Social Media,social_media,false +mkilby,hachyderm.io,Social Sciences,social_sciences,false +mkilby,hachyderm.io,Space,space,false +mkilby,hachyderm.io,Technology,technology,false +mkilby,hachyderm.io,Travel,travel,false +mkilby,hachyderm.io,TV & Radio,tv_radio,false +mkilby,hachyderm.io,Ukraine Invasion,ukraine_invasion,false +mkilby,hachyderm.io,US Politics,us_politics,false +mkilby,hachyderm.io,US Sport,us_sport,false +mkilby,hachyderm.io,Visual Arts,visual_arts,false +mkilby,hachyderm.io,Women’s Voices,women_voices,false +mkilby,hachyderm.io,Workers Rights,workers_rights,false +mkilby,hachyderm.io,AI,ai,true +zzymurgy,aus.social,Government & Policy,government_policy,false +zzymurgy,aus.social,Movies,movies,false +zzymurgy,aus.social,Music,music,false +zzymurgy,aus.social,Politics,politics,false +zzymurgy,aus.social,Philosophy,philosophy,true +cclaude,mastouille.fr,AI,ai,false +cclaude,mastouille.fr,Biodiversity & Rewilding,biodiversity_rewilding,false +cclaude,mastouille.fr,Biology,biology,false +cclaude,mastouille.fr,Breaking News,breaking_news,false +cclaude,mastouille.fr,Disabled Voices,disabled_voices,false +cclaude,mastouille.fr,Energy & Pollution,energy_pollution,false +cclaude,mastouille.fr,Healthcare,healthcare,false +cclaude,mastouille.fr,Humour,humour,false +cclaude,mastouille.fr,Mental Health & Wellbeing,mental_health_wellbeing,false +cclaude,mastouille.fr,Nature & Wildlife,nature_wildlife,false +cclaude,mastouille.fr,Physics,physics,false +cclaude,mastouille.fr,Poverty & Inequality,poverty_inequality,false +cclaude,mastouille.fr,Social Sciences,social_sciences,false +cclaude,mastouille.fr,Technology,technology,false +cclaude,mastouille.fr,Visual Arts,visual_arts,false +cclaude,mastouille.fr,Music,music,true +smux,u.fail,AI,ai,false +smux,u.fail,Biology,biology,false +smux,u.fail,Chemistry,chemistry,false +smux,u.fail,Engineering,engineering,false +smux,u.fail,Mathematics,mathematics,false +smux,u.fail,Journalism & Comment,news_comment_data,false +smux,u.fail,Physics,physics,false +smux,u.fail,Programming,programming,false +smux,u.fail,Science,science,false +smux,u.fail,Social Media,social_media,false +tex,mas.to,Humanities,humanities,false +tex,mas.to,Law & Justice,law_justice,false +tex,mas.to,Mathematics,mathematics,false +tex,mas.to,Journalism & Comment,news_comment_data,false +tex,mas.to,Philosophy,philosophy,false +tex,mas.to,Physics,physics,false +mistercharlie,indieweb.social,Photography,photography,false +mistercharlie,indieweb.social,Physics,physics,false +mistercharlie,indieweb.social,Science,science,false +mistercharlie,indieweb.social,Technology,technology,false +mistercharlie,indieweb.social,TV & Radio,tv_radio,false +mistercharlie,indieweb.social,Visual Arts,visual_arts,false +mistercharlie,indieweb.social,Books & Literature,books_literature,true +TheOneCurly,hear-me.social,Business,business,false +TheOneCurly,hear-me.social,Engineering,engineering,false +TheOneCurly,hear-me.social,Environment,environment,false +TheOneCurly,hear-me.social,Gaming,gaming,false +TheOneCurly,hear-me.social,Journalism & Comment,news_comment_data,false +TheOneCurly,hear-me.social,Programming,programming,false +TheOneCurly,hear-me.social,Science,science,false +TheOneCurly,hear-me.social,Space,space,false +TheOneCurly,hear-me.social,Technology,technology,false +TheOneCurly,hear-me.social,Weather,weather,false +TheOneCurly,hear-me.social,Breaking News,breaking_news,true +dogdoggie,mastodon.social,Academia & Research,academia_research,false +dogdoggie,mastodon.social,Biodiversity & Rewilding,biodiversity_rewilding,false +dogdoggie,mastodon.social,Biology,biology,false +dogdoggie,mastodon.social,Breaking News,breaking_news,false +cluethulhu,hachyderm.io,Activism & Civil Rights,activism_civil_rights,false +cluethulhu,hachyderm.io,Biology,biology,false +cluethulhu,hachyderm.io,Books & Literature,books_literature,false +cluethulhu,hachyderm.io,Chemistry,chemistry,false +cluethulhu,hachyderm.io,Gaming,gaming,false +cluethulhu,hachyderm.io,History,history,false +cluethulhu,hachyderm.io,Mathematics,mathematics,false +cluethulhu,hachyderm.io,Movies,movies,false +cluethulhu,hachyderm.io,Physics,physics,false +cluethulhu,hachyderm.io,Politics,politics,false +cluethulhu,hachyderm.io,Programming,programming,false +cluethulhu,hachyderm.io,Science,science,false +cluethulhu,hachyderm.io,Space,space,false +cluethulhu,hachyderm.io,Technology,technology,false +cluethulhu,hachyderm.io,US Politics,us_politics,false +cluethulhu,hachyderm.io,Breaking News,breaking_news,true +dogdoggie,mastodon.social,Chemistry,chemistry,false +dogdoggie,mastodon.social,Climate change,climate_change,false +Claire_XIV,ffxiv-mastodon.com,TV & Radio,tv_radio,false +Claire_XIV,ffxiv-mastodon.com,Gaming,gaming,true +WelchE,newsmast.social,Women’s Voices,women_voices,false +WelchE,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false +lemmnelson,mastodon.social,Music,music,false +lemmnelson,mastodon.social,Space,space,false +lemmnelson,mastodon.social,Sport,sport,false +lemmnelson,mastodon.social,Technology,technology,false +lemmnelson,mastodon.social,Breaking News,breaking_news,true +ThelesThonmor,Mastodon.social,Academia & Research,academia_research,false +ThelesThonmor,Mastodon.social,Activism & Civil Rights,activism_civil_rights,false +ThelesThonmor,Mastodon.social,AI,ai,false +ThelesThonmor,Mastodon.social,Architecture & Design,architecture_design,false +ThelesThonmor,Mastodon.social,Biodiversity & Rewilding,biodiversity_rewilding,false +ThelesThonmor,Mastodon.social,Biology,biology,false +ThelesThonmor,Mastodon.social,Black Voices,black_voices,false +ThelesThonmor,Mastodon.social,Books & Literature,books_literature,false +ThelesThonmor,Mastodon.social,Breaking News,breaking_news,false +ThelesThonmor,Mastodon.social,Business,business,false +ThelesThonmor,Mastodon.social,Chemistry,chemistry,false +ThelesThonmor,Mastodon.social,Climate change,climate_change,false +ThelesThonmor,Mastodon.social,Democracy & Human Rights,democracy_human_rights,false +ThelesThonmor,Mastodon.social,Disabled Voices,disabled_voices,false +ThelesThonmor,Mastodon.social,Energy & Pollution,energy_pollution,false +ThelesThonmor,Mastodon.social,Engineering,engineering,false +ThelesThonmor,Mastodon.social,Environment,environment,false +ThelesThonmor,Mastodon.social,Gaming,gaming,false +ThelesThonmor,Mastodon.social,Healthcare,healthcare,false +ThelesThonmor,Mastodon.social,History,history,false +ThelesThonmor,Mastodon.social,Humanities,humanities,false +ThelesThonmor,Mastodon.social,Humour,humour,false +ThelesThonmor,Mastodon.social,"Hunger, Disease & Water",hunger_disease_water,false +ThelesThonmor,Mastodon.social,Immigrants Rights,immigrants_rights,false +ThelesThonmor,Mastodon.social,Indigenous Peoples,indigenous_peoples,false +ThelesThonmor,Mastodon.social,Law & Justice,law_justice,false +ThelesThonmor,Mastodon.social,Government & Policy,government_policy,true +chrisg,aus.social,Nature & Wildlife,nature_wildlife,false +chrisg,aus.social,Journalism & Comment,news_comment_data,false +chrisg,aus.social,Performing Arts,performing_arts,false +chrisg,aus.social,Pets,pets,false +chrisg,aus.social,Philosophy,philosophy,false +chrisg,aus.social,Photography,photography,false +chrisg,aus.social,Physics,physics,false +chrisg,aus.social,Politics,politics,false +chrisg,aus.social,Poverty & Inequality,poverty_inequality,false +chrisg,aus.social,Programming,programming,false +chrisg,aus.social,Puzzles,puzzles,false +chrisg,aus.social,Science,science,false +chrisg,aus.social,Social Sciences,social_sciences,false +chrisg,aus.social,Space,space,false +chrisg,aus.social,Technology,technology,false +chrisg,aus.social,Travel,travel,false +chrisg,aus.social,TV & Radio,tv_radio,false +chrisg,aus.social,Ukraine Invasion,ukraine_invasion,false +ThelesThonmor,Mastodon.social,LGBTQ+,lgbtq,false +ThelesThonmor,Mastodon.social,Markets & Finance,markets_finance,false +ThelesThonmor,Mastodon.social,Mathematics,mathematics,false +ThelesThonmor,Mastodon.social,Mental Health & Wellbeing,mental_health_wellbeing,false +ThelesThonmor,Mastodon.social,Movies,movies,false +ThelesThonmor,Mastodon.social,Music,music,false +ThelesThonmor,Mastodon.social,Nature & Wildlife,nature_wildlife,false +ThelesThonmor,Mastodon.social,Journalism & Comment,news_comment_data,false +ThelesThonmor,Mastodon.social,Philosophy,philosophy,false +ThelesThonmor,Mastodon.social,Photography,photography,false +ThelesThonmor,Mastodon.social,Physics,physics,false +ThelesThonmor,Mastodon.social,Politics,politics,false +ThelesThonmor,Mastodon.social,Poverty & Inequality,poverty_inequality,false +ThelesThonmor,Mastodon.social,Programming,programming,false +ThelesThonmor,Mastodon.social,Puzzles,puzzles,false +ThelesThonmor,Mastodon.social,Science,science,false +ThelesThonmor,Mastodon.social,Social Media,social_media,false +ThelesThonmor,Mastodon.social,Social Sciences,social_sciences,false +ThelesThonmor,Mastodon.social,Space,space,false +ThelesThonmor,Mastodon.social,Technology,technology,false +ThelesThonmor,Mastodon.social,Travel,travel,false +ThelesThonmor,Mastodon.social,TV & Radio,tv_radio,false +ThelesThonmor,Mastodon.social,Weather,weather,false +ThelesThonmor,Mastodon.social,Women’s Voices,women_voices,false +ThelesThonmor,Mastodon.social,Workers Rights,workers_rights,false +staszek,101010.pl,Biodiversity & Rewilding,biodiversity_rewilding,false +admin,mastodon.raddemo.host,AI,ai,false +tex,mas.to,Politics,politics,false +tex,mas.to,Science,science,false +elsultan,gotosocial.elsultan.casa,Architecture & Design,architecture_design,false +elsultan,gotosocial.elsultan.casa,Biodiversity & Rewilding,biodiversity_rewilding,false +elsultan,gotosocial.elsultan.casa,Environment,environment,false +elsultan,gotosocial.elsultan.casa,Movies,movies,false +elsultan,gotosocial.elsultan.casa,Music,music,false +elsultan,gotosocial.elsultan.casa,Programming,programming,false +elsultan,gotosocial.elsultan.casa,Science,science,false +elsultan,gotosocial.elsultan.casa,Space,space,false +elsultan,gotosocial.elsultan.casa,Technology,technology,false +elsultan,gotosocial.elsultan.casa,TV & Radio,tv_radio,false +ExpertPlus,mementomori.social,AI,ai,false +ExpertPlus,mementomori.social,Creative Arts,creative_arts,false +ExpertPlus,mementomori.social,Engineering,engineering,false +ExpertPlus,mementomori.social,Humour,humour,false +msafaksari,mastodon.social,AI,ai,false +msafaksari,mastodon.social,Journalism & Comment,news_comment_data,false +msafaksari,mastodon.social,Science,science,false +msafaksari,mastodon.social,Social Sciences,social_sciences,false +msafaksari,mastodon.social,Technology,technology,true +ExpertPlus,mementomori.social,Nature & Wildlife,nature_wildlife,false +ExpertPlus,mementomori.social,Programming,programming,false +ExpertPlus,mementomori.social,Technology,technology,true +Taenarian,journa.host,Healthcare,healthcare,false +Taenarian,journa.host,History,history,false +Taenarian,journa.host,Humanities,humanities,false +Taenarian,journa.host,Law & Justice,law_justice,false +Taenarian,journa.host,Journalism & Comment,news_comment_data,false +Taenarian,journa.host,Philosophy,philosophy,false +Taenarian,journa.host,Politics,politics,false +Taenarian,journa.host,Social Sciences,social_sciences,false +Taenarian,journa.host,US Politics,us_politics,false +Taenarian,journa.host,Breaking News,breaking_news,true +lowskid,mastodon.social,Gaming,gaming,false +lowskid,mastodon.social,Music,music,false +lowskid,mastodon.social,Programming,programming,false +lowskid,mastodon.social,Technology,technology,false +lowskid,mastodon.social,Breaking News,breaking_news,true +ntnsndr,social.coop,Democracy & Human Rights,democracy_human_rights,true +bkeegan,hci.social,Breaking News,breaking_news,false +bkeegan,hci.social,Climate change,climate_change,false +bkeegan,hci.social,Journalism & Comment,news_comment_data,false +bkeegan,hci.social,Science,science,false +bkeegan,hci.social,Space,space,false +bkeegan,hci.social,Technology,technology,false +bkeegan,hci.social,US Politics,us_politics,false +bkeegan,hci.social,Academia & Research,academia_research,true +ntnsndr,social.coop,Academia & Research,academia_research,false +ntnsndr,social.coop,AI,ai,false +ntnsndr,social.coop,Breaking News,breaking_news,false +ntnsndr,social.coop,Environment,environment,false +ntnsndr,social.coop,Philosophy,philosophy,false +ntnsndr,social.coop,Poverty & Inequality,poverty_inequality,false +ntnsndr,social.coop,Social Media,social_media,false +ntnsndr,social.coop,Technology,technology,false +ntnsndr,social.coop,US Politics,us_politics,false +elsultan,gotosocial.elsultan.casa,Breaking News,breaking_news,false +elsultan,gotosocial.elsultan.casa,Gaming,gaming,true +bjoernsta,journa.host,AI,ai,false +bjoernsta,journa.host,Breaking News,breaking_news,false +bjoernsta,journa.host,Government & Policy,government_policy,false +bjoernsta,journa.host,Journalism & Comment,news_comment_data,false +bjoernsta,journa.host,Technology,technology,false +bjoernsta,journa.host,Social Media,social_media,true +FreddieJ,newsmast.social,Journalism & Comment,news_comment_data,false +FreddieJ,newsmast.social,Social Media,social_media,false +FreddieJ,newsmast.social,Ukraine Invasion,ukraine_invasion,false +tinderness,swiss.social,Climate change,climate_change,false +tinderness,swiss.social,Democracy & Human Rights,democracy_human_rights,false +tinderness,swiss.social,Environment,environment,false +tinderness,swiss.social,History,history,false +tinderness,swiss.social,Movies,movies,false +tinderness,swiss.social,Philosophy,philosophy,false +tinderness,swiss.social,Books & Literature,books_literature,true +staszek,101010.pl,Energy & Pollution,energy_pollution,false +staszek,101010.pl,Engineering,engineering,false +staszek,101010.pl,Environment,environment,false +staszek,101010.pl,Technology,technology,false +staszek,101010.pl,Democracy & Human Rights,democracy_human_rights,true +Tntgamer12341,mastodon.social,AI,ai,false +Tntgamer12341,mastodon.social,Breaking News,breaking_news,false +Tntgamer12341,mastodon.social,Environment,environment,false +Tntgamer12341,mastodon.social,Gaming,gaming,false +linudz,ecoevo.social,Biology,biology,false +linudz,ecoevo.social,Chemistry,chemistry,false +linudz,ecoevo.social,Creative Arts,creative_arts,false +linudz,ecoevo.social,Democracy & Human Rights,democracy_human_rights,false +linudz,ecoevo.social,Football,football,false +linudz,ecoevo.social,Humour,humour,false +linudz,ecoevo.social,"Hunger, Disease & Water",hunger_disease_water,false +linudz,ecoevo.social,Mathematics,mathematics,false +linudz,ecoevo.social,Journalism & Comment,news_comment_data,false +linudz,ecoevo.social,Physics,physics,false +linudz,ecoevo.social,Politics,politics,false +linudz,ecoevo.social,Poverty & Inequality,poverty_inequality,false +linudz,ecoevo.social,Science,science,false +linudz,ecoevo.social,Social Media,social_media,false +linudz,ecoevo.social,Space,space,false +linudz,ecoevo.social,Ukraine Invasion,ukraine_invasion,false +linudz,ecoevo.social,Breaking News,breaking_news,true +Tntgamer12341,mastodon.social,Science,science,false +Tntgamer12341,mastodon.social,Space,space,false +Tntgamer12341,mastodon.social,Technology,technology,true +admin,mastodon.raddemo.host,Business,business,false +fugui945,techhub.social,Engineering,engineering,false +fugui945,techhub.social,Programming,programming,false +fugui945,techhub.social,Social Media,social_media,false +fugui945,techhub.social,Ukraine Invasion,ukraine_invasion,false +fugui945,techhub.social,AI,ai,true +satnaing,newsmast.social,Journalism & Comment,news_comment_data,false +satnaing,newsmast.social,Social Media,social_media,false +satnaing,newsmast.social,Ukraine Invasion,ukraine_invasion,false +satnaing,newsmast.social,Weather,weather,false +satnaing,newsmast.social,Breaking News,breaking_news,true +jav_ppt345,mastodon.social,Journalism & Comment,news_comment_data,false +jav_ppt345,mastodon.social,Social Media,social_media,false +jav_ppt345,mastodon.social,Ukraine Invasion,ukraine_invasion,false +jav_ppt345,mastodon.social,Weather,weather,false +jav_ppt345,mastodon.social,Breaking News,breaking_news,true +orimori,mastodon.social,Books & Literature,books_literature,false +orimori,mastodon.social,Nature & Wildlife,nature_wildlife,false +sintrenton,todon.nl,Activism & Civil Rights,activism_civil_rights,false +sintrenton,todon.nl,Journalism & Comment,news_comment_data,false +sintrenton,todon.nl,Programming,programming,false +sintrenton,todon.nl,Technology,technology,false +sintrenton,todon.nl,Breaking News,breaking_news,true +Destiny,newsmast.social,Pets,pets,false +CELSET,newsmast.social,Activism & Civil Rights,activism_civil_rights,false +CELSET,newsmast.social,Women’s Voices,women_voices,false +CELSET,newsmast.social,Government & Policy,government_policy,true +meconiumhead,mastinsaan.in,Politics,politics,true +wannely,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +wannely,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false +wannely,newsmast.social,Poverty & Inequality,poverty_inequality,false +wannely,newsmast.social,Science,science,false +wannely,newsmast.social,Creative Arts,creative_arts,true +yemyatthu_cs_10,mastodon.social,Academia & Research,academia_research,false +yemyatthu_cs_10,mastodon.social,Climate change,climate_change,false +yemyatthu_cs_10,mastodon.social,Democracy & Human Rights,democracy_human_rights,false +yemyatthu_cs_10,mastodon.social,Energy & Pollution,energy_pollution,false +yemyatthu_cs_10,mastodon.social,Environment,environment,false +yemyatthu_cs_10,mastodon.social,Government & Policy,government_policy,false +yemyatthu_cs_10,mastodon.social,Healthcare,healthcare,false +yemyatthu_cs_10,mastodon.social,"Hunger, Disease & Water",hunger_disease_water,false +yemyatthu_cs_10,mastodon.social,Law & Justice,law_justice,false +yemyatthu_cs_10,mastodon.social,Politics,politics,false +yemyatthu_cs_10,mastodon.social,Poverty & Inequality,poverty_inequality,false +yemyatthu_cs_10,mastodon.social,US Politics,us_politics,false +yemyatthu_cs_10,mastodon.social,Biodiversity & Rewilding,biodiversity_rewilding,true +DadeMutphy,newsmast.social,AI,ai,false +DadeMutphy,newsmast.social,Biology,biology,false +DadeMutphy,newsmast.social,Chemistry,chemistry,false +DadeMutphy,newsmast.social,Engineering,engineering,false +DadeMutphy,newsmast.social,Mathematics,mathematics,false +DadeMutphy,newsmast.social,Journalism & Comment,news_comment_data,false +DadeMutphy,newsmast.social,Physics,physics,false +DadeMutphy,newsmast.social,Programming,programming,false +DadeMutphy,newsmast.social,Science,science,false +DadeMutphy,newsmast.social,Social Media,social_media,false +DadeMutphy,newsmast.social,Space,space,false +DadeMutphy,newsmast.social,Technology,technology,false +DadeMutphy,newsmast.social,Ukraine Invasion,ukraine_invasion,false +DadeMutphy,newsmast.social,Weather,weather,false +DadeMutphy,newsmast.social,Breaking News,breaking_news,true +ivanych,mastodon.social,Democracy & Human Rights,democracy_human_rights,false +ivanych,mastodon.social,"Hunger, Disease & Water",hunger_disease_water,false +ivanych,mastodon.social,Law & Justice,law_justice,false +ivanych,mastodon.social,Politics,politics,false +ivanych,mastodon.social,Poverty & Inequality,poverty_inequality,false +ivanych,mastodon.social,US Politics,us_politics,false +ivanych,mastodon.social,Ukraine Invasion,ukraine_invasion,true +Usten,social.vivaldi.net,AI,ai,false +Usten,social.vivaldi.net,Social Media,social_media,false +Usten,social.vivaldi.net,Technology,technology,false +Usten,social.vivaldi.net,Ukraine Invasion,ukraine_invasion,false +Usten,social.vivaldi.net,Breaking News,breaking_news,true +cjpower,mstdn.social,Environment,environment,false +cjpower,mstdn.social,Government & Policy,government_policy,false +cjpower,mstdn.social,Law & Justice,law_justice,false +cjpower,mstdn.social,Journalism & Comment,news_comment_data,false +cjpower,mstdn.social,Climate change,climate_change,true +admin,mastodon.raddemo.host,Markets & Finance,markets_finance,false +admin,mastodon.raddemo.host,Programming,programming,false +admin,mastodon.raddemo.host,Technology,technology,true +tex,mas.to,Social Media,social_media,false +eltemps,mastodon.social,Weather,weather,true +tex,mas.to,Social Sciences,social_sciences,false +ilija32,social.vivaldi.net,AI,ai,false +ilija32,social.vivaldi.net,Environment,environment,false +kieransweeney,mastodon.ie,Biodiversity & Rewilding,biodiversity_rewilding,false +kieransweeney,mastodon.ie,Energy & Pollution,energy_pollution,false +kieransweeney,mastodon.ie,Engineering,engineering,false +kieransweeney,mastodon.ie,Physics,physics,false +kieransweeney,mastodon.ie,Climate change,climate_change,true +Empiricism,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false +Empiricism,newsmast.social,Biology,biology,false +Empiricism,newsmast.social,Chemistry,chemistry,false +Empiricism,newsmast.social,Climate change,climate_change,false +Empiricism,newsmast.social,Energy & Pollution,energy_pollution,false +Empiricism,newsmast.social,Environment,environment,false +Empiricism,newsmast.social,Mathematics,mathematics,false +Empiricism,newsmast.social,Philosophy,philosophy,false +Empiricism,newsmast.social,Physics,physics,false +Empiricism,newsmast.social,Social Sciences,social_sciences,false +Empiricism,newsmast.social,Space,space,false +Empiricism,newsmast.social,Science,science,true +ahmuro,mas.to,AI,ai,false +ahmuro,mas.to,Books & Literature,books_literature,false +ahmuro,mas.to,Engineering,engineering,false +ahmuro,mas.to,Gaming,gaming,false +ahmuro,mas.to,Movies,movies,false +ahmuro,mas.to,Photography,photography,false +ahmuro,mas.to,Poverty & Inequality,poverty_inequality,false +ahmuro,mas.to,Programming,programming,false +ahmuro,mas.to,Technology,technology,true +academus,infosec.exchange,AI,ai,false +academus,infosec.exchange,Government & Policy,government_policy,false +academus,infosec.exchange,Science,science,false +academus,infosec.exchange,Technology,technology,false +academus,infosec.exchange,Breaking News,breaking_news,true +GrowingForJustice,mastodon.social,Biodiversity & Rewilding,biodiversity_rewilding,false +GrowingForJustice,mastodon.social,Biology,biology,false +GrowingForJustice,mastodon.social,Breaking News,breaking_news,false +barbmaclean,mastodon.social,Business,business,false +barbmaclean,mastodon.social,Engineering,engineering,false +barbmaclean,mastodon.social,Markets & Finance,markets_finance,false +barbmaclean,mastodon.social,Technology,technology,false +barbmaclean,mastodon.social,Breaking News,breaking_news,true +GrowingForJustice,mastodon.social,Climate change,climate_change,false +GrowingForJustice,mastodon.social,Energy & Pollution,energy_pollution,false +GrowingForJustice,mastodon.social,Environment,environment,false +GrowingForJustice,mastodon.social,Government & Policy,government_policy,false +torstenesser,mastodon.social,Business,business,false +torstenesser,mastodon.social,Government & Policy,government_policy,false +torstenesser,mastodon.social,Science,science,false +torstenesser,mastodon.social,Technology,technology,false +torstenesser,mastodon.social,Breaking News,breaking_news,true +eltemps,mastodon.social,Biodiversity & Rewilding,biodiversity_rewilding,false +eltemps,mastodon.social,Climate change,climate_change,false +eltemps,mastodon.social,Energy & Pollution,energy_pollution,false +eltemps,mastodon.social,Environment,environment,false +guzz,mastodon.social,Books & Literature,books_literature,false +guzz,mastodon.social,History,history,false +guzz,mastodon.social,Movies,movies,false +guzz,mastodon.social,Music,music,false +guzz,mastodon.social,Philosophy,philosophy,false +guzz,mastodon.social,Photography,photography,false +guzz,mastodon.social,Science,science,false +guzz,mastodon.social,Social Sciences,social_sciences,false +guzz,mastodon.social,Space,space,false +guzz,mastodon.social,Technology,technology,false +guzz,mastodon.social,Breaking News,breaking_news,true +Tylertul,universeodon.com,AI,ai,false +Tylertul,universeodon.com,Breaking News,breaking_news,false +Tylertul,universeodon.com,Engineering,engineering,false +Tylertul,universeodon.com,Government & Policy,government_policy,false +Tylertul,universeodon.com,Politics,politics,false +Tylertul,universeodon.com,Technology,technology,true +robbhoy,newsmast.social,AI,ai,false +robbhoy,newsmast.social,Architecture & Design,architecture_design,false +robbhoy,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false +robbhoy,newsmast.social,Books & Literature,books_literature,false +robbhoy,newsmast.social,Climate change,climate_change,false +robbhoy,newsmast.social,Energy & Pollution,energy_pollution,false +robbhoy,newsmast.social,Engineering,engineering,false +robbhoy,newsmast.social,Environment,environment,false +robbhoy,newsmast.social,Gaming,gaming,false +robbhoy,newsmast.social,Music,music,false +robbhoy,newsmast.social,Performing Arts,performing_arts,false +robbhoy,newsmast.social,Photography,photography,false +robbhoy,newsmast.social,Programming,programming,false +robbhoy,newsmast.social,Social Media,social_media,false +robbhoy,newsmast.social,Technology,technology,false +robbhoy,newsmast.social,TV & Radio,tv_radio,false +robbhoy,newsmast.social,Ukraine Invasion,ukraine_invasion,false +robbhoy,newsmast.social,Visual Arts,visual_arts,false +robbhoy,newsmast.social,Weather,weather,false +robbhoy,newsmast.social,Movies,movies,true +Gloomiste,ieji.de,Poverty & Inequality,poverty_inequality,false +tex,mas.to,Space,space,false +tex,mas.to,Sport,sport,false +rmdes,mstdn.social,Academia & Research,academia_research,false +rmdes,mstdn.social,Activism & Civil Rights,activism_civil_rights,false +rmdes,mstdn.social,AI,ai,false +rmdes,mstdn.social,Books & Literature,books_literature,false +DadeMurphy,newsmast.social,Breaking News,breaking_news,true +rmdes,mstdn.social,Breaking News,breaking_news,false +rmdes,mstdn.social,Climate change,climate_change,false +rmdes,mstdn.social,Democracy & Human Rights,democracy_human_rights,false +rmdes,mstdn.social,Government & Policy,government_policy,false +rmdes,mstdn.social,Humanities,humanities,false +rmdes,mstdn.social,Music,music,false +rmdes,mstdn.social,Journalism & Comment,news_comment_data,false +acxtrilla,mastodon.social,Books & Literature,books_literature,false +acxtrilla,mastodon.social,Football,football,false +acxtrilla,mastodon.social,Gaming,gaming,false +acxtrilla,mastodon.social,Movies,movies,false +acxtrilla,mastodon.social,Photography,photography,false +acxtrilla,mastodon.social,TV & Radio,tv_radio,false +acxtrilla,mastodon.social,Technology,technology,true +mariana_b,newsmast.social,Weather,weather,false +rmdes,mstdn.social,Philosophy,philosophy,false +rmdes,mstdn.social,Politics,politics,false +rmdes,mstdn.social,Programming,programming,false +rmdes,mstdn.social,Science,science,false +rmdes,mstdn.social,Social Media,social_media,false +rmdes,mstdn.social,Social Sciences,social_sciences,false +rmdes,mstdn.social,Space,space,false +smux,u.fail,Space,space,false +smux,u.fail,Technology,technology,false +smux,u.fail,Ukraine Invasion,ukraine_invasion,false +smux,u.fail,Weather,weather,false +smux,u.fail,Breaking News,breaking_news,true +rmdes,mstdn.social,Technology,technology,false +rmdes,mstdn.social,US Politics,us_politics,false +rmdes,mstdn.social,Women’s Voices,women_voices,false +rmdes,mstdn.social,Ukraine Invasion,ukraine_invasion,true +tex,mas.to,Technology,technology,false +Nyein,newsmast.social,Social Media,social_media,false +sajarose12,mastodon.social,Activism & Civil Rights,activism_civil_rights,false +sajarose12,mastodon.social,Breaking News,breaking_news,false +sajarose12,mastodon.social,Democracy & Human Rights,democracy_human_rights,false +sajarose12,mastodon.social,Humour,humour,false +sajarose12,mastodon.social,Journalism & Comment,news_comment_data,false +sajarose12,mastodon.social,Science,science,false +sajarose12,mastodon.social,Women’s Voices,women_voices,false +sajarose12,mastodon.social,LGBTQ+,lgbtq,true +natejung,mstdn.games,AI,ai,false +Alex_Y,newsmast.social,Architecture & Design,architecture_design,false +Alex_Y,newsmast.social,Breaking News,breaking_news,false +Alex_Y,newsmast.social,Movies,movies,false +Alex_Y,newsmast.social,Physics,physics,false +Alex_Y,newsmast.social,Ukraine Invasion,ukraine_invasion,true +natejung,mstdn.games,Breaking News,breaking_news,false +natejung,mstdn.games,Engineering,engineering,false +natejung,mstdn.games,Science,science,false +natejung,mstdn.games,Social Media,social_media,false +natejung,mstdn.games,Space,space,false +natejung,mstdn.games,Technology,technology,true +mastoadmin,masto.deluma.biz,Breaking News,breaking_news,true +craigcorbin,fosstodon.org,Academia & Research,academia_research,false +craigcorbin,fosstodon.org,AI,ai,false +craigcorbin,fosstodon.org,Breaking News,breaking_news,false +craigcorbin,fosstodon.org,Engineering,engineering,false +craigcorbin,fosstodon.org,Government & Policy,government_policy,false +craigcorbin,fosstodon.org,Healthcare,healthcare,false +craigcorbin,fosstodon.org,Journalism & Comment,news_comment_data,false +craigcorbin,fosstodon.org,Politics,politics,false +craigcorbin,fosstodon.org,Programming,programming,false +craigcorbin,fosstodon.org,Social Media,social_media,false +craigcorbin,fosstodon.org,Technology,technology,false +craigcorbin,fosstodon.org,Ukraine Invasion,ukraine_invasion,false +craigcorbin,fosstodon.org,US Politics,us_politics,false +craigcorbin,fosstodon.org,Weather,weather,false +craigcorbin,fosstodon.org,Law & Justice,law_justice,true +mastoadmin,masto.deluma.biz,Academia & Research,academia_research,false +mastoadmin,masto.deluma.biz,AI,ai,false +mastoadmin,masto.deluma.biz,Biodiversity & Rewilding,biodiversity_rewilding,false +mastoadmin,masto.deluma.biz,Biology,biology,false +mastoadmin,masto.deluma.biz,Business,business,false +mastoadmin,masto.deluma.biz,Chemistry,chemistry,false +mastoadmin,masto.deluma.biz,Climate change,climate_change,false +mastoadmin,masto.deluma.biz,Democracy & Human Rights,democracy_human_rights,false +mastoadmin,masto.deluma.biz,Energy & Pollution,energy_pollution,false +mastoadmin,masto.deluma.biz,Engineering,engineering,false +mastoadmin,masto.deluma.biz,Environment,environment,false +mastoadmin,masto.deluma.biz,Government & Policy,government_policy,false +mastoadmin,masto.deluma.biz,Healthcare,healthcare,false +mastoadmin,masto.deluma.biz,History,history,false +mastoadmin,masto.deluma.biz,Humanities,humanities,false +mastoadmin,masto.deluma.biz,"Hunger, Disease & Water",hunger_disease_water,false +mastoadmin,masto.deluma.biz,Law & Justice,law_justice,false +mastoadmin,masto.deluma.biz,Markets & Finance,markets_finance,false +mastoadmin,masto.deluma.biz,Mathematics,mathematics,false +mastoadmin,masto.deluma.biz,Journalism & Comment,news_comment_data,false +mastoadmin,masto.deluma.biz,Philosophy,philosophy,false +mastoadmin,masto.deluma.biz,Physics,physics,false +mastoadmin,masto.deluma.biz,Politics,politics,false +mastoadmin,masto.deluma.biz,Poverty & Inequality,poverty_inequality,false +mastoadmin,masto.deluma.biz,Programming,programming,false +mastoadmin,masto.deluma.biz,Science,science,false +mastoadmin,masto.deluma.biz,Social Media,social_media,false +mastoadmin,masto.deluma.biz,Social Sciences,social_sciences,false +mastoadmin,masto.deluma.biz,Space,space,false +mastoadmin,masto.deluma.biz,Technology,technology,false +mastoadmin,masto.deluma.biz,Ukraine Invasion,ukraine_invasion,false +mastoadmin,masto.deluma.biz,US Politics,us_politics,false +mastoadmin,masto.deluma.biz,Weather,weather,false +mastoadmin,masto.deluma.biz,Workers Rights,workers_rights,false +ilija32,social.vivaldi.net,Food & Drink,food_drink,false +owen,mementomori.social,Activism & Civil Rights,activism_civil_rights,false +owen,mementomori.social,Black Voices,black_voices,false +owen,mementomori.social,Breaking News,breaking_news,false +owen,mementomori.social,Gaming,gaming,false +owen,mementomori.social,Movies,movies,false +owen,mementomori.social,Music,music,false +owen,mementomori.social,Journalism & Comment,news_comment_data,false +owen,mementomori.social,Performing Arts,performing_arts,false +owen,mementomori.social,Photography,photography,false +owen,mementomori.social,Social Media,social_media,false +owen,mementomori.social,Technology,technology,false +owen,mementomori.social,Visual Arts,visual_arts,false +owen,mementomori.social,Women’s Voices,women_voices,false +owen,mementomori.social,Books & Literature,books_literature,true +GrowingForJustice,mastodon.social,Healthcare,healthcare,false +GrowingForJustice,mastodon.social,History,history,false +GrowingForJustice,mastodon.social,"Hunger, Disease & Water",hunger_disease_water,false +GrowingForJustice,mastodon.social,Law & Justice,law_justice,false +GrowingForJustice,mastodon.social,Music,music,false +GrowingForJustice,mastodon.social,Philosophy,philosophy,false +GrowingForJustice,mastodon.social,Politics,politics,false +GrowingForJustice,mastodon.social,Poverty & Inequality,poverty_inequality,false +GrowingForJustice,mastodon.social,Science,science,false +GrowingForJustice,mastodon.social,Social Sciences,social_sciences,false +fabiocosta0305,ursal.zone,AI,ai,false +fabiocosta0305,ursal.zone,Books & Literature,books_literature,false +fabiocosta0305,ursal.zone,Breaking News,breaking_news,false +fabiocosta0305,ursal.zone,Engineering,engineering,false +fabiocosta0305,ursal.zone,Football,football,false +fabiocosta0305,ursal.zone,Gaming,gaming,false +fabiocosta0305,ursal.zone,History,history,false +fabiocosta0305,ursal.zone,Humanities,humanities,false +fabiocosta0305,ursal.zone,Music,music,false +fabiocosta0305,ursal.zone,Philosophy,philosophy,false +fabiocosta0305,ursal.zone,Photography,photography,false +fabiocosta0305,ursal.zone,Programming,programming,false +fabiocosta0305,ursal.zone,Science,science,false +fabiocosta0305,ursal.zone,Social Sciences,social_sciences,false +fabiocosta0305,ursal.zone,Space,space,false +fabiocosta0305,ursal.zone,Sport,sport,false +fabiocosta0305,ursal.zone,Technology,technology,false +fabiocosta0305,ursal.zone,Weather,weather,true +GrowingForJustice,mastodon.social,Space,space,false +GrowingForJustice,mastodon.social,Ukraine Invasion,ukraine_invasion,false +GrowingForJustice,mastodon.social,US Politics,us_politics,false +GrowingForJustice,mastodon.social,Weather,weather,false +GrowingForJustice,mastodon.social,Democracy & Human Rights,democracy_human_rights,true +jelly427,newsmast.social,Breaking News,breaking_news,false +wwrr,mastodon.social,AI,ai,false +wwrr,mastodon.social,Government & Policy,government_policy,false +wwrr,mastodon.social,Politics,politics,false +wwrr,mastodon.social,Programming,programming,false +wwrr,mastodon.social,Technology,technology,false +wwrr,mastodon.social,US Politics,us_politics,false +wwrr,mastodon.social,Breaking News,breaking_news,true +jelly427,newsmast.social,Engineering,engineering,false +jelly427,newsmast.social,Football,football,false +jelly427,newsmast.social,Journalism & Comment,news_comment_data,false +jelly427,newsmast.social,Programming,programming,false +jelly427,newsmast.social,Social Media,social_media,false +notimefortv,mastodon.social,Architecture & Design,architecture_design,false +notimefortv,mastodon.social,Books & Literature,books_literature,false +notimefortv,mastodon.social,Music,music,false +notimefortv,mastodon.social,Visual Arts,visual_arts,false +notimefortv,mastodon.social,Photography,photography,true +rwap,mastodon.social,AI,ai,false +rwap,mastodon.social,Breaking News,breaking_news,false +rwap,mastodon.social,Democracy & Human Rights,democracy_human_rights,false +rwap,mastodon.social,"Hunger, Disease & Water",hunger_disease_water,false +rwap,mastodon.social,Mathematics,mathematics,false +rwap,mastodon.social,Journalism & Comment,news_comment_data,false +rwap,mastodon.social,Physics,physics,false +rwap,mastodon.social,Poverty & Inequality,poverty_inequality,false +rwap,mastodon.social,Science,science,false +rwap,mastodon.social,Space,space,false +rwap,mastodon.social,Technology,technology,true +datafuzz,mastodon.xyz,Biodiversity & Rewilding,biodiversity_rewilding,false +datafuzz,mastodon.xyz,Biology,biology,false +datafuzz,mastodon.xyz,Democracy & Human Rights,democracy_human_rights,false +datafuzz,mastodon.xyz,Engineering,engineering,false +datafuzz,mastodon.xyz,Environment,environment,false +datafuzz,mastodon.xyz,Humour,humour,false +datafuzz,mastodon.xyz,Puzzles,puzzles,false +datafuzz,mastodon.xyz,Science,science,false +datafuzz,mastodon.xyz,Space,space,false +datafuzz,mastodon.xyz,Travel,travel,false +datafuzz,mastodon.xyz,Technology,technology,true +wizardfrag,masto.wizardfrag.co.uk,Breaking News,breaking_news,false +wizardfrag,masto.wizardfrag.co.uk,Environment,environment,false +wizardfrag,masto.wizardfrag.co.uk,Journalism & Comment,news_comment_data,false +wizardfrag,masto.wizardfrag.co.uk,Science,science,false +wizardfrag,masto.wizardfrag.co.uk,Technology,technology,true +tex,mas.to,Ukraine Invasion,ukraine_invasion,false +tex,mas.to,US Politics,us_politics,false +grislyeye,indieweb.social,Gaming,gaming,false +grislyeye,indieweb.social,Movies,movies,false +grislyeye,indieweb.social,Programming,programming,false +grislyeye,indieweb.social,Social Media,social_media,false +grislyeye,indieweb.social,TV & Radio,tv_radio,false +grislyeye,indieweb.social,Breaking News,breaking_news,true +chris,n-odes.social,AI,ai,false +chris,n-odes.social,Architecture & Design,architecture_design,false +chris,n-odes.social,Books & Literature,books_literature,false +chris,n-odes.social,Breaking News,breaking_news,false +chris,n-odes.social,Journalism & Comment,news_comment_data,false +chris,n-odes.social,Photography,photography,false +chris,n-odes.social,Poverty & Inequality,poverty_inequality,false +chris,n-odes.social,Programming,programming,false +chris,n-odes.social,Technology,technology,false +chris,n-odes.social,Visual Arts,visual_arts,true +wickedlester,mastodon.social,Academia & Research,academia_research,false +wickedlester,mastodon.social,Activism & Civil Rights,activism_civil_rights,false +wickedlester,mastodon.social,AI,ai,false +wickedlester,mastodon.social,Architecture & Design,architecture_design,false +wickedlester,mastodon.social,Biology,biology,false +wickedlester,mastodon.social,Black Voices,black_voices,false +wickedlester,mastodon.social,Books & Literature,books_literature,false +wickedlester,mastodon.social,Chemistry,chemistry,false +wickedlester,mastodon.social,Creative Arts,creative_arts,false +wickedlester,mastodon.social,Democracy & Human Rights,democracy_human_rights,false +wickedlester,mastodon.social,Disabled Voices,disabled_voices,false +wickedlester,mastodon.social,Engineering,engineering,false +wickedlester,mastodon.social,Food & Drink,food_drink,false +wickedlester,mastodon.social,Gaming,gaming,false +wickedlester,mastodon.social,Government & Policy,government_policy,false +wickedlester,mastodon.social,Healthcare,healthcare,false +wickedlester,mastodon.social,History,history,false +wickedlester,mastodon.social,Humanities,humanities,false +wickedlester,mastodon.social,Humour,humour,false +wickedlester,mastodon.social,"Hunger, Disease & Water",hunger_disease_water,false +wickedlester,mastodon.social,Immigrants Rights,immigrants_rights,false +wickedlester,mastodon.social,Indigenous Peoples,indigenous_peoples,false +wickedlester,mastodon.social,Law & Justice,law_justice,false +wickedlester,mastodon.social,LGBTQ+,lgbtq,false +wickedlester,mastodon.social,Mathematics,mathematics,false +wickedlester,mastodon.social,Mental Health & Wellbeing,mental_health_wellbeing,false +wickedlester,mastodon.social,Movies,movies,false +wickedlester,mastodon.social,Music,music,false +wickedlester,mastodon.social,Nature & Wildlife,nature_wildlife,false +wickedlester,mastodon.social,Journalism & Comment,news_comment_data,false +wickedlester,mastodon.social,Performing Arts,performing_arts,false +wickedlester,mastodon.social,Pets,pets,false +wickedlester,mastodon.social,Philosophy,philosophy,false +wickedlester,mastodon.social,Photography,photography,false +wickedlester,mastodon.social,Physics,physics,false +wickedlester,mastodon.social,Politics,politics,false +wickedlester,mastodon.social,Poverty & Inequality,poverty_inequality,false +wickedlester,mastodon.social,Programming,programming,false +wickedlester,mastodon.social,Puzzles,puzzles,false +wickedlester,mastodon.social,Science,science,false +wickedlester,mastodon.social,Social Media,social_media,false +wickedlester,mastodon.social,Social Sciences,social_sciences,false +wickedlester,mastodon.social,Space,space,false +wickedlester,mastodon.social,Technology,technology,false +wickedlester,mastodon.social,Travel,travel,false +wickedlester,mastodon.social,TV & Radio,tv_radio,false +wickedlester,mastodon.social,Ukraine Invasion,ukraine_invasion,false +wickedlester,mastodon.social,US Politics,us_politics,false +wickedlester,mastodon.social,Visual Arts,visual_arts,false +wickedlester,mastodon.social,Weather,weather,false +wickedlester,mastodon.social,Women’s Voices,women_voices,false +wickedlester,mastodon.social,Breaking News,breaking_news,true +jelly427,newsmast.social,Sport,sport,false +jelly427,newsmast.social,Technology,technology,false +jelly427,newsmast.social,Ukraine Invasion,ukraine_invasion,false +jelly427,newsmast.social,US Sport,us_sport,false +jelly427,newsmast.social,Weather,weather,false +jelly427,newsmast.social,AI,ai,true +Nyme,chaos.social,Breaking News,breaking_news,false +Nyme,chaos.social,Government & Policy,government_policy,false +Nyme,chaos.social,Journalism & Comment,news_comment_data,false +Nyme,chaos.social,Science,science,false +Nyme,chaos.social,Gaming,gaming,true +skryking,infosec.exchange,AI,ai,false +skryking,infosec.exchange,Biology,biology,false +skryking,infosec.exchange,Breaking News,breaking_news,false +skryking,infosec.exchange,Chemistry,chemistry,false +skryking,infosec.exchange,Engineering,engineering,false +skryking,infosec.exchange,Football,football,false +skryking,infosec.exchange,Mathematics,mathematics,false +skryking,infosec.exchange,Journalism & Comment,news_comment_data,false +skryking,infosec.exchange,Physics,physics,false +skryking,infosec.exchange,Programming,programming,false +skryking,infosec.exchange,Science,science,false +skryking,infosec.exchange,Social Media,social_media,false +skryking,infosec.exchange,Space,space,false +skryking,infosec.exchange,Sport,sport,false +skryking,infosec.exchange,Ukraine Invasion,ukraine_invasion,false +skryking,infosec.exchange,US Sport,us_sport,false +skryking,infosec.exchange,Weather,weather,false +skryking,infosec.exchange,Technology,technology,true +natejung,mstdn.games,Gaming,gaming,false +chrisg,aus.social,US Politics,us_politics,false +chrisg,aus.social,Visual Arts,visual_arts,false +chrisg,aus.social,Women’s Voices,women_voices,false +chrisg,aus.social,Workers Rights,workers_rights,false +chrisg,aus.social,Breaking News,breaking_news,true +tex,mas.to,US Sport,us_sport,false +ilija32,social.vivaldi.net,Gaming,gaming,false +Occams_Beard,sunny.garden,Biology,biology,false +Occams_Beard,sunny.garden,Chemistry,chemistry,false +Occams_Beard,sunny.garden,Engineering,engineering,false +ilija32,social.vivaldi.net,Mathematics,mathematics,false +felipeorleans,mastodon.social,AI,ai,false +felipeorleans,mastodon.social,Biodiversity & Rewilding,biodiversity_rewilding,false +felipeorleans,mastodon.social,Biology,biology,false +felipeorleans,mastodon.social,Books & Literature,books_literature,false +felipeorleans,mastodon.social,Breaking News,breaking_news,false +felipeorleans,mastodon.social,Climate change,climate_change,false +felipeorleans,mastodon.social,Creative Arts,creative_arts,false +felipeorleans,mastodon.social,Democracy & Human Rights,democracy_human_rights,false +felipeorleans,mastodon.social,Energy & Pollution,energy_pollution,false +felipeorleans,mastodon.social,Environment,environment,false +felipeorleans,mastodon.social,History,history,false +felipeorleans,mastodon.social,Humour,humour,false +felipeorleans,mastodon.social,"Hunger, Disease & Water",hunger_disease_water,false +felipeorleans,mastodon.social,Mental Health & Wellbeing,mental_health_wellbeing,false +felipeorleans,mastodon.social,Movies,movies,false +felipeorleans,mastodon.social,Music,music,false +felipeorleans,mastodon.social,Nature & Wildlife,nature_wildlife,false +felipeorleans,mastodon.social,Journalism & Comment,news_comment_data,false +felipeorleans,mastodon.social,Pets,pets,false +felipeorleans,mastodon.social,Philosophy,philosophy,false +felipeorleans,mastodon.social,Photography,photography,false +felipeorleans,mastodon.social,Physics,physics,false +felipeorleans,mastodon.social,Poverty & Inequality,poverty_inequality,false +felipeorleans,mastodon.social,Science,science,false +felipeorleans,mastodon.social,Social Sciences,social_sciences,false +felipeorleans,mastodon.social,Space,space,false +felipeorleans,mastodon.social,Technology,technology,false +felipeorleans,mastodon.social,Travel,travel,false +felipeorleans,mastodon.social,TV & Radio,tv_radio,false +felipeorleans,mastodon.social,Visual Arts,visual_arts,false +felipeorleans,mastodon.social,Humanities,humanities,true +ilija32,social.vivaldi.net,Movies,movies,false +ilija32,social.vivaldi.net,Music,music,false +ilija32,social.vivaldi.net,Nature & Wildlife,nature_wildlife,false +ilija32,social.vivaldi.net,Pets,pets,false +ilija32,social.vivaldi.net,Programming,programming,false +ilija32,social.vivaldi.net,Puzzles,puzzles,false +igalmarino,mastodon.social,Programming,programming,false +igalmarino,mastodon.social,Science,science,false +igalmarino,mastodon.social,Technology,technology,false +igalmarino,mastodon.social,AI,ai,true +ilija32,social.vivaldi.net,Sport,sport,false +Occams_Beard,sunny.garden,Physics,physics,false +ilija32,social.vivaldi.net,Technology,technology,false +Occams_Beard,sunny.garden,Science,science,false +ilija32,social.vivaldi.net,Travel,travel,false +ilija32,social.vivaldi.net,TV & Radio,tv_radio,false +ilija32,social.vivaldi.net,Humour,humour,true +Occams_Beard,sunny.garden,History,history,true +caolipeng,Mastodon.social,Journalism & Comment,news_comment_data,false +caolipeng,Mastodon.social,Social Media,social_media,false +caolipeng,Mastodon.social,Ukraine Invasion,ukraine_invasion,false +caolipeng,Mastodon.social,Weather,weather,false +icastico,c.im,Journalism & Comment,news_comment_data,false +icastico,c.im,Social Media,social_media,false +icastico,c.im,Ukraine Invasion,ukraine_invasion,false +icastico,c.im,Weather,weather,false +icastico,c.im,Breaking News,breaking_news,true +caolipeng,Mastodon.social,Breaking News,breaking_news,true +bbq63304,mastodon.world,Academia & Research,academia_research,false +bbq63304,mastodon.world,AI,ai,false +silkester,mastodon.social,Academia & Research,academia_research,false +silkester,mastodon.social,AI,ai,false +silkester,mastodon.social,Architecture & Design,architecture_design,false +silkester,mastodon.social,Biodiversity & Rewilding,biodiversity_rewilding,false +silkester,mastodon.social,Biology,biology,false +silkester,mastodon.social,Books & Literature,books_literature,false +silkester,mastodon.social,Breaking News,breaking_news,false +silkester,mastodon.social,Business,business,false +silkester,mastodon.social,Chemistry,chemistry,false +silkester,mastodon.social,Climate change,climate_change,false +silkester,mastodon.social,Energy & Pollution,energy_pollution,false +silkester,mastodon.social,Environment,environment,false +silkester,mastodon.social,Government & Policy,government_policy,false +silkester,mastodon.social,Healthcare,healthcare,false +silkester,mastodon.social,Humanities,humanities,false +silkester,mastodon.social,Law & Justice,law_justice,false +silkester,mastodon.social,Mathematics,mathematics,false +silkester,mastodon.social,Movies,movies,false +silkester,mastodon.social,Music,music,false +silkester,mastodon.social,Journalism & Comment,news_comment_data,false +silkester,mastodon.social,Philosophy,philosophy,false +silkester,mastodon.social,Photography,photography,false +silkester,mastodon.social,Physics,physics,false +silkester,mastodon.social,Politics,politics,false +silkester,mastodon.social,Programming,programming,false +bbq63304,mastodon.world,Biology,biology,false +bbq63304,mastodon.world,Business,business,false +bbq63304,mastodon.world,Breaking News,breaking_news,true +quantumcog,fosstodon.org,Breaking News,breaking_news,false +quantumcog,fosstodon.org,Physics,physics,false +quantumcog,fosstodon.org,Science,science,false +quantumcog,fosstodon.org,Space,space,false +quantumcog,fosstodon.org,Technology,technology,true +silkester,mastodon.social,Science,science,false +silkester,mastodon.social,Social Media,social_media,false +silkester,mastodon.social,Technology,technology,false +silkester,mastodon.social,US Politics,us_politics,false +silkester,mastodon.social,Visual Arts,visual_arts,true +mikea,newsmast.social,Breaking News,breaking_news,false +mikea,newsmast.social,Climate change,climate_change,true +tex,mas.to,Weather,weather,false +tex,mas.to,Breaking News,breaking_news,true +bbq63304,mastodon.world,Chemistry,chemistry,false +bbq63304,mastodon.world,Engineering,engineering,false +joanna,newsie.social,AI,ai,false +joanna,newsie.social,Books & Literature,books_literature,false +joanna,newsie.social,Journalism & Comment,news_comment_data,false +joanna,newsie.social,Social Media,social_media,false +joanna,newsie.social,Technology,technology,false +joanna,newsie.social,Breaking News,breaking_news,true +bbq63304,mastodon.world,Government & Policy,government_policy,false +bbq63304,mastodon.world,Healthcare,healthcare,false +bbq63304,mastodon.world,Law & Justice,law_justice,false +bbq63304,mastodon.world,Markets & Finance,markets_finance,false +bbq63304,mastodon.world,Mathematics,mathematics,false +bbq63304,mastodon.world,Journalism & Comment,news_comment_data,false +bbq63304,mastodon.world,Physics,physics,false +bbq63304,mastodon.world,Politics,politics,false +maxtarlov,sfba.social,AI,ai,false +bbq63304,mastodon.world,Programming,programming,false +maxtarlov,sfba.social,Humanities,humanities,false +maxtarlov,sfba.social,Law & Justice,law_justice,false +maxtarlov,sfba.social,Journalism & Comment,news_comment_data,false +maxtarlov,sfba.social,Social Sciences,social_sciences,false +bbq63304,mastodon.world,Science,science,false +weblink,newsmast.social,Humour,humour,false +bbq63304,mastodon.world,Social Media,social_media,false +bbq63304,mastodon.world,Space,space,false +bbq63304,mastodon.world,Technology,technology,false +bbq63304,mastodon.world,Ukraine Invasion,ukraine_invasion,false +bbq63304,mastodon.world,US Politics,us_politics,false +bbq63304,mastodon.world,Weather,weather,false +DavidBlue,mastodon.social,Gaming,gaming,false +DavidBlue,mastodon.social,Music,music,false +DavidBlue,mastodon.social,Journalism & Comment,news_comment_data,false +DavidBlue,mastodon.social,Photography,photography,false +DavidBlue,mastodon.social,Programming,programming,false +DavidBlue,mastodon.social,Social Media,social_media,false +DavidBlue,mastodon.social,TV & Radio,tv_radio,false +DavidBlue,mastodon.social,Technology,technology,true +khabeko,techhub.social,Science,science,false +khabeko,techhub.social,Space,space,false +Xkok,universeodon.com,Law & Justice,law_justice,false +Xkok,universeodon.com,Ukraine Invasion,ukraine_invasion,false +Xkok,universeodon.com,US Politics,us_politics,false +Xkok,universeodon.com,US Sport,us_sport,false +Xkok,universeodon.com,Gaming,gaming,true +khabeko,techhub.social,Technology,technology,true +Yorick,mastodon.nl,Academia & Research,academia_research,false +Yorick,mastodon.nl,Activism & Civil Rights,activism_civil_rights,false +jensantarelli,hachyderm.io,Creative Arts,creative_arts,false +m0bi,newsmast.social,Engineering,engineering,false +mjgardner,social.sdf.org,Breaking News,breaking_news,false +Yorick,mastodon.nl,Biodiversity & Rewilding,biodiversity_rewilding,false +jrollans,mastodon.social,AI,ai,false +jrollans,mastodon.social,Breaking News,breaking_news,false +jrollans,mastodon.social,Engineering,engineering,false +jrollans,mastodon.social,Science,science,false +ultmt,mastodon.social,Architecture & Design,architecture_design,false +ultmt,mastodon.social,Books & Literature,books_literature,false +ultmt,mastodon.social,Breaking News,breaking_news,false +ultmt,mastodon.social,Creative Arts,creative_arts,false +ultmt,mastodon.social,Humour,humour,false +ultmt,mastodon.social,Nature & Wildlife,nature_wildlife,false +ultmt,mastodon.social,Photography,photography,false +ultmt,mastodon.social,Physics,physics,false +ultmt,mastodon.social,Space,space,false +ultmt,mastodon.social,Travel,travel,false +ultmt,mastodon.social,TV & Radio,tv_radio,false +ultmt,mastodon.social,Movies,movies,true +jrollans,mastodon.social,Social Media,social_media,false +jrollans,mastodon.social,Space,space,false +jrollans,mastodon.social,Technology,technology,true +esinclai,pkm.social,Books & Literature,books_literature,false +esinclai,pkm.social,Government & Policy,government_policy,false +maxtarlov,sfba.social,Technology,technology,false +maxtarlov,sfba.social,Breaking News,breaking_news,true +esinclai,pkm.social,History,history,false +esinclai,pkm.social,Journalism & Comment,news_comment_data,false +esinclai,pkm.social,Technology,technology,false +esinclai,pkm.social,Humanities,humanities,true +pogiter90,mastodon.uno,Climate change,climate_change,false +pogiter90,mastodon.uno,Democracy & Human Rights,democracy_human_rights,false +pogiter90,mastodon.uno,Energy & Pollution,energy_pollution,false +pogiter90,mastodon.uno,Engineering,engineering,false +pogiter90,mastodon.uno,Environment,environment,false +pogiter90,mastodon.uno,Government & Policy,government_policy,false +pogiter90,mastodon.uno,Mathematics,mathematics,false +pogiter90,mastodon.uno,Journalism & Comment,news_comment_data,false +pogiter90,mastodon.uno,Physics,physics,false +pogiter90,mastodon.uno,Poverty & Inequality,poverty_inequality,false +pogiter90,mastodon.uno,Space,space,false +pogiter90,mastodon.uno,Technology,technology,false +pogiter90,mastodon.uno,Breaking News,breaking_news,true +Yorick,mastodon.nl,Biology,biology,false +Yorick,mastodon.nl,Climate change,climate_change,false +Yorick,mastodon.nl,Democracy & Human Rights,democracy_human_rights,false +Yorick,mastodon.nl,Environment,environment,false +Yorick,mastodon.nl,Government & Policy,government_policy,false +eprenen,mastodon.social,AI,ai,false +eprenen,mastodon.social,Biology,biology,false +Yorick,mastodon.nl,History,history,false +eprenen,mastodon.social,Chemistry,chemistry,false +eprenen,mastodon.social,Democracy & Human Rights,democracy_human_rights,false +donald13,newsmast.social,Activism & Civil Rights,activism_civil_rights,false +donald13,newsmast.social,AI,ai,false +donald13,newsmast.social,Architecture & Design,architecture_design,false +donald13,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false +donald13,newsmast.social,Biology,biology,false +donald13,newsmast.social,Black Voices,black_voices,false +donald13,newsmast.social,Books & Literature,books_literature,false +donald13,newsmast.social,Breaking News,breaking_news,false +donald13,newsmast.social,Business,business,false +donald13,newsmast.social,Chemistry,chemistry,false +donald13,newsmast.social,Climate change,climate_change,false +donald13,newsmast.social,Creative Arts,creative_arts,false +donald13,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +donald13,newsmast.social,Disabled Voices,disabled_voices,false +donald13,newsmast.social,Energy & Pollution,energy_pollution,false +donald13,newsmast.social,Engineering,engineering,false +donald13,newsmast.social,Environment,environment,false +donald13,newsmast.social,Food & Drink,food_drink,false +donald13,newsmast.social,Football,football,false +donald13,newsmast.social,Gaming,gaming,false +donald13,newsmast.social,Government & Policy,government_policy,false +donald13,newsmast.social,Healthcare,healthcare,false +donald13,newsmast.social,History,history,false +donald13,newsmast.social,Humanities,humanities,false +donald13,newsmast.social,Humour,humour,false +donald13,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false +donald13,newsmast.social,Immigrants Rights,immigrants_rights,false +donald13,newsmast.social,Indigenous Peoples,indigenous_peoples,false +donald13,newsmast.social,Law & Justice,law_justice,false +donald13,newsmast.social,LGBTQ+,lgbtq,false +donald13,newsmast.social,Markets & Finance,markets_finance,false +donald13,newsmast.social,Mathematics,mathematics,false +donald13,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false +donald13,newsmast.social,Movies,movies,false +donald13,newsmast.social,Music,music,false +donald13,newsmast.social,Nature & Wildlife,nature_wildlife,false +donald13,newsmast.social,Journalism & Comment,news_comment_data,false +donald13,newsmast.social,Performing Arts,performing_arts,false +donald13,newsmast.social,Pets,pets,false +donald13,newsmast.social,Philosophy,philosophy,false +donald13,newsmast.social,Photography,photography,false +donald13,newsmast.social,Physics,physics,false +donald13,newsmast.social,Politics,politics,false +donald13,newsmast.social,Poverty & Inequality,poverty_inequality,false +donald13,newsmast.social,Programming,programming,false +donald13,newsmast.social,Puzzles,puzzles,false +donald13,newsmast.social,Science,science,false +donald13,newsmast.social,Social Media,social_media,false +donald13,newsmast.social,Social Sciences,social_sciences,false +donald13,newsmast.social,Space,space,false +donald13,newsmast.social,Sport,sport,false +donald13,newsmast.social,Technology,technology,false +donald13,newsmast.social,Travel,travel,false +donald13,newsmast.social,TV & Radio,tv_radio,false +donald13,newsmast.social,Ukraine Invasion,ukraine_invasion,false +donald13,newsmast.social,US Politics,us_politics,false +donald13,newsmast.social,US Sport,us_sport,false +donald13,newsmast.social,Visual Arts,visual_arts,false +donald13,newsmast.social,Weather,weather,false +donald13,newsmast.social,Women’s Voices,women_voices,false +donald13,newsmast.social,Workers Rights,workers_rights,false +donald13,newsmast.social,Academia & Research,academia_research,true +natbas,newsmast.social,Academia & Research,academia_research,false +natbas,newsmast.social,Breaking News,breaking_news,false +natbas,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +natbas,newsmast.social,Environment,environment,false +natbas,newsmast.social,Humanities,humanities,false +natbas,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false +natbas,newsmast.social,Journalism & Comment,news_comment_data,false +natbas,newsmast.social,Philosophy,philosophy,false +natbas,newsmast.social,Physics,physics,false +natbas,newsmast.social,Poverty & Inequality,poverty_inequality,false +natbas,newsmast.social,Science,science,false +natbas,newsmast.social,Social Sciences,social_sciences,false +natbas,newsmast.social,Weather,weather,false +natbas,newsmast.social,Books & Literature,books_literature,true +Tamero,dizl.de,Academia & Research,academia_research,false +Tamero,dizl.de,AI,ai,false +Tamero,dizl.de,Biology,biology,false +Tamero,dizl.de,Chemistry,chemistry,false +Tamero,dizl.de,Engineering,engineering,false +Tamero,dizl.de,History,history,false +Tamero,dizl.de,Humanities,humanities,false +Tamero,dizl.de,Philosophy,philosophy,false +Tamero,dizl.de,Physics,physics,false +Tamero,dizl.de,Politics,politics,false +Tamero,dizl.de,Programming,programming,false +Tamero,dizl.de,Science,science,false +Tamero,dizl.de,Social Sciences,social_sciences,false +Tamero,dizl.de,Technology,technology,false +Tamero,dizl.de,Government & Policy,government_policy,true +JEkis,hachyderm.io,Breaking News,breaking_news,false +JEkis,hachyderm.io,LGBTQ+,lgbtq,false +JEkis,hachyderm.io,Journalism & Comment,news_comment_data,false +JEkis,hachyderm.io,Women’s Voices,women_voices,false +JEkis,hachyderm.io,Disabled Voices,disabled_voices,true +OlPatchy2Eyes,ieji.de,AI,ai,false +OlPatchy2Eyes,ieji.de,Engineering,engineering,false +OlPatchy2Eyes,ieji.de,Football,football,false +OlPatchy2Eyes,ieji.de,"Hunger, Disease & Water",hunger_disease_water,false +OlPatchy2Eyes,ieji.de,Technology,technology,false +DrJLCLee,mastodon.green,Space,space,false +DrJLCLee,mastodon.green,Sport,sport,false +DrJLCLee,mastodon.green,Weather,weather,false +DrJLCLee,mastodon.green,Breaking News,breaking_news,true +OlPatchy2Eyes,ieji.de,US Politics,us_politics,false +OlPatchy2Eyes,ieji.de,US Sport,us_sport,false +dltj,code4lib.social,AI,ai,false +dltj,code4lib.social,Breaking News,breaking_news,false +dltj,code4lib.social,Democracy & Human Rights,democracy_human_rights,false +dltj,code4lib.social,History,history,false +dltj,code4lib.social,Journalism & Comment,news_comment_data,false +dltj,code4lib.social,Social Sciences,social_sciences,false +dltj,code4lib.social,Technology,technology,true +m0bi,newsmast.social,AI,ai,false +mjgardner,social.sdf.org,Business,business,false +eprenen,mastodon.social,Engineering,engineering,false +BennyBrown,mastodon.social,AI,ai,false +BennyBrown,mastodon.social,Biology,biology,false +BennyBrown,mastodon.social,Breaking News,breaking_news,false +BennyBrown,mastodon.social,Chemistry,chemistry,false +BennyBrown,mastodon.social,Engineering,engineering,false +BennyBrown,mastodon.social,Football,football,false +BennyBrown,mastodon.social,Mathematics,mathematics,false +BennyBrown,mastodon.social,Journalism & Comment,news_comment_data,false +BennyBrown,mastodon.social,Physics,physics,false +BennyBrown,mastodon.social,Programming,programming,false +BennyBrown,mastodon.social,Science,science,false +BennyBrown,mastodon.social,Space,space,false +BennyBrown,mastodon.social,Technology,technology,false +BennyBrown,mastodon.social,Sport,sport,true +strayegg,newsmast.social,AI,ai,false +strayegg,newsmast.social,Biology,biology,false +strayegg,newsmast.social,Chemistry,chemistry,false +strayegg,newsmast.social,Creative Arts,creative_arts,false +strayegg,newsmast.social,Engineering,engineering,false +strayegg,newsmast.social,Food & Drink,food_drink,false +strayegg,newsmast.social,History,history,false +strayegg,newsmast.social,Humanities,humanities,false +strayegg,newsmast.social,Humour,humour,false +strayegg,newsmast.social,LGBTQ+,lgbtq,false +strayegg,newsmast.social,Mathematics,mathematics,false +strayegg,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false +strayegg,newsmast.social,Nature & Wildlife,nature_wildlife,false +strayegg,newsmast.social,Pets,pets,false +strayegg,newsmast.social,Philosophy,philosophy,false +strayegg,newsmast.social,Physics,physics,false +strayegg,newsmast.social,Science,science,false +strayegg,newsmast.social,Social Sciences,social_sciences,false +strayegg,newsmast.social,Space,space,false +strayegg,newsmast.social,Technology,technology,false +strayegg,newsmast.social,Travel,travel,false +strayegg,newsmast.social,Programming,programming,true +marci,flipboard.social,Environment,environment,false +marci,flipboard.social,Law & Justice,law_justice,false +marci,flipboard.social,Social Media,social_media,false +marci,flipboard.social,US Politics,us_politics,false +marci,flipboard.social,Journalism & Comment,news_comment_data,true +bbq63304,mastodon.world,Workers Rights,workers_rights,false +spatial1,newsmast.social,AI,ai,false +spatial1,newsmast.social,Engineering,engineering,false +spatial1,newsmast.social,Markets & Finance,markets_finance,false +spatial1,newsmast.social,Technology,technology,false +spatial1,newsmast.social,Business,business,true +hrbrmstr,newsmast.social,Academia & Research,academia_research,false +hrbrmstr,newsmast.social,AI,ai,false +hrbrmstr,newsmast.social,Breaking News,breaking_news,false +hrbrmstr,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +hrbrmstr,newsmast.social,Engineering,engineering,false +hrbrmstr,newsmast.social,Government & Policy,government_policy,false +hrbrmstr,newsmast.social,Healthcare,healthcare,false +hrbrmstr,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false +hrbrmstr,newsmast.social,Law & Justice,law_justice,false +hrbrmstr,newsmast.social,Journalism & Comment,news_comment_data,false +hrbrmstr,newsmast.social,Politics,politics,false +hrbrmstr,newsmast.social,Poverty & Inequality,poverty_inequality,false +hrbrmstr,newsmast.social,Programming,programming,false +hrbrmstr,newsmast.social,Social Media,social_media,false +hrbrmstr,newsmast.social,Ukraine Invasion,ukraine_invasion,false +hrbrmstr,newsmast.social,US Politics,us_politics,false +hrbrmstr,newsmast.social,Weather,weather,false +hrbrmstr,newsmast.social,Technology,technology,true +WhiteMode,newsmast.social,Technology,technology,false +WhiteMode,newsmast.social,Programming,programming,false +boznette,wank.social,Creative Arts,creative_arts,false +boznette,wank.social,Food & Drink,food_drink,false +boznette,wank.social,Mental Health & Wellbeing,mental_health_wellbeing,false +boznette,wank.social,Nature & Wildlife,nature_wildlife,false +boznette,wank.social,Pets,pets,false +boznette,wank.social,Puzzles,puzzles,false +boznette,wank.social,Travel,travel,false +boznette,wank.social,Humour,humour,true +chrishancock,mas.to,Books & Literature,books_literature,false +jarulf,mstdn.social,Social Media,social_media,false +Yorick,mastodon.nl,Humanities,humanities,false +Yorick,mastodon.nl,Immigrants Rights,immigrants_rights,false +Yorick,mastodon.nl,Indigenous Peoples,indigenous_peoples,false +Yorick,mastodon.nl,Law & Justice,law_justice,false +Yorick,mastodon.nl,Mathematics,mathematics,false +Yorick,mastodon.nl,Music,music,false +Yorick,mastodon.nl,Philosophy,philosophy,false +Yorick,mastodon.nl,Physics,physics,false +Yorick,mastodon.nl,Poverty & Inequality,poverty_inequality,false +Yorick,mastodon.nl,Programming,programming,false +Yorick,mastodon.nl,Social Sciences,social_sciences,false +Yorick,mastodon.nl,Technology,technology,false +Yorick,mastodon.nl,Visual Arts,visual_arts,false +Yorick,mastodon.nl,Science,science,true +skk,newsmast.social,Activism & Civil Rights,activism_civil_rights,false +skk,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false +skk,newsmast.social,Biology,biology,false +linksinhetnieuws,mastodon.nl,Democracy & Human Rights,democracy_human_rights,false +linksinhetnieuws,mastodon.nl,Government & Policy,government_policy,false +linksinhetnieuws,mastodon.nl,Journalism & Comment,news_comment_data,false +wageslave64,mastodon.online,AI,ai,false +JimJQ,newsmast.social,Breaking News,breaking_news,false +JimJQ,newsmast.social,Climate change,climate_change,false +JimJQ,newsmast.social,Politics,politics,false +JimJQ,newsmast.social,Science,science,false +JimJQ,newsmast.social,Technology,technology,false +JimJQ,newsmast.social,US Politics,us_politics,true +wageslave64,mastodon.online,Democracy & Human Rights,democracy_human_rights,false +wageslave64,mastodon.online,Physics,physics,false +wageslave64,mastodon.online,Science,science,false +wageslave64,mastodon.online,Social Media,social_media,false +wageslave64,mastodon.online,Technology,technology,false +wageslave64,mastodon.online,Ukraine Invasion,ukraine_invasion,false +wageslave64,mastodon.online,Breaking News,breaking_news,true +linksinhetnieuws,mastodon.nl,Politics,politics,false +linksinhetnieuws,mastodon.nl,Breaking News,breaking_news,true +mjgardner,social.sdf.org,Engineering,engineering,false +Recently_Coco,mastodon.social,Democracy & Human Rights,democracy_human_rights,false +Recently_Coco,mastodon.social,"Hunger, Disease & Water",hunger_disease_water,false +Recently_Coco,mastodon.social,Journalism & Comment,news_comment_data,false +Recently_Coco,mastodon.social,Poverty & Inequality,poverty_inequality,false +Recently_Coco,mastodon.social,Social Media,social_media,false +Recently_Coco,mastodon.social,Ukraine Invasion,ukraine_invasion,false +Recently_Coco,mastodon.social,Weather,weather,false +Recently_Coco,mastodon.social,Breaking News,breaking_news,true +Big_AL,mastodon.social,Technology,technology,false +Big_AL,mastodon.social,Breaking News,breaking_news,false +Big_AL,mastodon.social,Markets & Finance,markets_finance,false +Big_AL,mastodon.social,Politics,politics,false +Big_AL,mastodon.social,Social Media,social_media,false +Big_AL,mastodon.social,Weather,weather,false +Big_AL,mastodon.social,US Politics,us_politics,true +instepphysio,newsmast.social,Politics,politics,false +instepphysio,newsmast.social,Poverty & Inequality,poverty_inequality,false +instepphysio,newsmast.social,US Politics,us_politics,false +instepphysio,newsmast.social,Energy & Pollution,energy_pollution,true +vianxonata,musician.social,Democracy & Human Rights,democracy_human_rights,false +vianxonata,musician.social,History,history,false +vianxonata,musician.social,Philosophy,philosophy,false +vianxonata,musician.social,Social Sciences,social_sciences,false +vianxonata,musician.social,Humanities,humanities,true +wfryer,mastodon.cloud,Books & Literature,books_literature,false +wfryer,mastodon.cloud,Breaking News,breaking_news,false +wfryer,mastodon.cloud,Democracy & Human Rights,democracy_human_rights,false +wfryer,mastodon.cloud,Journalism & Comment,news_comment_data,false +wfryer,mastodon.cloud,Poverty & Inequality,poverty_inequality,false +wfryer,mastodon.cloud,Space,space,false +wfryer,mastodon.cloud,US Politics,us_politics,false +wfryer,mastodon.cloud,Visual Arts,visual_arts,false +wfryer,mastodon.cloud,AI,ai,true +wfryer,newsmast.social,AI,ai,false +wfryer,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +wfryer,newsmast.social,Philosophy,philosophy,false +wfryer,newsmast.social,Social Sciences,social_sciences,false +wfryer,newsmast.social,History,history,true +john_90,newsmast.social,Breaking News,breaking_news,false +john_90,newsmast.social,Journalism & Comment,news_comment_data,false +john_90,newsmast.social,Ukraine Invasion,ukraine_invasion,false +john_90,newsmast.social,Weather,weather,false +john_90,newsmast.social,Social Media,social_media,true +Nelfan,mastodon.zaclys.com,Architecture & Design,architecture_design,false +Nelfan,mastodon.zaclys.com,Democracy & Human Rights,democracy_human_rights,false +Nelfan,mastodon.zaclys.com,Government & Policy,government_policy,false +Nelfan,mastodon.zaclys.com,History,history,false +Nelfan,mastodon.zaclys.com,Humanities,humanities,false +Nelfan,mastodon.zaclys.com,Law & Justice,law_justice,false +Nelfan,mastodon.zaclys.com,Music,music,false +Nelfan,mastodon.zaclys.com,Journalism & Comment,news_comment_data,false +Nelfan,mastodon.zaclys.com,Performing Arts,performing_arts,false +Nelfan,mastodon.zaclys.com,Philosophy,philosophy,false +Nelfan,mastodon.zaclys.com,Programming,programming,false +Nelfan,mastodon.zaclys.com,Social Sciences,social_sciences,false +Nelfan,mastodon.zaclys.com,Books & Literature,books_literature,true +ydydya,mastodon.social,Journalism & Comment,news_comment_data,false +ydydya,mastodon.social,Social Media,social_media,false +ydydya,mastodon.social,Ukraine Invasion,ukraine_invasion,false +ydydya,mastodon.social,Weather,weather,false +ydydya,mastodon.social,Breaking News,breaking_news,true +r_morgan,mstdn.ca,Technology,technology,false +Nelfan,mastodon.zaclys.com,Technology,technology,false +Nelfan,mastodon.zaclys.com,Ukraine Invasion,ukraine_invasion,false +Nelfan,mastodon.zaclys.com,Visual Arts,visual_arts,false +dogdoggie,mastodon.social,Democracy & Human Rights,democracy_human_rights,false +dogdoggie,mastodon.social,Energy & Pollution,energy_pollution,false +dogdoggie,mastodon.social,Engineering,engineering,false +skk,newsmast.social,Books & Literature,books_literature,false +dogdoggie,mastodon.social,Government & Policy,government_policy,false +dogdoggie,mastodon.social,Healthcare,healthcare,false +okwithmydecay,en.osm.town,Biodiversity & Rewilding,biodiversity_rewilding,false +okwithmydecay,en.osm.town,Climate change,climate_change,false +Ronnie,mastodon.social,Biology,biology,false +Ronnie,mastodon.social,Chemistry,chemistry,false +Ronnie,mastodon.social,Mathematics,mathematics,false +Ronnie,mastodon.social,Philosophy,philosophy,false +Ronnie,mastodon.social,Physics,physics,false +Ronnie,mastodon.social,Science,science,false +Ronnie,mastodon.social,Space,space,false +Ronnie,mastodon.social,Technology,technology,false +Ronnie,mastodon.social,US Sport,us_sport,false +Ronnie,mastodon.social,History,history,true +okwithmydecay,en.osm.town,Movies,movies,false +okwithmydecay,en.osm.town,Programming,programming,false +jensantarelli,hachyderm.io,Visual Arts,visual_arts,true +sardo,mastodon.social,AI,ai,false +sardo,mastodon.social,Democracy & Human Rights,democracy_human_rights,false +sardo,mastodon.social,Engineering,engineering,false +sardo,mastodon.social,Journalism & Comment,news_comment_data,false +sardo,mastodon.social,Programming,programming,false +sardo,mastodon.social,Science,science,false +sardo,mastodon.social,Technology,technology,false +sardo,mastodon.social,Ukraine Invasion,ukraine_invasion,false +sardo,mastodon.social,Breaking News,breaking_news,true +gtripsa,tech.lgbt,Mathematics,mathematics,false +gtripsa,tech.lgbt,Journalism & Comment,news_comment_data,false +gtripsa,tech.lgbt,Social Media,social_media,false +gtripsa,tech.lgbt,Ukraine Invasion,ukraine_invasion,false +gtripsa,tech.lgbt,Weather,weather,false +gtripsa,tech.lgbt,Breaking News,breaking_news,true +Natsurath,newsmast.social,Activism & Civil Rights,activism_civil_rights,false +Natsurath,newsmast.social,Biology,biology,false +Natsurath,newsmast.social,Black Voices,black_voices,false +Natsurath,newsmast.social,Chemistry,chemistry,false +Natsurath,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +Natsurath,newsmast.social,Engineering,engineering,false +Natsurath,newsmast.social,Food & Drink,food_drink,false +Natsurath,newsmast.social,Gaming,gaming,false +Natsurath,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false +Natsurath,newsmast.social,Mathematics,mathematics,false +Natsurath,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false +Natsurath,newsmast.social,Movies,movies,false +Natsurath,newsmast.social,Nature & Wildlife,nature_wildlife,false +Natsurath,newsmast.social,Performing Arts,performing_arts,false +Natsurath,newsmast.social,Physics,physics,false +Natsurath,newsmast.social,Poverty & Inequality,poverty_inequality,false +Natsurath,newsmast.social,Programming,programming,false +Natsurath,newsmast.social,Science,science,false +Natsurath,newsmast.social,Social Media,social_media,false +Natsurath,newsmast.social,Space,space,false +Natsurath,newsmast.social,Technology,technology,false +Natsurath,newsmast.social,Travel,travel,false +Natsurath,newsmast.social,TV & Radio,tv_radio,false +Natsurath,newsmast.social,Ukraine Invasion,ukraine_invasion,false +Natsurath,newsmast.social,Weather,weather,false +Natsurath,newsmast.social,Women’s Voices,women_voices,false +Natsurath,newsmast.social,LGBTQ+,lgbtq,true +guncle,mastodon.social,Mathematics,mathematics,false +guncle,mastodon.social,Physics,physics,false +guncle,mastodon.social,Space,space,false +guncle,mastodon.social,Technology,technology,false +ibrahimsert,mastodon.social,AI,ai,false +ibrahimsert,mastodon.social,Biology,biology,false +ibrahimsert,mastodon.social,Engineering,engineering,false +ibrahimsert,mastodon.social,Programming,programming,false +ibrahimsert,mastodon.social,Science,science,true +guncle,mastodon.social,Science,science,true +innocent_bystander,innocent_bystander@hessen.social,Academia & Research,academia_research,false +innocent_bystander,innocent_bystander@hessen.social,Business,business,false +innocent_bystander,innocent_bystander@hessen.social,Government & Policy,government_policy,false +innocent_bystander,innocent_bystander@hessen.social,Markets & Finance,markets_finance,false +innocent_bystander,innocent_bystander@hessen.social,Journalism & Comment,news_comment_data,false +innocent_bystander,innocent_bystander@hessen.social,Science,science,false +innocent_bystander,innocent_bystander@hessen.social,Technology,technology,false +innocent_bystander,innocent_bystander@hessen.social,Breaking News,breaking_news,true +marbletravis,mastodon.world,Breaking News,breaking_news,false +marbletravis,mastodon.world,Humanities,humanities,false +marbletravis,mastodon.world,Journalism & Comment,news_comment_data,false +marbletravis,mastodon.world,Social Sciences,social_sciences,false +marbletravis,mastodon.world,Democracy & Human Rights,democracy_human_rights,true +eatyourglory,mastodon.uno,Democracy & Human Rights,democracy_human_rights,false +eatyourglory,mastodon.uno,Government & Policy,government_policy,false +eatyourglory,mastodon.uno,Law & Justice,law_justice,false +eatyourglory,mastodon.uno,Politics,politics,false +eatyourglory,mastodon.uno,Science,science,false +eatyourglory,mastodon.uno,Space,space,false +eatyourglory,mastodon.uno,US Politics,us_politics,false +eatyourglory,mastodon.uno,Technology,technology,true +azizbnchikh,newsmast.social,AI,ai,false +azizbnchikh,newsmast.social,Engineering,engineering,false +azizbnchikh,newsmast.social,Healthcare,healthcare,false +azizbnchikh,newsmast.social,Politics,politics,false +azizbnchikh,newsmast.social,US Politics,us_politics,false +azizbnchikh,newsmast.social,Academia & Research,academia_research,true +skk,newsmast.social,Climate change,climate_change,false +skk,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +skk,newsmast.social,Energy & Pollution,energy_pollution,false +skk,newsmast.social,Environment,environment,false +zoinks,gts.scoobysnack.net,Disabled Voices,disabled_voices,false +zoinks,gts.scoobysnack.net,LGBTQ+,lgbtq,false +zoinks,gts.scoobysnack.net,Movies,movies,false +zoinks,gts.scoobysnack.net,TV & Radio,tv_radio,false +zoinks,gts.scoobysnack.net,Technology,technology,true +hypermug1,blips2.club,Breaking News,breaking_news,false +hypermug1,blips2.club,Government & Policy,government_policy,false +hypermug1,blips2.club,Law & Justice,law_justice,false +hypermug1,blips2.club,Journalism & Comment,news_comment_data,false +hypermug1,blips2.club,Technology,technology,true +skk,newsmast.social,Gaming,gaming,false +skk,newsmast.social,History,history,false +skk,newsmast.social,Humanities,humanities,false +skk,newsmast.social,Immigrants Rights,immigrants_rights,false +Tyom,newsmast.social,Architecture & Design,architecture_design,false +NorthWalesPhoto,toot.wales,AI,ai,false +NorthWalesPhoto,toot.wales,Programming,programming,false +NorthWalesPhoto,toot.wales,Space,space,false +NorthWalesPhoto,toot.wales,Technology,technology,false +NorthWalesPhoto,toot.wales,Engineering,engineering,true +WhiteMode,newsmast.social,Engineering,engineering,false +AlexiaPonchet,newsmast.social,Photography,photography,false +bbdjgfhjhhg,newsmast.social,AI,ai,false +jramompichel2023,mastodon.social,Movies,movies,false +ewangilchrist,fosstodon.org,Academia & Research,academia_research,false +ewangilchrist,fosstodon.org,AI,ai,false +ewangilchrist,fosstodon.org,Biodiversity & Rewilding,biodiversity_rewilding,false +ewangilchrist,fosstodon.org,Biology,biology,false +ewangilchrist,fosstodon.org,Breaking News,breaking_news,false +ewangilchrist,fosstodon.org,Chemistry,chemistry,false +ewangilchrist,fosstodon.org,Climate change,climate_change,false +ewangilchrist,fosstodon.org,Energy & Pollution,energy_pollution,false +ewangilchrist,fosstodon.org,Engineering,engineering,false +ewangilchrist,fosstodon.org,Environment,environment,false +ewangilchrist,fosstodon.org,Government & Policy,government_policy,false +ewangilchrist,fosstodon.org,Healthcare,healthcare,false +ewangilchrist,fosstodon.org,Law & Justice,law_justice,false +ewangilchrist,fosstodon.org,Mathematics,mathematics,false +ewangilchrist,fosstodon.org,Journalism & Comment,news_comment_data,false +ewangilchrist,fosstodon.org,Physics,physics,false +ewangilchrist,fosstodon.org,Politics,politics,false +ewangilchrist,fosstodon.org,Science,science,false +ewangilchrist,fosstodon.org,Social Media,social_media,false +ewangilchrist,fosstodon.org,Space,space,false +ewangilchrist,fosstodon.org,Technology,technology,false +ewangilchrist,fosstodon.org,Ukraine Invasion,ukraine_invasion,false +ewangilchrist,fosstodon.org,US Politics,us_politics,false +ewangilchrist,fosstodon.org,Weather,weather,false +axehandle,mastodon.social,Activism & Civil Rights,activism_civil_rights,false +ewangilchrist,fosstodon.org,Programming,programming,true +axehandle,mastodon.social,Breaking News,breaking_news,false +axehandle,mastodon.social,History,history,false +axehandle,mastodon.social,Humanities,humanities,false +axehandle,mastodon.social,Technology,technology,false +axehandle,mastodon.social,Journalism & Comment,news_comment_data,true +tenndawa,www.lindyhop.community,Journalism & Comment,news_comment_data,false +tenndawa,www.lindyhop.community,Ukraine Invasion,ukraine_invasion,false +adam,activity.kammeyer.me,Breaking News,breaking_news,false +adam,activity.kammeyer.me,Business,business,false +adam,activity.kammeyer.me,Government & Policy,government_policy,false +adam,activity.kammeyer.me,Healthcare,healthcare,false +adam,activity.kammeyer.me,Programming,programming,false +adam,activity.kammeyer.me,US Politics,us_politics,false +adam,activity.kammeyer.me,Technology,technology,true +cowboy1,social.vivaldi.net,Academia & Research,academia_research,false +cowboy1,social.vivaldi.net,Democracy & Human Rights,democracy_human_rights,false +cowboy1,social.vivaldi.net,Government & Policy,government_policy,false +cowboy1,social.vivaldi.net,Healthcare,healthcare,false +cowboy1,social.vivaldi.net,"Hunger, Disease & Water",hunger_disease_water,false +cowboy1,social.vivaldi.net,Law & Justice,law_justice,false +cowboy1,social.vivaldi.net,Poverty & Inequality,poverty_inequality,false +cowboy1,social.vivaldi.net,Social Media,social_media,false +cowboy1,social.vivaldi.net,Ukraine Invasion,ukraine_invasion,false +cowboy1,social.vivaldi.net,Weather,weather,false +cowboy1,social.vivaldi.net,Politics,politics,true +ThirdTime,newsmast.social,Creative Arts,creative_arts,false +ThirdTime,newsmast.social,Programming,programming,false +dogdoggie,mastodon.social,"Hunger, Disease & Water",hunger_disease_water,false +dogdoggie,mastodon.social,Law & Justice,law_justice,false +dogdoggie,mastodon.social,Journalism & Comment,news_comment_data,false +dogdoggie,mastodon.social,Politics,politics,false +dogdoggie,mastodon.social,Poverty & Inequality,poverty_inequality,false +dogdoggie,mastodon.social,Science,science,false +dogdoggie,mastodon.social,Social Media,social_media,false +dogdoggie,mastodon.social,Space,space,false +dogdoggie,mastodon.social,Technology,technology,false +dogdoggie,mastodon.social,Ukraine Invasion,ukraine_invasion,false +absolute_tortilla,mastodon.social,Football,football,true +dogdoggie,mastodon.social,US Politics,us_politics,false +dogdoggie,mastodon.social,Weather,weather,false +dogdoggie,mastodon.social,Environment,environment,true +dashrandom,kopiti.am,AI,ai,false +dashrandom,kopiti.am,Business,business,false +dashrandom,kopiti.am,Government & Policy,government_policy,false +dashrandom,kopiti.am,Humanities,humanities,false +dashrandom,kopiti.am,Markets & Finance,markets_finance,false +dashrandom,kopiti.am,Politics,politics,false +david,quakers.social,Academia & Research,academia_research,false +david,quakers.social,Activism & Civil Rights,activism_civil_rights,false +david,quakers.social,AI,ai,false +david,quakers.social,Architecture & Design,architecture_design,false +david,quakers.social,Biodiversity & Rewilding,biodiversity_rewilding,false +david,quakers.social,Biology,biology,false +david,quakers.social,Black Voices,black_voices,false +david,quakers.social,Books & Literature,books_literature,false +david,quakers.social,Breaking News,breaking_news,false +david,quakers.social,Business,business,false +david,quakers.social,Chemistry,chemistry,false +david,quakers.social,Climate change,climate_change,false +david,quakers.social,Democracy & Human Rights,democracy_human_rights,false +david,quakers.social,Disabled Voices,disabled_voices,false +david,quakers.social,Energy & Pollution,energy_pollution,false +david,quakers.social,Engineering,engineering,false +david,quakers.social,Environment,environment,false +david,quakers.social,Gaming,gaming,false +david,quakers.social,Government & Policy,government_policy,false +david,quakers.social,Healthcare,healthcare,false +david,quakers.social,History,history,false +david,quakers.social,Humanities,humanities,false +david,quakers.social,"Hunger, Disease & Water",hunger_disease_water,false +david,quakers.social,Immigrants Rights,immigrants_rights,false +david,quakers.social,Indigenous Peoples,indigenous_peoples,false +david,quakers.social,Law & Justice,law_justice,false +david,quakers.social,Markets & Finance,markets_finance,false +david,quakers.social,Mathematics,mathematics,false +david,quakers.social,Movies,movies,false +david,quakers.social,Music,music,false +david,quakers.social,Journalism & Comment,news_comment_data,false +david,quakers.social,Performing Arts,performing_arts,false +david,quakers.social,Philosophy,philosophy,false +david,quakers.social,Photography,photography,false +david,quakers.social,Physics,physics,false +david,quakers.social,Politics,politics,false +david,quakers.social,Poverty & Inequality,poverty_inequality,false +david,quakers.social,Programming,programming,false +david,quakers.social,Science,science,false +david,quakers.social,Social Media,social_media,false +david,quakers.social,Social Sciences,social_sciences,false +david,quakers.social,Space,space,false +david,quakers.social,Technology,technology,false +david,quakers.social,TV & Radio,tv_radio,false +david,quakers.social,Ukraine Invasion,ukraine_invasion,false +david,quakers.social,US Politics,us_politics,false +david,quakers.social,Visual Arts,visual_arts,false +david,quakers.social,Weather,weather,false +david,quakers.social,Women’s Voices,women_voices,false +david,quakers.social,Workers Rights,workers_rights,false +david,quakers.social,LGBTQ+,lgbtq,true +dashrandom,kopiti.am,Programming,programming,false +dashrandom,kopiti.am,Science,science,false +dashrandom,kopiti.am,Social Sciences,social_sciences,false +dashrandom,kopiti.am,Technology,technology,false +absolute_tortilla,mastodon.social,Biodiversity & Rewilding,biodiversity_rewilding,false +absolute_tortilla,mastodon.social,Biology,biology,false +absolute_tortilla,mastodon.social,Breaking News,breaking_news,false +tomand,toot.community,AI,ai,false +tomand,toot.community,Books & Literature,books_literature,false +tomand,toot.community,Climate change,climate_change,false +tomand,toot.community,Science,science,false +tomand,toot.community,Technology,technology,false +tomand,toot.community,Visual Arts,visual_arts,true +absolute_tortilla,mastodon.social,Business,business,false +absolute_tortilla,mastodon.social,Chemistry,chemistry,false +absolute_tortilla,mastodon.social,Climate change,climate_change,false +absolute_tortilla,mastodon.social,Creative Arts,creative_arts,false +absolute_tortilla,mastodon.social,Democracy & Human Rights,democracy_human_rights,false +absolute_tortilla,mastodon.social,Energy & Pollution,energy_pollution,false +absolute_tortilla,mastodon.social,Environment,environment,false +absolute_tortilla,mastodon.social,Food & Drink,food_drink,false +absolute_tortilla,mastodon.social,History,history,false +absolute_tortilla,mastodon.social,Humanities,humanities,false +absolute_tortilla,mastodon.social,Humour,humour,false +absolute_tortilla,mastodon.social,"Hunger, Disease & Water",hunger_disease_water,false +absolute_tortilla,mastodon.social,Markets & Finance,markets_finance,false +dashrandom,kopiti.am,Breaking News,breaking_news,true +exerra,indieweb.social,Architecture & Design,architecture_design,false +skk,newsmast.social,Indigenous Peoples,indigenous_peoples,false +absolute_tortilla,mastodon.social,Mathematics,mathematics,false +absolute_tortilla,mastodon.social,Mental Health & Wellbeing,mental_health_wellbeing,false +absolute_tortilla,mastodon.social,Nature & Wildlife,nature_wildlife,false +absolute_tortilla,mastodon.social,Journalism & Comment,news_comment_data,false +absolute_tortilla,mastodon.social,Pets,pets,false +absolute_tortilla,mastodon.social,Philosophy,philosophy,false +absolute_tortilla,mastodon.social,Physics,physics,false +absolute_tortilla,mastodon.social,Poverty & Inequality,poverty_inequality,false +absolute_tortilla,mastodon.social,Puzzles,puzzles,false +absolute_tortilla,mastodon.social,Science,science,false +absolute_tortilla,mastodon.social,Social Media,social_media,false +absolute_tortilla,mastodon.social,Social Sciences,social_sciences,false +absolute_tortilla,mastodon.social,Space,space,false +absolute_tortilla,mastodon.social,Sport,sport,false +absolute_tortilla,mastodon.social,Travel,travel,false +absolute_tortilla,mastodon.social,Ukraine Invasion,ukraine_invasion,false +absolute_tortilla,mastodon.social,US Sport,us_sport,false +absolute_tortilla,mastodon.social,Weather,weather,false +absolute_tortilla,mastodon.social,Workers Rights,workers_rights,false +okwithmydecay,en.osm.town,Technology,technology,false +okwithmydecay,en.osm.town,Music,music,true +andrew_tribe,me.dm,Business,business,false +j_zim,mastodon.uno,Social Media,social_media,false +j_zim,mastodon.uno,Technology,technology,false +j_zim,mastodon.uno,Ukraine Invasion,ukraine_invasion,false +j_zim,mastodon.uno,Weather,weather,false +bustouttheguillotines,bustouttheguillotines@mastodon.social,Academia & Research,academia_research,false +bustouttheguillotines,bustouttheguillotines@mastodon.social,Activism & Civil Rights,activism_civil_rights,false +bustouttheguillotines,bustouttheguillotines@mastodon.social,Biodiversity & Rewilding,biodiversity_rewilding,false +bustouttheguillotines,bustouttheguillotines@mastodon.social,Books & Literature,books_literature,false +downbytheseasid,mstdn.social,Biology,biology,false +downbytheseasid,mstdn.social,Activism & Civil Rights,activism_civil_rights,false +downbytheseasid,mstdn.social,AI,ai,false +downbytheseasid,mstdn.social,Black Voices,black_voices,false +downbytheseasid,mstdn.social,Architecture & Design,architecture_design,false +downbytheseasid,mstdn.social,Books & Literature,books_literature,false +downbytheseasid,mstdn.social,Biodiversity & Rewilding,biodiversity_rewilding,false +downbytheseasid,mstdn.social,Chemistry,chemistry,false +downbytheseasid,mstdn.social,Climate change,climate_change,false +downbytheseasid,mstdn.social,Biology,biology,false +downbytheseasid,mstdn.social,Black Voices,black_voices,false +downbytheseasid,mstdn.social,Democracy & Human Rights,democracy_human_rights,false +downbytheseasid,mstdn.social,Books & Literature,books_literature,false +downbytheseasid,mstdn.social,Chemistry,chemistry,false +downbytheseasid,mstdn.social,Disabled Voices,disabled_voices,false +downbytheseasid,mstdn.social,Climate change,climate_change,false +downbytheseasid,mstdn.social,Democracy & Human Rights,democracy_human_rights,false +downbytheseasid,mstdn.social,Energy & Pollution,energy_pollution,false +downbytheseasid,mstdn.social,Disabled Voices,disabled_voices,false +downbytheseasid,mstdn.social,Engineering,engineering,false +downbytheseasid,mstdn.social,Energy & Pollution,energy_pollution,false +downbytheseasid,mstdn.social,Engineering,engineering,false +downbytheseasid,mstdn.social,Environment,environment,false +downbytheseasid,mstdn.social,Environment,environment,false +downbytheseasid,mstdn.social,History,history,false +downbytheseasid,mstdn.social,History,history,false +downbytheseasid,mstdn.social,Humanities,humanities,false +downbytheseasid,mstdn.social,Humanities,humanities,false +downbytheseasid,mstdn.social,"Hunger, Disease & Water",hunger_disease_water,false +downbytheseasid,mstdn.social,Immigrants Rights,immigrants_rights,false +downbytheseasid,mstdn.social,Indigenous Peoples,indigenous_peoples,false +downbytheseasid,mstdn.social,"Hunger, Disease & Water",hunger_disease_water,false +downbytheseasid,mstdn.social,LGBTQ+,lgbtq,false +downbytheseasid,mstdn.social,Immigrants Rights,immigrants_rights,false +downbytheseasid,mstdn.social,Mathematics,mathematics,false +downbytheseasid,mstdn.social,Indigenous Peoples,indigenous_peoples,false +downbytheseasid,mstdn.social,Music,music,false +downbytheseasid,mstdn.social,LGBTQ+,lgbtq,false +downbytheseasid,mstdn.social,Journalism & Comment,news_comment_data,false +downbytheseasid,mstdn.social,Performing Arts,performing_arts,false +downbytheseasid,mstdn.social,Mathematics,mathematics,false +downbytheseasid,mstdn.social,Philosophy,philosophy,false +downbytheseasid,mstdn.social,Music,music,false +downbytheseasid,mstdn.social,Photography,photography,false +downbytheseasid,mstdn.social,Physics,physics,false +downbytheseasid,mstdn.social,Journalism & Comment,news_comment_data,false +downbytheseasid,mstdn.social,Poverty & Inequality,poverty_inequality,false +downbytheseasid,mstdn.social,Performing Arts,performing_arts,false +downbytheseasid,mstdn.social,Programming,programming,false +downbytheseasid,mstdn.social,Philosophy,philosophy,false +downbytheseasid,mstdn.social,Science,science,false +downbytheseasid,mstdn.social,Photography,photography,false +downbytheseasid,mstdn.social,Social Media,social_media,false +downbytheseasid,mstdn.social,Physics,physics,false +downbytheseasid,mstdn.social,Social Sciences,social_sciences,false +downbytheseasid,mstdn.social,Space,space,false +downbytheseasid,mstdn.social,Poverty & Inequality,poverty_inequality,false +downbytheseasid,mstdn.social,Technology,technology,false +downbytheseasid,mstdn.social,Breaking News,breaking_news,true +bustouttheguillotines,bustouttheguillotines@mastodon.social,Climate change,climate_change,false +bustouttheguillotines,bustouttheguillotines@mastodon.social,Democracy & Human Rights,democracy_human_rights,false +bustouttheguillotines,bustouttheguillotines@mastodon.social,Energy & Pollution,energy_pollution,false +bustouttheguillotines,bustouttheguillotines@mastodon.social,Environment,environment,false +bustouttheguillotines,bustouttheguillotines@mastodon.social,Government & Policy,government_policy,false +bustouttheguillotines,bustouttheguillotines@mastodon.social,Healthcare,healthcare,false +bustouttheguillotines,bustouttheguillotines@mastodon.social,Breaking News,breaking_news,true +downbytheseasid,mstdn.social,Programming,programming,false +downbytheseasid,mstdn.social,Science,science,false +downbytheseasid,mstdn.social,Social Media,social_media,false +downbytheseasid,mstdn.social,Social Sciences,social_sciences,false +downbytheseasid,mstdn.social,Space,space,false +downbytheseasid,mstdn.social,Technology,technology,false +downbytheseasid,mstdn.social,Ukraine Invasion,ukraine_invasion,false +downbytheseasid,mstdn.social,Visual Arts,visual_arts,false +downbytheseasid,mstdn.social,Weather,weather,false +downbytheseasid,mstdn.social,Women’s Voices,women_voices,false +Lampeter,mastodon.online,Breaking News,breaking_news,false +Lampeter,mastodon.online,Humanities,humanities,false +Lampeter,mastodon.online,Journalism & Comment,news_comment_data,false +Lampeter,mastodon.online,Social Sciences,social_sciences,false +Lampeter,mastodon.online,Technology,technology,false +Lampeter,mastodon.online,Philosophy,philosophy,true +jarulf,mstdn.social,Biodiversity & Rewilding,biodiversity_rewilding,false +jarulf,mstdn.social,Breaking News,breaking_news,false +jarulf,mstdn.social,Climate change,climate_change,false +jarulf,mstdn.social,History,history,false +jarulf,mstdn.social,Space,space,false +jarulf,mstdn.social,Books & Literature,books_literature,true +ewangilchrist,fosstodon.org,Academia & Research,academia_research,false +ewangilchrist,fosstodon.org,AI,ai,false +ewangilchrist,fosstodon.org,Biodiversity & Rewilding,biodiversity_rewilding,false +ewangilchrist,fosstodon.org,Biology,biology,false +ewangilchrist,fosstodon.org,Breaking News,breaking_news,false +ewangilchrist,fosstodon.org,Chemistry,chemistry,false +ewangilchrist,fosstodon.org,Climate change,climate_change,false +ewangilchrist,fosstodon.org,Energy & Pollution,energy_pollution,false +ewangilchrist,fosstodon.org,Engineering,engineering,false +ewangilchrist,fosstodon.org,Environment,environment,false +ewangilchrist,fosstodon.org,Government & Policy,government_policy,false +ewangilchrist,fosstodon.org,Healthcare,healthcare,false +ewangilchrist,fosstodon.org,Law & Justice,law_justice,false +ewangilchrist,fosstodon.org,Mathematics,mathematics,false +ewangilchrist,fosstodon.org,Journalism & Comment,news_comment_data,false +ewangilchrist,fosstodon.org,Physics,physics,false +ewangilchrist,fosstodon.org,Politics,politics,false +ewangilchrist,fosstodon.org,Programming,programming,false +ewangilchrist,fosstodon.org,Science,science,false +ewangilchrist,fosstodon.org,Social Media,social_media,false +ewangilchrist,fosstodon.org,Space,space,false +ewangilchrist,fosstodon.org,Technology,technology,false +ewangilchrist,fosstodon.org,Ukraine Invasion,ukraine_invasion,false +ewangilchrist,fosstodon.org,US Politics,us_politics,false +ewangilchrist,fosstodon.org,Weather,weather,false +CruelFate,mas.to,Climate change,climate_change,false +CruelFate,mas.to,Democracy & Human Rights,democracy_human_rights,false +CruelFate,mas.to,Environment,environment,false +CruelFate,mas.to,Technology,technology,false +CruelFate,mas.to,Science,science,true +rnp,mastodon.social,Activism & Civil Rights,activism_civil_rights,false +rnp,mastodon.social,Biology,biology,false +rnp,mastodon.social,Breaking News,breaking_news,false +rnp,mastodon.social,Chemistry,chemistry,false +rnp,mastodon.social,Climate change,climate_change,false +rnp,mastodon.social,Democracy & Human Rights,democracy_human_rights,false +rnp,mastodon.social,Environment,environment,false +rnp,mastodon.social,Mathematics,mathematics,false +rnp,mastodon.social,Physics,physics,false +rnp,mastodon.social,Science,science,false +rnp,mastodon.social,Space,space,false +rnp,mastodon.social,Technology,technology,false +rnp,mastodon.social,Programming,programming,true +06fxsts,mastodon.online,Environment,environment,false +06fxsts,mastodon.online,Social Media,social_media,false +06fxsts,mastodon.online,Sport,sport,false +06fxsts,mastodon.online,US Sport,us_sport,false +06fxsts,mastodon.online,Breaking News,breaking_news,true +ThirdTime,newsmast.social,Food & Drink,food_drink,false +ThirdTime,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +ThirdTime,newsmast.social,History,history,false +ThirdTime,newsmast.social,Social Sciences,social_sciences,false +ThirdTime,newsmast.social,Gaming,gaming,false +ThirdTime,newsmast.social,Photography,photography,false +ThirdTime,newsmast.social,US Sport,us_sport,false +JAVPPT,newsmast.social,Technology,technology,false +JAVPPT,newsmast.social,Engineering,engineering,false +JAVPPT,newsmast.social,Physics,physics,false +JAVPPT,newsmast.social,Space,space,false +JAVPPT,newsmast.social,Mathematics,mathematics,false +JAVPPT,newsmast.social,Science,science,false +JAVPPT,newsmast.social,Social Sciences,social_sciences,false +JAVPPT,newsmast.social,History,history,false +JAVPPT,newsmast.social,Philosophy,philosophy,false +JAVPPT,newsmast.social,Humanities,humanities,false +JAVPPT,newsmast.social,Programming,programming,true +ThirdTime,newsmast.social,Politics,politics,false +JAVPPT,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +JAVPPT,newsmast.social,Poverty & Inequality,poverty_inequality,false +JAVPPT,newsmast.social,Politics,politics,false +JAVPPT,newsmast.social,US Politics,us_politics,false +JAVPPT,newsmast.social,Climate change,climate_change,false +JAVPPT,newsmast.social,Environment,environment,false +JAVPPT,newsmast.social,LGBTQ+,lgbtq,false +JAVPPT,newsmast.social,Business,business,false +JAVPPT,newsmast.social,Workers Rights,workers_rights,false +JAVPPT,newsmast.social,Gaming,gaming,false +JAVPPT,newsmast.social,Sport,sport,false +JAVPPT,newsmast.social,US Sport,us_sport,false +JAVPPT,newsmast.social,Food & Drink,food_drink,false +downbytheseasid,mstdn.social,Ukraine Invasion,ukraine_invasion,false +downbytheseasid,mstdn.social,Visual Arts,visual_arts,false +downbytheseasid,mstdn.social,Weather,weather,false +downbytheseasid,mstdn.social,Women’s Voices,women_voices,false +andrew_tribe,me.dm,Government & Policy,government_policy,false +andrew_tribe,me.dm,Programming,programming,false +andrew_tribe,me.dm,Technology,technology,false +andrew_tribe,me.dm,Breaking News,breaking_news,true +exerra,indieweb.social,Engineering,engineering,false +exerra,indieweb.social,Gaming,gaming,false +eprenen,mastodon.social,History,history,false +sandropereira,mastodon.social,Academia & Research,academia_research,false +sandropereira,mastodon.social,Books & Literature,books_literature,false +sandropereira,mastodon.social,Breaking News,breaking_news,false +sandropereira,mastodon.social,Climate change,climate_change,false +sandropereira,mastodon.social,Democracy & Human Rights,democracy_human_rights,false +sandropereira,mastodon.social,Energy & Pollution,energy_pollution,false +sandropereira,mastodon.social,Environment,environment,false +sandropereira,mastodon.social,Gaming,gaming,false +sandropereira,mastodon.social,Government & Policy,government_policy,false +sandropereira,mastodon.social,History,history,false +sandropereira,mastodon.social,Law & Justice,law_justice,false +sandropereira,mastodon.social,Movies,movies,false +sandropereira,mastodon.social,Music,music,false +sandropereira,mastodon.social,Journalism & Comment,news_comment_data,false +sandropereira,mastodon.social,Philosophy,philosophy,false +sandropereira,mastodon.social,Photography,photography,false +sandropereira,mastodon.social,Politics,politics,false +sandropereira,mastodon.social,Poverty & Inequality,poverty_inequality,false +sandropereira,mastodon.social,Social Sciences,social_sciences,false +sandropereira,mastodon.social,Technology,technology,false +sandropereira,mastodon.social,TV & Radio,tv_radio,false +sandropereira,mastodon.social,Visual Arts,visual_arts,false +sandropereira,mastodon.social,Architecture & Design,architecture_design,true +mattmoehr,newsmast.social,Books & Literature,books_literature,false +mattmoehr,newsmast.social,Football,football,false +mattmoehr,newsmast.social,History,history,false +mattmoehr,newsmast.social,Humanities,humanities,false +mattmoehr,newsmast.social,Mathematics,mathematics,false +mattmoehr,newsmast.social,Philosophy,philosophy,false +mattmoehr,newsmast.social,Photography,photography,false +bamatmar,mstdn.social,Climate change,climate_change,false +mattmoehr,newsmast.social,Physics,physics,false +mattmoehr,newsmast.social,Space,space,false +mattmoehr,newsmast.social,Sport,sport,false +mattmoehr,newsmast.social,US Sport,us_sport,false +mattmoehr,newsmast.social,Visual Arts,visual_arts,false +mattmoehr,newsmast.social,Social Sciences,social_sciences,true +Sylkeweb,newsmast.social,Energy & Pollution,energy_pollution,false +HarleyWarren,newsmast.social,Books & Literature,books_literature,false +HarleyWarren,newsmast.social,Breaking News,breaking_news,false +HarleyWarren,newsmast.social,Gaming,gaming,false +HarleyWarren,newsmast.social,Movies,movies,false +HarleyWarren,newsmast.social,Music,music,false +HarleyWarren,newsmast.social,Technology,technology,false +HarleyWarren,newsmast.social,Weather,weather,false +HarleyWarren,newsmast.social,Visual Arts,visual_arts,true +bamatmar,mstdn.social,Environment,environment,false +bamatmar,mstdn.social,Biodiversity & Rewilding,biodiversity_rewilding,false +bamatmar,mstdn.social,Energy & Pollution,energy_pollution,false +yi08,mastodon.social,AI,ai,false +yi08,mastodon.social,History,history,false +yi08,mastodon.social,Humanities,humanities,false +yi08,mastodon.social,Mathematics,mathematics,false +yi08,mastodon.social,Programming,programming,false +yi08,mastodon.social,Science,science,false +yi08,mastodon.social,Social Sciences,social_sciences,false +yi08,mastodon.social,Technology,technology,true +Sylkeweb,newsmast.social,Technology,technology,false +Sylkeweb,newsmast.social,Space,space,false +bamatmar,mstdn.social,Architecture & Design,architecture_design,false +Sylkeweb,newsmast.social,History,history,false +bamatmar,mstdn.social,Technology,technology,false +bamatmar,mstdn.social,Breaking News,breaking_news,true +bamatmar,mstdn.social,Nature & Wildlife,nature_wildlife,false +chemabasanta,techhub.social,Business,business,false +chemabasanta,techhub.social,Engineering,engineering,false +chemabasanta,techhub.social,Programming,programming,false +chemabasanta,techhub.social,Science,science,false +chemabasanta,techhub.social,Space,space,false +chemabasanta,techhub.social,Technology,technology,true +Sylkeweb,newsmast.social,Breaking News,breaking_news,false +Sylkeweb,newsmast.social,Ukraine Invasion,ukraine_invasion,false +Sylkeweb,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +Sylkeweb,newsmast.social,Government & Policy,government_policy,false +Sylkeweb,newsmast.social,Climate change,climate_change,false +Sylkeweb,newsmast.social,Humanities,humanities,false +ryan,mastodon.pirate.lgbt,Academia & Research,academia_research,false +ryan,mastodon.pirate.lgbt,AI,ai,false +ryan,mastodon.pirate.lgbt,Architecture & Design,architecture_design,false +ryan,mastodon.pirate.lgbt,Breaking News,breaking_news,false +ryan,mastodon.pirate.lgbt,Business,business,false +ryan,mastodon.pirate.lgbt,Government & Policy,government_policy,false +ryan,mastodon.pirate.lgbt,Healthcare,healthcare,false +ryan,mastodon.pirate.lgbt,Humanities,humanities,false +ryan,mastodon.pirate.lgbt,LGBTQ+,lgbtq,false +ryan,mastodon.pirate.lgbt,Mental Health & Wellbeing,mental_health_wellbeing,false +ryan,mastodon.pirate.lgbt,Journalism & Comment,news_comment_data,false +ryan,mastodon.pirate.lgbt,Performing Arts,performing_arts,false +ryan,mastodon.pirate.lgbt,Social Sciences,social_sciences,false +ryan,mastodon.pirate.lgbt,Space,space,false +ryan,mastodon.pirate.lgbt,Technology,technology,false +ryan,mastodon.pirate.lgbt,US Politics,us_politics,false +ryan,mastodon.pirate.lgbt,Puzzles,puzzles,true +eprenen,mastodon.social,Humanities,humanities,false +WelchE,newsmast.social,Biology,biology,false +WelchE,newsmast.social,Physics,physics,false +Pedrovic,mastodon.social,Government & Policy,government_policy,false +Pedrovic,mastodon.social,Law & Justice,law_justice,false +Pedrovic,mastodon.social,Journalism & Comment,news_comment_data,false +Pedrovic,mastodon.social,Politics,politics,false +Pedrovic,mastodon.social,Breaking News,breaking_news,true +WelchE,newsmast.social,Science,science,false +WelchE,newsmast.social,Space,space,false +WelchE,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,true +eprenen,mastodon.social,Mathematics,mathematics,false +eprenen,mastodon.social,Journalism & Comment,news_comment_data,false +exerra,indieweb.social,Music,music,false +exerra,indieweb.social,Photography,photography,false +exerra,indieweb.social,Science,science,false +exerra,indieweb.social,Technology,technology,false +exerra,indieweb.social,Programming,programming,true +eprenen,mastodon.social,Philosophy,philosophy,false +Simon,newsmast.social,Activism & Civil Rights,activism_civil_rights,false +Simon,newsmast.social,AI,ai,false +gdchill,sueden.social,Academia & Research,academia_research,false +gdchill,sueden.social,Architecture & Design,architecture_design,false +gdchill,sueden.social,Books & Literature,books_literature,false +gdchill,sueden.social,Business,business,false +gdchill,sueden.social,Football,football,false +gdchill,sueden.social,Government & Policy,government_policy,false +gdchill,sueden.social,Law & Justice,law_justice,false +gdchill,sueden.social,Markets & Finance,markets_finance,false +gdchill,sueden.social,Movies,movies,false +gdchill,sueden.social,Photography,photography,false +gdchill,sueden.social,Technology,technology,false +gdchill,sueden.social,TV & Radio,tv_radio,false +gdchill,sueden.social,Weather,weather,false +gdchill,sueden.social,Breaking News,breaking_news,true +eprenen,mastodon.social,Physics,physics,false +HariTulsidas,newsmast.social,Journalism & Comment,news_comment_data,false +HariTulsidas,newsmast.social,Social Media,social_media,false +HariTulsidas,newsmast.social,Breaking News,breaking_news,false +HariTulsidas,newsmast.social,Government & Policy,government_policy,false +HariTulsidas,newsmast.social,Academia & Research,academia_research,false +HariTulsidas,newsmast.social,Healthcare,healthcare,false +HariTulsidas,newsmast.social,Law & Justice,law_justice,false +HariTulsidas,newsmast.social,Politics,politics,false +HariTulsidas,newsmast.social,US Politics,us_politics,false +HariTulsidas,newsmast.social,Business,business,false +HariTulsidas,newsmast.social,Markets & Finance,markets_finance,false +HariTulsidas,newsmast.social,Books & Literature,books_literature,false +HariTulsidas,newsmast.social,Movies,movies,false +HariTulsidas,newsmast.social,Creative Arts,creative_arts,false +HariTulsidas,newsmast.social,Humour,humour,false +HariTulsidas,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false +HariTulsidas,newsmast.social,Travel,travel,false +HariTulsidas,newsmast.social,Activism & Civil Rights,activism_civil_rights,false +HariTulsidas,newsmast.social,Indigenous Peoples,indigenous_peoples,false +HariTulsidas,newsmast.social,Photography,photography,false +HariTulsidas,newsmast.social,TV & Radio,tv_radio,false +HariTulsidas,newsmast.social,Performing Arts,performing_arts,false +HariTulsidas,newsmast.social,Music,music,false +HariTulsidas,newsmast.social,Architecture & Design,architecture_design,false +HariTulsidas,newsmast.social,Visual Arts,visual_arts,false +HariTulsidas,newsmast.social,Biology,biology,false +eprenen,mastodon.social,Politics,politics,false +Simon,newsmast.social,Architecture & Design,architecture_design,false +Simon,newsmast.social,Biology,biology,false +Simon,newsmast.social,Black Voices,black_voices,false +Simon,newsmast.social,Books & Literature,books_literature,false +Simon,newsmast.social,Breaking News,breaking_news,false +skk,newsmast.social,Movies,movies,false +skk,newsmast.social,Music,music,false +skk,newsmast.social,Performing Arts,performing_arts,false +skk,newsmast.social,Photography,photography,false +missioncontrol,fosstodon.org,Technology,technology,true +Simon,newsmast.social,Business,business,false +Simon,newsmast.social,Chemistry,chemistry,false +Simon,newsmast.social,Creative Arts,creative_arts,false +Simon,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +Simon,newsmast.social,Disabled Voices,disabled_voices,false +Simon,newsmast.social,Engineering,engineering,false +Simon,newsmast.social,Gaming,gaming,false +Simon,newsmast.social,History,history,false +eprenen,mastodon.social,Programming,programming,false +eprenen,mastodon.social,Science,science,false +eprenen,mastodon.social,Social Media,social_media,false +wbbdaily,newsmast.social,AI,ai,false +wbbdaily,newsmast.social,Architecture & Design,architecture_design,false +wbbdaily,newsmast.social,Books & Literature,books_literature,false +wbbdaily,newsmast.social,Creative Arts,creative_arts,false +wbbdaily,newsmast.social,Engineering,engineering,false +wbbdaily,newsmast.social,Food & Drink,food_drink,false +wbbdaily,newsmast.social,Football,football,false +wbbdaily,newsmast.social,Gaming,gaming,false +wbbdaily,newsmast.social,History,history,false +wbbdaily,newsmast.social,Humanities,humanities,false +wbbdaily,newsmast.social,Humour,humour,false +wbbdaily,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false +wbbdaily,newsmast.social,Movies,movies,false +wbbdaily,newsmast.social,Music,music,false +wbbdaily,newsmast.social,Nature & Wildlife,nature_wildlife,false +wbbdaily,newsmast.social,Performing Arts,performing_arts,false +wbbdaily,newsmast.social,Pets,pets,false +wbbdaily,newsmast.social,Philosophy,philosophy,false +wbbdaily,newsmast.social,Photography,photography,false +wbbdaily,newsmast.social,Programming,programming,false +wbbdaily,newsmast.social,Puzzles,puzzles,false +wbbdaily,newsmast.social,Social Sciences,social_sciences,false +wbbdaily,newsmast.social,Technology,technology,false +wbbdaily,newsmast.social,Travel,travel,false +wbbdaily,newsmast.social,TV & Radio,tv_radio,false +wbbdaily,newsmast.social,US Sport,us_sport,false +wbbdaily,newsmast.social,Visual Arts,visual_arts,false +wbbdaily,newsmast.social,Sport,sport,true +christopherburton,zirk.us,Books & Literature,books_literature,false +jazzup,jazztodon.com,Climate change,climate_change,false +jazzup,jazztodon.com,Democracy & Human Rights,democracy_human_rights,false +jazzup,jazztodon.com,Energy & Pollution,energy_pollution,false +jazzup,jazztodon.com,Photography,photography,false +jazzup,jazztodon.com,Technology,technology,false +jazzup,jazztodon.com,Music,music,true +christopherburton,zirk.us,Creative Arts,creative_arts,false +christopherburton,zirk.us,Food & Drink,food_drink,false +christopherburton,zirk.us,Humanities,humanities,false +christopherburton,zirk.us,Humour,humour,false +christopherburton,zirk.us,Movies,movies,false +christopherburton,zirk.us,Pets,pets,false +christopherburton,zirk.us,Travel,travel,false +reiichiroh,mastodon.social,AI,ai,false +reiichiroh,mastodon.social,Architecture & Design,architecture_design,false +reiichiroh,mastodon.social,Books & Literature,books_literature,false +reiichiroh,mastodon.social,Breaking News,breaking_news,false +reiichiroh,mastodon.social,Gaming,gaming,false +reiichiroh,mastodon.social,Mental Health & Wellbeing,mental_health_wellbeing,false +reiichiroh,mastodon.social,Movies,movies,false +reiichiroh,mastodon.social,Music,music,false +reiichiroh,mastodon.social,Journalism & Comment,news_comment_data,false +reiichiroh,mastodon.social,Photography,photography,false +reiichiroh,mastodon.social,Travel,travel,false +reiichiroh,mastodon.social,TV & Radio,tv_radio,false +reiichiroh,mastodon.social,Technology,technology,true +christopherburton,zirk.us,TV & Radio,tv_radio,false +christopherburton,zirk.us,Visual Arts,visual_arts,false +christopherburton,zirk.us,Climate change,climate_change,true +JoeyJ0J0,newsmast.social,Academia & Research,academia_research,false +JoeyJ0J0,newsmast.social,Breaking News,breaking_news,false +JoeyJ0J0,newsmast.social,Healthcare,healthcare,false +JoeyJ0J0,newsmast.social,Journalism & Comment,news_comment_data,false +JoeyJ0J0,newsmast.social,Politics,politics,false +JoeyJ0J0,newsmast.social,Technology,technology,false +JoeyJ0J0,newsmast.social,Ukraine Invasion,ukraine_invasion,true +shacqeal,freeradical.zone,Activism & Civil Rights,activism_civil_rights,false +shacqeal,freeradical.zone,Engineering,engineering,false +shacqeal,freeradical.zone,Programming,programming,false +shacqeal,freeradical.zone,Technology,technology,false +shacqeal,freeradical.zone,Black Voices,black_voices,true +Max,dju.social,Government & Policy,government_policy,false +Max,dju.social,Journalism & Comment,news_comment_data,false +Max,dju.social,Politics,politics,false +Max,dju.social,Programming,programming,false +Max,dju.social,Technology,technology,false +Max,dju.social,Breaking News,breaking_news,true +au,chaos.social,Activism & Civil Rights,activism_civil_rights,false +au,chaos.social,Architecture & Design,architecture_design,false +wrath_sedan,mastodon.social,Activism & Civil Rights,activism_civil_rights,false +wrath_sedan,mastodon.social,Architecture & Design,architecture_design,false +wrath_sedan,mastodon.social,Biodiversity & Rewilding,biodiversity_rewilding,false +wrath_sedan,mastodon.social,Black Voices,black_voices,false +wrath_sedan,mastodon.social,Books & Literature,books_literature,false +wrath_sedan,mastodon.social,Breaking News,breaking_news,false +wrath_sedan,mastodon.social,Climate change,climate_change,false +wrath_sedan,mastodon.social,Democracy & Human Rights,democracy_human_rights,false +wrath_sedan,mastodon.social,Disabled Voices,disabled_voices,false +wrath_sedan,mastodon.social,Energy & Pollution,energy_pollution,false +wrath_sedan,mastodon.social,Environment,environment,false +wrath_sedan,mastodon.social,Gaming,gaming,false +wrath_sedan,mastodon.social,Government & Policy,government_policy,false +wrath_sedan,mastodon.social,Healthcare,healthcare,false +wrath_sedan,mastodon.social,History,history,false +wrath_sedan,mastodon.social,Humanities,humanities,false +wrath_sedan,mastodon.social,"Hunger, Disease & Water",hunger_disease_water,false +au,chaos.social,Environment,environment,false +au,chaos.social,History,history,false +au,chaos.social,Humanities,humanities,false +au,chaos.social,Music,music,false +au,chaos.social,Philosophy,philosophy,false +au,chaos.social,Programming,programming,false +au,chaos.social,Social Sciences,social_sciences,false +au,chaos.social,Books & Literature,books_literature,true +rael,mastodon.gamedev.place,Breaking News,breaking_news,false +rael,mastodon.gamedev.place,Mathematics,mathematics,false +wrath_sedan,mastodon.social,Immigrants Rights,immigrants_rights,false +wrath_sedan,mastodon.social,Indigenous Peoples,indigenous_peoples,false +wrath_sedan,mastodon.social,Law & Justice,law_justice,false +wrath_sedan,mastodon.social,LGBTQ+,lgbtq,false +wrath_sedan,mastodon.social,Markets & Finance,markets_finance,false +wrath_sedan,mastodon.social,Movies,movies,false +wrath_sedan,mastodon.social,Music,music,false +wrath_sedan,mastodon.social,Journalism & Comment,news_comment_data,false +wrath_sedan,mastodon.social,Performing Arts,performing_arts,false +wrath_sedan,mastodon.social,Philosophy,philosophy,false +wrath_sedan,mastodon.social,Photography,photography,false +wrath_sedan,mastodon.social,Politics,politics,false +wrath_sedan,mastodon.social,Poverty & Inequality,poverty_inequality,false +wrath_sedan,mastodon.social,Programming,programming,false +wrath_sedan,mastodon.social,Science,science,false +wrath_sedan,mastodon.social,Social Media,social_media,false +wrath_sedan,mastodon.social,Social Sciences,social_sciences,false +wrath_sedan,mastodon.social,Space,space,false +wrath_sedan,mastodon.social,Technology,technology,false +wrath_sedan,mastodon.social,TV & Radio,tv_radio,false +wrath_sedan,mastodon.social,US Politics,us_politics,false +wrath_sedan,mastodon.social,Visual Arts,visual_arts,false +wrath_sedan,mastodon.social,Weather,weather,false +wrath_sedan,mastodon.social,Women’s Voices,women_voices,false +wrath_sedan,mastodon.social,Workers Rights,workers_rights,false +wrath_sedan,mastodon.social,Academia & Research,academia_research,true +skk,newsmast.social,Programming,programming,false +skk,newsmast.social,Science,science,false +skk,newsmast.social,Space,space,false +skk,newsmast.social,Technology,technology,false +skk,newsmast.social,Visual Arts,visual_arts,false +Cautted,pebble.social,Biology,biology,false +Cautted,pebble.social,Chemistry,chemistry,false +Cautted,pebble.social,Mathematics,mathematics,false +Cautted,pebble.social,Physics,physics,false +Cautted,pebble.social,Space,space,false +Cautted,pebble.social,Science,science,true +skk,newsmast.social,Women’s Voices,women_voices,false +skk,newsmast.social,Social Media,social_media,true +rfc2549,mastodon.social,Physics,physics,false +rfc2549,mastodon.social,Science,science,false +rfc2549,mastodon.social,Space,space,false +rfc2549,mastodon.social,Technology,technology,false +rfc2549,mastodon.social,Engineering,engineering,true +ballancier,mastodon.social,Academia & Research,academia_research,false +ballancier,mastodon.social,AI,ai,false +ballancier,mastodon.social,Biodiversity & Rewilding,biodiversity_rewilding,false +ballancier,mastodon.social,Biology,biology,false +robbhoyy,newsmast.social,Biology,biology,false +robbhoyy,newsmast.social,Breaking News,breaking_news,false +robbhoyy,newsmast.social,Chemistry,chemistry,false +robbhoyy,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +robbhoyy,newsmast.social,Government & Policy,government_policy,false +robbhoyy,newsmast.social,Healthcare,healthcare,false +ballancier,mastodon.social,Climate change,climate_change,false +ballancier,mastodon.social,Democracy & Human Rights,democracy_human_rights,false +ballancier,mastodon.social,Energy & Pollution,energy_pollution,false +ballancier,mastodon.social,Environment,environment,false +robbhoyy,newsmast.social,History,history,false +robbhoyy,newsmast.social,Humanities,humanities,false +robbhoyy,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false +robbhoyy,newsmast.social,Law & Justice,law_justice,false +robbhoyy,newsmast.social,Mathematics,mathematics,false +robbhoyy,newsmast.social,Journalism & Comment,news_comment_data,false +robbhoyy,newsmast.social,Philosophy,philosophy,false +robbhoyy,newsmast.social,Physics,physics,false +robbhoyy,newsmast.social,Politics,politics,false +robbhoyy,newsmast.social,Poverty & Inequality,poverty_inequality,false +robbhoyy,newsmast.social,Science,science,false +robbhoyy,newsmast.social,Social Media,social_media,false +robbhoyy,newsmast.social,Social Sciences,social_sciences,false +robbhoyy,newsmast.social,Space,space,false +robbhoyy,newsmast.social,Ukraine Invasion,ukraine_invasion,false +robbhoyy,newsmast.social,US Politics,us_politics,false +robbhoyy,newsmast.social,Weather,weather,false +robbhoyy,newsmast.social,Academia & Research,academia_research,true +poke,newsmast.social,AI,ai,false +poke,newsmast.social,Architecture & Design,architecture_design,false +poke,newsmast.social,Breaking News,breaking_news,false +poke,newsmast.social,Business,business,false +poke,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +poke,newsmast.social,Engineering,engineering,false +poke,newsmast.social,Government & Policy,government_policy,false +poke,newsmast.social,Law & Justice,law_justice,false +poke,newsmast.social,Markets & Finance,markets_finance,false +jswilkins,fediscience.org,Academia & Research,academia_research,false +eprenen,mastodon.social,Social Sciences,social_sciences,false +eprenen,mastodon.social,Space,space,false +eprenen,mastodon.social,Technology,technology,false +Simon,newsmast.social,Humanities,humanities,false +Simon,newsmast.social,Humour,humour,false +Simon,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false +Simon,newsmast.social,Immigrants Rights,immigrants_rights,false +Simon,newsmast.social,Indigenous Peoples,indigenous_peoples,false +Simon,newsmast.social,Markets & Finance,markets_finance,false +Simon,newsmast.social,Mathematics,mathematics,false +Simon,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false +Simon,newsmast.social,Movies,movies,false +Simon,newsmast.social,Music,music,false +Simon,newsmast.social,Nature & Wildlife,nature_wildlife,false +perelling,mastodon.online,Breaking News,breaking_news,true +eprenen,mastodon.social,Breaking News,breaking_news,true +Simon,newsmast.social,Journalism & Comment,news_comment_data,false +Simon,newsmast.social,Performing Arts,performing_arts,false +Simon,newsmast.social,Philosophy,philosophy,false +Simon,newsmast.social,Photography,photography,false +Simon,newsmast.social,Physics,physics,false +Agent_13,mastodon.social,Journalism & Comment,news_comment_data,false +Agent_13,mastodon.social,Science,science,false +Agent_13,mastodon.social,Social Media,social_media,false +Agent_13,mastodon.social,Technology,technology,false +Agent_13,mastodon.social,Humour,humour,true +Simon,newsmast.social,Technology,technology,true +Simon,newsmast.social,Poverty & Inequality,poverty_inequality,false +Simon,newsmast.social,Programming,programming,false +Simon,newsmast.social,Puzzles,puzzles,false +Simon,newsmast.social,Science,science,false +Simon,newsmast.social,Social Media,social_media,false +Simon,newsmast.social,Social Sciences,social_sciences,false +Simon,newsmast.social,Space,space,false +Simon,newsmast.social,TV & Radio,tv_radio,false +Simon,newsmast.social,Ukraine Invasion,ukraine_invasion,false +Simon,newsmast.social,Visual Arts,visual_arts,false +Simon,newsmast.social,Weather,weather,false +museumphile,glammr.us,Activism & Civil Rights,activism_civil_rights,false +museumphile,glammr.us,Black Voices,black_voices,false +museumphile,glammr.us,Breaking News,breaking_news,false +museumphile,glammr.us,Disabled Voices,disabled_voices,false +museumphile,glammr.us,Immigrants Rights,immigrants_rights,false +museumphile,glammr.us,Indigenous Peoples,indigenous_peoples,false +museumphile,glammr.us,LGBTQ+,lgbtq,false +museumphile,glammr.us,Music,music,false +museumphile,glammr.us,TV & Radio,tv_radio,false +museumphile,glammr.us,US Politics,us_politics,false +museumphile,glammr.us,Women’s Voices,women_voices,false +museumphile,glammr.us,History,history,true +DEW1970,newsmast.social,Breaking News,breaking_news,false +Simon,newsmast.social,Women’s Voices,women_voices,false +bustouttheguillotines,bustouttheguillotines@mastodon.social,Law & Justice,law_justice,false +bustouttheguillotines,bustouttheguillotines@mastodon.social,Movies,movies,false +bustouttheguillotines,bustouttheguillotines@mastodon.social,Music,music,false +bustouttheguillotines,bustouttheguillotines@mastodon.social,Journalism & Comment,news_comment_data,false +bustouttheguillotines,bustouttheguillotines@mastodon.social,Politics,politics,false +bustouttheguillotines,bustouttheguillotines@mastodon.social,Science,science,false +bustouttheguillotines,bustouttheguillotines@mastodon.social,Technology,technology,false +bustouttheguillotines,bustouttheguillotines@mastodon.social,US Politics,us_politics,false +poke,newsmast.social,Movies,movies,false +perelling,mastodon.online,Books & Literature,books_literature,false +perelling,mastodon.online,Football,football,false +perelling,mastodon.online,Movies,movies,false +perelling,mastodon.online,Music,music,false +perelling,mastodon.online,Journalism & Comment,news_comment_data,false +perelling,mastodon.online,Science,science,false +perelling,mastodon.online,Space,space,false +perelling,mastodon.online,Sport,sport,false +perelling,mastodon.online,Technology,technology,false +perelling,mastodon.online,TV & Radio,tv_radio,false +perelling,mastodon.online,Weather,weather,false +poke,newsmast.social,Music,music,false +poke,newsmast.social,Journalism & Comment,news_comment_data,false +poke,newsmast.social,Photography,photography,false +poke,newsmast.social,Programming,programming,false +poke,newsmast.social,Science,science,false +poke,newsmast.social,US Politics,us_politics,false +poke,newsmast.social,Workers Rights,workers_rights,false +poke,newsmast.social,Technology,technology,true +newsclipr,hear-me.social,Democracy & Human Rights,democracy_human_rights,false +47photography,newsmast.social,Photography,photography,true +newsclipr,hear-me.social,Government & Policy,government_policy,false +newsclipr,hear-me.social,Journalism & Comment,news_comment_data,false +newsclipr,hear-me.social,Politics,politics,false +newsclipr,hear-me.social,Breaking News,breaking_news,true +JoeGermuska,mastodon.social,Activism & Civil Rights,activism_civil_rights,false +JoeGermuska,mastodon.social,Architecture & Design,architecture_design,false +JoeGermuska,mastodon.social,Food & Drink,food_drink,false +tales_to,mstdn.social,Books & Literature,books_literature,false +tales_to,mstdn.social,Democracy & Human Rights,democracy_human_rights,false +tales_to,mstdn.social,"Hunger, Disease & Water",hunger_disease_water,false +tales_to,mstdn.social,Physics,physics,false +tales_to,mstdn.social,Ukraine Invasion,ukraine_invasion,false +tales_to,mstdn.social,Journalism & Comment,news_comment_data,true +JoeGermuska,mastodon.social,History,history,false +JoeGermuska,mastodon.social,AI,ai,true +hcj,fosstodon.org,AI,ai,false +hcj,fosstodon.org,Breaking News,breaking_news,false +hcj,fosstodon.org,Programming,programming,false +hcj,fosstodon.org,Social Media,social_media,false +hcj,fosstodon.org,Technology,technology,true +Pyae000,newsmast.social,Engineering,engineering,false +Pyae000,newsmast.social,Mathematics,mathematics,false +Pyae000,newsmast.social,Physics,physics,false +Pyae000,newsmast.social,Science,science,false +camilobotero,mstdn.dk,Academia & Research,academia_research,false +camilobotero,mstdn.dk,AI,ai,false +camilobotero,mstdn.dk,Architecture & Design,architecture_design,false +camilobotero,mstdn.dk,Books & Literature,books_literature,false +camilobotero,mstdn.dk,Breaking News,breaking_news,false +camilobotero,mstdn.dk,Climate change,climate_change,false +camilobotero,mstdn.dk,Creative Arts,creative_arts,false +camilobotero,mstdn.dk,Democracy & Human Rights,democracy_human_rights,false +camilobotero,mstdn.dk,Energy & Pollution,energy_pollution,false +camilobotero,mstdn.dk,Engineering,engineering,false +camilobotero,mstdn.dk,Environment,environment,false +camilobotero,mstdn.dk,Food & Drink,food_drink,false +camilobotero,mstdn.dk,Football,football,false +camilobotero,mstdn.dk,Government & Policy,government_policy,false +camilobotero,mstdn.dk,Healthcare,healthcare,false +camilobotero,mstdn.dk,History,history,false +camilobotero,mstdn.dk,Humanities,humanities,false +camilobotero,mstdn.dk,Humour,humour,false +camilobotero,mstdn.dk,Law & Justice,law_justice,false +camilobotero,mstdn.dk,Movies,movies,false +camilobotero,mstdn.dk,Music,music,false +camilobotero,mstdn.dk,Nature & Wildlife,nature_wildlife,false +camilobotero,mstdn.dk,Journalism & Comment,news_comment_data,false +camilobotero,mstdn.dk,Performing Arts,performing_arts,false +camilobotero,mstdn.dk,Pets,pets,false +camilobotero,mstdn.dk,Philosophy,philosophy,false +camilobotero,mstdn.dk,Photography,photography,false +camilobotero,mstdn.dk,Physics,physics,false +camilobotero,mstdn.dk,Politics,politics,false +camilobotero,mstdn.dk,Poverty & Inequality,poverty_inequality,false +camilobotero,mstdn.dk,Programming,programming,false +camilobotero,mstdn.dk,Puzzles,puzzles,false +camilobotero,mstdn.dk,Science,science,false +camilobotero,mstdn.dk,Social Media,social_media,false +camilobotero,mstdn.dk,Social Sciences,social_sciences,false +camilobotero,mstdn.dk,Space,space,false +camilobotero,mstdn.dk,Sport,sport,false +camilobotero,mstdn.dk,Technology,technology,false +camilobotero,mstdn.dk,Travel,travel,false +camilobotero,mstdn.dk,TV & Radio,tv_radio,false +camilobotero,mstdn.dk,Visual Arts,visual_arts,false +camilobotero,mstdn.dk,Gaming,gaming,true +Pyae000,newsmast.social,Technology,technology,false +Pyae000,newsmast.social,Programming,programming,true +jswilkins,fediscience.org,Breaking News,breaking_news,false +jswilkins,fediscience.org,Science,science,false +jswilkins,fediscience.org,Space,space,false +jswilkins,fediscience.org,Biology,biology,true +LostRinktink,mastodon.social,Breaking News,breaking_news,false +LostRinktink,mastodon.social,Gaming,gaming,false +LostRinktink,mastodon.social,History,history,false +LostRinktink,mastodon.social,Humanities,humanities,false +LostRinktink,mastodon.social,Photography,photography,false +LostRinktink,mastodon.social,Programming,programming,false +LostRinktink,mastodon.social,Social Media,social_media,false +LostRinktink,mastodon.social,Technology,technology,true +ManUtopiK,mastodon.social,Academia & Research,academia_research,false +ManUtopiK,mastodon.social,Activism & Civil Rights,activism_civil_rights,false +ManUtopiK,mastodon.social,Architecture & Design,architecture_design,false +ManUtopiK,mastodon.social,Climate change,climate_change,false +astromecanik,mastodon.online,Markets & Finance,markets_finance,false +astromecanik,mastodon.online,Politics,politics,false +astromecanik,mastodon.online,Space,space,false +astromecanik,mastodon.online,Technology,technology,false +astromecanik,mastodon.online,Engineering,engineering,false +JoeGermuska,mastodon.social,Programming,programming,false +JoeGermuska,mastodon.social,Puzzles,puzzles,false +JoeGermuska,mastodon.social,Music,music,false +rael,mastodon.gamedev.place,Journalism & Comment,news_comment_data,false +rael,mastodon.gamedev.place,Science,science,false +rael,mastodon.gamedev.place,Space,space,false +rael,mastodon.gamedev.place,Technology,technology,false +rael,mastodon.gamedev.place,Programming,programming,true +ThirdTime,newsmast.social,Poverty & Inequality,poverty_inequality,false +ThirdTime,newsmast.social,US Politics,us_politics,false +JAVPPT,newsmast.social,Women’s Voices,women_voices,false +JAVPPT,newsmast.social,Photography,photography,false +JAVPPT,newsmast.social,Creative Arts,creative_arts,false +MinMaungHein,newsmast.social,LGBTQ+,lgbtq,false +Nyein,newsmast.social,Gaming,gaming,false +Nyein,newsmast.social,US Sport,us_sport,false +Nyein,newsmast.social,Food & Drink,food_drink,false +MinMaungHein,newsmast.social,Academia & Research,academia_research,false +MinMaungHein,newsmast.social,Climate change,climate_change,false +kirukarki2,newsmast.social,LGBTQ+,lgbtq,false +MinMaungHein,newsmast.social,Breaking News,breaking_news,false +luffy,newsmast.social,Environment,environment,false +luffy,newsmast.social,Food & Drink,food_drink,false +hamishcampbell,mastodon.social,Biodiversity & Rewilding,biodiversity_rewilding,false +hamishcampbell,mastodon.social,Climate change,climate_change,false +hamishcampbell,mastodon.social,Energy & Pollution,energy_pollution,false +hamishcampbell,mastodon.social,Environment,environment,false +hamishcampbell,mastodon.social,Technology,technology,true +astromecanik,mastodon.online,Biology,biology,false +astromecanik,mastodon.online,Science,science,true +j_zim,mastodon.uno,Breaking News,breaking_news,true +JensLaTense,social.tchncs.de,Climate change,climate_change,false +JensLaTense,social.tchncs.de,Democracy & Human Rights,democracy_human_rights,false +JensLaTense,social.tchncs.de,Environment,environment,false +JensLaTense,social.tchncs.de,Programming,programming,false +JensLaTense,social.tchncs.de,Science,science,false +JensLaTense,social.tchncs.de,Technology,technology,false +JensLaTense,social.tchncs.de,Breaking News,breaking_news,true +minkhantkyawmdy35,mastodon.social,Democracy & Human Rights,democracy_human_rights,false +minkhantkyawmdy35,mastodon.social,"Hunger, Disease & Water",hunger_disease_water,false +aaim,newsmast.social,Climate change,climate_change,false +aaim,newsmast.social,Energy & Pollution,energy_pollution,false +aaim,newsmast.social,Mathematics,mathematics,false +aaim,newsmast.social,Poverty & Inequality,poverty_inequality,false +aaim,newsmast.social,Science,science,false +aaim,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,true +astromecanik,mastodon.online,Humour,humour,false +minkhantkyawmdy35,mastodon.social,Journalism & Comment,news_comment_data,false +minkhantkyawmdy35,mastodon.social,Poverty & Inequality,poverty_inequality,false +minkhantkyawmdy35,mastodon.social,Social Media,social_media,false +minkhantkyawmdy35,mastodon.social,Ukraine Invasion,ukraine_invasion,false +ThirdTime,newsmast.social,Environment,environment,false +ThirdTime,newsmast.social,Climate change,climate_change,false +minkhantkyawmdy35,mastodon.social,Weather,weather,false +minkhantkyawmdy35,mastodon.social,Breaking News,breaking_news,true +Nyein,newsmast.social,Sport,sport,false +Nyein,newsmast.social,Creative Arts,creative_arts,false +MinMaungHein,newsmast.social,Environment,environment,false +not_so_social,newsmast.social,AI,ai,false +not_so_social,newsmast.social,Biology,biology,false +not_so_social,newsmast.social,Chemistry,chemistry,false +not_so_social,newsmast.social,Engineering,engineering,false +not_so_social,newsmast.social,Humanities,humanities,false +not_so_social,newsmast.social,Mathematics,mathematics,false +not_so_social,newsmast.social,Physics,physics,false +not_so_social,newsmast.social,Programming,programming,false +not_so_social,newsmast.social,Science,science,false +not_so_social,newsmast.social,Social Sciences,social_sciences,false +not_so_social,newsmast.social,Space,space,false +not_so_social,newsmast.social,Technology,technology,true +ManUtopiK,mastodon.social,Energy & Pollution,energy_pollution,false +ManUtopiK,mastodon.social,Environment,environment,false +ManUtopiK,mastodon.social,Government & Policy,government_policy,false +ManUtopiK,mastodon.social,Humanities,humanities,false +ManUtopiK,mastodon.social,Law & Justice,law_justice,false +ManUtopiK,mastodon.social,Politics,politics,false +ManUtopiK,mastodon.social,Poverty & Inequality,poverty_inequality,false +Billyboy,newsmast.social,Indigenous Peoples,indigenous_peoples,false +Billyboy,newsmast.social,Law & Justice,law_justice,false +Billyboy,newsmast.social,Physics,physics,false +Billyboy,newsmast.social,Politics,politics,false +Billyboy,newsmast.social,Poverty & Inequality,poverty_inequality,false +Billyboy,newsmast.social,Science,science,false +Billyboy,newsmast.social,Technology,technology,false +Billyboy,newsmast.social,Workers Rights,workers_rights,false +ManUtopiK,mastodon.social,Programming,programming,false +ManUtopiK,mastodon.social,Technology,technology,false +ManUtopiK,mastodon.social,Democracy & Human Rights,democracy_human_rights,true +skymoo,fosstodon.org,Breaking News,breaking_news,false +skymoo,fosstodon.org,Climate change,climate_change,false +skymoo,fosstodon.org,Mathematics,mathematics,false +jamalpp,newsmast.social,Journalism & Comment,news_comment_data,false +jamalpp,newsmast.social,Social Media,social_media,false +jamalpp,newsmast.social,Ukraine Invasion,ukraine_invasion,false +jamalpp,newsmast.social,Weather,weather,false +jamalpp,newsmast.social,Breaking News,breaking_news,true +skymoo,fosstodon.org,Programming,programming,false +skymoo,fosstodon.org,Science,science,false +skymoo,fosstodon.org,Space,space,false +skymoo,fosstodon.org,Technology,technology,false +skymoo,fosstodon.org,Physics,physics,true +paingpyaethu,mstdn.social,Biology,biology,false +paingpyaethu,mstdn.social,Breaking News,breaking_news,false +paingpyaethu,mstdn.social,Journalism & Comment,news_comment_data,false +paingpyaethu,mstdn.social,Science,science,false +paingpyaethu,mstdn.social,Social Media,social_media,false +paingpyaethu,mstdn.social,Ukraine Invasion,ukraine_invasion,false +leonardogutierrez,mastodon.social,Engineering,engineering,true +darkjamal,newsmast.social,Social Media,social_media,false +darkjamal,newsmast.social,Ukraine Invasion,ukraine_invasion,false +darkjamal,newsmast.social,Weather,weather,false +darkjamal,newsmast.social,Journalism & Comment,news_comment_data,true +leonardogutierrez,mastodon.social,AI,ai,false +leonardogutierrez,mastodon.social,Architecture & Design,architecture_design,false +leonardogutierrez,mastodon.social,Biodiversity & Rewilding,biodiversity_rewilding,false +leonardogutierrez,mastodon.social,Biology,biology,false +leonardogutierrez,mastodon.social,Books & Literature,books_literature,false +leonardogutierrez,mastodon.social,Chemistry,chemistry,false +leonardogutierrez,mastodon.social,Climate change,climate_change,false +leonardogutierrez,mastodon.social,Democracy & Human Rights,democracy_human_rights,false +leonardogutierrez,mastodon.social,Energy & Pollution,energy_pollution,false +leonardogutierrez,mastodon.social,Environment,environment,false +leonardogutierrez,mastodon.social,History,history,false +leonardogutierrez,mastodon.social,Humanities,humanities,false +leonardogutierrez,mastodon.social,"Hunger, Disease & Water",hunger_disease_water,false +leonardogutierrez,mastodon.social,Mathematics,mathematics,false +leonardogutierrez,mastodon.social,Movies,movies,false +leonardogutierrez,mastodon.social,Music,music,false +leonardogutierrez,mastodon.social,Performing Arts,performing_arts,false +leonardogutierrez,mastodon.social,Philosophy,philosophy,false +leonardogutierrez,mastodon.social,Photography,photography,false +rosswood82,mastodon.scot,Biodiversity & Rewilding,biodiversity_rewilding,false +rosswood82,mastodon.scot,Climate change,climate_change,false +rosswood82,mastodon.scot,Football,football,false +Tntgamer12341,mastodon.social,Programming,programming,false +bja,hachyderm.io,Breaking News,breaking_news,false +bja,hachyderm.io,Democracy & Human Rights,democracy_human_rights,false +MysticBrew,pony.social,Activism & Civil Rights,activism_civil_rights,false +MysticBrew,pony.social,Food & Drink,food_drink,false +MysticBrew,pony.social,Immigrants Rights,immigrants_rights,false +MysticBrew,pony.social,Nature & Wildlife,nature_wildlife,false +MysticBrew,pony.social,Pets,pets,false +MysticBrew,pony.social,Programming,programming,false +bja,hachyderm.io,Journalism & Comment,news_comment_data,false +bja,hachyderm.io,Philosophy,philosophy,false +bja,hachyderm.io,Ukraine Invasion,ukraine_invasion,false +bja,hachyderm.io,Weather,weather,false +bja,hachyderm.io,Engineering,engineering,true +palmeiras,newsmast.social,Breaking News,breaking_news,false +palmeiras,newsmast.social,Disabled Voices,disabled_voices,false +palmeiras,newsmast.social,Journalism & Comment,news_comment_data,false +palmeiras,newsmast.social,Social Media,social_media,false +palmeiras,newsmast.social,Black Voices,black_voices,true +astromecanik,mastodon.online,Nature & Wildlife,nature_wildlife,false +n4z4m3,masto.ai,Democracy & Human Rights,democracy_human_rights,false +n4z4m3,masto.ai,Government & Policy,government_policy,false +n4z4m3,masto.ai,Politics,politics,false +n4z4m3,masto.ai,US Politics,us_politics,false +n4z4m3,masto.ai,Breaking News,breaking_news,true +ThirdTime,newsmast.social,LGBTQ+,lgbtq,false +ThirdTime,newsmast.social,Women’s Voices,women_voices,false +ThirdTime,newsmast.social,Business,business,false +ThirdTime,newsmast.social,Science,science,false +ThirdTime,newsmast.social,Space,space,false +bigtechpitchbot,techhub.social,AI,ai,false +bigtechpitchbot,techhub.social,Breaking News,breaking_news,false +bigtechpitchbot,techhub.social,Engineering,engineering,false +bigtechpitchbot,techhub.social,Journalism & Comment,news_comment_data,false +bigtechpitchbot,techhub.social,Programming,programming,false +bigtechpitchbot,techhub.social,Social Media,social_media,false +bigtechpitchbot,techhub.social,Ukraine Invasion,ukraine_invasion,false +bigtechpitchbot,techhub.social,Weather,weather,false +bigtechpitchbot,techhub.social,Technology,technology,true +complexmoth,aus.social,Biodiversity & Rewilding,biodiversity_rewilding,false +complexmoth,aus.social,Books & Literature,books_literature,false +complexmoth,aus.social,Breaking News,breaking_news,false +complexmoth,aus.social,Creative Arts,creative_arts,false +complexmoth,aus.social,Democracy & Human Rights,democracy_human_rights,false +complexmoth,aus.social,Energy & Pollution,energy_pollution,false +complexmoth,aus.social,Food & Drink,food_drink,false +complexmoth,aus.social,History,history,false +complexmoth,aus.social,Humanities,humanities,false +complexmoth,aus.social,Humour,humour,false +complexmoth,aus.social,Movies,movies,false +complexmoth,aus.social,Music,music,false +complexmoth,aus.social,Journalism & Comment,news_comment_data,false +complexmoth,aus.social,Performing Arts,performing_arts,false +complexmoth,aus.social,Physics,physics,false +complexmoth,aus.social,Puzzles,puzzles,false +complexmoth,aus.social,Science,science,false +complexmoth,aus.social,Technology,technology,false +complexmoth,aus.social,TV & Radio,tv_radio,false +complexmoth,aus.social,Engineering,engineering,true +johndonald,newsmast.social,History,history,false +johndonald,newsmast.social,Humanities,humanities,false +johndonald,newsmast.social,Philosophy,philosophy,false +danielmrose,writing.exchange,Breaking News,breaking_news,false +danielmrose,writing.exchange,Football,football,false +danielmrose,writing.exchange,Law & Justice,law_justice,false +danielmrose,writing.exchange,Technology,technology,false +danielmrose,writing.exchange,US Politics,us_politics,false +danielmrose,writing.exchange,Weather,weather,false +danielmrose,writing.exchange,US Sport,us_sport,true +johndonald,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false +johndonald,newsmast.social,Social Sciences,social_sciences,true +SigurdVie,mastodon.world,Academia & Research,academia_research,false +SigurdVie,mastodon.world,Activism & Civil Rights,activism_civil_rights,false +SigurdVie,mastodon.world,Biodiversity & Rewilding,biodiversity_rewilding,false +SigurdVie,mastodon.world,Biology,biology,false +SigurdVie,mastodon.world,Books & Literature,books_literature,false +SigurdVie,mastodon.world,Breaking News,breaking_news,false +SigurdVie,mastodon.world,Chemistry,chemistry,false +SigurdVie,mastodon.world,Climate change,climate_change,false +SigurdVie,mastodon.world,Democracy & Human Rights,democracy_human_rights,false +SigurdVie,mastodon.world,Energy & Pollution,energy_pollution,false +SigurdVie,mastodon.world,Engineering,engineering,false +SigurdVie,mastodon.world,Environment,environment,false +SigurdVie,mastodon.world,Gaming,gaming,false +SigurdVie,mastodon.world,Healthcare,healthcare,false +SigurdVie,mastodon.world,History,history,false +SigurdVie,mastodon.world,Humanities,humanities,false +SigurdVie,mastodon.world,"Hunger, Disease & Water",hunger_disease_water,false +SigurdVie,mastodon.world,Immigrants Rights,immigrants_rights,false +SigurdVie,mastodon.world,Law & Justice,law_justice,false +SigurdVie,mastodon.world,LGBTQ+,lgbtq,false +SigurdVie,mastodon.world,Government & Policy,government_policy,true +SigurdVie,mastodon.world,Mathematics,mathematics,false +SigurdVie,mastodon.world,Movies,movies,false +SigurdVie,mastodon.world,Journalism & Comment,news_comment_data,false +SigurdVie,mastodon.world,Philosophy,philosophy,false +SigurdVie,mastodon.world,Physics,physics,false +SigurdVie,mastodon.world,Politics,politics,false +SigurdVie,mastodon.world,Poverty & Inequality,poverty_inequality,false +SigurdVie,mastodon.world,Programming,programming,false +SigurdVie,mastodon.world,Science,science,false +SigurdVie,mastodon.world,Social Media,social_media,false +SigurdVie,mastodon.world,Social Sciences,social_sciences,false +SigurdVie,mastodon.world,Space,space,false +SigurdVie,mastodon.world,Technology,technology,false +SigurdVie,mastodon.world,TV & Radio,tv_radio,false +SigurdVie,mastodon.world,Ukraine Invasion,ukraine_invasion,false +SigurdVie,mastodon.world,Visual Arts,visual_arts,false +SigurdVie,mastodon.world,Women’s Voices,women_voices,false +SigurdVie,mastodon.world,Workers Rights,workers_rights,false +mpmilestogo,moth.social,Journalism & Comment,news_comment_data,false +xmbrst,mastodon.social,Biology,biology,false +xmbrst,mastodon.social,Books & Literature,books_literature,false +xmbrst,mastodon.social,Breaking News,breaking_news,false +xmbrst,mastodon.social,Climate change,climate_change,false +xmbrst,mastodon.social,Energy & Pollution,energy_pollution,false +xmbrst,mastodon.social,Government & Policy,government_policy,false +xmbrst,mastodon.social,Healthcare,healthcare,false +xmbrst,mastodon.social,Mathematics,mathematics,false +xmbrst,mastodon.social,Music,music,false +xmbrst,mastodon.social,Physics,physics,false +jswilkins,fediscience.org,Humanities,humanities,false +jswilkins,fediscience.org,Philosophy,philosophy,false +jswilkins,fediscience.org,Social Sciences,social_sciences,false +Hwys2Railways,newsmast.social,Academia & Research,academia_research,false +Hwys2Railways,newsmast.social,Activism & Civil Rights,activism_civil_rights,false +Hwys2Railways,newsmast.social,AI,ai,false +Hwys2Railways,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false +Hwys2Railways,newsmast.social,Biology,biology,false +Hwys2Railways,newsmast.social,Black Voices,black_voices,false +Hwys2Railways,newsmast.social,Books & Literature,books_literature,false +Hwys2Railways,newsmast.social,Breaking News,breaking_news,false +Hwys2Railways,newsmast.social,Chemistry,chemistry,false +Hwys2Railways,newsmast.social,Climate change,climate_change,false +Hwys2Railways,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +Hwys2Railways,newsmast.social,Energy & Pollution,energy_pollution,false +Hwys2Railways,newsmast.social,Engineering,engineering,false +Hwys2Railways,newsmast.social,Gaming,gaming,false +Hwys2Railways,newsmast.social,Government & Policy,government_policy,false +Hwys2Railways,newsmast.social,Healthcare,healthcare,false +Hwys2Railways,newsmast.social,History,history,false +Hwys2Railways,newsmast.social,Humanities,humanities,false +Hwys2Railways,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false +Hwys2Railways,newsmast.social,Immigrants Rights,immigrants_rights,false +Hwys2Railways,newsmast.social,Indigenous Peoples,indigenous_peoples,false +Hwys2Railways,newsmast.social,Law & Justice,law_justice,false +Hwys2Railways,newsmast.social,LGBTQ+,lgbtq,false +Hwys2Railways,newsmast.social,Mathematics,mathematics,false +Hwys2Railways,newsmast.social,Journalism & Comment,news_comment_data,false +Hwys2Railways,newsmast.social,Philosophy,philosophy,false +Hwys2Railways,newsmast.social,Physics,physics,false +Hwys2Railways,newsmast.social,Politics,politics,false +Hwys2Railways,newsmast.social,Poverty & Inequality,poverty_inequality,false +Hwys2Railways,newsmast.social,Programming,programming,false +Hwys2Railways,newsmast.social,Science,science,false +Hwys2Railways,newsmast.social,Social Sciences,social_sciences,false +Hwys2Railways,newsmast.social,Space,space,false +Hwys2Railways,newsmast.social,Technology,technology,false +Hwys2Railways,newsmast.social,Ukraine Invasion,ukraine_invasion,false +Hwys2Railways,newsmast.social,US Politics,us_politics,false +Hwys2Railways,newsmast.social,Visual Arts,visual_arts,false +Hwys2Railways,newsmast.social,Weather,weather,false +Hwys2Railways,newsmast.social,Women’s Voices,women_voices,false +Hwys2Railways,newsmast.social,Environment,environment,true +chrishancock,mas.to,Food & Drink,food_drink,false +chrishancock,mas.to,Politics,politics,false +chrishancock,mas.to,Travel,travel,false +Billyboy,newsmast.social,AI,ai,true +chrishancock,mas.to,US Politics,us_politics,false +chrishancock,mas.to,Breaking News,breaking_news,true +dan_lerch,mastodon.social,Breaking News,breaking_news,false +dan_lerch,mastodon.social,Engineering,engineering,false +dan_lerch,mastodon.social,Journalism & Comment,news_comment_data,false +dan_lerch,mastodon.social,Programming,programming,false +dan_lerch,mastodon.social,Social Media,social_media,false +dan_lerch,mastodon.social,Technology,technology,false +dan_lerch,mastodon.social,Ukraine Invasion,ukraine_invasion,false +dan_lerch,mastodon.social,Weather,weather,false +dan_lerch,mastodon.social,AI,ai,true +ThirdTime,newsmast.social,Workers Rights,workers_rights,false +ThirdTime,newsmast.social,Technology,technology,false +ThirdTime,newsmast.social,Sport,sport,false +Billyboy,newsmast.social,Academia & Research,academia_research,false +Billyboy,newsmast.social,Activism & Civil Rights,activism_civil_rights,false +Billyboy,newsmast.social,Breaking News,breaking_news,false +Billyboy,newsmast.social,Business,business,false +Billyboy,newsmast.social,Climate change,climate_change,false +Billyboy,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +Billyboy,newsmast.social,Disabled Voices,disabled_voices,false +Billyboy,newsmast.social,Energy & Pollution,energy_pollution,false +Billyboy,newsmast.social,Engineering,engineering,false +Billyboy,newsmast.social,Environment,environment,false +Billyboy,newsmast.social,Government & Policy,government_policy,false +Billyboy,newsmast.social,Healthcare,healthcare,false +Billyboy,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false +Billyboy,newsmast.social,Immigrants Rights,immigrants_rights,false +leonardogutierrez,mastodon.social,Physics,physics,false +leonardogutierrez,mastodon.social,Poverty & Inequality,poverty_inequality,false +leonardogutierrez,mastodon.social,Programming,programming,false +leonardogutierrez,mastodon.social,Science,science,false +leonardogutierrez,mastodon.social,Social Sciences,social_sciences,false +leonardogutierrez,mastodon.social,Space,space,false +leonardogutierrez,mastodon.social,Technology,technology,false +leonardogutierrez,mastodon.social,Visual Arts,visual_arts,false +xmbrst,mastodon.social,Science,science,false +xmbrst,mastodon.social,TV & Radio,tv_radio,false +xmbrst,mastodon.social,Ukraine Invasion,ukraine_invasion,false +xmbrst,mastodon.social,US Politics,us_politics,false +xmbrst,mastodon.social,Space,space,true +filippodb,mastodon.uno,Movies,movies,false +filippodb,mastodon.uno,Music,music,false +filippodb,mastodon.uno,Space,space,false +filippodb,mastodon.uno,Technology,technology,false +filippodb,mastodon.uno,Social Media,social_media,true +47photography,newsmast.social,Creative Arts,creative_arts,false +47photography,newsmast.social,Social Media,social_media,false +47photography,newsmast.social,Breaking News,breaking_news,false +PaingPyaeThu,social.vivaldi.net,Journalism & Comment,news_comment_data,false +PaingPyaeThu,social.vivaldi.net,Social Media,social_media,false +PaingPyaeThu,social.vivaldi.net,Ukraine Invasion,ukraine_invasion,false +PaingPyaeThu,social.vivaldi.net,Weather,weather,false +PaingPyaeThu,social.vivaldi.net,Breaking News,breaking_news,true +backtobella,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false +backtobella,newsmast.social,Biology,biology,false +backtobella,newsmast.social,Environment,environment,false +backtobella,newsmast.social,History,history,false +samuelAnimates,scicomm.xyz,Academia & Research,academia_research,false +samuelAnimates,scicomm.xyz,AI,ai,false +samuelAnimates,scicomm.xyz,Black Voices,black_voices,false +samuelAnimates,scicomm.xyz,Books & Literature,books_literature,false +samuelAnimates,scicomm.xyz,Creative Arts,creative_arts,false +samuelAnimates,scicomm.xyz,Democracy & Human Rights,democracy_human_rights,false +samuelAnimates,scicomm.xyz,Disabled Voices,disabled_voices,false +samuelAnimates,scicomm.xyz,Gaming,gaming,false +samuelAnimates,scicomm.xyz,Government & Policy,government_policy,false +samuelAnimates,scicomm.xyz,Humanities,humanities,false +samuelAnimates,scicomm.xyz,Indigenous Peoples,indigenous_peoples,false +samuelAnimates,scicomm.xyz,LGBTQ+,lgbtq,false +samuelAnimates,scicomm.xyz,Mental Health & Wellbeing,mental_health_wellbeing,false +samuelAnimates,scicomm.xyz,Music,music,false +samuelAnimates,scicomm.xyz,Journalism & Comment,news_comment_data,false +samuelAnimates,scicomm.xyz,Performing Arts,performing_arts,false +samuelAnimates,scicomm.xyz,Social Media,social_media,false +samuelAnimates,scicomm.xyz,Social Sciences,social_sciences,false +samuelAnimates,scicomm.xyz,TV & Radio,tv_radio,false +samuelAnimates,scicomm.xyz,Healthcare,healthcare,true +darkjamal,newsmast.social,Photography,photography,false +MinMaungHein,newsmast.social,Photography,photography,false +darkjamal,newsmast.social,Travel,travel,false +darkjamal,newsmast.social,Science,science,false +jnobles,mastodon.social,Academia & Research,academia_research,false +jnobles,mastodon.social,Activism & Civil Rights,activism_civil_rights,false +jnobles,mastodon.social,Government & Policy,government_policy,false +jnobles,mastodon.social,Healthcare,healthcare,false +jnobles,mastodon.social,Immigrants Rights,immigrants_rights,false +jnobles,mastodon.social,LGBTQ+,lgbtq,false +jnobles,mastodon.social,Journalism & Comment,news_comment_data,false +jnobles,mastodon.social,Programming,programming,false +jnobles,mastodon.social,Science,science,false +jnobles,mastodon.social,Space,space,false +jnobles,mastodon.social,Technology,technology,false +jnobles,mastodon.social,Women’s Voices,women_voices,false +jnobles,mastodon.social,Breaking News,breaking_news,true +Kicko,mstdn.social,Social Media,social_media,false +Kicko,mstdn.social,Technology,technology,false +Kicko,mstdn.social,US Sport,us_sport,false +Kicko,mstdn.social,Weather,weather,false +Kicko,mstdn.social,Breaking News,breaking_news,true +carloshr,lile.cl,Programming,programming,false +carloshr,lile.cl,Technology,technology,true +clonnee,newsmast.social,Biology,biology,false +clonnee,newsmast.social,Chemistry,chemistry,false +clonnee,newsmast.social,Engineering,engineering,false +clonnee,newsmast.social,Mathematics,mathematics,false +clonnee,newsmast.social,Physics,physics,false +clonnee,newsmast.social,Programming,programming,false +clonnee,newsmast.social,Science,science,false +clonnee,newsmast.social,Space,space,false +clonnee,newsmast.social,Technology,technology,false +clonnee,newsmast.social,AI,ai,true +caesar,indieweb.social,Biodiversity & Rewilding,biodiversity_rewilding,false +caesar,indieweb.social,Breaking News,breaking_news,false +caesar,indieweb.social,Climate change,climate_change,false +caesar,indieweb.social,Democracy & Human Rights,democracy_human_rights,false +caesar,indieweb.social,Energy & Pollution,energy_pollution,false +caesar,indieweb.social,Engineering,engineering,false +caesar,indieweb.social,Government & Policy,government_policy,false +caesar,indieweb.social,Physics,physics,false +caesar,indieweb.social,Politics,politics,false +caesar,indieweb.social,Programming,programming,false +caesar,indieweb.social,Science,science,false +caesar,indieweb.social,Space,space,false +caesar,indieweb.social,Technology,technology,false +caesar,indieweb.social,Weather,weather,false +caesar,indieweb.social,Environment,environment,true +okwithmydecay,en.osm.town,Breaking News,breaking_news,false +gurumitts,mastodon.online,Engineering,engineering,false +gurumitts,mastodon.online,Science,science,false +gurumitts,mastodon.online,Space,space,false +gurumitts,mastodon.online,Technology,technology,false +gurumitts,mastodon.online,Programming,programming,true +wwrr,mastodon.social,Humour,humour,false +PaoloParti,mastodon.uno,Journalism & Comment,news_comment_data,false +PaoloParti,mastodon.uno,Disabled Voices,disabled_voices,false +PaoloParti,mastodon.uno,Women’s Voices,women_voices,false +PaoloParti,mastodon.uno,Immigrants Rights,immigrants_rights,false +PaoloParti,mastodon.uno,Activism & Civil Rights,activism_civil_rights,false +Gnume,fosstodon.org,Breaking News,breaking_news,false +Gnume,fosstodon.org,Environment,environment,false +Gnume,fosstodon.org,Technology,technology,false +Gnume,fosstodon.org,Weather,weather,false +Gnume,fosstodon.org,Programming,programming,true +Decibels,mastodon.social,Biology,biology,false +Decibels,mastodon.social,Breaking News,breaking_news,false +Decibels,mastodon.social,Business,business,false +Decibels,mastodon.social,Chemistry,chemistry,false +Decibels,mastodon.social,Democracy & Human Rights,democracy_human_rights,false +Decibels,mastodon.social,Energy & Pollution,energy_pollution,false +Decibels,mastodon.social,Engineering,engineering,false +Decibels,mastodon.social,Government & Policy,government_policy,false +Decibels,mastodon.social,"Hunger, Disease & Water",hunger_disease_water,false +Decibels,mastodon.social,Markets & Finance,markets_finance,false +Decibels,mastodon.social,Mathematics,mathematics,false +Decibels,mastodon.social,Physics,physics,false +Decibels,mastodon.social,Politics,politics,false +Decibels,mastodon.social,Poverty & Inequality,poverty_inequality,false +Decibels,mastodon.social,Programming,programming,false +Decibels,mastodon.social,Science,science,false +Decibels,mastodon.social,Space,space,false +Decibels,mastodon.social,Technology,technology,false +Decibels,mastodon.social,AI,ai,true +Pavel,newsmast.social,AI,ai,false +islandknabo,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false +islandknabo,newsmast.social,Biology,biology,false +islandknabo,newsmast.social,Breaking News,breaking_news,false +islandknabo,newsmast.social,Chemistry,chemistry,false +islandknabo,newsmast.social,Mathematics,mathematics,false +islandknabo,newsmast.social,Journalism & Comment,news_comment_data,false +islandknabo,newsmast.social,Physics,physics,false +islandknabo,newsmast.social,Science,science,false +islandknabo,newsmast.social,Space,space,false +islandknabo,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,true +Charango,social.vivaldi.net,AI,ai,false +Charango,social.vivaldi.net,Books & Literature,books_literature,false +Charango,social.vivaldi.net,Engineering,engineering,false +Charango,social.vivaldi.net,Gaming,gaming,false +Charango,social.vivaldi.net,Physics,physics,false +Charango,social.vivaldi.net,Programming,programming,false +Charango,social.vivaldi.net,Science,science,false +Charango,social.vivaldi.net,Social Media,social_media,false +Charango,social.vivaldi.net,Technology,technology,false +Charango,social.vivaldi.net,Mathematics,mathematics,true +zippy,mas.to,AI,ai,false +zippy,mas.to,Architecture & Design,architecture_design,false +zippy,mas.to,Biodiversity & Rewilding,biodiversity_rewilding,false +zippy,mas.to,Biology,biology,false +zippy,mas.to,Books & Literature,books_literature,false +zippy,mas.to,Climate change,climate_change,false +zippy,mas.to,Environment,environment,false +zippy,mas.to,Humanities,humanities,false +zippy,mas.to,Mathematics,mathematics,false +zippy,mas.to,Philosophy,philosophy,false +zippy,mas.to,Photography,photography,false +zippy,mas.to,Physics,physics,false +zippy,mas.to,Science,science,false +zippy,mas.to,Social Sciences,social_sciences,false +zippy,mas.to,Technology,technology,false +zippy,mas.to,TV & Radio,tv_radio,false +zippy,mas.to,Breaking News,breaking_news,true +atdavec,mastodon.social,Biology,biology,false +atdavec,mastodon.social,Breaking News,breaking_news,false +atdavec,mastodon.social,Business,business,false +atdavec,mastodon.social,Chemistry,chemistry,false +atdavec,mastodon.social,Climate change,climate_change,false +atdavec,mastodon.social,Energy & Pollution,energy_pollution,false +atdavec,mastodon.social,Engineering,engineering,false +atdavec,mastodon.social,Environment,environment,false +atdavec,mastodon.social,Mathematics,mathematics,false +atdavec,mastodon.social,Physics,physics,false +atdavec,mastodon.social,Politics,politics,false +atdavec,mastodon.social,Programming,programming,false +atdavec,mastodon.social,Science,science,false +atdavec,mastodon.social,Social Media,social_media,false +atdavec,mastodon.social,Space,space,false +atdavec,mastodon.social,US Politics,us_politics,false +atdavec,mastodon.social,Technology,technology,true +zippy,mas.to,Women’s Voices,women_voices,false +PaoloParti,mastodon.uno,Democracy & Human Rights,democracy_human_rights,false +Annon,newsmast.social,Books & Literature,books_literature,false +Annon,newsmast.social,Gaming,gaming,false +Annon,newsmast.social,History,history,false +Annon,newsmast.social,Movies,movies,false +Annon,newsmast.social,Music,music,false +Annon,newsmast.social,Social Sciences,social_sciences,false +Annon,newsmast.social,Space,space,false +Lumii,masto.ai,Activism & Civil Rights,activism_civil_rights,false +Lumii,masto.ai,Physics,physics,false +Lumii,masto.ai,Programming,programming,false +Lumii,masto.ai,Science,science,false +Lumii,masto.ai,Space,space,false +Lumii,masto.ai,Technology,technology,true +Annon,newsmast.social,Technology,technology,false +Annon,newsmast.social,Visual Arts,visual_arts,false +Annon,newsmast.social,Programming,programming,true +backtobella,newsmast.social,Mathematics,mathematics,false +backtobella,newsmast.social,Movies,movies,false +oliphant,techhub.social,AI,ai,false +oliphant,techhub.social,Biodiversity & Rewilding,biodiversity_rewilding,false +oliphant,techhub.social,Breaking News,breaking_news,false +oliphant,techhub.social,Climate change,climate_change,false +oliphant,techhub.social,Environment,environment,false +oliphant,techhub.social,Food & Drink,food_drink,false +oliphant,techhub.social,History,history,false +oliphant,techhub.social,Humour,humour,false +oliphant,techhub.social,Markets & Finance,markets_finance,false +oliphant,techhub.social,Mental Health & Wellbeing,mental_health_wellbeing,false +oliphant,techhub.social,Nature & Wildlife,nature_wildlife,false +oliphant,techhub.social,Journalism & Comment,news_comment_data,false +oliphant,techhub.social,Pets,pets,false +oliphant,techhub.social,Philosophy,philosophy,false +oliphant,techhub.social,Science,science,false +oliphant,techhub.social,Technology,technology,false +oliphant,techhub.social,Travel,travel,false +oliphant,techhub.social,Weather,weather,false +oliphant,techhub.social,Workers Rights,workers_rights,false +oliphant,techhub.social,Programming,programming,true +longfried,mastodon.social,AI,ai,false +longfried,mastodon.social,Breaking News,breaking_news,false +longfried,mastodon.social,Engineering,engineering,false +longfried,mastodon.social,Football,football,false +longfried,mastodon.social,Journalism & Comment,news_comment_data,false +longfried,mastodon.social,Programming,programming,false +longfried,mastodon.social,Social Media,social_media,false +longfried,mastodon.social,Sport,sport,false +longfried,mastodon.social,Technology,technology,false +longfried,mastodon.social,Ukraine Invasion,ukraine_invasion,false +longfried,mastodon.social,Weather,weather,false +longfried,mastodon.social,US Sport,us_sport,true +aksu,infosec.exchange,Journalism & Comment,news_comment_data,false +aksu,infosec.exchange,Science,science,false +aksu,infosec.exchange,Space,space,false +aksu,infosec.exchange,Technology,technology,false +aksu,infosec.exchange,Breaking News,breaking_news,true +RowdeeG,mastodon.world,Football,football,false +RowdeeG,mastodon.world,Music,music,false +RowdeeG,mastodon.world,Sport,sport,false +RowdeeG,mastodon.world,Technology,technology,false +RowdeeG,mastodon.world,TV & Radio,tv_radio,false +RowdeeG,mastodon.world,US Sport,us_sport,true +elgosz,mastodon.social,AI,ai,false +elgosz,mastodon.social,Breaking News,breaking_news,false +elgosz,mastodon.social,Engineering,engineering,false +elgosz,mastodon.social,Programming,programming,false +elgosz,mastodon.social,Science,science,false +elgosz,mastodon.social,Space,space,false +elgosz,mastodon.social,US Politics,us_politics,false +elgosz,mastodon.social,Technology,technology,true +UltimateNoob,mastodon.social,Biology,biology,false +UltimateNoob,mastodon.social,Chemistry,chemistry,false +UltimateNoob,mastodon.social,Mathematics,mathematics,false +UltimateNoob,mastodon.social,Physics,physics,false +UltimateNoob,mastodon.social,Science,science,false +UltimateNoob,mastodon.social,Space,space,false +UltimateNoob,mastodon.social,Breaking News,breaking_news,true +Anders_S,mastodon.nu,Biodiversity & Rewilding,biodiversity_rewilding,false +Anders_S,mastodon.nu,Climate change,climate_change,false +Anders_S,mastodon.nu,Energy & Pollution,energy_pollution,false +Anders_S,mastodon.nu,Environment,environment,false +Anders_S,mastodon.nu,Programming,programming,false +Anders_S,mastodon.nu,Law & Justice,law_justice,true +doctorambient,newsmast.social,Academia & Research,academia_research,false +doctorambient,newsmast.social,Chemistry,chemistry,false +doctorambient,newsmast.social,History,history,false +doctorambient,newsmast.social,Physics,physics,false +jimkane57,mastodon.world,History,history,true +doctorambient,newsmast.social,Science,science,false +doctorambient,newsmast.social,Social Sciences,social_sciences,false +doctorambient,newsmast.social,Mathematics,mathematics,true +alanstanley,mas.to,Academia & Research,academia_research,false +alanstanley,mas.to,AI,ai,false +alanstanley,mas.to,Biodiversity & Rewilding,biodiversity_rewilding,false +alanstanley,mas.to,Biology,biology,false +alanstanley,mas.to,Chemistry,chemistry,false +alanstanley,mas.to,Climate change,climate_change,false +alanstanley,mas.to,Democracy & Human Rights,democracy_human_rights,false +alanstanley,mas.to,Energy & Pollution,energy_pollution,false +alanstanley,mas.to,Engineering,engineering,false +randulo,mastodon.social,AI,ai,false +randulo,mastodon.social,Biology,biology,false +randulo,mastodon.social,Chemistry,chemistry,false +randulo,mastodon.social,Engineering,engineering,false +randulo,mastodon.social,Mathematics,mathematics,false +randulo,mastodon.social,Physics,physics,false +randulo,mastodon.social,Programming,programming,false +randulo,mastodon.social,Space,space,false +randulo,mastodon.social,Technology,technology,false +randulo,mastodon.social,Science,science,true +Anders_S,mastodon.nu,Books & Literature,books_literature,false +Anders_S,mastodon.nu,Architecture & Design,architecture_design,false +Anders_S,mastodon.nu,Movies,movies,false +alanstanley,mas.to,Environment,environment,false +alanstanley,mas.to,Government & Policy,government_policy,false +alanstanley,mas.to,Healthcare,healthcare,false +alanstanley,mas.to,History,history,false +alanstanley,mas.to,Humanities,humanities,false +alanstanley,mas.to,"Hunger, Disease & Water",hunger_disease_water,false +alanstanley,mas.to,Law & Justice,law_justice,false +alanstanley,mas.to,Mathematics,mathematics,false +alanstanley,mas.to,Journalism & Comment,news_comment_data,false +alanstanley,mas.to,Philosophy,philosophy,false +alanstanley,mas.to,Physics,physics,false +alanstanley,mas.to,Politics,politics,false +alanstanley,mas.to,Poverty & Inequality,poverty_inequality,false +alanstanley,mas.to,Programming,programming,false +alanstanley,mas.to,Science,science,false +alanstanley,mas.to,Social Sciences,social_sciences,false +cloakthelurker,mas.to,Academia & Research,academia_research,false +cloakthelurker,mas.to,AI,ai,false +cloakthelurker,mas.to,Architecture & Design,architecture_design,false +cloakthelurker,mas.to,Books & Literature,books_literature,false +cloakthelurker,mas.to,Business,business,false +cloakthelurker,mas.to,Disabled Voices,disabled_voices,false +cloakthelurker,mas.to,Gaming,gaming,false +cloakthelurker,mas.to,Government & Policy,government_policy,false +cloakthelurker,mas.to,Law & Justice,law_justice,false +cloakthelurker,mas.to,Music,music,false +cloakthelurker,mas.to,Journalism & Comment,news_comment_data,false +cloakthelurker,mas.to,Politics,politics,false +cloakthelurker,mas.to,Technology,technology,false +cloakthelurker,mas.to,US Politics,us_politics,false +cloakthelurker,mas.to,Workers Rights,workers_rights,false +cloakthelurker,mas.to,Movies,movies,true +alanstanley,mas.to,Space,space,false +alanstanley,mas.to,Technology,technology,false +alanstanley,mas.to,Ukraine Invasion,ukraine_invasion,false +alanstanley,mas.to,US Politics,us_politics,false +alanstanley,mas.to,Weather,weather,false +alanstanley,mas.to,Breaking News,breaking_news,true +PaoloParti,mastodon.uno,Poverty & Inequality,poverty_inequality,false +mattybob,newsmast.social,Breaking News,breaking_news,false +mattybob,newsmast.social,Climate change,climate_change,false +mattybob,newsmast.social,Football,football,false +mattybob,newsmast.social,Government & Policy,government_policy,false +mattybob,newsmast.social,Politics,politics,false +mattybob,newsmast.social,Science,science,false +mattybob,newsmast.social,US Politics,us_politics,false +mattybob,newsmast.social,Biology,biology,true +Sam,newsmast.social,Breaking News,breaking_news,false +Sam,newsmast.social,Activism & Civil Rights,activism_civil_rights,true +GratianRiter,bildung.social,Food & Drink,food_drink,false +GratianRiter,bildung.social,Football,football,false +GratianRiter,bildung.social,Humour,humour,false +GratianRiter,bildung.social,Mental Health & Wellbeing,mental_health_wellbeing,false +GratianRiter,bildung.social,Nature & Wildlife,nature_wildlife,false +GratianRiter,bildung.social,Pets,pets,false +GratianRiter,bildung.social,Puzzles,puzzles,false +GratianRiter,bildung.social,Sport,sport,false +GratianRiter,bildung.social,Travel,travel,false +GratianRiter,bildung.social,US Sport,us_sport,false +GratianRiter,bildung.social,Creative Arts,creative_arts,true +fatemah,newsmast.social,Biology,biology,false +fatemah,newsmast.social,Chemistry,chemistry,false +fatemah,newsmast.social,Creative Arts,creative_arts,false +fatemah,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +fatemah,newsmast.social,Food & Drink,food_drink,false +fatemah,newsmast.social,Government & Policy,government_policy,false +fatemah,newsmast.social,Healthcare,healthcare,false +fatemah,newsmast.social,Humanities,humanities,false +fatemah,newsmast.social,Humour,humour,false +fatemah,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false +fatemah,newsmast.social,Law & Justice,law_justice,false +fatemah,newsmast.social,Mathematics,mathematics,false +fatemah,newsmast.social,Nature & Wildlife,nature_wildlife,false +fatemah,newsmast.social,Pets,pets,false +fatemah,newsmast.social,Philosophy,philosophy,false +fatemah,newsmast.social,Physics,physics,false +fatemah,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,true +fatemah,newsmast.social,Politics,politics,false +fatemah,newsmast.social,Poverty & Inequality,poverty_inequality,false +fatemah,newsmast.social,Puzzles,puzzles,false +fatemah,newsmast.social,Science,science,false +fatemah,newsmast.social,Space,space,false +fatemah,newsmast.social,Travel,travel,false +fatemah,newsmast.social,US Politics,us_politics,false +PaoloParti,mastodon.uno,LGBTQ+,lgbtq,false +bridgeteam,newsmast.social,Academia & Research,academia_research,false +bridgeteam,newsmast.social,Architecture & Design,architecture_design,false +Annon,newsmast.social,Creative Arts,creative_arts,false +Annon,newsmast.social,Nature & Wildlife,nature_wildlife,false +Annon,newsmast.social,Puzzles,puzzles,false +bridgeteam,newsmast.social,Biology,biology,false +sawilsonpoet,mastodon.social,Breaking News,breaking_news,false +sawilsonpoet,mastodon.social,History,history,false +sawilsonpoet,mastodon.social,Humanities,humanities,false +sawilsonpoet,mastodon.social,Movies,movies,false +sawilsonpoet,mastodon.social,Music,music,false +sawilsonpoet,mastodon.social,Journalism & Comment,news_comment_data,false +sawilsonpoet,mastodon.social,Philosophy,philosophy,false +sawilsonpoet,mastodon.social,Social Media,social_media,false +dfaulkner,mastodon.social,AI,ai,false +dfaulkner,mastodon.social,Business,business,false +dfaulkner,mastodon.social,Democracy & Human Rights,democracy_human_rights,false +dfaulkner,mastodon.social,Government & Policy,government_policy,false +dfaulkner,mastodon.social,Markets & Finance,markets_finance,false +dfaulkner,mastodon.social,Mathematics,mathematics,false +dfaulkner,mastodon.social,Physics,physics,false +dfaulkner,mastodon.social,Politics,politics,false +dfaulkner,mastodon.social,Science,science,false +dfaulkner,mastodon.social,Space,space,false +dfaulkner,mastodon.social,Technology,technology,false +dfaulkner,mastodon.social,Ukraine Invasion,ukraine_invasion,false +dfaulkner,mastodon.social,US Politics,us_politics,false +dfaulkner,mastodon.social,Weather,weather,false +dfaulkner,mastodon.social,Workers Rights,workers_rights,false +dfaulkner,mastodon.social,Breaking News,breaking_news,true +sawilsonpoet,mastodon.social,Social Sciences,social_sciences,false +sawilsonpoet,mastodon.social,Weather,weather,false +sawilsonpoet,mastodon.social,Books & Literature,books_literature,true +backtobella,newsmast.social,Performing Arts,performing_arts,false +backtobella,newsmast.social,Science,science,false +kylesinlynn,burma.social,Breaking News,breaking_news,false +kylesinlynn,burma.social,Journalism & Comment,news_comment_data,false +kylesinlynn,burma.social,Ukraine Invasion,ukraine_invasion,false +kylesinlynn,burma.social,Weather,weather,false +kylesinlynn,burma.social,Social Media,social_media,true +backtobella,newsmast.social,Space,space,false +bridgeteam,newsmast.social,Breaking News,breaking_news,false +bridgeteam,newsmast.social,Chemistry,chemistry,false +sebbz,newsmast.social,AI,ai,false +sebbz,newsmast.social,Breaking News,breaking_news,false +sebbz,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +sebbz,newsmast.social,Engineering,engineering,false +sebbz,newsmast.social,Humanities,humanities,false +sebbz,newsmast.social,Journalism & Comment,news_comment_data,false +sebbz,newsmast.social,Programming,programming,false +sebbz,newsmast.social,Social Sciences,social_sciences,false +sebbz,newsmast.social,Technology,technology,true +nakindda,Kolektiva.social,Creative Arts,creative_arts,false +nakindda,Kolektiva.social,Food & Drink,food_drink,false +nakindda,Kolektiva.social,Humour,humour,false +nakindda,Kolektiva.social,Mental Health & Wellbeing,mental_health_wellbeing,false +nakindda,Kolektiva.social,Pets,pets,false +nakindda,Kolektiva.social,Technology,technology,false +nakindda,Kolektiva.social,Travel,travel,false +nakindda,Kolektiva.social,Nature & Wildlife,nature_wildlife,true +GossiTheDog,cyberplace.social,Biology,biology,false +GossiTheDog,cyberplace.social,Business,business,false +GossiTheDog,cyberplace.social,Science,science,false +GossiTheDog,cyberplace.social,Space,space,false +GossiTheDog,cyberplace.social,Technology,technology,true +Gloomiste,ieji.de,Architecture & Design,architecture_design,false +Gloomiste,ieji.de,Photography,photography,false +Gloomiste,ieji.de,Social Sciences,social_sciences,false +Gloomiste,ieji.de,Visual Arts,visual_arts,false +Gloomiste,ieji.de,Music,music,true +Kovatoro,mastodon.social,Architecture & Design,architecture_design,false +Kovatoro,mastodon.social,Books & Literature,books_literature,false +Kovatoro,mastodon.social,Music,music,false +Kovatoro,mastodon.social,Journalism & Comment,news_comment_data,false +Kovatoro,mastodon.social,Photography,photography,false +Kovatoro,mastodon.social,Programming,programming,false +Kovatoro,mastodon.social,Space,space,false +Kovatoro,mastodon.social,Weather,weather,false +Kovatoro,mastodon.social,Gaming,gaming,true +seosiri,newsmast.social,Biology,biology,false +seosiri,newsmast.social,Chemistry,chemistry,false +seosiri,newsmast.social,Markets & Finance,markets_finance,false +seosiri,newsmast.social,Mathematics,mathematics,false +seosiri,newsmast.social,Physics,physics,false +seosiri,newsmast.social,Science,science,false +seosiri,newsmast.social,Space,space,false +seosiri,newsmast.social,Workers Rights,workers_rights,false +seosiri,newsmast.social,Business,business,true +bridgeteam,newsmast.social,Creative Arts,creative_arts,false +bridgeteam,newsmast.social,Food & Drink,food_drink,false +rosswood82,mastodon.scot,Government & Policy,government_policy,false +rosswood82,mastodon.scot,Politics,politics,false +rosswood82,mastodon.scot,Breaking News,breaking_news,true +bridgeteam,newsmast.social,Gaming,gaming,false +bridgeteam,newsmast.social,Government & Policy,government_policy,false +bridgeteam,newsmast.social,Healthcare,healthcare,false +bridgeteam,newsmast.social,History,history,false +bridgeteam,newsmast.social,Humanities,humanities,false +ppeeoo,mastodon.social,AI,ai,false +ppeeoo,mastodon.social,Democracy & Human Rights,democracy_human_rights,false +ppeeoo,mastodon.social,Journalism & Comment,news_comment_data,false +ppeeoo,mastodon.social,Social Media,social_media,false +juliancanellas,mastodon.social,AI,ai,false +juliancanellas,mastodon.social,Architecture & Design,architecture_design,false +juliancanellas,mastodon.social,Biodiversity & Rewilding,biodiversity_rewilding,false +juliancanellas,mastodon.social,Biology,biology,false +juliancanellas,mastodon.social,Books & Literature,books_literature,false +juliancanellas,mastodon.social,Chemistry,chemistry,false +juliancanellas,mastodon.social,Climate change,climate_change,false +juliancanellas,mastodon.social,Creative Arts,creative_arts,false +juliancanellas,mastodon.social,Democracy & Human Rights,democracy_human_rights,false +juliancanellas,mastodon.social,Energy & Pollution,energy_pollution,false +juliancanellas,mastodon.social,Engineering,engineering,false +juliancanellas,mastodon.social,Environment,environment,false +juliancanellas,mastodon.social,Food & Drink,food_drink,false +juliancanellas,mastodon.social,Gaming,gaming,false +juliancanellas,mastodon.social,History,history,false +juliancanellas,mastodon.social,Humanities,humanities,false +juliancanellas,mastodon.social,Humour,humour,false +juliancanellas,mastodon.social,"Hunger, Disease & Water",hunger_disease_water,false +juliancanellas,mastodon.social,Mathematics,mathematics,false +juliancanellas,mastodon.social,Mental Health & Wellbeing,mental_health_wellbeing,false +juliancanellas,mastodon.social,Movies,movies,false +juliancanellas,mastodon.social,Music,music,false +juliancanellas,mastodon.social,Nature & Wildlife,nature_wildlife,false +juliancanellas,mastodon.social,Performing Arts,performing_arts,false +juliancanellas,mastodon.social,Pets,pets,false +juliancanellas,mastodon.social,Philosophy,philosophy,false +juliancanellas,mastodon.social,Photography,photography,false +juliancanellas,mastodon.social,Physics,physics,false +juliancanellas,mastodon.social,Poverty & Inequality,poverty_inequality,false +juliancanellas,mastodon.social,Programming,programming,false +juliancanellas,mastodon.social,Puzzles,puzzles,false +juliancanellas,mastodon.social,Science,science,false +juliancanellas,mastodon.social,Social Sciences,social_sciences,false +juliancanellas,mastodon.social,Space,space,false +juliancanellas,mastodon.social,Technology,technology,false +juliancanellas,mastodon.social,Travel,travel,false +juliancanellas,mastodon.social,TV & Radio,tv_radio,false +juliancanellas,mastodon.social,Visual Arts,visual_arts,false +juliancanellas,mastodon.social,Workers Rights,workers_rights,false +juliancanellas,mastodon.social,Academia & Research,academia_research,true +ppeeoo,mastodon.social,Technology,technology,false +ppeeoo,mastodon.social,Ukraine Invasion,ukraine_invasion,false +ppeeoo,mastodon.social,Weather,weather,false +ppeeoo,mastodon.social,Breaking News,breaking_news,true +Annon,newsmast.social,Food & Drink,food_drink,false +Annon,newsmast.social,Pets,pets,false +bridgeteam,newsmast.social,Humour,humour,false +GraymatterNews,mastodon.social,AI,ai,false +GraymatterNews,mastodon.social,Business,business,false +GraymatterNews,mastodon.social,Engineering,engineering,false +GraymatterNews,mastodon.social,Science,science,false +GraymatterNews,mastodon.social,Technology,technology,true +backtobella,newsmast.social,TV & Radio,tv_radio,false +backtobella,newsmast.social,Visual Arts,visual_arts,true +Pavel,newsmast.social,Programming,programming,false +Pavel,newsmast.social,Social Media,social_media,false +Pavel,newsmast.social,Social Sciences,social_sciences,false +Pavel,newsmast.social,Philosophy,philosophy,true +jswilkins,fediscience.org,History,history,false +xjxjxjx,newsmast.social,Gaming,gaming,false +paulcrosby,newsmast.social,Breaking News,breaking_news,false +paulcrosby,newsmast.social,AI,ai,false +paulcrosby,newsmast.social,LGBTQ+,lgbtq,true +wakahuula,wetdry.world,Breaking News,breaking_news,false +wakahuula,wetdry.world,Climate change,climate_change,false +wakahuula,wetdry.world,Democracy & Human Rights,democracy_human_rights,false +wakahuula,wetdry.world,Energy & Pollution,energy_pollution,false +wakahuula,wetdry.world,Engineering,engineering,false +wakahuula,wetdry.world,Environment,environment,false +wakahuula,wetdry.world,Government & Policy,government_policy,false +wakahuula,wetdry.world,Law & Justice,law_justice,false +wakahuula,wetdry.world,Journalism & Comment,news_comment_data,false +wakahuula,wetdry.world,Politics,politics,false +wakahuula,wetdry.world,Science,science,false +wakahuula,wetdry.world,Space,space,false +wakahuula,wetdry.world,Technology,technology,false +wakahuula,wetdry.world,Ukraine Invasion,ukraine_invasion,false +wakahuula,wetdry.world,Programming,programming,true +Radgryd,mstdn.games,Biodiversity & Rewilding,biodiversity_rewilding,false +Radgryd,mstdn.games,Biology,biology,false +Radgryd,mstdn.games,Books & Literature,books_literature,false +Radgryd,mstdn.games,Breaking News,breaking_news,false +Radgryd,mstdn.games,LGBTQ+,lgbtq,false +Radgryd,mstdn.games,Philosophy,philosophy,false +Radgryd,mstdn.games,Gaming,gaming,true +fp,troet.cafe,Government & Policy,government_policy,false +fp,troet.cafe,Climate change,climate_change,false +Annon,newsmast.social,Humour,humour,false +MysticBrew,pony.social,Travel,travel,false +MysticBrew,pony.social,Creative Arts,creative_arts,true +Anders_S,mastodon.nu,Poverty & Inequality,poverty_inequality,false +Anders_S,mastodon.nu,Activism & Civil Rights,activism_civil_rights,false +Gloomiste,ieji.de,Humanities,humanities,false +Gloomiste,ieji.de,Books & Literature,books_literature,false +Gloomiste,ieji.de,Performing Arts,performing_arts,false +Gloomiste,ieji.de,Creative Arts,creative_arts,false +Gloomiste,ieji.de,Humour,humour,false +amerpie,social.lol,Breaking News,breaking_news,false +amerpie,social.lol,Movies,movies,false +amerpie,social.lol,Social Media,social_media,false +amerpie,social.lol,TV & Radio,tv_radio,false +amerpie,social.lol,US Politics,us_politics,false +amerpie,social.lol,Technology,technology,true +anaslm10,newsmast.social,Space,space,false +anaslm10,newsmast.social,Sport,sport,false +anaslm10,newsmast.social,US Sport,us_sport,false +anaslm10,newsmast.social,Breaking News,breaking_news,true +ballhaus,newsmast.social,History,history,false +ballhaus,newsmast.social,Mathematics,mathematics,false +ballhaus,newsmast.social,Movies,movies,false +ballhaus,newsmast.social,Performing Arts,performing_arts,false +ballhaus,newsmast.social,Philosophy,philosophy,false +ballhaus,newsmast.social,Photography,photography,false +ballhaus,newsmast.social,Science,science,false +ballhaus,newsmast.social,Social Sciences,social_sciences,false +ballhaus,newsmast.social,Space,space,false +ballhaus,newsmast.social,Visual Arts,visual_arts,false +ballhaus,newsmast.social,Music,music,true +jpinmor,mastodon.social,AI,ai,false +carlt4,hachyderm.io,Breaking News,breaking_news,false +carlt4,hachyderm.io,Democracy & Human Rights,democracy_human_rights,false +carlt4,hachyderm.io,Programming,programming,false +carlt4,hachyderm.io,US Politics,us_politics,false +carlt4,hachyderm.io,Politics,politics,true +jpinmor,mastodon.social,Biology,biology,false +jpinmor,mastodon.social,Science,science,false +jpinmor,mastodon.social,Technology,technology,false +jpinmor,mastodon.social,Space,space,true +genebean,fosstodon.org,Academia & Research,academia_research,false +genebean,fosstodon.org,Activism & Civil Rights,activism_civil_rights,false +genebean,fosstodon.org,Architecture & Design,architecture_design,false +genebean,fosstodon.org,Biodiversity & Rewilding,biodiversity_rewilding,false +genebean,fosstodon.org,Black Voices,black_voices,false +FreddieJ,newsmast.social,Photography,photography,true +belpatca,techhub.social,Engineering,engineering,false +belpatca,techhub.social,Environment,environment,false +belpatca,techhub.social,Physics,physics,false +belpatca,techhub.social,Programming,programming,false +neirda,newsmast.social,Football,football,false +neirda,newsmast.social,History,history,false +neirda,newsmast.social,Humanities,humanities,false +neirda,newsmast.social,Social Sciences,social_sciences,false +neirda,newsmast.social,Sport,sport,false +neirda,newsmast.social,US Sport,us_sport,false +neirda,newsmast.social,Philosophy,philosophy,true +luomared,masto.es,Biology,biology,false +luomared,masto.es,Chemistry,chemistry,false +luomared,masto.es,Gaming,gaming,false +luomared,masto.es,Humanities,humanities,false +luomared,masto.es,Movies,movies,false +luomared,masto.es,Music,music,false +luomared,masto.es,Philosophy,philosophy,false +luomared,masto.es,Science,science,false +luomared,masto.es,Space,space,false +luomared,masto.es,TV & Radio,tv_radio,false +luomared,masto.es,Books & Literature,books_literature,true +PrivateParrot,mstdn.social,Breaking News,breaking_news,false +PrivateParrot,mstdn.social,Climate change,climate_change,false +PrivateParrot,mstdn.social,Environment,environment,false +PrivateParrot,mstdn.social,Government & Policy,government_policy,false +PrivateParrot,mstdn.social,Politics,politics,false +PrivateParrot,mstdn.social,Science,science,false +PrivateParrot,mstdn.social,Social Media,social_media,false +PrivateParrot,mstdn.social,US Politics,us_politics,false +PrivateParrot,mstdn.social,Technology,technology,true +samsethi,podcastindex.social,Technology,technology,false +fediverso,newsmast.social,Activism & Civil Rights,activism_civil_rights,false +fediverso,newsmast.social,AI,ai,false +fediverso,newsmast.social,Biology,biology,false +fediverso,newsmast.social,Chemistry,chemistry,false +fediverso,newsmast.social,Government & Policy,government_policy,false +fediverso,newsmast.social,Humanities,humanities,false +fediverso,newsmast.social,Mathematics,mathematics,false +fediverso,newsmast.social,Physics,physics,false +fediverso,newsmast.social,Social Sciences,social_sciences,false +aproposnix,mastodon.social,Academia & Research,academia_research,false +aproposnix,mastodon.social,Government & Policy,government_policy,false +aproposnix,mastodon.social,Healthcare,healthcare,false +aproposnix,mastodon.social,History,history,false +aproposnix,mastodon.social,Humanities,humanities,false +aproposnix,mastodon.social,Law & Justice,law_justice,false +aproposnix,mastodon.social,Journalism & Comment,news_comment_data,false +aproposnix,mastodon.social,Philosophy,philosophy,false +aproposnix,mastodon.social,Politics,politics,false +aproposnix,mastodon.social,Social Media,social_media,false +aproposnix,mastodon.social,Social Sciences,social_sciences,false +aproposnix,mastodon.social,Ukraine Invasion,ukraine_invasion,false +aproposnix,mastodon.social,US Politics,us_politics,false +aproposnix,mastodon.social,Weather,weather,false +aproposnix,mastodon.social,Breaking News,breaking_news,true +jarulf,mstdn.social,Technology,technology,false +fediverso,newsmast.social,Technology,technology,false +fediverso,newsmast.social,Academia & Research,academia_research,true +samsethi,podcastindex.social,AI,ai,false +samsethi,podcastindex.social,Business,business,false +samsethi,podcastindex.social,Football,football,false +samsethi,podcastindex.social,Politics,politics,false +samsethi,podcastindex.social,Science,science,false +samsethi,podcastindex.social,Space,space,false +samsethi,podcastindex.social,US Politics,us_politics,false +samsethi,podcastindex.social,Breaking News,breaking_news,true +bridgeteam,newsmast.social,Law & Justice,law_justice,false +xjxjxjx,newsmast.social,AI,ai,false +xjxjxjx,newsmast.social,Architecture & Design,architecture_design,false +xjxjxjx,newsmast.social,Books & Literature,books_literature,false +xjxjxjx,newsmast.social,Breaking News,breaking_news,false +xjxjxjx,newsmast.social,Engineering,engineering,false +bridgeteam,newsmast.social,Mathematics,mathematics,false +xjxjxjx,newsmast.social,History,history,false +xjxjxjx,newsmast.social,Humanities,humanities,false +xjxjxjx,newsmast.social,Movies,movies,false +xjxjxjx,newsmast.social,Music,music,false +xjxjxjx,newsmast.social,Journalism & Comment,news_comment_data,false +xjxjxjx,newsmast.social,Performing Arts,performing_arts,false +xjxjxjx,newsmast.social,Philosophy,philosophy,false +xjxjxjx,newsmast.social,Programming,programming,false +xjxjxjx,newsmast.social,Social Media,social_media,false +xjxjxjx,newsmast.social,Social Sciences,social_sciences,false +xjxjxjx,newsmast.social,Technology,technology,false +xjxjxjx,newsmast.social,TV & Radio,tv_radio,false +xjxjxjx,newsmast.social,Ukraine Invasion,ukraine_invasion,false +xjxjxjx,newsmast.social,Visual Arts,visual_arts,false +xjxjxjx,newsmast.social,Photography,photography,true +bridgeteam,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false +spaduf,hachyderm.io,Biology,biology,false +spaduf,hachyderm.io,Chemistry,chemistry,false +spaduf,hachyderm.io,Government & Policy,government_policy,false +spaduf,hachyderm.io,Healthcare,healthcare,false +spaduf,hachyderm.io,Mathematics,mathematics,false +spaduf,hachyderm.io,Physics,physics,false +spaduf,hachyderm.io,Programming,programming,false +spaduf,hachyderm.io,Science,science,false +spaduf,hachyderm.io,Space,space,false +spaduf,hachyderm.io,Technology,technology,false +spaduf,hachyderm.io,Academia & Research,academia_research,true +iffy,mastodon.sdf.org,Academia & Research,academia_research,false +iffy,mastodon.sdf.org,Government & Policy,government_policy,false +iffy,mastodon.sdf.org,Healthcare,healthcare,false +iffy,mastodon.sdf.org,Law & Justice,law_justice,false +iffy,mastodon.sdf.org,US Politics,us_politics,false +iffy,mastodon.sdf.org,Politics,politics,true +dariohudon,mas.to,Activism & Civil Rights,activism_civil_rights,false +dariohudon,mas.to,History,history,false +dariohudon,mas.to,Humanities,humanities,false +dariohudon,mas.to,Visual Arts,visual_arts,false +dariohudon,mas.to,Photography,photography,true +gimulnautti,mastodon.green,AI,ai,false +gimulnautti,mastodon.green,Engineering,engineering,false +gimulnautti,mastodon.green,Programming,programming,false +gimulnautti,mastodon.green,Science,science,false +gimulnautti,mastodon.green,Space,space,false +gimulnautti,mastodon.green,Technology,technology,false +gimulnautti,mastodon.green,Academia & Research,academia_research,true +ultrabunny,mastodon.social,Architecture & Design,architecture_design,false +ultrabunny,mastodon.social,Music,music,false +ultrabunny,mastodon.social,Ukraine Invasion,ukraine_invasion,false +ultrabunny,mastodon.social,Weather,weather,false +ultrabunny,mastodon.social,Breaking News,breaking_news,true +cmyrland,tutoteket.no,AI,ai,false +cmyrland,tutoteket.no,Biodiversity & Rewilding,biodiversity_rewilding,false +cmyrland,tutoteket.no,Biology,biology,false +cmyrland,tutoteket.no,Chemistry,chemistry,false +cmyrland,tutoteket.no,Climate change,climate_change,false +cmyrland,tutoteket.no,Energy & Pollution,energy_pollution,false +cmyrland,tutoteket.no,Engineering,engineering,false +cmyrland,tutoteket.no,Environment,environment,false +cmyrland,tutoteket.no,Football,football,false +cmyrland,tutoteket.no,Mathematics,mathematics,false +cmyrland,tutoteket.no,Physics,physics,false +cmyrland,tutoteket.no,Space,space,false +cmyrland,tutoteket.no,Technology,technology,false +cmyrland,tutoteket.no,Science,science,true +bridgeteam,newsmast.social,Movies,movies,false +xjxjxjx,newsmast.social,Weather,weather,false +bieberium,infosec.exchange,Engineering,engineering,false +bieberium,infosec.exchange,Environment,environment,false +bieberium,infosec.exchange,Technology,technology,false +bieberium,infosec.exchange,Ukraine Invasion,ukraine_invasion,false +bieberium,infosec.exchange,Breaking News,breaking_news,true +Bubblefarts,newsmast.social,Biology,biology,false +harvinhentry,newsmast.social,Activism & Civil Rights,activism_civil_rights,false +harvinhentry,newsmast.social,AI,ai,false +harvinhentry,newsmast.social,Black Voices,black_voices,false +harvinhentry,newsmast.social,Disabled Voices,disabled_voices,false +harvinhentry,newsmast.social,Engineering,engineering,false +harvinhentry,newsmast.social,Immigrants Rights,immigrants_rights,false +harvinhentry,newsmast.social,Indigenous Peoples,indigenous_peoples,false +test12,newsmast.social,Academia & Research,academia_research,false +test12,newsmast.social,Activism & Civil Rights,activism_civil_rights,false +test12,newsmast.social,AI,ai,false +test12,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +test12,newsmast.social,Gaming,gaming,false +test12,newsmast.social,Government & Policy,government_policy,false +test12,newsmast.social,History,history,false +test12,newsmast.social,Humanities,humanities,false +test12,newsmast.social,Indigenous Peoples,indigenous_peoples,false +test12,newsmast.social,Law & Justice,law_justice,false +test12,newsmast.social,Movies,movies,false +test12,newsmast.social,Music,music,false +test12,newsmast.social,Journalism & Comment,news_comment_data,false +test12,newsmast.social,Social Media,social_media,false +test12,newsmast.social,Technology,technology,false +test12,newsmast.social,TV & Radio,tv_radio,false +test12,newsmast.social,US Politics,us_politics,false +test12,newsmast.social,US Sport,us_sport,false +test12,newsmast.social,Black Voices,black_voices,true +harvinhentry,newsmast.social,LGBTQ+,lgbtq,false +harvinhentry,newsmast.social,Programming,programming,false +genebean,fosstodon.org,Books & Literature,books_literature,false +genebean,fosstodon.org,Business,business,false +genebean,fosstodon.org,Climate change,climate_change,false +genebean,fosstodon.org,Democracy & Human Rights,democracy_human_rights,false +genebean,fosstodon.org,Disabled Voices,disabled_voices,false +olemd,mastodon.social,AI,ai,false +olemd,mastodon.social,Climate change,climate_change,false +olemd,mastodon.social,Democracy & Human Rights,democracy_human_rights,false +olemd,mastodon.social,Environment,environment,false +olemd,mastodon.social,Poverty & Inequality,poverty_inequality,false +olemd,mastodon.social,Programming,programming,false +olemd,mastodon.social,Science,science,false +olemd,mastodon.social,Technology,technology,false +olemd,mastodon.social,Space,space,true +genebean,fosstodon.org,Energy & Pollution,energy_pollution,false +genebean,fosstodon.org,Engineering,engineering,false +genebean,fosstodon.org,Environment,environment,false +genebean,fosstodon.org,Food & Drink,food_drink,false +genebean,fosstodon.org,Government & Policy,government_policy,false +genebean,fosstodon.org,Healthcare,healthcare,false +genebean,fosstodon.org,History,history,false +genebean,fosstodon.org,Immigrants Rights,immigrants_rights,false +genebean,fosstodon.org,Indigenous Peoples,indigenous_peoples,false +genebean,fosstodon.org,Law & Justice,law_justice,false +genebean,fosstodon.org,LGBTQ+,lgbtq,false +genebean,fosstodon.org,Nature & Wildlife,nature_wildlife,false +genebean,fosstodon.org,Journalism & Comment,news_comment_data,false +genebean,fosstodon.org,Pets,pets,false +genebean,fosstodon.org,Photography,photography,false +genebean,fosstodon.org,Politics,politics,false +genebean,fosstodon.org,Programming,programming,false +genebean,fosstodon.org,Science,science,false +genebean,fosstodon.org,Social Media,social_media,false +genebean,fosstodon.org,Space,space,false +genebean,fosstodon.org,Technology,technology,false +genebean,fosstodon.org,Travel,travel,false +hacsas,mastodon.social,Activism & Civil Rights,activism_civil_rights,false +hacsas,mastodon.social,Books & Literature,books_literature,false +hacsas,mastodon.social,Breaking News,breaking_news,false +hacsas,mastodon.social,Climate change,climate_change,false +hacsas,mastodon.social,Democracy & Human Rights,democracy_human_rights,false +hacsas,mastodon.social,Energy & Pollution,energy_pollution,false +hacsas,mastodon.social,Engineering,engineering,false +hacsas,mastodon.social,Environment,environment,false +hacsas,mastodon.social,History,history,false +hacsas,mastodon.social,Humanities,humanities,false +hacsas,mastodon.social,"Hunger, Disease & Water",hunger_disease_water,false +hacsas,mastodon.social,Movies,movies,false +hacsas,mastodon.social,Music,music,false +hacsas,mastodon.social,Philosophy,philosophy,false +hacsas,mastodon.social,Poverty & Inequality,poverty_inequality,false +hacsas,mastodon.social,Programming,programming,false +hacsas,mastodon.social,Science,science,false +hacsas,mastodon.social,Social Sciences,social_sciences,false +hacsas,mastodon.social,Space,space,false +hacsas,mastodon.social,Technology,technology,false +hacsas,mastodon.social,Biodiversity & Rewilding,biodiversity_rewilding,true +genebean,fosstodon.org,TV & Radio,tv_radio,false +genebean,fosstodon.org,Ukraine Invasion,ukraine_invasion,false +genebean,fosstodon.org,US Politics,us_politics,false +genebean,fosstodon.org,Breaking News,breaking_news,true +harvinhentry,newsmast.social,Women’s Voices,women_voices,false +harvinhentry,newsmast.social,Technology,technology,true +Bubblefarts,newsmast.social,Creative Arts,creative_arts,false +Bubblefarts,newsmast.social,Physics,physics,false +hacsas,mastodon.social,TV & Radio,tv_radio,false +bridgeteam,newsmast.social,Music,music,false +PixelRobot,neopaquita.es,Academia & Research,academia_research,false +PixelRobot,neopaquita.es,Activism & Civil Rights,activism_civil_rights,false +jonben,social.spejset.org,Academia & Research,academia_research,false +jonben,social.spejset.org,Activism & Civil Rights,activism_civil_rights,false +TotalElipse,mastodon.social,Breaking News,breaking_news,false +TotalElipse,mastodon.social,Engineering,engineering,false +TotalElipse,mastodon.social,Programming,programming,false +TotalElipse,mastodon.social,Social Media,social_media,false +TotalElipse,mastodon.social,US Sport,us_sport,true +jonben,social.spejset.org,AI,ai,false +jonben,social.spejset.org,Architecture & Design,architecture_design,false +jonben,social.spejset.org,Biodiversity & Rewilding,biodiversity_rewilding,false +jonben,social.spejset.org,Biology,biology,false +jonben,social.spejset.org,Black Voices,black_voices,false +jonben,social.spejset.org,Books & Literature,books_literature,false +jonben,social.spejset.org,Breaking News,breaking_news,false +jonben,social.spejset.org,Business,business,false +stefano_zan,mastodon.uno,Architecture & Design,architecture_design,false +stefano_zan,mastodon.uno,Breaking News,breaking_news,false +stefano_zan,mastodon.uno,Humanities,humanities,false +stefano_zan,mastodon.uno,Music,music,false +stefano_zan,mastodon.uno,Philosophy,philosophy,false +stefano_zan,mastodon.uno,Photography,photography,false +stefano_zan,mastodon.uno,Books & Literature,books_literature,true +jonben,social.spejset.org,Chemistry,chemistry,false +jonben,social.spejset.org,Climate change,climate_change,false +jonben,social.spejset.org,Democracy & Human Rights,democracy_human_rights,false +jonben,social.spejset.org,Disabled Voices,disabled_voices,false +jonben,social.spejset.org,Energy & Pollution,energy_pollution,false +jonben,social.spejset.org,Engineering,engineering,false +jonben,social.spejset.org,Environment,environment,false +jonben,social.spejset.org,Gaming,gaming,false +jonben,social.spejset.org,Government & Policy,government_policy,false +jonben,social.spejset.org,Healthcare,healthcare,false +jonben,social.spejset.org,History,history,false +jonben,social.spejset.org,Humanities,humanities,false +jonben,social.spejset.org,"Hunger, Disease & Water",hunger_disease_water,false +Bubblefarts,newsmast.social,Puzzles,puzzles,false +Bubblefarts,newsmast.social,Activism & Civil Rights,activism_civil_rights,true +PixelRobot,neopaquita.es,AI,ai,false +PixelRobot,neopaquita.es,Architecture & Design,architecture_design,false +notiska,newsmast.social,Business,business,false +emmecola,mastodon.uno,Academia & Research,academia_research,false +emmecola,mastodon.uno,AI,ai,false +emmecola,mastodon.uno,Biodiversity & Rewilding,biodiversity_rewilding,false +emmecola,mastodon.uno,Biology,biology,false +emmecola,mastodon.uno,Breaking News,breaking_news,false +emmecola,mastodon.uno,Climate change,climate_change,false +emmecola,mastodon.uno,Democracy & Human Rights,democracy_human_rights,false +emmecola,mastodon.uno,Energy & Pollution,energy_pollution,false +emmecola,mastodon.uno,Environment,environment,false +emmecola,mastodon.uno,Government & Policy,government_policy,false +emmecola,mastodon.uno,Healthcare,healthcare,false +emmecola,mastodon.uno,"Hunger, Disease & Water",hunger_disease_water,false +emmecola,mastodon.uno,Journalism & Comment,news_comment_data,false +emmecola,mastodon.uno,Politics,politics,false +emmecola,mastodon.uno,Poverty & Inequality,poverty_inequality,false +emmecola,mastodon.uno,Programming,programming,false +emmecola,mastodon.uno,Social Media,social_media,false +emmecola,mastodon.uno,Technology,technology,false +emmecola,mastodon.uno,Science,science,true +notiska,newsmast.social,Engineering,engineering,false +notiska,newsmast.social,Markets & Finance,markets_finance,false +notiska,newsmast.social,Programming,programming,false +notiska,newsmast.social,Technology,technology,false +notiska,newsmast.social,Workers Rights,workers_rights,false +governorkeagan,mastodon.social,Breaking News,breaking_news,false +governorkeagan,mastodon.social,Engineering,engineering,false +governorkeagan,mastodon.social,Programming,programming,false +governorkeagan,mastodon.social,Technology,technology,false +governorkeagan,mastodon.social,AI,ai,true +governorkeagan,mastodon.social,Humour,humour,false +governorkeagan,mastodon.social,Mental Health & Wellbeing,mental_health_wellbeing,false +notiska,newsmast.social,AI,ai,true +PixelRobot,neopaquita.es,Biodiversity & Rewilding,biodiversity_rewilding,false +PixelRobot,neopaquita.es,Biology,biology,false +PixelRobot,neopaquita.es,Black Voices,black_voices,false +PaoloParti,mastodon.uno,Architecture & Design,architecture_design,false +PaoloParti,mastodon.uno,Biodiversity & Rewilding,biodiversity_rewilding,false +PaoloParti,mastodon.uno,Climate change,climate_change,false +PaoloParti,mastodon.uno,Energy & Pollution,energy_pollution,false +PaoloParti,mastodon.uno,Engineering,engineering,false +PaoloParti,mastodon.uno,Environment,environment,false +PaoloParti,mastodon.uno,History,history,false +PaoloParti,mastodon.uno,Humanities,humanities,false +PaoloParti,mastodon.uno,Mathematics,mathematics,false +PaoloParti,mastodon.uno,Movies,movies,false +PaoloParti,mastodon.uno,Music,music,false +PaoloParti,mastodon.uno,Performing Arts,performing_arts,false +PaoloParti,mastodon.uno,Philosophy,philosophy,false +PaoloParti,mastodon.uno,Photography,photography,false +PaoloParti,mastodon.uno,Science,science,false +PaoloParti,mastodon.uno,Social Sciences,social_sciences,false +PaoloParti,mastodon.uno,Space,space,false +PaoloParti,mastodon.uno,Technology,technology,false +PaoloParti,mastodon.uno,TV & Radio,tv_radio,false +PaoloParti,mastodon.uno,Visual Arts,visual_arts,false +PaoloParti,mastodon.uno,Books & Literature,books_literature,true +PixelRobot,neopaquita.es,Books & Literature,books_literature,false +PixelRobot,neopaquita.es,Breaking News,breaking_news,false +PixelRobot,neopaquita.es,Business,business,false +PixelRobot,neopaquita.es,Chemistry,chemistry,false +PixelRobot,neopaquita.es,Climate change,climate_change,false +PixelRobot,neopaquita.es,Creative Arts,creative_arts,false +danteshango,twit.social,Breaking News,breaking_news,true +jonben,social.spejset.org,Immigrants Rights,immigrants_rights,false +Nyein,newsmast.social,Ukraine Invasion,ukraine_invasion,false +jonben,social.spejset.org,Indigenous Peoples,indigenous_peoples,false +jonben,social.spejset.org,Law & Justice,law_justice,false +jonben,social.spejset.org,LGBTQ+,lgbtq,false +jonben,social.spejset.org,Markets & Finance,markets_finance,false +jonben,social.spejset.org,Mathematics,mathematics,false +jonben,social.spejset.org,Movies,movies,false +jonben,social.spejset.org,Music,music,false +jonben,social.spejset.org,Journalism & Comment,news_comment_data,false +jonben,social.spejset.org,Performing Arts,performing_arts,false +jonben,social.spejset.org,Philosophy,philosophy,false +jonben,social.spejset.org,Photography,photography,false +jonben,social.spejset.org,Physics,physics,false +jonben,social.spejset.org,Politics,politics,false +jonben,social.spejset.org,Poverty & Inequality,poverty_inequality,false +jonben,social.spejset.org,Programming,programming,false +jonben,social.spejset.org,Science,science,false +jonben,social.spejset.org,Social Media,social_media,false +jonben,social.spejset.org,Space,space,false +jonben,social.spejset.org,Technology,technology,false +jonben,social.spejset.org,TV & Radio,tv_radio,false +jonben,social.spejset.org,Ukraine Invasion,ukraine_invasion,false +jonben,social.spejset.org,US Politics,us_politics,false +jonben,social.spejset.org,Visual Arts,visual_arts,false +jonben,social.spejset.org,Weather,weather,false +jonben,social.spejset.org,Women’s Voices,women_voices,false +jonben,social.spejset.org,Workers Rights,workers_rights,false +jonben,social.spejset.org,Social Sciences,social_sciences,true +Brenmar,nrw.social,AI,ai,false +Brenmar,nrw.social,Food & Drink,food_drink,false +kallekn,mastodonsweden.se,Democracy & Human Rights,democracy_human_rights,false +kallekn,mastodonsweden.se,History,history,false +kallekn,mastodonsweden.se,Humanities,humanities,false +kallekn,mastodonsweden.se,Journalism & Comment,news_comment_data,false +kallekn,mastodonsweden.se,Photography,photography,false +kallekn,mastodonsweden.se,Social Media,social_media,false +kallekn,mastodonsweden.se,Social Sciences,social_sciences,false +kallekn,mastodonsweden.se,Ukraine Invasion,ukraine_invasion,false +kallekn,mastodonsweden.se,Breaking News,breaking_news,true +Salexkenyon,newsmast.social,Activism & Civil Rights,activism_civil_rights,false +Salexkenyon,newsmast.social,Breaking News,breaking_news,false +Salexkenyon,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +Salexkenyon,newsmast.social,Environment,environment,false +Salexkenyon,newsmast.social,Government & Policy,government_policy,false +Salexkenyon,newsmast.social,Immigrants Rights,immigrants_rights,false +Salexkenyon,newsmast.social,Journalism & Comment,news_comment_data,false +Salexkenyon,newsmast.social,Philosophy,philosophy,false +Salexkenyon,newsmast.social,Politics,politics,false +Salexkenyon,newsmast.social,Poverty & Inequality,poverty_inequality,false +Salexkenyon,newsmast.social,US Politics,us_politics,false +Salexkenyon,newsmast.social,Women’s Voices,women_voices,false +Salexkenyon,newsmast.social,Climate change,climate_change,true +Brenmar,nrw.social,Nature & Wildlife,nature_wildlife,false +Brenmar,nrw.social,Programming,programming,false +genebean,fosstodon.org,Visual Arts,visual_arts,false +genebean,fosstodon.org,Weather,weather,false +genebean,fosstodon.org,Women’s Voices,women_voices,false +genebean,fosstodon.org,Workers Rights,workers_rights,false +bluememon,sfba.social,Law & Justice,law_justice,false +bluememon,sfba.social,LGBTQ+,lgbtq,false +bluememon,sfba.social,Mathematics,mathematics,false +bluememon,sfba.social,Movies,movies,false +bluememon,sfba.social,Music,music,false +bluememon,sfba.social,Journalism & Comment,news_comment_data,false +bluememon,sfba.social,Performing Arts,performing_arts,false +bluememon,sfba.social,Philosophy,philosophy,false +bluememon,sfba.social,Photography,photography,false +bluememon,sfba.social,Physics,physics,false +bluememon,sfba.social,Politics,politics,false +bluememon,sfba.social,Poverty & Inequality,poverty_inequality,false +bluememon,sfba.social,Programming,programming,false +bluememon,sfba.social,Science,science,false +bluememon,sfba.social,Social Media,social_media,false +bluememon,sfba.social,Social Sciences,social_sciences,false +bluememon,sfba.social,Space,space,false +bluememon,sfba.social,Sport,sport,false +bluememon,sfba.social,Technology,technology,false +bluememon,sfba.social,TV & Radio,tv_radio,false +bluememon,sfba.social,Ukraine Invasion,ukraine_invasion,false +bluememon,sfba.social,US Politics,us_politics,false +bluememon,sfba.social,US Sport,us_sport,false +bluememon,sfba.social,Visual Arts,visual_arts,false +bluememon,sfba.social,Weather,weather,false +bluememon,sfba.social,Women’s Voices,women_voices,false +headword,lingo.lol,Mathematics,mathematics,false +headword,lingo.lol,Social Sciences,social_sciences,false +headword,lingo.lol,Space,space,false +headword,lingo.lol,Technology,technology,false +headword,lingo.lol,Humanities,humanities,true +fp,troet.cafe,Healthcare,healthcare,false +fp,troet.cafe,Politics,politics,false +fp,troet.cafe,Poverty & Inequality,poverty_inequality,false +fp,troet.cafe,Social Sciences,social_sciences,false +fp,troet.cafe,Journalism & Comment,news_comment_data,true +Levicoisch,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false +ueberbildung,bildung.social,Activism & Civil Rights,activism_civil_rights,false +ueberbildung,bildung.social,Books & Literature,books_literature,false +ueberbildung,bildung.social,Democracy & Human Rights,democracy_human_rights,false +ueberbildung,bildung.social,Environment,environment,false +ueberbildung,bildung.social,Gaming,gaming,false +ueberbildung,bildung.social,Humanities,humanities,false +ueberbildung,bildung.social,Movies,movies,false +ueberbildung,bildung.social,Music,music,false +ueberbildung,bildung.social,Technology,technology,false +ueberbildung,bildung.social,Ukraine Invasion,ukraine_invasion,false +ueberbildung,bildung.social,Science,science,true +PixelRobot,neopaquita.es,Democracy & Human Rights,democracy_human_rights,false +PixelRobot,neopaquita.es,Disabled Voices,disabled_voices,false +PixelRobot,neopaquita.es,Energy & Pollution,energy_pollution,false +PixelRobot,neopaquita.es,Engineering,engineering,false +el_chacko_jr,mastodon.social,Humour,humour,true +Brenmar,nrw.social,Travel,travel,false +Brenmar,nrw.social,Social Media,social_media,true +PixelRobot,neopaquita.es,Environment,environment,false +qaqelol,toots.niark.nexus,Programming,programming,true +outer,mas.to,Biology,biology,false +technodad,cunnin.me,Breaking News,breaking_news,false +technodad,cunnin.me,Physics,physics,false +technodad,cunnin.me,Science,science,false +technodad,cunnin.me,Space,space,false +technodad,cunnin.me,Technology,technology,false +technodad,cunnin.me,Weather,weather,true +outer,mas.to,Breaking News,breaking_news,false +ShuaE,newsmast.social,AI,ai,false +ShuaE,newsmast.social,Pets,pets,false +ShuaE,newsmast.social,Programming,programming,false +ShuaE,newsmast.social,Technology,technology,false +ShuaE,newsmast.social,Engineering,engineering,true +outer,mas.to,Chemistry,chemistry,false +jd,mstdn.ca,Biodiversity & Rewilding,biodiversity_rewilding,false +jd,mstdn.ca,Biology,biology,false +jd,mstdn.ca,Democracy & Human Rights,democracy_human_rights,false +jd,mstdn.ca,Energy & Pollution,energy_pollution,false +jd,mstdn.ca,Environment,environment,false +jd,mstdn.ca,History,history,false +jd,mstdn.ca,Humanities,humanities,false +jd,mstdn.ca,Journalism & Comment,news_comment_data,false +jd,mstdn.ca,Science,science,false +jd,mstdn.ca,Social Sciences,social_sciences,false +jd,mstdn.ca,Climate change,climate_change,true +WayneDupreeShow,newsmast.social,Black Voices,black_voices,false +WayneDupreeShow,newsmast.social,Breaking News,breaking_news,false +WayneDupreeShow,newsmast.social,Food & Drink,food_drink,false +WayneDupreeShow,newsmast.social,Government & Policy,government_policy,false +WayneDupreeShow,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false +WayneDupreeShow,newsmast.social,Journalism & Comment,news_comment_data,false +WayneDupreeShow,newsmast.social,Politics,politics,false +WayneDupreeShow,newsmast.social,Social Media,social_media,false +WayneDupreeShow,newsmast.social,TV & Radio,tv_radio,false +WayneDupreeShow,newsmast.social,US Politics,us_politics,true +Levicoisch,newsmast.social,Climate change,climate_change,false +Levicoisch,newsmast.social,Energy & Pollution,energy_pollution,false +Levicoisch,newsmast.social,Environment,environment,false +Levicoisch,newsmast.social,Breaking News,breaking_news,true +qaqelol,toots.niark.nexus,Food & Drink,food_drink,false +qaqelol,toots.niark.nexus,Gaming,gaming,false +qaqelol,toots.niark.nexus,LGBTQ+,lgbtq,false +qaqelol,toots.niark.nexus,Pets,pets,false +qaqelol,toots.niark.nexus,Technology,technology,false +qaqelol,toots.niark.nexus,Visual Arts,visual_arts,false +ericdavis,mastodon.social,AI,ai,false +ericdavis,mastodon.social,Breaking News,breaking_news,false +ericdavis,mastodon.social,Government & Policy,government_policy,false +ericdavis,mastodon.social,Journalism & Comment,news_comment_data,false +ericdavis,mastodon.social,US Politics,us_politics,true +box464,shrimp.box464.social,AI,ai,false +box464,shrimp.box464.social,Creative Arts,creative_arts,false +box464,shrimp.box464.social,Humour,humour,false +box464,shrimp.box464.social,Movies,movies,false +box464,shrimp.box464.social,Music,music,false +box464,shrimp.box464.social,Pets,pets,false +box464,shrimp.box464.social,Programming,programming,false +box464,shrimp.box464.social,Travel,travel,false +box464,shrimp.box464.social,TV & Radio,tv_radio,false +box464,shrimp.box464.social,Visual Arts,visual_arts,false +box464,shrimp.box464.social,Technology,technology,true +juergen,mastodon.de,Breaking News,breaking_news,false +juergen,mastodon.de,Engineering,engineering,false +juergen,mastodon.de,Mathematics,mathematics,false +juergen,mastodon.de,Physics,physics,false +juergen,mastodon.de,Politics,politics,false +juergen,mastodon.de,Science,science,false +juergen,mastodon.de,Space,space,false +juergen,mastodon.de,Technology,technology,false +juergen,mastodon.de,LGBTQ+,lgbtq,true +derzquist,mastodon.social,Architecture & Design,architecture_design,false +derzquist,mastodon.social,Movies,movies,false +derzquist,mastodon.social,Music,music,false +derzquist,mastodon.social,Technology,technology,false +derzquist,mastodon.social,TV & Radio,tv_radio,false +derzquist,mastodon.social,Books & Literature,books_literature,true +masry,toot.community,AI,ai,false +masry,toot.community,Breaking News,breaking_news,false +masry,toot.community,Creative Arts,creative_arts,false +bridgeteam,newsmast.social,Nature & Wildlife,nature_wildlife,false +Helix,toot.community,Books & Literature,books_literature,false +Helix,toot.community,Breaking News,breaking_news,false +Helix,toot.community,History,history,false +Helix,toot.community,Philosophy,philosophy,false +Helix,toot.community,Music,music,true +iatentdead,mendeddrum.org,Academia & Research,academia_research,false +iatentdead,mendeddrum.org,AI,ai,false +iatentdead,mendeddrum.org,Architecture & Design,architecture_design,false +iatentdead,mendeddrum.org,Biodiversity & Rewilding,biodiversity_rewilding,false +iatentdead,mendeddrum.org,Biology,biology,false +bridgeteam,newsmast.social,Journalism & Comment,news_comment_data,false +iatentdead,mendeddrum.org,Breaking News,breaking_news,false +iatentdead,mendeddrum.org,Business,business,false +iatentdead,mendeddrum.org,Climate change,climate_change,false +iatentdead,mendeddrum.org,Creative Arts,creative_arts,false +talksina,mastodon.uno,Activism & Civil Rights,activism_civil_rights,false +talksina,mastodon.uno,AI,ai,false +talksina,mastodon.uno,LGBTQ+,lgbtq,false +talksina,mastodon.uno,Women’s Voices,women_voices,false +talksina,mastodon.uno,Disabled Voices,disabled_voices,true +iatentdead,mendeddrum.org,Democracy & Human Rights,democracy_human_rights,false +iatentdead,mendeddrum.org,Energy & Pollution,energy_pollution,false +iatentdead,mendeddrum.org,Environment,environment,false +iatentdead,mendeddrum.org,Food & Drink,food_drink,false +eana,s.1a23.studio,AI,ai,false +eana,s.1a23.studio,Breaking News,breaking_news,false +eana,s.1a23.studio,Engineering,engineering,false +eana,s.1a23.studio,Puzzles,puzzles,false +eana,s.1a23.studio,Science,science,false +eana,s.1a23.studio,Technology,technology,false +eana,s.1a23.studio,Weather,weather,false +eana,s.1a23.studio,Programming,programming,true +IlCava,mastodon.uno,Academia & Research,academia_research,false +IlCava,mastodon.uno,Academia & Research,academia_research,false +IlCava,mastodon.uno,Activism & Civil Rights,activism_civil_rights,false +IlCava,mastodon.uno,Activism & Civil Rights,activism_civil_rights,false +IlCava,mastodon.uno,AI,ai,false +IlCava,mastodon.uno,AI,ai,false +IlCava,mastodon.uno,Architecture & Design,architecture_design,false +IlCava,mastodon.uno,Architecture & Design,architecture_design,false +IlCava,mastodon.uno,Biology,biology,false +IlCava,mastodon.uno,Black Voices,black_voices,false +IlCava,mastodon.uno,Biology,biology,false +IlCava,mastodon.uno,Books & Literature,books_literature,false +IlCava,mastodon.uno,Black Voices,black_voices,false +IlCava,mastodon.uno,Breaking News,breaking_news,false +IlCava,mastodon.uno,Books & Literature,books_literature,false +IlCava,mastodon.uno,Chemistry,chemistry,false +IlCava,mastodon.uno,Creative Arts,creative_arts,false +IlCava,mastodon.uno,Breaking News,breaking_news,false +IlCava,mastodon.uno,Chemistry,chemistry,false +IlCava,mastodon.uno,Democracy & Human Rights,democracy_human_rights,false +IlCava,mastodon.uno,Creative Arts,creative_arts,false +IlCava,mastodon.uno,Disabled Voices,disabled_voices,false +IlCava,mastodon.uno,Democracy & Human Rights,democracy_human_rights,false +IlCava,mastodon.uno,Engineering,engineering,false +IlCava,mastodon.uno,Food & Drink,food_drink,false +IlCava,mastodon.uno,Disabled Voices,disabled_voices,false +IlCava,mastodon.uno,Football,football,false +IlCava,mastodon.uno,Engineering,engineering,false +IlCava,mastodon.uno,Gaming,gaming,false +IlCava,mastodon.uno,Food & Drink,food_drink,false +IlCava,mastodon.uno,Government & Policy,government_policy,false +IlCava,mastodon.uno,Football,football,false +IlCava,mastodon.uno,Healthcare,healthcare,false +IlCava,mastodon.uno,Gaming,gaming,false +suntorvic,mastodon.social,Music,music,false +suntorvic,mastodon.social,Architecture & Design,architecture_design,false +sebasesrad,paquita.masto.host,History,history,false +sebasesrad,paquita.masto.host,Photography,photography,false +sebasesrad,paquita.masto.host,Science,science,false +sebasesrad,paquita.masto.host,Technology,technology,false +sebasesrad,paquita.masto.host,Breaking News,breaking_news,true +bluememon,sfba.social,Academia & Research,academia_research,false +bluememon,sfba.social,Activism & Civil Rights,activism_civil_rights,false +bluememon,sfba.social,AI,ai,false +bluememon,sfba.social,Architecture & Design,architecture_design,false +bluememon,sfba.social,Biology,biology,false +bluememon,sfba.social,Black Voices,black_voices,false +bluememon,sfba.social,Books & Literature,books_literature,false +bluememon,sfba.social,Breaking News,breaking_news,false +bluememon,sfba.social,Chemistry,chemistry,false +bluememon,sfba.social,Disabled Voices,disabled_voices,false +bluememon,sfba.social,Engineering,engineering,false +bluememon,sfba.social,Football,football,false +bluememon,sfba.social,Gaming,gaming,false +bluememon,sfba.social,Government & Policy,government_policy,false +bluememon,sfba.social,Healthcare,healthcare,false +bluememon,sfba.social,History,history,false +bluememon,sfba.social,Humanities,humanities,false +bluememon,sfba.social,"Hunger, Disease & Water",hunger_disease_water,false +bluememon,sfba.social,Immigrants Rights,immigrants_rights,false +bluememon,sfba.social,Indigenous Peoples,indigenous_peoples,false +bluememon,sfba.social,Democracy & Human Rights,democracy_human_rights,true +gregorykorte,journa.host,Academia & Research,academia_research,false +gregorykorte,journa.host,Breaking News,breaking_news,false +gregorykorte,journa.host,Democracy & Human Rights,democracy_human_rights,false +gregorykorte,journa.host,Government & Policy,government_policy,false +gregorykorte,journa.host,Healthcare,healthcare,false +gregorykorte,journa.host,"Hunger, Disease & Water",hunger_disease_water,false +gregorykorte,journa.host,Law & Justice,law_justice,false +gregorykorte,journa.host,Politics,politics,false +gregorykorte,journa.host,Poverty & Inequality,poverty_inequality,false +gregorykorte,journa.host,Social Media,social_media,false +masry,toot.community,Environment,environment,false +masry,toot.community,Food & Drink,food_drink,false +masry,toot.community,Football,football,false +masry,toot.community,Humour,humour,false +masry,toot.community,Nature & Wildlife,nature_wildlife,false +masry,toot.community,Journalism & Comment,news_comment_data,false +masry,toot.community,Politics,politics,false +masry,toot.community,Programming,programming,false +masry,toot.community,Technology,technology,false +masry,toot.community,Travel,travel,true +iatentdead,mendeddrum.org,Gaming,gaming,false +iatentdead,mendeddrum.org,Government & Policy,government_policy,false +iatentdead,mendeddrum.org,Healthcare,healthcare,false +iatentdead,mendeddrum.org,History,history,false +iatentdead,mendeddrum.org,Humanities,humanities,false +iatentdead,mendeddrum.org,Humour,humour,false +iatentdead,mendeddrum.org,"Hunger, Disease & Water",hunger_disease_water,false +PixelRobot,neopaquita.es,Food & Drink,food_drink,false +PixelRobot,neopaquita.es,Gaming,gaming,false +wsrphoto,sfba.social,Biodiversity & Rewilding,biodiversity_rewilding,false +wsrphoto,sfba.social,Climate change,climate_change,false +wsrphoto,sfba.social,Democracy & Human Rights,democracy_human_rights,false +wsrphoto,sfba.social,Energy & Pollution,energy_pollution,false +wsrphoto,sfba.social,Environment,environment,false +wsrphoto,sfba.social,Law & Justice,law_justice,false +wsrphoto,sfba.social,Politics,politics,false +wsrphoto,sfba.social,US Politics,us_politics,false +wsrphoto,sfba.social,Government & Policy,government_policy,true +PixelRobot,neopaquita.es,Government & Policy,government_policy,false +scharfnado,newsmast.social,Academia & Research,academia_research,false +scharfnado,newsmast.social,Government & Policy,government_policy,false +scharfnado,newsmast.social,Physics,physics,false +scharfnado,newsmast.social,Space,space,false +scharfnado,newsmast.social,Breaking News,breaking_news,true +scharfnado,newsmast.social,Technology,technology,false +scharfnado,newsmast.social,Travel,travel,false +scharfnado,newsmast.social,Energy & Pollution,energy_pollution,false +suntorvic,mastodon.social,Visual Arts,visual_arts,false +arossp,mastodon.social,Academia & Research,academia_research,false +arossp,mastodon.social,Activism & Civil Rights,activism_civil_rights,false +arossp,mastodon.social,Government & Policy,government_policy,false +arossp,mastodon.social,History,history,false +arossp,mastodon.social,Humanities,humanities,false +arossp,mastodon.social,LGBTQ+,lgbtq,false +arossp,mastodon.social,Journalism & Comment,news_comment_data,false +arossp,mastodon.social,Philosophy,philosophy,false +arossp,mastodon.social,Social Sciences,social_sciences,false +arossp,mastodon.social,Technology,technology,false +arossp,mastodon.social,Politics,politics,true +Tms12,newsmast.social,Creative Arts,creative_arts,false +Tms12,newsmast.social,Science,science,false +Tms12,newsmast.social,Visual Arts,visual_arts,false +Tms12,newsmast.social,Performing Arts,performing_arts,true +Tms12,newsmast.social,Markets & Finance,markets_finance,false +Tms12,newsmast.social,Workers Rights,workers_rights,false +gregorykorte,journa.host,Ukraine Invasion,ukraine_invasion,false +gregorykorte,journa.host,US Politics,us_politics,false +gregorykorte,journa.host,Weather,weather,false +gregorykorte,journa.host,Journalism & Comment,news_comment_data,true +twezmyr,101010.pl,AI,ai,false +twezmyr,101010.pl,Breaking News,breaking_news,false +twezmyr,101010.pl,Democracy & Human Rights,democracy_human_rights,false +twezmyr,101010.pl,History,history,false +twezmyr,101010.pl,Humanities,humanities,false +twezmyr,101010.pl,Philosophy,philosophy,false +twezmyr,101010.pl,Politics,politics,false +twezmyr,101010.pl,Social Sciences,social_sciences,false +twezmyr,101010.pl,Space,space,false +twezmyr,101010.pl,Technology,technology,false +twezmyr,101010.pl,Ukraine Invasion,ukraine_invasion,false +twezmyr,101010.pl,Science,science,true +group,newsmast.social,Breaking News,breaking_news,true +ReRockman,wetdry.world,AI,ai,false +ReRockman,wetdry.world,Science,science,false +ReRockman,wetdry.world,Space,space,false +ReRockman,wetdry.world,Technology,technology,false +ReRockman,wetdry.world,Programming,programming,true +OlPatchy2Eyes,ieji.de,Journalism & Comment,news_comment_data,true +SithuBo,newsmast.social,Private Community,private-community,false +kuietk,corteximplant.com,Activism & Civil Rights,activism_civil_rights,false +kuietk,corteximplant.com,Democracy & Human Rights,democracy_human_rights,false +kuietk,corteximplant.com,"Hunger, Disease & Water",hunger_disease_water,false +kuietk,corteximplant.com,Indigenous Peoples,indigenous_peoples,false +kuietk,corteximplant.com,LGBTQ+,lgbtq,false +kuietk,corteximplant.com,Technology,technology,false +kuietk,corteximplant.com,Programming,programming,true +KrackenJack,mas.to,Biology,biology,false +KrackenJack,mas.to,Chemistry,chemistry,false +KrackenJack,mas.to,Engineering,engineering,false +KrackenJack,mas.to,Physics,physics,false +KrackenJack,mas.to,Space,space,false +KrackenJack,mas.to,Science,science,true +srijan,indieweb.social,Engineering,engineering,false +srijan,indieweb.social,Physics,physics,false +srijan,indieweb.social,Programming,programming,false +srijan,indieweb.social,Science,science,false +srijan,indieweb.social,Space,space,false +RebecaM67,newsmast.social,AI,ai,false +RebecaM67,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +RebecaM67,newsmast.social,Government & Policy,government_policy,false +RebecaM67,newsmast.social,History,history,false +RebecaM67,newsmast.social,Humanities,humanities,false +RebecaM67,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false +RebecaM67,newsmast.social,Law & Justice,law_justice,false +RebecaM67,newsmast.social,Philosophy,philosophy,false +RebecaM67,newsmast.social,Politics,politics,false +RebecaM67,newsmast.social,Technology,technology,false +RebecaM67,newsmast.social,Breaking News,breaking_news,true +iatentdead,mendeddrum.org,Law & Justice,law_justice,false +iatentdead,mendeddrum.org,Mathematics,mathematics,false +alternative,uri.life,Visual Arts,visual_arts,false +alternative,uri.life,AI,ai,false +alternative,uri.life,Architecture & Design,architecture_design,false +alternative,uri.life,Books & Literature,books_literature,false +alternative,uri.life,Engineering,engineering,false +alternative,uri.life,Gaming,gaming,false +alternative,uri.life,Movies,movies,false +alternative,uri.life,Music,music,false +alternative,uri.life,Performing Arts,performing_arts,false +alternative,uri.life,Photography,photography,false +alternative,uri.life,Programming,programming,false +alternative,uri.life,TV & Radio,tv_radio,false +alternative,uri.life,Technology,technology,true +iatentdead,mendeddrum.org,Mental Health & Wellbeing,mental_health_wellbeing,false +xxiaobaimic,xxiaobaimic@mastodon.social,Food & Drink,food_drink,true +iatentdead,mendeddrum.org,Movies,movies,false +iatentdead,mendeddrum.org,Music,music,false +iatentdead,mendeddrum.org,Nature & Wildlife,nature_wildlife,false +iatentdead,mendeddrum.org,Journalism & Comment,news_comment_data,false +iatentdead,mendeddrum.org,Pets,pets,false +iatentdead,mendeddrum.org,Philosophy,philosophy,false +iatentdead,mendeddrum.org,Photography,photography,false +dgc,mstdn.social,Breaking News,breaking_news,false +dgc,mstdn.social,Programming,programming,false +dgc,mstdn.social,Science,science,false +dgc,mstdn.social,Space,space,false +dgc,mstdn.social,Technology,technology,true +iatentdead,mendeddrum.org,Physics,physics,false +iatentdead,mendeddrum.org,Politics,politics,false +kamalaharris,newsmast.social,Journalism & Comment,news_comment_data,false +kamalaharris,newsmast.social,Social Media,social_media,false +kamalaharris,newsmast.social,Ukraine Invasion,ukraine_invasion,false +kamalaharris,newsmast.social,Weather,weather,false +kamalaharris,newsmast.social,Breaking News,breaking_news,true +iatentdead,mendeddrum.org,Poverty & Inequality,poverty_inequality,false +iatentdead,mendeddrum.org,Programming,programming,false +iatentdead,mendeddrum.org,Puzzles,puzzles,false +iatentdead,mendeddrum.org,Social Sciences,social_sciences,false +iatentdead,mendeddrum.org,Space,space,false +iatentdead,mendeddrum.org,Technology,technology,false +iatentdead,mendeddrum.org,Travel,travel,false +iatentdead,mendeddrum.org,US Politics,us_politics,false +iatentdead,mendeddrum.org,Visual Arts,visual_arts,false +iatentdead,mendeddrum.org,Weather,weather,false +iatentdead,mendeddrum.org,Women’s Voices,women_voices,false +iatentdead,mendeddrum.org,Workers Rights,workers_rights,false +iatentdead,mendeddrum.org,Books & Literature,books_literature,true +martialjob,toot.io,Activism & Civil Rights,activism_civil_rights,false +martialjob,toot.io,AI,ai,false +martialjob,toot.io,Biodiversity & Rewilding,biodiversity_rewilding,false +martialjob,toot.io,Biology,biology,false +martialjob,toot.io,Books & Literature,books_literature,false +martialjob,toot.io,Chemistry,chemistry,false +martialjob,toot.io,Climate change,climate_change,false +martialjob,toot.io,Democracy & Human Rights,democracy_human_rights,false +martialjob,toot.io,Energy & Pollution,energy_pollution,false +martialjob,toot.io,Engineering,engineering,false +martialjob,toot.io,Environment,environment,false +martialjob,toot.io,Healthcare,healthcare,false +martialjob,toot.io,Humanities,humanities,false +martialjob,toot.io,LGBTQ+,lgbtq,false +martialjob,toot.io,Physics,physics,false +martialjob,toot.io,Politics,politics,false +martialjob,toot.io,Poverty & Inequality,poverty_inequality,false +martialjob,toot.io,Programming,programming,false +martialjob,toot.io,Science,science,false +martialjob,toot.io,Social Sciences,social_sciences,false +FreddieJ,newsmast.social,Private Community,private-community,false +martialjob,toot.io,Space,space,false +martialjob,toot.io,Sport,sport,false +martialjob,toot.io,Technology,technology,false +emsquared,mastodon.social,LGBTQ+,lgbtq,false +martialjob,toot.io,TV & Radio,tv_radio,false +martialjob,toot.io,Academia & Research,academia_research,true +outer,mas.to,Humanities,humanities,false +outer,mas.to,Mathematics,mathematics,false +Serious_Feather,newsmast.social,Movies,movies,false +zoinks,gts.scoobysnack.net,Social Media,social_media,false +quentinnield,mastodonapp.uk,Journalism & Comment,news_comment_data,false +ruslan,indieweb.social,Music,music,true +yethiha_codigo,newsmast.social,Journalism & Comment,news_comment_data,false +yethiha_codigo,newsmast.social,Social Media,social_media,false +yethiha_codigo,newsmast.social,Ukraine Invasion,ukraine_invasion,false +yethiha_codigo,newsmast.social,Weather,weather,false +yethiha_codigo,newsmast.social,Breaking News,breaking_news,true +MML9,mastodon.social,Activism & Civil Rights,activism_civil_rights,false +MML9,mastodon.social,AI,ai,false +MML9,mastodon.social,Architecture & Design,architecture_design,false +MML9,mastodon.social,Black Voices,black_voices,false +MML9,mastodon.social,Books & Literature,books_literature,false +MML9,mastodon.social,Business,business,false +MML9,mastodon.social,Creative Arts,creative_arts,false +MML9,mastodon.social,Disabled Voices,disabled_voices,false +MML9,mastodon.social,Engineering,engineering,false +MML9,mastodon.social,Food & Drink,food_drink,false +MML9,mastodon.social,Gaming,gaming,false +MML9,mastodon.social,Humour,humour,false +MML9,mastodon.social,Immigrants Rights,immigrants_rights,false +MML9,mastodon.social,Indigenous Peoples,indigenous_peoples,false +MML9,mastodon.social,LGBTQ+,lgbtq,false +MML9,mastodon.social,Markets & Finance,markets_finance,false +MML9,mastodon.social,Mental Health & Wellbeing,mental_health_wellbeing,false +MML9,mastodon.social,Movies,movies,false +MML9,mastodon.social,Nature & Wildlife,nature_wildlife,false +MML9,mastodon.social,Performing Arts,performing_arts,false +MML9,mastodon.social,Pets,pets,false +MML9,mastodon.social,Photography,photography,false +MML9,mastodon.social,Programming,programming,false +MML9,mastodon.social,Puzzles,puzzles,false +MML9,mastodon.social,Technology,technology,false +MML9,mastodon.social,Travel,travel,false +MML9,mastodon.social,TV & Radio,tv_radio,false +MML9,mastodon.social,Visual Arts,visual_arts,false +MML9,mastodon.social,Women’s Voices,women_voices,false +MML9,mastodon.social,Workers Rights,workers_rights,false +MML9,mastodon.social,Music,music,true +bridgeteam,newsmast.social,Performing Arts,performing_arts,false +bridgeteam,newsmast.social,Pets,pets,false +bridgeteam,newsmast.social,Philosophy,philosophy,false +bridgeteam,newsmast.social,Photography,photography,false +bridgeteam,newsmast.social,Physics,physics,false +bridgeteam,newsmast.social,Politics,politics,false +bridgeteam,newsmast.social,Puzzles,puzzles,false +bridgeteam,newsmast.social,Science,science,false +timaeus,nrw.social,Biology,biology,false +timaeus,nrw.social,Chemistry,chemistry,false +blindbbq,hachyderm.io,Activism & Civil Rights,activism_civil_rights,false +blindbbq,hachyderm.io,AI,ai,false +blindbbq,hachyderm.io,Biology,biology,false +blindbbq,hachyderm.io,Chemistry,chemistry,false +blindbbq,hachyderm.io,Climate change,climate_change,false +blindbbq,hachyderm.io,Democracy & Human Rights,democracy_human_rights,false +blindbbq,hachyderm.io,Engineering,engineering,false +blindbbq,hachyderm.io,Government & Policy,government_policy,false +blindbbq,hachyderm.io,Mathematics,mathematics,false +blindbbq,hachyderm.io,Journalism & Comment,news_comment_data,false +blindbbq,hachyderm.io,Physics,physics,false +blindbbq,hachyderm.io,Politics,politics,false +blindbbq,hachyderm.io,Science,science,false +blindbbq,hachyderm.io,Space,space,false +blindbbq,hachyderm.io,Technology,technology,false +blindbbq,hachyderm.io,US Politics,us_politics,false +blindbbq,hachyderm.io,Women’s Voices,women_voices,false +blindbbq,hachyderm.io,Programming,programming,true +timaeus,nrw.social,Climate change,climate_change,false +timaeus,nrw.social,Energy & Pollution,energy_pollution,false +timaeus,nrw.social,Environment,environment,false +timaeus,nrw.social,Mathematics,mathematics,false +timaeus,nrw.social,Physics,physics,false +timaeus,nrw.social,Science,science,false +timaeus,nrw.social,Space,space,false +timaeus,nrw.social,Technology,technology,false +timaeus,nrw.social,Biodiversity & Rewilding,biodiversity_rewilding,true +michael,newsmast.social,Private Community,private-community,false +AutisticMumTo3,leftist.network,Activism & Civil Rights,activism_civil_rights,false +AutisticMumTo3,leftist.network,Biodiversity & Rewilding,biodiversity_rewilding,false +AutisticMumTo3,leftist.network,Biology,biology,false +AutisticMumTo3,leftist.network,Chemistry,chemistry,false +AutisticMumTo3,leftist.network,Climate change,climate_change,false +AutisticMumTo3,leftist.network,Democracy & Human Rights,democracy_human_rights,false +AutisticMumTo3,leftist.network,Disabled Voices,disabled_voices,false +AutisticMumTo3,leftist.network,Energy & Pollution,energy_pollution,false +AutisticMumTo3,leftist.network,Engineering,engineering,false +AutisticMumTo3,leftist.network,Environment,environment,false +AutisticMumTo3,leftist.network,Food & Drink,food_drink,false +AutisticMumTo3,leftist.network,Government & Policy,government_policy,false +paulkite,mastodon.social,Academia & Research,academia_research,false +paulkite,mastodon.social,AI,ai,false +paulkite,mastodon.social,Biodiversity & Rewilding,biodiversity_rewilding,false +paulkite,mastodon.social,Biology,biology,false +paulkite,mastodon.social,Breaking News,breaking_news,false +paulkite,mastodon.social,Chemistry,chemistry,false +paulkite,mastodon.social,Climate change,climate_change,false +paulkite,mastodon.social,Democracy & Human Rights,democracy_human_rights,false +paulkite,mastodon.social,Energy & Pollution,energy_pollution,false +paulkite,mastodon.social,Engineering,engineering,false +paulkite,mastodon.social,Environment,environment,false +paulkite,mastodon.social,Government & Policy,government_policy,false +paulkite,mastodon.social,Healthcare,healthcare,false +paulkite,mastodon.social,History,history,false +paulkite,mastodon.social,Humanities,humanities,false +paulkite,mastodon.social,"Hunger, Disease & Water",hunger_disease_water,false +paulkite,mastodon.social,Law & Justice,law_justice,false +paulkite,mastodon.social,Mathematics,mathematics,false +paulkite,mastodon.social,Journalism & Comment,news_comment_data,false +paulkite,mastodon.social,Philosophy,philosophy,false +paulkite,mastodon.social,Physics,physics,false +paulkite,mastodon.social,Politics,politics,false +paulkite,mastodon.social,Poverty & Inequality,poverty_inequality,false +AutisticMumTo3,leftist.network,Healthcare,healthcare,false +paulkite,mastodon.social,Science,science,false +paulkite,mastodon.social,Social Media,social_media,false +paulkite,mastodon.social,Social Sciences,social_sciences,false +paulkite,mastodon.social,Space,space,false +paulkite,mastodon.social,Technology,technology,false +paulkite,mastodon.social,Ukraine Invasion,ukraine_invasion,false +paulkite,mastodon.social,US Politics,us_politics,false +paulkite,mastodon.social,Weather,weather,false +paulkite,mastodon.social,Programming,programming,true +PixelRobot,neopaquita.es,Healthcare,healthcare,false +FreddieJ,newsmast.social,US Politics,us_politics,false +natbas,newsmast.social,Politics,politics,false +ToposInstitute,newsmast.social,Programming,programming,false +ToposInstitute,newsmast.social,Humanities,humanities,false +ToposInstitute,newsmast.social,Social Sciences,social_sciences,false +ToposInstitute,newsmast.social,Philosophy,philosophy,false +PixelRobot,neopaquita.es,History,history,false +Nyein,newsmast.social,Photography,photography,false +kat,is.burntout.org,Biology,biology,false +kat,is.burntout.org,Chemistry,chemistry,false +kat,is.burntout.org,Physics,physics,false +kat,is.burntout.org,Science,science,false +kat,is.burntout.org,Space,space,false +kat,is.burntout.org,Mathematics,mathematics,true +outer,mas.to,Journalism & Comment,news_comment_data,false +outer,mas.to,Philosophy,philosophy,false +outer,mas.to,Physics,physics,false +outer,mas.to,Science,science,false +creatinglake,mastodon.social,AI,ai,false +creatinglake,mastodon.social,Energy & Pollution,energy_pollution,false +creatinglake,mastodon.social,Government & Policy,government_policy,false +creatinglake,mastodon.social,Technology,technology,false +creatinglake,mastodon.social,US Politics,us_politics,false +creatinglake,mastodon.social,Politics,politics,true +outer,mas.to,Social Media,social_media,false +outer,mas.to,Social Sciences,social_sciences,false +outer,mas.to,Space,space,false +outer,mas.to,Ukraine Invasion,ukraine_invasion,false +outer,mas.to,Weather,weather,false +outer,mas.to,History,history,true +srijan,indieweb.social,Technology,technology,false +srijan,indieweb.social,Travel,travel,false +srijan,indieweb.social,Breaking News,breaking_news,true +Loukas,newsmast.social,Activism & Civil Rights,activism_civil_rights,false +Loukas,newsmast.social,Breaking News,breaking_news,false +cutts,social.lol,Football,football,false +cutts,social.lol,Mathematics,mathematics,false +cutts,social.lol,Physics,physics,false +cutts,social.lol,Technology,technology,false +cutts,social.lol,Programming,programming,true +Loukas,newsmast.social,Journalism & Comment,news_comment_data,false +Loukas,newsmast.social,Politics,politics,false +KamalaHarrisWin,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false +KamalaHarrisWin,newsmast.social,Climate change,climate_change,false +KamalaHarrisWin,newsmast.social,Energy & Pollution,energy_pollution,false +KamalaHarrisWin,newsmast.social,Environment,environment,false +KamalaHarrisWin,newsmast.social,Journalism & Comment,news_comment_data,false +KamalaHarrisWin,newsmast.social,Social Media,social_media,false +KamalaHarrisWin,newsmast.social,Ukraine Invasion,ukraine_invasion,false +KamalaHarrisWin,newsmast.social,Weather,weather,false +KamalaHarrisWin,newsmast.social,Breaking News,breaking_news,true +pch,s3th.me,AI,ai,false +pch,s3th.me,Biology,biology,false +pch,s3th.me,Breaking News,breaking_news,false +pch,s3th.me,Business,business,false +pch,s3th.me,Chemistry,chemistry,false +pch,s3th.me,Democracy & Human Rights,democracy_human_rights,false +pch,s3th.me,Engineering,engineering,false +pch,s3th.me,History,history,false +pch,s3th.me,Humanities,humanities,false +pch,s3th.me,Markets & Finance,markets_finance,false +pch,s3th.me,Mathematics,mathematics,false +pch,s3th.me,Journalism & Comment,news_comment_data,false +pch,s3th.me,Philosophy,philosophy,false +pch,s3th.me,Physics,physics,false +pch,s3th.me,Poverty & Inequality,poverty_inequality,false +pch,s3th.me,Programming,programming,false +pch,s3th.me,Science,science,false +pch,s3th.me,Social Media,social_media,false +pch,s3th.me,Social Sciences,social_sciences,false +pch,s3th.me,Space,space,false +aminda,sauna.social,Activism & Civil Rights,activism_civil_rights,false +aminda,sauna.social,AI,ai,false +aminda,sauna.social,Biodiversity & Rewilding,biodiversity_rewilding,false +aminda,sauna.social,Books & Literature,books_literature,false +aminda,sauna.social,Climate change,climate_change,false +aminda,sauna.social,Disabled Voices,disabled_voices,false +aminda,sauna.social,Energy & Pollution,energy_pollution,false +aminda,sauna.social,Engineering,engineering,false +aminda,sauna.social,Environment,environment,false +aminda,sauna.social,Gaming,gaming,false +aminda,sauna.social,Mental Health & Wellbeing,mental_health_wellbeing,false +aminda,sauna.social,Music,music,false +aminda,sauna.social,Nature & Wildlife,nature_wildlife,false +aminda,sauna.social,Pets,pets,false +aminda,sauna.social,Programming,programming,false +aminda,sauna.social,Technology,technology,false +aminda,sauna.social,Travel,travel,false +aminda,sauna.social,Ukraine Invasion,ukraine_invasion,false +aminda,sauna.social,Weather,weather,false +aminda,sauna.social,Women’s Voices,women_voices,false +aminda,sauna.social,Workers Rights,workers_rights,false +aminda,sauna.social,LGBTQ+,lgbtq,true +pch,s3th.me,Ukraine Invasion,ukraine_invasion,false +pch,s3th.me,Weather,weather,false +pch,s3th.me,Workers Rights,workers_rights,false +pch,s3th.me,Technology,technology,true +bridgeteam,newsmast.social,Social Media,social_media,false +Question,newsmast.social,AI,ai,false +Question,newsmast.social,Football,football,false +Question,newsmast.social,Government & Policy,government_policy,false +Question,newsmast.social,Journalism & Comment,news_comment_data,false +Question,newsmast.social,Technology,technology,false +Question,newsmast.social,US Politics,us_politics,false +Question,newsmast.social,Weather,weather,false +Question,newsmast.social,Breaking News,breaking_news,true +Humocefalo,masto.es,Academia & Research,academia_research,false +dmitri,social.coop,Academia & Research,academia_research,false +dmitri,social.coop,Breaking News,breaking_news,false +dmitri,social.coop,Democracy & Human Rights,democracy_human_rights,false +dmitri,social.coop,Engineering,engineering,false +dmitri,social.coop,Government & Policy,government_policy,false +dmitri,social.coop,Healthcare,healthcare,false +dmitri,social.coop,"Hunger, Disease & Water",hunger_disease_water,false +dmitri,social.coop,Law & Justice,law_justice,false +dmitri,social.coop,Politics,politics,false +dmitri,social.coop,Programming,programming,false +dmitri,social.coop,Technology,technology,false +dmitri,social.coop,Ukraine Invasion,ukraine_invasion,false +dmitri,social.coop,Weather,weather,false +dmitri,social.coop,US Politics,us_politics,true +Humocefalo,masto.es,Activism & Civil Rights,activism_civil_rights,false +Humocefalo,masto.es,AI,ai,false +Humocefalo,masto.es,Biodiversity & Rewilding,biodiversity_rewilding,false +Humocefalo,masto.es,Biology,biology,false +Humocefalo,masto.es,Black Voices,black_voices,false +Humocefalo,masto.es,Breaking News,breaking_news,false +Humocefalo,masto.es,Chemistry,chemistry,false +Humocefalo,masto.es,Democracy & Human Rights,democracy_human_rights,false +Draco_WI,mastodon.world,Engineering,engineering,false +Draco_WI,mastodon.world,Physics,physics,false +Draco_WI,mastodon.world,Programming,programming,false +Draco_WI,mastodon.world,Science,science,false +Draco_WI,mastodon.world,Space,space,false +Draco_WI,mastodon.world,Sport,sport,false +Draco_WI,mastodon.world,Technology,technology,false +Draco_WI,mastodon.world,Breaking News,breaking_news,true +Humocefalo,masto.es,Disabled Voices,disabled_voices,false +Humocefalo,masto.es,Environment,environment,false +Humocefalo,masto.es,Humanities,humanities,false +Humocefalo,masto.es,Immigrants Rights,immigrants_rights,false +Humocefalo,masto.es,Indigenous Peoples,indigenous_peoples,false +Humocefalo,masto.es,LGBTQ+,lgbtq,false +Humocefalo,masto.es,Mathematics,mathematics,false +Humocefalo,masto.es,Philosophy,philosophy,false +toaskoas,sueden.social,AI,ai,false +toaskoas,sueden.social,Breaking News,breaking_news,false +toaskoas,sueden.social,Engineering,engineering,false +toaskoas,sueden.social,Journalism & Comment,news_comment_data,false +toaskoas,sueden.social,Poverty & Inequality,poverty_inequality,false +toaskoas,sueden.social,Programming,programming,false +toaskoas,sueden.social,Social Media,social_media,false +toaskoas,sueden.social,Technology,technology,true +Humocefalo,masto.es,Photography,photography,false +Humocefalo,masto.es,Physics,physics,false +Humocefalo,masto.es,Science,science,false +Humocefalo,masto.es,Visual Arts,visual_arts,false +lawyerjsd,mastodon.social,Academia & Research,academia_research,false +lawyerjsd,mastodon.social,Biology,biology,false +lawyerjsd,mastodon.social,Chemistry,chemistry,false +lawyerjsd,mastodon.social,Government & Policy,government_policy,false +cbn_photography,cbn_photography@stranger.social,Academia & Research,academia_research,false +cbn_photography,cbn_photography@stranger.social,AI,ai,false +cbn_photography,cbn_photography@stranger.social,Breaking News,breaking_news,false +cbn_photography,cbn_photography@stranger.social,Democracy & Human Rights,democracy_human_rights,false +cbn_photography,cbn_photography@stranger.social,Engineering,engineering,false +cbn_photography,cbn_photography@stranger.social,Government & Policy,government_policy,false +cbn_photography,cbn_photography@stranger.social,Mathematics,mathematics,false +cbn_photography,cbn_photography@stranger.social,Journalism & Comment,news_comment_data,false +cbn_photography,cbn_photography@stranger.social,Physics,physics,false +cbn_photography,cbn_photography@stranger.social,Politics,politics,false +cbn_photography,cbn_photography@stranger.social,Science,science,false +cbn_photography,cbn_photography@stranger.social,Space,space,false +cbn_photography,cbn_photography@stranger.social,Technology,technology,true +tiddings,mastodon.social,Journalism & Comment,news_comment_data,false +tiddings,mastodon.social,Social Media,social_media,false +tiddings,mastodon.social,Ukraine Invasion,ukraine_invasion,false +tiddings,mastodon.social,Weather,weather,false +tiddings,mastodon.social,Breaking News,breaking_news,true +jankjon,newsmast.social,Breaking News,breaking_news,false +jankjon,newsmast.social,Climate change,climate_change,false +jankjon,newsmast.social,Energy & Pollution,energy_pollution,false +jankjon,newsmast.social,Environment,environment,false +jankjon,newsmast.social,Journalism & Comment,news_comment_data,false +jankjon,newsmast.social,Social Media,social_media,false +jankjon,newsmast.social,Ukraine Invasion,ukraine_invasion,false +jankjon,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,true +julietchen,mastodon.world,Biodiversity & Rewilding,biodiversity_rewilding,false +julietchen,mastodon.world,Climate change,climate_change,false +julietchen,mastodon.world,Democracy & Human Rights,democracy_human_rights,false +julietchen,mastodon.world,Energy & Pollution,energy_pollution,false +julietchen,mastodon.world,Environment,environment,true +julietchen,mastodon.world,Social Media,social_media,false +julietchen,mastodon.world,Breaking News,breaking_news,false +julietchen,mastodon.world,Government & Policy,government_policy,false +julietchen,mastodon.world,Politics,politics,false +julietchen,mastodon.world,AI,ai,false +julietchen,mastodon.world,Technology,technology,false +bridgeteam,newsmast.social,Social Sciences,social_sciences,false +bridgeteam,newsmast.social,Space,space,false +bridgeteam,newsmast.social,Travel,travel,false +bridgeteam,newsmast.social,TV & Radio,tv_radio,false +lawyerjsd,mastodon.social,Healthcare,healthcare,false +lawyerjsd,mastodon.social,Law & Justice,law_justice,false +lawyerjsd,mastodon.social,Mathematics,mathematics,false +lawyerjsd,mastodon.social,Physics,physics,false +lawyerjsd,mastodon.social,Politics,politics,false +lawyerjsd,mastodon.social,Science,science,false +lawyerjsd,mastodon.social,Space,space,false +lawyerjsd,mastodon.social,US Politics,us_politics,false +lawyerjsd,mastodon.social,US Sport,us_sport,false +lawyerjsd,mastodon.social,Breaking News,breaking_news,true +bridgeteam,newsmast.social,Ukraine Invasion,ukraine_invasion,false +bridgeteam,newsmast.social,US Politics,us_politics,false +Loukas,newsmast.social,Government & Policy,government_policy,true +belpatca,techhub.social,Energy & Pollution,energy_pollution,true +bridgeteam,newsmast.social,Visual Arts,visual_arts,false +bridgeteam,newsmast.social,Weather,weather,false +paingpyaethu,mstdn.social,Weather,weather,false +paingpyaethu,mstdn.social,Football,football,true +bridgeteam,newsmast.social,Books & Literature,books_literature,true +PixelRobot,neopaquita.es,Humanities,humanities,false +AutisticMumTo3,leftist.network,History,history,false +AutisticMumTo3,leftist.network,Humanities,humanities,false +AutisticMumTo3,leftist.network,"Hunger, Disease & Water",hunger_disease_water,false +AutisticMumTo3,leftist.network,Immigrants Rights,immigrants_rights,false +AutisticMumTo3,leftist.network,Indigenous Peoples,indigenous_peoples,false +AutisticMumTo3,leftist.network,Law & Justice,law_justice,false +AutisticMumTo3,leftist.network,LGBTQ+,lgbtq,false +AutisticMumTo3,leftist.network,Mathematics,mathematics,false +AutisticMumTo3,leftist.network,Mental Health & Wellbeing,mental_health_wellbeing,false +AutisticMumTo3,leftist.network,Nature & Wildlife,nature_wildlife,false +AutisticMumTo3,leftist.network,Journalism & Comment,news_comment_data,false +AutisticMumTo3,leftist.network,Pets,pets,false +AutisticMumTo3,leftist.network,Physics,physics,false +AutisticMumTo3,leftist.network,Politics,politics,false +AutisticMumTo3,leftist.network,Poverty & Inequality,poverty_inequality,false +AutisticMumTo3,leftist.network,Science,science,false +AutisticMumTo3,leftist.network,Social Media,social_media,false +AutisticMumTo3,leftist.network,Social Sciences,social_sciences,false +AutisticMumTo3,leftist.network,Space,space,false +AutisticMumTo3,leftist.network,Technology,technology,false +AutisticMumTo3,leftist.network,Ukraine Invasion,ukraine_invasion,false +AutisticMumTo3,leftist.network,US Politics,us_politics,false +AutisticMumTo3,leftist.network,Weather,weather,false +AutisticMumTo3,leftist.network,Women’s Voices,women_voices,false +AutisticMumTo3,leftist.network,Workers Rights,workers_rights,false +AutisticMumTo3,leftist.network,Breaking News,breaking_news,true +GuyDudeman,beige.party,Immigrants Rights,immigrants_rights,false +emsquared,mastodon.social,AI,ai,false +emsquared,mastodon.social,Architecture & Design,architecture_design,false +emsquared,mastodon.social,Energy & Pollution,energy_pollution,false +emsquared,mastodon.social,Environment,environment,false +emsquared,mastodon.social,Movies,movies,false +emsquared,mastodon.social,Music,music,false +emsquared,mastodon.social,Performing Arts,performing_arts,false +emsquared,mastodon.social,Philosophy,philosophy,false +emsquared,mastodon.social,Technology,technology,false +emsquared,mastodon.social,TV & Radio,tv_radio,false +emsquared,mastodon.social,Visual Arts,visual_arts,false +GuyDudeman,beige.party,Law & Justice,law_justice,false +GuyDudeman,beige.party,Mental Health & Wellbeing,mental_health_wellbeing,false +GuyDudeman,beige.party,Movies,movies,false +GuyDudeman,beige.party,Music,music,false +GuyDudeman,beige.party,Nature & Wildlife,nature_wildlife,false +GuyDudeman,beige.party,Performing Arts,performing_arts,false +GuyDudeman,beige.party,Philosophy,philosophy,false +GuyDudeman,beige.party,Politics,politics,false +smootnyclown,pol.social,Academia & Research,academia_research,false +smootnyclown,pol.social,AI,ai,false +smootnyclown,pol.social,Architecture & Design,architecture_design,false +smootnyclown,pol.social,Biodiversity & Rewilding,biodiversity_rewilding,false +smootnyclown,pol.social,Biology,biology,false +smootnyclown,pol.social,Books & Literature,books_literature,false +smootnyclown,pol.social,Chemistry,chemistry,false +smootnyclown,pol.social,Climate change,climate_change,false +smootnyclown,pol.social,Democracy & Human Rights,democracy_human_rights,false +smootnyclown,pol.social,Energy & Pollution,energy_pollution,false +smootnyclown,pol.social,Engineering,engineering,false +smootnyclown,pol.social,Environment,environment,false +smootnyclown,pol.social,Gaming,gaming,false +smootnyclown,pol.social,Breaking News,breaking_news,true +GuyDudeman,beige.party,Poverty & Inequality,poverty_inequality,false +emsquared,mastodon.social,Photography,photography,true +GuyDudeman,beige.party,Science,science,false +GuyDudeman,beige.party,Social Sciences,social_sciences,false +GuyDudeman,beige.party,Technology,technology,false +GuyDudeman,beige.party,Travel,travel,false +GuyDudeman,beige.party,TV & Radio,tv_radio,false +GuyDudeman,beige.party,US Politics,us_politics,false +GuyDudeman,beige.party,US Sport,us_sport,false +GuyDudeman,beige.party,Visual Arts,visual_arts,false +GuyDudeman,beige.party,Workers Rights,workers_rights,false +AlexiaPonchet,newsmast.social,History,history,false +AlexiaPonchet,newsmast.social,Movies,movies,false +AlexiaPonchet,newsmast.social,Business,business,true +bbdjgfhjhhg,newsmast.social,Technology,technology,false +bbdjgfhjhhg,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +PixelRobot,neopaquita.es,Humour,humour,false +exahamza,mastodon.social,Gaming,gaming,false +exahamza,mastodon.social,Movies,movies,false +exahamza,mastodon.social,Music,music,false +exahamza,mastodon.social,Technology,technology,false +exahamza,mastodon.social,Football,football,true +vlp00,newsmast.social,Weather,weather,false +vlp00,newsmast.social,AI,ai,true +Petinder,newsmast.social,Environment,environment,false +Petinder,newsmast.social,Humanities,humanities,false +Petinder,newsmast.social,Journalism & Comment,news_comment_data,false +Petinder,newsmast.social,Social Media,social_media,false +stevetheboxer,c.im,Biology,biology,false +stevetheboxer,c.im,Breaking News,breaking_news,false +stevetheboxer,c.im,Chemistry,chemistry,false +stevetheboxer,c.im,Climate change,climate_change,false +stevetheboxer,c.im,Engineering,engineering,false +stevetheboxer,c.im,Environment,environment,false +stevetheboxer,c.im,Mathematics,mathematics,false +stevetheboxer,c.im,Physics,physics,false +stevetheboxer,c.im,Programming,programming,false +stevetheboxer,c.im,Science,science,false +stevetheboxer,c.im,Social Media,social_media,false +stevetheboxer,c.im,Space,space,false +stevetheboxer,c.im,Sport,sport,false +stevetheboxer,c.im,US Sport,us_sport,false +stevetheboxer,c.im,Weather,weather,false +stevetheboxer,c.im,AI,ai,true +Petinder,newsmast.social,Social Sciences,social_sciences,true +iqruds,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false +iqruds,newsmast.social,Breaking News,breaking_news,false +iqruds,newsmast.social,Creative Arts,creative_arts,false +iqruds,newsmast.social,Environment,environment,false +iqruds,newsmast.social,Food & Drink,food_drink,false +iqruds,newsmast.social,Humour,humour,false +iqruds,newsmast.social,Journalism & Comment,news_comment_data,false +iqruds,newsmast.social,Social Media,social_media,false +iqruds,newsmast.social,Sport,sport,false +iqruds,newsmast.social,Travel,travel,false +iqruds,newsmast.social,Nature & Wildlife,nature_wildlife,true +a4r,mas.to,Democracy & Human Rights,democracy_human_rights,false +a4r,mas.to,Journalism & Comment,news_comment_data,false +a4r,mas.to,Programming,programming,false +daniele_Hesse,mstdn.party,Academia & Research,academia_research,false +blkdevcon,Mastodon.online,Activism & Civil Rights,activism_civil_rights,false +mpmilestogo,cupoftea.social,Books & Literature,books_literature,false +mpmilestogo,cupoftea.social,Food & Drink,food_drink,false +mpmilestogo,cupoftea.social,History,history,false +mpmilestogo,cupoftea.social,Humanities,humanities,false +mpmilestogo,cupoftea.social,Mental Health & Wellbeing,mental_health_wellbeing,false +mpmilestogo,cupoftea.social,Photography,photography,false +mpmilestogo,cupoftea.social,Social Media,social_media,false +mpmilestogo,cupoftea.social,Social Sciences,social_sciences,false +mpmilestogo,cupoftea.social,Technology,technology,false +mpmilestogo,cupoftea.social,Travel,travel,false +mpmilestogo,cupoftea.social,Breaking News,breaking_news,true +hobybrenner,mastodon.social,Food & Drink,food_drink,false +hobybrenner,mastodon.social,Humour,humour,false +hobybrenner,mastodon.social,Journalism & Comment,news_comment_data,false +hobybrenner,mastodon.social,Social Media,social_media,false +hobybrenner,mastodon.social,Technology,technology,false +hobybrenner,mastodon.social,Weather,weather,false +hobybrenner,mastodon.social,Breaking News,breaking_news,true +FreddieJ,newsmast.social,TV & Radio,tv_radio,false +meatlotion,mas.erb.pw,Mathematics,mathematics,false +meatlotion,mas.erb.pw,Physics,physics,false +meatlotion,mas.erb.pw,Science,science,false +meatlotion,mas.erb.pw,Technology,technology,false +meatlotion,mas.erb.pw,Programming,programming,true +YNDA,newsmast.social,Architecture & Design,architecture_design,false +YNDA,newsmast.social,Books & Literature,books_literature,false +YNDA,newsmast.social,Creative Arts,creative_arts,false +YNDA,newsmast.social,Food & Drink,food_drink,false +YNDA,newsmast.social,Gaming,gaming,false +YNDA,newsmast.social,Humour,humour,false +YNDA,newsmast.social,Markets & Finance,markets_finance,false +YNDA,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false +YNDA,newsmast.social,Movies,movies,false +YNDA,newsmast.social,Music,music,false +kerkko,mas.to,AI,ai,false +kerkko,mas.to,Business,business,false +kerkko,mas.to,Democracy & Human Rights,democracy_human_rights,false +kerkko,mas.to,Government & Policy,government_policy,false +kerkko,mas.to,Markets & Finance,markets_finance,false +kerkko,mas.to,Journalism & Comment,news_comment_data,false +kerkko,mas.to,Politics,politics,false +kerkko,mas.to,Social Media,social_media,false +kerkko,mas.to,Technology,technology,false +kerkko,mas.to,Ukraine Invasion,ukraine_invasion,false +kerkko,mas.to,US Politics,us_politics,false +kerkko,mas.to,Workers Rights,workers_rights,false +kerkko,mas.to,Breaking News,breaking_news,true +bpingry,social.vivaldi.net,Activism & Civil Rights,activism_civil_rights,false +bpingry,social.vivaldi.net,Biodiversity & Rewilding,biodiversity_rewilding,false +bpingry,social.vivaldi.net,Black Voices,black_voices,false +bpingry,social.vivaldi.net,Books & Literature,books_literature,false +bpingry,social.vivaldi.net,Breaking News,breaking_news,false +bpingry,social.vivaldi.net,Chemistry,chemistry,false +bpingry,social.vivaldi.net,Democracy & Human Rights,democracy_human_rights,false +bpingry,social.vivaldi.net,Energy & Pollution,energy_pollution,false +bpingry,social.vivaldi.net,Environment,environment,false +bpingry,social.vivaldi.net,Government & Policy,government_policy,false +bpingry,social.vivaldi.net,Immigrants Rights,immigrants_rights,false +bpingry,social.vivaldi.net,Indigenous Peoples,indigenous_peoples,false +bpingry,social.vivaldi.net,Law & Justice,law_justice,false +bpingry,social.vivaldi.net,LGBTQ+,lgbtq,false +bpingry,social.vivaldi.net,Music,music,false +bpingry,social.vivaldi.net,Performing Arts,performing_arts,false +bpingry,social.vivaldi.net,Physics,physics,false +bpingry,social.vivaldi.net,Programming,programming,false +bpingry,social.vivaldi.net,Science,science,false +bpingry,social.vivaldi.net,Space,space,false +bpingry,social.vivaldi.net,Technology,technology,false +bpingry,social.vivaldi.net,Ukraine Invasion,ukraine_invasion,false +bpingry,social.vivaldi.net,US Politics,us_politics,false +bpingry,social.vivaldi.net,Weather,weather,false +bpingry,social.vivaldi.net,Women’s Voices,women_voices,false +bpingry,social.vivaldi.net,Gaming,gaming,true +Paulywood,mstdn.party,Books & Literature,books_literature,false +Paulywood,mstdn.party,Food & Drink,food_drink,false +Paulywood,mstdn.party,Gaming,gaming,false +Paulywood,mstdn.party,Humour,humour,false +Paulywood,mstdn.party,Movies,movies,false +Paulywood,mstdn.party,Music,music,false +Paulywood,mstdn.party,Puzzles,puzzles,false +Paulywood,mstdn.party,Science,science,false +Paulywood,mstdn.party,Social Media,social_media,false +Paulywood,mstdn.party,Space,space,false +Paulywood,mstdn.party,Technology,technology,false +Paulywood,mstdn.party,Breaking News,breaking_news,true +GafferMan,universeodon.com,Breaking News,breaking_news,false +GafferMan,universeodon.com,Climate change,climate_change,false +GafferMan,universeodon.com,Energy & Pollution,energy_pollution,false +GafferMan,universeodon.com,Engineering,engineering,false +GafferMan,universeodon.com,Mathematics,mathematics,false +GafferMan,universeodon.com,Journalism & Comment,news_comment_data,false +GafferMan,universeodon.com,Physics,physics,false +GafferMan,universeodon.com,Programming,programming,false +GafferMan,universeodon.com,Science,science,false +GafferMan,universeodon.com,Space,space,false +GafferMan,universeodon.com,Technology,technology,true +Mgzallp,mastodon.social,Journalism & Comment,news_comment_data,false +Mgzallp,mastodon.social,Social Media,social_media,false +Mgzallp,mastodon.social,Ukraine Invasion,ukraine_invasion,false +Mgzallp,mastodon.social,Weather,weather,false +Mgzallp,mastodon.social,Breaking News,breaking_news,true +blkdevcon,Mastodon.online,AI,ai,false +kevindreher,mastodon.design,Breaking News,breaking_news,false +kevindreher,mastodon.design,Creative Arts,creative_arts,false +kevindreher,mastodon.design,Gaming,gaming,false +kevindreher,mastodon.design,Movies,movies,false +kevindreher,mastodon.design,Photography,photography,false +kevindreher,mastodon.design,Politics,politics,false +kevindreher,mastodon.design,Sport,sport,false +kevindreher,mastodon.design,Technology,technology,false +kevindreher,mastodon.design,Travel,travel,false +kevindreher,mastodon.design,Visual Arts,visual_arts,false +kevindreher,mastodon.design,Architecture & Design,architecture_design,true +PixelRobot,neopaquita.es,"Hunger, Disease & Water",hunger_disease_water,false +blkdevcon,Mastodon.online,Engineering,engineering,false +blkdevcon,Mastodon.online,Government & Policy,government_policy,false +kirukarki2,newsmast.social,Private Community,private-community,false +blkdevcon,Mastodon.online,Law & Justice,law_justice,false +johnglass,ohai.social,Democracy & Human Rights,democracy_human_rights,false +johnglass,ohai.social,Gaming,gaming,false +johnglass,ohai.social,Humanities,humanities,false +johnglass,ohai.social,Sport,sport,false +johnglass,ohai.social,Music,music,true +daniele_Hesse,mstdn.party,Breaking News,breaking_news,false +daniele_Hesse,mstdn.party,Government & Policy,government_policy,false +daniele_Hesse,mstdn.party,Healthcare,healthcare,false +daniele_Hesse,mstdn.party,Law & Justice,law_justice,false +hello_buckers,mastodonapp.uk,AI,ai,false +daniele_Hesse,mstdn.party,Journalism & Comment,news_comment_data,false +daniele_Hesse,mstdn.party,Politics,politics,false +daniele_Hesse,mstdn.party,Ukraine Invasion,ukraine_invasion,false +daniele_Hesse,mstdn.party,US Politics,us_politics,false +hello_buckers,mastodonapp.uk,Politics,politics,false +hello_buckers,mastodonapp.uk,Climate change,climate_change,false +hello_buckers,mastodonapp.uk,Science,science,false +hello_buckers,mastodonapp.uk,Gaming,gaming,false +hello_buckers,mastodonapp.uk,Movies,movies,false +hello_buckers,mastodonapp.uk,Humour,humour,false +daniele_Hesse,mstdn.party,Social Media,social_media,true +hello_buckers,mastodonapp.uk,Weather,weather,false +hello_buckers,mastodonapp.uk,Technology,technology,true +valeriadepaiva,newsmast.social,AI,ai,false +valeriadepaiva,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false +valeriadepaiva,newsmast.social,Poverty & Inequality,poverty_inequality,false +valeriadepaiva,newsmast.social,Programming,programming,false +valeriadepaiva,newsmast.social,Mathematics,mathematics,true +knechtomat,chaos.social,Biodiversity & Rewilding,biodiversity_rewilding,false +knechtomat,chaos.social,Biology,biology,false +knechtomat,chaos.social,Chemistry,chemistry,false +knechtomat,chaos.social,Climate change,climate_change,false +knechtomat,chaos.social,Democracy & Human Rights,democracy_human_rights,false +knechtomat,chaos.social,Energy & Pollution,energy_pollution,false +knechtomat,chaos.social,Environment,environment,false +knechtomat,chaos.social,Government & Policy,government_policy,false +knechtomat,chaos.social,Healthcare,healthcare,false +knechtomat,chaos.social,"Hunger, Disease & Water",hunger_disease_water,false +knechtomat,chaos.social,Law & Justice,law_justice,false +knechtomat,chaos.social,Mathematics,mathematics,false +knechtomat,chaos.social,Physics,physics,false +knechtomat,chaos.social,Politics,politics,false +knechtomat,chaos.social,Poverty & Inequality,poverty_inequality,false +knechtomat,chaos.social,Science,science,false +knechtomat,chaos.social,Space,space,false +knechtomat,chaos.social,US Politics,us_politics,false +knechtomat,chaos.social,Academia & Research,academia_research,true +Frode77,mastodon.social,Breaking News,breaking_news,false +Frode77,mastodon.social,Football,football,false +Frode77,mastodon.social,Social Media,social_media,false +Frode77,mastodon.social,US Sport,us_sport,false +Frode77,mastodon.social,Sport,sport,true +orgaknown,mastodon.social,Biology,biology,false +orgaknown,mastodon.social,Breaking News,breaking_news,false +orgaknown,mastodon.social,Chemistry,chemistry,false +orgaknown,mastodon.social,Physics,physics,false +orgaknown,mastodon.social,Science,science,false +orgaknown,mastodon.social,Technology,technology,true +FTWynn,fosstodon.org,AI,ai,false +FTWynn,fosstodon.org,Breaking News,breaking_news,false +FTWynn,fosstodon.org,Business,business,false +FTWynn,fosstodon.org,Government & Policy,government_policy,false +FTWynn,fosstodon.org,Journalism & Comment,news_comment_data,false +FTWynn,fosstodon.org,US Politics,us_politics,false +FTWynn,fosstodon.org,Technology,technology,true +nia,fadingstar.net,AI,ai,false +nia,fadingstar.net,Breaking News,breaking_news,false +nia,fadingstar.net,Engineering,engineering,false +nia,fadingstar.net,LGBTQ+,lgbtq,false +nia,fadingstar.net,Journalism & Comment,news_comment_data,false +nia,fadingstar.net,Programming,programming,false +nia,fadingstar.net,Social Media,social_media,false +nia,fadingstar.net,Technology,technology,true +prapa,newsmast.social,Biology,biology,false +prapa,newsmast.social,Breaking News,breaking_news,false +prapa,newsmast.social,Chemistry,chemistry,false +prapa,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +prapa,newsmast.social,Engineering,engineering,false +prapa,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false +prapa,newsmast.social,Mathematics,mathematics,false +prapa,newsmast.social,Physics,physics,false +prapa,newsmast.social,Poverty & Inequality,poverty_inequality,false +prapa,newsmast.social,Programming,programming,false +prapa,newsmast.social,Science,science,false +prapa,newsmast.social,Space,space,false +prapa,newsmast.social,Technology,technology,false +prapa,newsmast.social,AI,ai,true +blkdevcon,Mastodon.online,LGBTQ+,lgbtq,false +blkdevcon,Mastodon.online,Programming,programming,false +blkdevcon,Mastodon.online,Social Media,social_media,false +Humocefalo,masto.es,Women’s Voices,women_voices,true +blkdevcon,Mastodon.online,Technology,technology,false +jnzd,mastodon.social,Breaking News,breaking_news,false +jnzd,mastodon.social,Gaming,gaming,false +jnzd,mastodon.social,Politics,politics,false +jnzd,mastodon.social,Ukraine Invasion,ukraine_invasion,false +jnzd,mastodon.social,US Politics,us_politics,false +jnzd,mastodon.social,Programming,programming,true +shoq,mastodon.social,Activism & Civil Rights,activism_civil_rights,false +shoq,mastodon.social,Activism & Civil Rights,activism_civil_rights,false +shoq,mastodon.social,Breaking News,breaking_news,false +shoq,mastodon.social,Government & Policy,government_policy,false +shoq,mastodon.social,Breaking News,breaking_news,false +shoq,mastodon.social,Journalism & Comment,news_comment_data,false +shoq,mastodon.social,Government & Policy,government_policy,false +shoq,mastodon.social,Technology,technology,false +shoq,mastodon.social,Journalism & Comment,news_comment_data,false +shoq,mastodon.social,Technology,technology,false +shoq,mastodon.social,US Politics,us_politics,false +shoq,mastodon.social,US Politics,us_politics,true +freelix,layer8.space,Biodiversity & Rewilding,biodiversity_rewilding,false +freelix,layer8.space,Democracy & Human Rights,democracy_human_rights,false +freelix,layer8.space,Environment,environment,false +freelix,layer8.space,Football,football,false +freelix,layer8.space,Programming,programming,false +freelix,layer8.space,Energy & Pollution,energy_pollution,true +michael,newsmast.social,Visual Arts,visual_arts,false +michael,newsmast.social,Women’s Voices,women_voices,false +michael,newsmast.social,Academia & Research,academia_research,false +michael,newsmast.social,Activism & Civil Rights,activism_civil_rights,false +michael,newsmast.social,Architecture & Design,architecture_design,false +michael,newsmast.social,Books & Literature,books_literature,false +michael,newsmast.social,Climate change,climate_change,false +michael,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +michael,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false +michael,newsmast.social,Indigenous Peoples,indigenous_peoples,false +michael,newsmast.social,Music,music,false +michael,newsmast.social,Nature & Wildlife,nature_wildlife,false +michael,newsmast.social,Journalism & Comment,news_comment_data,false +michael,newsmast.social,Photography,photography,false +michael,newsmast.social,Politics,politics,false +michael,newsmast.social,Poverty & Inequality,poverty_inequality,false +michael,newsmast.social,Space,space,false +michael,newsmast.social,US Politics,us_politics,false +michael,newsmast.social,Visual Arts,visual_arts,false +michael,newsmast.social,Women’s Voices,women_voices,false +michael,newsmast.social,Social Media,social_media,true +hanubeki,social.vivaldi.net,Music,music,false +hanubeki,social.vivaldi.net,Photography,photography,false +hanubeki,social.vivaldi.net,Social Media,social_media,false +DemocracyAlarm,newsmast.social,Activism & Civil Rights,activism_civil_rights,false +DemocracyAlarm,newsmast.social,Breaking News,breaking_news,false +hanubeki,social.vivaldi.net,Gaming,gaming,false +hanubeki,social.vivaldi.net,Technology,technology,true +DemocracyAlarm,newsmast.social,Government & Policy,government_policy,false +DemocracyAlarm,newsmast.social,Law & Justice,law_justice,false +DemocracyAlarm,newsmast.social,Social Media,social_media,false +DemocracyAlarm,newsmast.social,US Politics,us_politics,false +DemocracyAlarm,newsmast.social,Journalism & Comment,news_comment_data,true +tom2022,newsmast.social,Black Voices,black_voices,false +tom2022,newsmast.social,Indigenous Peoples,indigenous_peoples,false +tom2022,newsmast.social,Nature & Wildlife,nature_wildlife,false +tom2022,newsmast.social,Social Media,social_media,false +tom2022,newsmast.social,LGBTQ+,lgbtq,true +Serious_Feather,newsmast.social,Music,music,false +Serious_Feather,newsmast.social,Performing Arts,performing_arts,false +democracyalarm,mastodon.social,Academia & Research,academia_research,false +democracyalarm,mastodon.social,Democracy & Human Rights,democracy_human_rights,false +democracyalarm,mastodon.social,Government & Policy,government_policy,false +democracyalarm,mastodon.social,Healthcare,healthcare,false +democracyalarm,mastodon.social,"Hunger, Disease & Water",hunger_disease_water,false +democracyalarm,mastodon.social,Law & Justice,law_justice,false +democracyalarm,mastodon.social,Journalism & Comment,news_comment_data,false +democracyalarm,mastodon.social,Politics,politics,false +democracyalarm,mastodon.social,Poverty & Inequality,poverty_inequality,false +democracyalarm,mastodon.social,Social Media,social_media,false +democracyalarm,mastodon.social,Ukraine Invasion,ukraine_invasion,false +democracyalarm,mastodon.social,US Politics,us_politics,false +democracyalarm,mastodon.social,Weather,weather,false +democracyalarm,mastodon.social,Breaking News,breaking_news,true +zoinks,gts.scoobysnack.net,Humour,humour,false +zoinks,gts.scoobysnack.net,Pets,pets,false +quentinnield,mastodonapp.uk,LGBTQ+,lgbtq,false +quentinnield,mastodonapp.uk,Business,business,false +kleinheld,pixelig.social,Football,football,false +kleinheld,pixelig.social,Politics,politics,false +kleinheld,pixelig.social,Sport,sport,false +kleinheld,pixelig.social,Technology,technology,false +kleinheld,pixelig.social,Breaking News,breaking_news,true +paing89,newsmast.social,Journalism & Comment,news_comment_data,false +paing89,newsmast.social,Social Media,social_media,false +paing89,newsmast.social,Technology,technology,false +paing89,newsmast.social,Ukraine Invasion,ukraine_invasion,false +paing89,newsmast.social,Weather,weather,false +paing89,newsmast.social,Breaking News,breaking_news,true +mbrailer,mstdn.social,Climate change,climate_change,false +mbrailer,mstdn.social,Humour,humour,false +mbrailer,mstdn.social,Pets,pets,false +mbrailer,mstdn.social,US Politics,us_politics,false +blkdevcon,Mastodon.online,US Politics,us_politics,false +blkdevcon,Mastodon.online,Breaking News,breaking_news,true +PixelRobot,neopaquita.es,Immigrants Rights,immigrants_rights,false +jadejitsu,mastodon.social,Academia & Research,academia_research,false +jadejitsu,mastodon.social,Activism & Civil Rights,activism_civil_rights,false +jadejitsu,mastodon.social,AI,ai,false +jadejitsu,mastodon.social,Architecture & Design,architecture_design,false +jadejitsu,mastodon.social,Biodiversity & Rewilding,biodiversity_rewilding,false +jadejitsu,mastodon.social,Biology,biology,false +jadejitsu,mastodon.social,Black Voices,black_voices,false +jadejitsu,mastodon.social,Books & Literature,books_literature,false +jadejitsu,mastodon.social,Breaking News,breaking_news,false +jadejitsu,mastodon.social,Business,business,false +jadejitsu,mastodon.social,Chemistry,chemistry,false +jadejitsu,mastodon.social,Climate change,climate_change,false +jadejitsu,mastodon.social,Democracy & Human Rights,democracy_human_rights,false +jadejitsu,mastodon.social,Disabled Voices,disabled_voices,false +jadejitsu,mastodon.social,Energy & Pollution,energy_pollution,false +jadejitsu,mastodon.social,Engineering,engineering,false +jadejitsu,mastodon.social,Environment,environment,false +jadejitsu,mastodon.social,Food & Drink,food_drink,false +jadejitsu,mastodon.social,Football,football,false +jadejitsu,mastodon.social,Gaming,gaming,false +jadejitsu,mastodon.social,Government & Policy,government_policy,false +jadejitsu,mastodon.social,Healthcare,healthcare,false +jadejitsu,mastodon.social,History,history,false +jadejitsu,mastodon.social,Humanities,humanities,false +jadejitsu,mastodon.social,Humour,humour,false +jadejitsu,mastodon.social,"Hunger, Disease & Water",hunger_disease_water,false +jadejitsu,mastodon.social,Immigrants Rights,immigrants_rights,false +jadejitsu,mastodon.social,Indigenous Peoples,indigenous_peoples,false +jadejitsu,mastodon.social,Law & Justice,law_justice,false +jadejitsu,mastodon.social,LGBTQ+,lgbtq,false +jadejitsu,mastodon.social,Markets & Finance,markets_finance,false +jadejitsu,mastodon.social,Mathematics,mathematics,false +jadejitsu,mastodon.social,Mental Health & Wellbeing,mental_health_wellbeing,false +jadejitsu,mastodon.social,Movies,movies,false +jadejitsu,mastodon.social,Music,music,false +jadejitsu,mastodon.social,Nature & Wildlife,nature_wildlife,false +jadejitsu,mastodon.social,Journalism & Comment,news_comment_data,false +jadejitsu,mastodon.social,Performing Arts,performing_arts,false +jadejitsu,mastodon.social,Pets,pets,false +jadejitsu,mastodon.social,Philosophy,philosophy,false +jadejitsu,mastodon.social,Photography,photography,false +jadejitsu,mastodon.social,Physics,physics,false +jadejitsu,mastodon.social,Politics,politics,false +jadejitsu,mastodon.social,Poverty & Inequality,poverty_inequality,false +jadejitsu,mastodon.social,Programming,programming,false +jadejitsu,mastodon.social,Puzzles,puzzles,false +jadejitsu,mastodon.social,Science,science,false +jadejitsu,mastodon.social,Social Media,social_media,false +jadejitsu,mastodon.social,Social Sciences,social_sciences,false +jadejitsu,mastodon.social,Space,space,false +jadejitsu,mastodon.social,Sport,sport,false +jadejitsu,mastodon.social,Technology,technology,false +jadejitsu,mastodon.social,Travel,travel,false +jadejitsu,mastodon.social,TV & Radio,tv_radio,false +jadejitsu,mastodon.social,Ukraine Invasion,ukraine_invasion,false +jadejitsu,mastodon.social,US Politics,us_politics,false +jadejitsu,mastodon.social,US Sport,us_sport,false +jadejitsu,mastodon.social,Visual Arts,visual_arts,false +jadejitsu,mastodon.social,Weather,weather,false +jadejitsu,mastodon.social,Women’s Voices,women_voices,false +jadejitsu,mastodon.social,Workers Rights,workers_rights,false +jadejitsu,mastodon.social,Creative Arts,creative_arts,true +curiocritters,ecoevo.social,Books & Literature,books_literature,false +curiocritters,ecoevo.social,Gaming,gaming,false +curiocritters,ecoevo.social,Movies,movies,false +curiocritters,ecoevo.social,Programming,programming,false +curiocritters,ecoevo.social,Science,science,false +curiocritters,ecoevo.social,Technology,technology,false +curiocritters,ecoevo.social,TV & Radio,tv_radio,false +curiocritters,ecoevo.social,Biology,biology,true +smootnyclown,pol.social,Government & Policy,government_policy,false +smootnyclown,pol.social,Healthcare,healthcare,false +smootnyclown,pol.social,History,history,false +smootnyclown,pol.social,Humanities,humanities,false +smootnyclown,pol.social,"Hunger, Disease & Water",hunger_disease_water,false +smootnyclown,pol.social,Law & Justice,law_justice,false +smootnyclown,pol.social,Mathematics,mathematics,false +smootnyclown,pol.social,Movies,movies,false +smootnyclown,pol.social,Journalism & Comment,news_comment_data,false +smootnyclown,pol.social,Philosophy,philosophy,false +smootnyclown,pol.social,Photography,photography,false +smootnyclown,pol.social,Physics,physics,false +smootnyclown,pol.social,Politics,politics,false +smootnyclown,pol.social,Poverty & Inequality,poverty_inequality,false +smootnyclown,pol.social,Science,science,false +smootnyclown,pol.social,Social Media,social_media,false +smootnyclown,pol.social,Social Sciences,social_sciences,false +smootnyclown,pol.social,Space,space,false +smootnyclown,pol.social,Technology,technology,false +smootnyclown,pol.social,Ukraine Invasion,ukraine_invasion,false +smootnyclown,pol.social,US Politics,us_politics,false +smootnyclown,pol.social,Weather,weather,false +jcblautomoto,newsmast.social,AI,ai,false +jcblautomoto,newsmast.social,Architecture & Design,architecture_design,false +jcblautomoto,newsmast.social,Books & Literature,books_literature,false +jcblautomoto,newsmast.social,Creative Arts,creative_arts,false +jcblautomoto,newsmast.social,Engineering,engineering,false +jcblautomoto,newsmast.social,Food & Drink,food_drink,false +jcblautomoto,newsmast.social,Gaming,gaming,false +jcblautomoto,newsmast.social,Humour,humour,false +jcblautomoto,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false +jcblautomoto,newsmast.social,Movies,movies,false +jcblautomoto,newsmast.social,Music,music,false +cgerrish,sfba.social,AI,ai,false +cgerrish,sfba.social,Architecture & Design,architecture_design,false +cgerrish,sfba.social,Biodiversity & Rewilding,biodiversity_rewilding,false +cgerrish,sfba.social,Biology,biology,false +cgerrish,sfba.social,Books & Literature,books_literature,false +cgerrish,sfba.social,Breaking News,breaking_news,false +cgerrish,sfba.social,Chemistry,chemistry,false +cgerrish,sfba.social,Climate change,climate_change,false +cgerrish,sfba.social,Democracy & Human Rights,democracy_human_rights,false +cgerrish,sfba.social,Energy & Pollution,energy_pollution,false +cgerrish,sfba.social,Engineering,engineering,false +cgerrish,sfba.social,Environment,environment,false +cgerrish,sfba.social,Football,football,false +cgerrish,sfba.social,Gaming,gaming,false +cgerrish,sfba.social,History,history,false +cgerrish,sfba.social,Humanities,humanities,false +cgerrish,sfba.social,"Hunger, Disease & Water",hunger_disease_water,false +cgerrish,sfba.social,Mathematics,mathematics,false +cgerrish,sfba.social,Movies,movies,false +cgerrish,sfba.social,Music,music,false +cgerrish,sfba.social,Journalism & Comment,news_comment_data,false +cgerrish,sfba.social,Performing Arts,performing_arts,false +cgerrish,sfba.social,Photography,photography,false +cgerrish,sfba.social,Physics,physics,false +cgerrish,sfba.social,Poverty & Inequality,poverty_inequality,false +cgerrish,sfba.social,Programming,programming,false +cgerrish,sfba.social,Science,science,false +cgerrish,sfba.social,Social Media,social_media,false +cgerrish,sfba.social,Social Sciences,social_sciences,false +cgerrish,sfba.social,Space,space,false +cgerrish,sfba.social,Sport,sport,false +cgerrish,sfba.social,Technology,technology,false +cgerrish,sfba.social,TV & Radio,tv_radio,false +cgerrish,sfba.social,Ukraine Invasion,ukraine_invasion,false +cgerrish,sfba.social,US Sport,us_sport,false +cgerrish,sfba.social,Visual Arts,visual_arts,false +cgerrish,sfba.social,Weather,weather,false +cgerrish,sfba.social,Philosophy,philosophy,true +Magda,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false +puk4_heart,newsmast.social,AI,ai,false +puk4_heart,newsmast.social,Creative Arts,creative_arts,false +puk4_heart,newsmast.social,Engineering,engineering,false +puk4_heart,newsmast.social,Food & Drink,food_drink,false +puk4_heart,newsmast.social,Weather,weather,false +puk4_heart,newsmast.social,Social Media,social_media,true +jcblautomoto,newsmast.social,Nature & Wildlife,nature_wildlife,false +jcblautomoto,newsmast.social,Performing Arts,performing_arts,false +jcblautomoto,newsmast.social,Pets,pets,false +jcblautomoto,newsmast.social,Photography,photography,false +jcblautomoto,newsmast.social,Programming,programming,false +jcblautomoto,newsmast.social,Puzzles,puzzles,false +shoqv4,newsmast.social,Breaking News,breaking_news,false +shoqv4,newsmast.social,Government & Policy,government_policy,false +shoqv4,newsmast.social,Journalism & Comment,news_comment_data,false +shoqv4,newsmast.social,Science,science,false +shoqv4,newsmast.social,Social Media,social_media,false +shoqv4,newsmast.social,Space,space,false +shoqv4,newsmast.social,US Politics,us_politics,true +jcblautomoto,newsmast.social,Travel,travel,false +jcblautomoto,newsmast.social,TV & Radio,tv_radio,false +jcblautomoto,newsmast.social,Visual Arts,visual_arts,false +jcblautomoto,newsmast.social,Technology,technology,true +Magda,newsmast.social,Books & Literature,books_literature,false +minkkyaw,newsmast.social,Journalism & Comment,news_comment_data,false +minkkyaw,newsmast.social,Social Media,social_media,false +minkkyaw,newsmast.social,Ukraine Invasion,ukraine_invasion,false +minkkyaw,newsmast.social,Weather,weather,false +minkkyaw,newsmast.social,Breaking News,breaking_news,true +Magda,newsmast.social,Business,business,false +IEF_FIE,newsmast.social,Activism & Civil Rights,activism_civil_rights,false +IEF_FIE,newsmast.social,Black Voices,black_voices,false +IEF_FIE,newsmast.social,Government & Policy,government_policy,false +IEF_FIE,newsmast.social,Healthcare,healthcare,false +IEF_FIE,newsmast.social,Immigrants Rights,immigrants_rights,false +IEF_FIE,newsmast.social,Indigenous Peoples,indigenous_peoples,false +IEF_FIE,newsmast.social,Women’s Voices,women_voices,false +IEF_FIE,newsmast.social,US Politics,us_politics,true +IEF_FIE,newsmast.social,Politics,politics,true +jcblhandtools,newsmast.social,Biology,biology,false +jcblhandtools,newsmast.social,Chemistry,chemistry,false +jcblhandtools,newsmast.social,Markets & Finance,markets_finance,false +mkk001,newsmast.social,Activism & Civil Rights,activism_civil_rights,false +mkk001,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false +mkk001,newsmast.social,Black Voices,black_voices,false +mkk001,newsmast.social,Climate change,climate_change,false +mkk001,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +mkk001,newsmast.social,Disabled Voices,disabled_voices,false +mkk001,newsmast.social,Energy & Pollution,energy_pollution,false +mkk001,newsmast.social,Environment,environment,false +mkk001,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false +mkk001,newsmast.social,Immigrants Rights,immigrants_rights,false +mkk001,newsmast.social,Breaking News,breaking_news,true +jcblhandtools,newsmast.social,Mathematics,mathematics,false +jcblhandtools,newsmast.social,Physics,physics,false +jcblhandtools,newsmast.social,Science,science,false +jcblhandtools,newsmast.social,Space,space,false +jcblhandtools,newsmast.social,Workers Rights,workers_rights,false +jcblhandtools,newsmast.social,Business,business,true +robtruman,glammr.us,Academia & Research,academia_research,false +robtruman,glammr.us,Environment,environment,false +robtruman,glammr.us,Law & Justice,law_justice,false +robtruman,glammr.us,Science,science,false +AlexiaPonchet,newsmast.social,Markets & Finance,markets_finance,false +AlexiaPonchet,newsmast.social,Philosophy,philosophy,false +AlexiaPonchet,newsmast.social,Travel,travel,false +mkk001,newsmast.social,Indigenous Peoples,indigenous_peoples,false +mkk001,newsmast.social,LGBTQ+,lgbtq,false +mkk001,newsmast.social,Journalism & Comment,news_comment_data,false +mkk001,newsmast.social,Poverty & Inequality,poverty_inequality,false +mkk001,newsmast.social,Social Media,social_media,false +mkk001,newsmast.social,Women’s Voices,women_voices,false +PixelRobot,neopaquita.es,Indigenous Peoples,indigenous_peoples,false +jejord,flipboard.social,Architecture & Design,architecture_design,false +min2k09,newsmast.social,Social Media,social_media,false +min2k09,newsmast.social,Ukraine Invasion,ukraine_invasion,false +min2k09,newsmast.social,Weather,weather,false +min2k09,newsmast.social,Breaking News,breaking_news,true +jejord,flipboard.social,Books & Literature,books_literature,false +jejord,flipboard.social,Climate change,climate_change,false +jejord,flipboard.social,Philosophy,philosophy,false +jejord,flipboard.social,Technology,technology,true +a4r,mas.to,Technology,technology,false +minkhant,mastodon.social,Democracy & Human Rights,democracy_human_rights,false +minkhant,mastodon.social,"Hunger, Disease & Water",hunger_disease_water,false +minkhant,mastodon.social,Journalism & Comment,news_comment_data,false +minkhant,mastodon.social,Poverty & Inequality,poverty_inequality,false +minkhant,mastodon.social,Social Media,social_media,false +minkhant,mastodon.social,Ukraine Invasion,ukraine_invasion,false +minkhant,mastodon.social,Weather,weather,false +minkhant,mastodon.social,Breaking News,breaking_news,true +a4r,mas.to,Breaking News,breaking_news,true +IEF_FIE,newsmast.social,Healthcare,healthcare,false +IEF_FIE,newsmast.social,Immigrants Rights,immigrants_rights,false +IEF_FIE,newsmast.social,Indigenous Peoples,indigenous_peoples,false +akp2,mastodon.social,Journalism & Comment,news_comment_data,false +akp2,mastodon.social,Social Media,social_media,false +akp2,mastodon.social,Ukraine Invasion,ukraine_invasion,false +akp2,mastodon.social,Weather,weather,false +akp2,mastodon.social,Breaking News,breaking_news,true +akp3,mastodon.social,Journalism & Comment,news_comment_data,false +akp3,mastodon.social,Social Media,social_media,false +akp3,mastodon.social,Ukraine Invasion,ukraine_invasion,false +akp3,mastodon.social,Weather,weather,false +akp3,mastodon.social,Breaking News,breaking_news,true +arunshah,flipboard.social,Democracy & Human Rights,democracy_human_rights,false +arunshah,flipboard.social,"Hunger, Disease & Water",hunger_disease_water,false +arunshah,flipboard.social,Journalism & Comment,news_comment_data,false +arunshah,flipboard.social,Poverty & Inequality,poverty_inequality,false +arunshah,flipboard.social,Social Media,social_media,false +arunshah,flipboard.social,Ukraine Invasion,ukraine_invasion,false +arunshah,flipboard.social,Weather,weather,false +arunshah,flipboard.social,Breaking News,breaking_news,true +nklatt,techhub.social,Democracy & Human Rights,democracy_human_rights,false +nklatt,techhub.social,Environment,environment,false +nklatt,techhub.social,Government & Policy,government_policy,false +nklatt,techhub.social,"Hunger, Disease & Water",hunger_disease_water,false +nklatt,techhub.social,Politics,politics,false +nklatt,techhub.social,Poverty & Inequality,poverty_inequality,false +nklatt,techhub.social,US Politics,us_politics,false +nklatt,techhub.social,Climate change,climate_change,true +max,newsmast.social,Academia & Research,academia_research,false +max,newsmast.social,AI,ai,false +max,newsmast.social,Breaking News,breaking_news,false +max,newsmast.social,Environment,environment,false +max,newsmast.social,Government & Policy,government_policy,false +max,newsmast.social,Programming,programming,false +max,newsmast.social,Science,science,false +max,newsmast.social,Technology,technology,true +jon,henshaw.social,Architecture & Design,architecture_design,false +jon,henshaw.social,Biology,biology,false +jon,henshaw.social,Books & Literature,books_literature,false +jon,henshaw.social,Breaking News,breaking_news,false +jon,henshaw.social,Business,business,false +jon,henshaw.social,Climate change,climate_change,false +jon,henshaw.social,Energy & Pollution,energy_pollution,false +jon,henshaw.social,Environment,environment,false +jon,henshaw.social,History,history,false +jon,henshaw.social,Humanities,humanities,false +jon,henshaw.social,Music,music,false +jon,henshaw.social,Journalism & Comment,news_comment_data,false +jon,henshaw.social,Philosophy,philosophy,false +jon,henshaw.social,Photography,photography,false +jon,henshaw.social,Science,science,false +jon,henshaw.social,Social Media,social_media,false +jon,henshaw.social,Social Sciences,social_sciences,false +jon,henshaw.social,Visual Arts,visual_arts,false +jon,henshaw.social,Technology,technology,true +owelleopard,toot.community,Biodiversity & Rewilding,biodiversity_rewilding,false +owelleopard,toot.community,Black Voices,black_voices,false +owelleopard,toot.community,Breaking News,breaking_news,false +owelleopard,toot.community,Disabled Voices,disabled_voices,false +owelleopard,toot.community,History,history,false +owelleopard,toot.community,Indigenous Peoples,indigenous_peoples,false +owelleopard,toot.community,LGBTQ+,lgbtq,false +owelleopard,toot.community,Movies,movies,false +owelleopard,toot.community,Politics,politics,false +owelleopard,toot.community,Poverty & Inequality,poverty_inequality,false +owelleopard,toot.community,Technology,technology,false +owelleopard,toot.community,Visual Arts,visual_arts,true +HomerNotSimpson,mastodon.social,Books & Literature,books_literature,false +HomerNotSimpson,mastodon.social,Football,football,false +HomerNotSimpson,mastodon.social,Gaming,gaming,false +HomerNotSimpson,mastodon.social,Technology,technology,false +HomerNotSimpson,mastodon.social,Ukraine Invasion,ukraine_invasion,false +HomerNotSimpson,mastodon.social,Breaking News,breaking_news,true +Stregabor,newsmast.social,Academia & Research,academia_research,false +Stregabor,newsmast.social,Activism & Civil Rights,activism_civil_rights,false +Stregabor,newsmast.social,AI,ai,false +Stregabor,newsmast.social,Black Voices,black_voices,false +Stregabor,newsmast.social,Breaking News,breaking_news,false +Stregabor,newsmast.social,Business,business,false +Stregabor,newsmast.social,Disabled Voices,disabled_voices,false +Stregabor,newsmast.social,Engineering,engineering,false +Stregabor,newsmast.social,Environment,environment,false +Stregabor,newsmast.social,Government & Policy,government_policy,false +Stregabor,newsmast.social,Healthcare,healthcare,false +Stregabor,newsmast.social,Immigrants Rights,immigrants_rights,false +Stregabor,newsmast.social,Indigenous Peoples,indigenous_peoples,false +Stregabor,newsmast.social,Law & Justice,law_justice,false +Stregabor,newsmast.social,LGBTQ+,lgbtq,false +Stregabor,newsmast.social,Photography,photography,false +Stregabor,newsmast.social,Politics,politics,false +Stregabor,newsmast.social,Programming,programming,false +Stregabor,newsmast.social,Social Media,social_media,false +Stregabor,newsmast.social,Technology,technology,false +Stregabor,newsmast.social,US Politics,us_politics,false +Stregabor,newsmast.social,Women’s Voices,women_voices,false +Stregabor,newsmast.social,Workers Rights,workers_rights,false +Stregabor,newsmast.social,Climate change,climate_change,true +vlp00,newsmast.social,US Politics,us_politics,false +vlp00,newsmast.social,Government & Policy,government_policy,false +vlp00,newsmast.social,Politics,politics,false +vlp00,newsmast.social,Academia & Research,academia_research,false +klemens,mastodon.social,Biodiversity & Rewilding,biodiversity_rewilding,false +klemens,mastodon.social,Energy & Pollution,energy_pollution,false +klemens,mastodon.social,Technology,technology,false +vlp00,newsmast.social,Healthcare,healthcare,false +klemens,mastodon.social,Ukraine Invasion,ukraine_invasion,false +vlp00,newsmast.social,Law & Justice,law_justice,false +klemens,mastodon.social,Social Media,social_media,true +tseckler,universeodon.com,Academia & Research,academia_research,false +tseckler,universeodon.com,Biology,biology,false +tseckler,universeodon.com,Breaking News,breaking_news,false +tseckler,universeodon.com,Chemistry,chemistry,false +tseckler,universeodon.com,Government & Policy,government_policy,false +tseckler,universeodon.com,Healthcare,healthcare,false +CTUGhost,twit.social,Academia & Research,academia_research,false +allistelling,scholar.social,AI,ai,false +allistelling,scholar.social,Humanities,humanities,false +allistelling,scholar.social,Law & Justice,law_justice,false +allistelling,scholar.social,Social Sciences,social_sciences,false +allistelling,scholar.social,US Politics,us_politics,false +allistelling,scholar.social,Academia & Research,academia_research,true +CTUGhost,twit.social,Black Voices,black_voices,false +CTUGhost,twit.social,Democracy & Human Rights,democracy_human_rights,false +CTUGhost,twit.social,Disabled Voices,disabled_voices,false +CTUGhost,twit.social,Government & Policy,government_policy,false +CTUGhost,twit.social,History,history,false +CTUGhost,twit.social,Humanities,humanities,false +CTUGhost,twit.social,"Hunger, Disease & Water",hunger_disease_water,false +CTUGhost,twit.social,Immigrants Rights,immigrants_rights,false +CTUGhost,twit.social,Indigenous Peoples,indigenous_peoples,false +CTUGhost,twit.social,Law & Justice,law_justice,false +CTUGhost,twit.social,Activism & Civil Rights,activism_civil_rights,true +tseckler,universeodon.com,Law & Justice,law_justice,false +tseckler,universeodon.com,Mathematics,mathematics,false +tseckler,universeodon.com,Journalism & Comment,news_comment_data,false +tseckler,universeodon.com,Politics,politics,false +tseckler,universeodon.com,Physics,physics,true +stevebownan,newsmast.social,AI,ai,false +stevebownan,newsmast.social,Books & Literature,books_literature,false +stevebownan,newsmast.social,Breaking News,breaking_news,false +stevebownan,newsmast.social,Food & Drink,food_drink,false +stevebownan,newsmast.social,Football,football,false +stevebownan,newsmast.social,Movies,movies,false +stevebownan,newsmast.social,Music,music,false +stevebownan,newsmast.social,Nature & Wildlife,nature_wildlife,false +stevebownan,newsmast.social,Journalism & Comment,news_comment_data,false +stevebownan,newsmast.social,Physics,physics,false +stevebownan,newsmast.social,Politics,politics,false +stevebownan,newsmast.social,Poverty & Inequality,poverty_inequality,false +stevebownan,newsmast.social,Programming,programming,false +stevebownan,newsmast.social,Science,science,false +stevebownan,newsmast.social,Space,space,false +stevebownan,newsmast.social,Technology,technology,false +stevebownan,newsmast.social,Travel,travel,false +stevebownan,newsmast.social,Democracy & Human Rights,democracy_human_rights,true +MaxPe,scholar.social,Academia & Research,academia_research,false +MaxPe,scholar.social,Biodiversity & Rewilding,biodiversity_rewilding,false +MaxPe,scholar.social,Business,business,false +MaxPe,scholar.social,Law & Justice,law_justice,false +MaxPe,scholar.social,Markets & Finance,markets_finance,false +MaxPe,scholar.social,Climate change,climate_change,true +claasdev,mastodon.social,Breaking News,breaking_news,false +claasdev,mastodon.social,Engineering,engineering,false +claasdev,mastodon.social,Journalism & Comment,news_comment_data,false +claasdev,mastodon.social,Technology,technology,false +claasdev,mastodon.social,Programming,programming,true +killthefish,tech.lgbt,Architecture & Design,architecture_design,false +killthefish,tech.lgbt,Biology,biology,false +killthefish,tech.lgbt,Books & Literature,books_literature,false +killthefish,tech.lgbt,Breaking News,breaking_news,false +killthefish,tech.lgbt,Chemistry,chemistry,false +killthefish,tech.lgbt,Democracy & Human Rights,democracy_human_rights,false +killthefish,tech.lgbt,Engineering,engineering,false +killthefish,tech.lgbt,Environment,environment,false +killthefish,tech.lgbt,Gaming,gaming,false +killthefish,tech.lgbt,History,history,false +killthefish,tech.lgbt,Humanities,humanities,false +killthefish,tech.lgbt,LGBTQ+,lgbtq,false +killthefish,tech.lgbt,Mathematics,mathematics,false +killthefish,tech.lgbt,Movies,movies,false +killthefish,tech.lgbt,Music,music,false +killthefish,tech.lgbt,Philosophy,philosophy,false +killthefish,tech.lgbt,Physics,physics,false +killthefish,tech.lgbt,Programming,programming,false +killthefish,tech.lgbt,Science,science,false +killthefish,tech.lgbt,Social Media,social_media,false +killthefish,tech.lgbt,Social Sciences,social_sciences,false +killthefish,tech.lgbt,Space,space,false +killthefish,tech.lgbt,Visual Arts,visual_arts,false +killthefish,tech.lgbt,Technology,technology,true +johnluther,fosstodon.org,AI,ai,false +johnluther,fosstodon.org,Architecture & Design,architecture_design,false +johnluther,fosstodon.org,Books & Literature,books_literature,false +johnluther,fosstodon.org,Breaking News,breaking_news,false +johnluther,fosstodon.org,Engineering,engineering,false +johnluther,fosstodon.org,Gaming,gaming,false +sabrina,blackrocks.social,Academia & Research,academia_research,false +sabrina,blackrocks.social,Biodiversity & Rewilding,biodiversity_rewilding,false +sabrina,blackrocks.social,Climate change,climate_change,false +sabrina,blackrocks.social,Energy & Pollution,energy_pollution,false +sabrina,blackrocks.social,Law & Justice,law_justice,false +sabrina,blackrocks.social,Programming,programming,true +johnluther,fosstodon.org,Movies,movies,false +johnluther,fosstodon.org,Music,music,false +johnluther,fosstodon.org,Journalism & Comment,news_comment_data,false +johnluther,fosstodon.org,Performing Arts,performing_arts,false +PixelRobot,neopaquita.es,Law & Justice,law_justice,false +PixelRobot,neopaquita.es,LGBTQ+,lgbtq,false +Tyom,newsmast.social,Breaking News,breaking_news,false +Tyom,newsmast.social,Disabled Voices,disabled_voices,false +tseckler,universeodon.com,Science,science,false +tseckler,universeodon.com,Social Media,social_media,false +igorette,layer8.space,Books & Literature,books_literature,false +igorette,layer8.space,Mathematics,mathematics,false +igorette,layer8.space,Movies,movies,false +igorette,layer8.space,Physics,physics,false +igorette,layer8.space,Programming,programming,false +igorette,layer8.space,Science,science,false +igorette,layer8.space,Technology,technology,false +igorette,layer8.space,TV & Radio,tv_radio,false +igorette,layer8.space,Music,music,true +tseckler,universeodon.com,Space,space,false +tseckler,universeodon.com,Ukraine Invasion,ukraine_invasion,false +tseckler,universeodon.com,US Politics,us_politics,false +tseckler,universeodon.com,Weather,weather,false +Tyom,newsmast.social,Humanities,humanities,false +Tyom,newsmast.social,Philosophy,philosophy,false +pixelstick,noc.social,Breaking News,breaking_news,false +pixelstick,noc.social,Journalism & Comment,news_comment_data,false +pixelstick,noc.social,Programming,programming,false +pixelstick,noc.social,Technology,technology,false +pixelstick,noc.social,Engineering,engineering,true +Tyom,newsmast.social,Social Sciences,social_sciences,true +jwalsh2,masto.drydenhouse.org,History,history,false +jwalsh2,masto.drydenhouse.org,Science,science,false +jwalsh2,masto.drydenhouse.org,Space,space,false +jwalsh2,masto.drydenhouse.org,Technology,technology,false +jwalsh2,masto.drydenhouse.org,Breaking News,breaking_news,true +acxtrilla,mastodon.social,Music,music,false +TheBestLeiya,newsmast.social,Activism & Civil Rights,activism_civil_rights,false +TheBestLeiya,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false +TheBestLeiya,newsmast.social,Breaking News,breaking_news,false +TheBestLeiya,newsmast.social,Climate change,climate_change,false +TheBestLeiya,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +TheBestLeiya,newsmast.social,Disabled Voices,disabled_voices,false +TheBestLeiya,newsmast.social,Energy & Pollution,energy_pollution,false +TheBestLeiya,newsmast.social,Environment,environment,false +TheBestLeiya,newsmast.social,Healthcare,healthcare,false +TheBestLeiya,newsmast.social,Humanities,humanities,false +TheBestLeiya,newsmast.social,Journalism & Comment,news_comment_data,false +TheBestLeiya,newsmast.social,Politics,politics,false +TheBestLeiya,newsmast.social,Poverty & Inequality,poverty_inequality,false +TheBestLeiya,newsmast.social,Social Sciences,social_sciences,false +TheBestLeiya,newsmast.social,Women’s Voices,women_voices,false +TheBestLeiya,newsmast.social,LGBTQ+,lgbtq,true +newsmast,mastodon.social,Breaking News,breaking_news,false +newsmast,mastodon.social,Democracy & Human Rights,democracy_human_rights,false +newsmast,mastodon.social,Journalism & Comment,news_comment_data,false +newsmast,mastodon.social,Politics,politics,false +newsmast,mastodon.social,Ukraine Invasion,ukraine_invasion,false +newsmast,mastodon.social,Weather,weather,false +newsmast,mastodon.social,Social Media,social_media,true +suntorvic,mastodon.social,Creative Arts,creative_arts,false +suntorvic,mastodon.social,Food & Drink,food_drink,false +suntorvic,mastodon.social,Nature & Wildlife,nature_wildlife,false +suntorvic,mastodon.social,Pets,pets,false +suntorvic,mastodon.social,Travel,travel,false +suntorvic,mastodon.social,Photography,photography,true +TheSandman,universeodon.com,Football,football,false +TheSandman,universeodon.com,Government & Policy,government_policy,false +TheSandman,universeodon.com,Science,science,false +TheSandman,universeodon.com,Technology,technology,false +TheSandman,universeodon.com,US Politics,us_politics,false +TheSandman,universeodon.com,Weather,weather,false +TheSandman,universeodon.com,Breaking News,breaking_news,true +johnluther,fosstodon.org,Photography,photography,false +johnluther,fosstodon.org,Programming,programming,false +johnluther,fosstodon.org,Social Media,social_media,false +johnluther,fosstodon.org,TV & Radio,tv_radio,false +johnluther,fosstodon.org,Ukraine Invasion,ukraine_invasion,false +johnluther,fosstodon.org,Visual Arts,visual_arts,false +johnluther,fosstodon.org,Weather,weather,false +rzelnik,mastodon.sk,AI,ai,false +rzelnik,mastodon.sk,Biodiversity & Rewilding,biodiversity_rewilding,false +rzelnik,mastodon.sk,Climate change,climate_change,false +rzelnik,mastodon.sk,Energy & Pollution,energy_pollution,false +rzelnik,mastodon.sk,Environment,environment,false +rzelnik,mastodon.sk,Programming,programming,false +rzelnik,mastodon.sk,Science,science,false +rzelnik,mastodon.sk,Technology,technology,true +johnluther,fosstodon.org,Technology,technology,true +DisneyMichael,mastodon.social,Programming,programming,false +DisneyMichael,mastodon.social,Science,science,false +DisneyMichael,mastodon.social,Social Media,social_media,false +DisneyMichael,mastodon.social,Technology,technology,false +IEF_FIE,newsmast.social,Politics,politics,false +IEF_FIE,newsmast.social,US Politics,us_politics,false +IEF_FIE,newsmast.social,Women’s Voices,women_voices,false +robtruman,glammr.us,Space,space,false +robtruman,glammr.us,Technology,technology,false +robtruman,glammr.us,Ukraine Invasion,ukraine_invasion,false +robtruman,glammr.us,Breaking News,breaking_news,true +zoinks,gts.scoobysnack.net,Breaking News,breaking_news,false +quentinnield,mastodonapp.uk,Markets & Finance,markets_finance,false +quentinnield,mastodonapp.uk,Science,science,false +quentinnield,mastodonapp.uk,Space,space,false +quentinnield,mastodonapp.uk,Biology,biology,false +quentinnield,mastodonapp.uk,Technology,technology,false +quentinnield,mastodonapp.uk,Photography,photography,false +quentinnield,mastodonapp.uk,Movies,movies,false +mbrailer,mstdn.social,Breaking News,breaking_news,true +DisneyMichael,mastodon.social,US Politics,us_politics,false +DisneyMichael,mastodon.social,Breaking News,breaking_news,true +TJHob,homestead.social,Climate change,climate_change,false +TJHob,homestead.social,Energy & Pollution,energy_pollution,false +TJHob,homestead.social,Engineering,engineering,false +TJHob,homestead.social,Environment,environment,false +vmatt,fosstodon.org,Books & Literature,books_literature,false +vmatt,fosstodon.org,Engineering,engineering,false +vmatt,fosstodon.org,Football,football,false +vmatt,fosstodon.org,Politics,politics,false +vmatt,fosstodon.org,TV & Radio,tv_radio,false +vmatt,fosstodon.org,Visual Arts,visual_arts,false +vmatt,fosstodon.org,Programming,programming,true +ruslan,newsmast.social,AI,ai,false +ruslan,newsmast.social,Architecture & Design,architecture_design,false +ruslan,newsmast.social,Biology,biology,false +ruslan,newsmast.social,Books & Literature,books_literature,false +ruslan,newsmast.social,Business,business,false +ruslan,newsmast.social,Chemistry,chemistry,false +ruslan,newsmast.social,Creative Arts,creative_arts,false +ruslan,newsmast.social,Engineering,engineering,false +ruslan,newsmast.social,Food & Drink,food_drink,false +ruslan,newsmast.social,Gaming,gaming,false +ruslan,newsmast.social,History,history,false +ruslan,newsmast.social,Humanities,humanities,false +ruslan,newsmast.social,Humour,humour,false +ruslan,newsmast.social,Markets & Finance,markets_finance,false +ruslan,newsmast.social,Mathematics,mathematics,false +ruslan,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false +ruslan,newsmast.social,Movies,movies,false +ruslan,newsmast.social,Nature & Wildlife,nature_wildlife,false +ruslan,newsmast.social,Performing Arts,performing_arts,false +ruslan,newsmast.social,Pets,pets,false +ruslan,newsmast.social,Philosophy,philosophy,false +ruslan,newsmast.social,Photography,photography,false +ruslan,newsmast.social,Physics,physics,false +ruslan,newsmast.social,Programming,programming,false +ruslan,newsmast.social,Puzzles,puzzles,false +ruslan,newsmast.social,Science,science,false +ruslan,newsmast.social,Social Sciences,social_sciences,false +ruslan,newsmast.social,Space,space,false +ruslan,newsmast.social,Technology,technology,false +ruslan,newsmast.social,Travel,travel,false +ruslan,newsmast.social,TV & Radio,tv_radio,false +ruslan,newsmast.social,Ukraine Invasion,ukraine_invasion,false +ruslan,newsmast.social,Visual Arts,visual_arts,false +ruslan,newsmast.social,Workers Rights,workers_rights,false +ruslan,newsmast.social,Music,music,true +Jarhead2029,newsmast.social,AI,ai,false +Jarhead2029,newsmast.social,Biology,biology,false +Jarhead2029,newsmast.social,Breaking News,breaking_news,false +Jarhead2029,newsmast.social,Chemistry,chemistry,false +Jarhead2029,newsmast.social,Government & Policy,government_policy,false +Jarhead2029,newsmast.social,Healthcare,healthcare,false +Jarhead2029,newsmast.social,Humanities,humanities,false +Jarhead2029,newsmast.social,Humour,humour,false +Jarhead2029,newsmast.social,Immigrants Rights,immigrants_rights,false +Jarhead2029,newsmast.social,Law & Justice,law_justice,false +Jarhead2029,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false +Jarhead2029,newsmast.social,Nature & Wildlife,nature_wildlife,false +Jarhead2029,newsmast.social,Pets,pets,false +Jarhead2029,newsmast.social,Philosophy,philosophy,false +Jarhead2029,newsmast.social,Physics,physics,false +Jarhead2029,newsmast.social,Politics,politics,false +Jarhead2029,newsmast.social,Democracy & Human Rights,democracy_human_rights,true +vlp00,newsmast.social,Markets & Finance,markets_finance,false +TJHob,homestead.social,Programming,programming,false +TJHob,homestead.social,Science,science,false +CTUGhost,twit.social,LGBTQ+,lgbtq,false +CTUGhost,twit.social,Philosophy,philosophy,false +CTUGhost,twit.social,Politics,politics,false +CTUGhost,twit.social,Poverty & Inequality,poverty_inequality,false +CTUGhost,twit.social,Social Sciences,social_sciences,false +CTUGhost,twit.social,Technology,technology,false +CTUGhost,twit.social,US Politics,us_politics,false +CTUGhost,twit.social,Women’s Voices,women_voices,false +TJHob,homestead.social,Biodiversity & Rewilding,biodiversity_rewilding,true +bengenn,aus.social,Breaking News,breaking_news,false +bengenn,aus.social,Engineering,engineering,false +quentinnield,mastodonapp.uk,Physics,physics,false +quentinnield,mastodonapp.uk,Chemistry,chemistry,false +quentinnield,mastodonapp.uk,Engineering,engineering,false +quentinnield,mastodonapp.uk,TV & Radio,tv_radio,false +quentinnield,mastodonapp.uk,Music,music,false +quentinnield,mastodonapp.uk,Architecture & Design,architecture_design,false +ruslan,indieweb.social,Architecture & Design,architecture_design,false +ruslan,indieweb.social,Books & Literature,books_literature,false +ruslan,indieweb.social,Creative Arts,creative_arts,false +ruslan,indieweb.social,Food & Drink,food_drink,false +ruslan,indieweb.social,Gaming,gaming,false +ruslan,indieweb.social,History,history,false +ruslan,indieweb.social,Humanities,humanities,false +ruslan,indieweb.social,Humour,humour,false +ruslan,indieweb.social,Mental Health & Wellbeing,mental_health_wellbeing,false +ruslan,indieweb.social,Movies,movies,false +ruslan,indieweb.social,Nature & Wildlife,nature_wildlife,false +ruslan,indieweb.social,Performing Arts,performing_arts,false +ruslan,indieweb.social,Pets,pets,false +ruslan,indieweb.social,Philosophy,philosophy,false +ruslan,indieweb.social,Photography,photography,false +ruslan,indieweb.social,Programming,programming,false +ruslan,indieweb.social,Science,science,false +ruslan,indieweb.social,Social Media,social_media,false +ruslan,indieweb.social,Social Sciences,social_sciences,false +ruslan,indieweb.social,Travel,travel,false +ruslan,indieweb.social,Visual Arts,visual_arts,false +ruslan,indieweb.social,Breaking News,breaking_news,false +Jarhead2029,newsmast.social,Poverty & Inequality,poverty_inequality,false +Jarhead2029,newsmast.social,Puzzles,puzzles,false +Jarhead2029,newsmast.social,Science,science,false +Jarhead2029,newsmast.social,Social Media,social_media,false +Jarhead2029,newsmast.social,Social Sciences,social_sciences,false +Jarhead2029,newsmast.social,Sport,sport,false +Jarhead2029,newsmast.social,Technology,technology,false +Jarhead2029,newsmast.social,Travel,travel,false +Jarhead2029,newsmast.social,Ukraine Invasion,ukraine_invasion,false +Jarhead2029,newsmast.social,US Politics,us_politics,false +Jarhead2029,newsmast.social,US Sport,us_sport,false +Jarhead2029,newsmast.social,Weather,weather,false +riiku,mastodon.social,Activism & Civil Rights,activism_civil_rights,false +dalai,toots.ch,Academia & Research,academia_research,false +dalai,toots.ch,Activism & Civil Rights,activism_civil_rights,false +dalai,toots.ch,AI,ai,false +dalai,toots.ch,Architecture & Design,architecture_design,false +dalai,toots.ch,Biodiversity & Rewilding,biodiversity_rewilding,false +dalai,toots.ch,Biology,biology,false +dalai,toots.ch,Black Voices,black_voices,false +dalai,toots.ch,Books & Literature,books_literature,false +dalai,toots.ch,Breaking News,breaking_news,false +dalai,toots.ch,Business,business,false +dalai,toots.ch,Chemistry,chemistry,false +dalai,toots.ch,Climate change,climate_change,false +dalai,toots.ch,Creative Arts,creative_arts,false +dalai,toots.ch,Democracy & Human Rights,democracy_human_rights,false +dalai,toots.ch,Disabled Voices,disabled_voices,false +dalai,toots.ch,Energy & Pollution,energy_pollution,false +dalai,toots.ch,Engineering,engineering,false +dalai,toots.ch,Environment,environment,false +dalai,toots.ch,Food & Drink,food_drink,false +dalai,toots.ch,Football,football,false +dalai,toots.ch,Gaming,gaming,false +dalai,toots.ch,Government & Policy,government_policy,false +dalai,toots.ch,Healthcare,healthcare,false +dalai,toots.ch,History,history,false +dalai,toots.ch,Humanities,humanities,false +dalai,toots.ch,Humour,humour,false +dalai,toots.ch,"Hunger, Disease & Water",hunger_disease_water,false +dalai,toots.ch,Immigrants Rights,immigrants_rights,false +dalai,toots.ch,Indigenous Peoples,indigenous_peoples,false +dalai,toots.ch,Law & Justice,law_justice,false +dalai,toots.ch,LGBTQ+,lgbtq,false +dalai,toots.ch,Markets & Finance,markets_finance,false +dalai,toots.ch,Mathematics,mathematics,false +dalai,toots.ch,Mental Health & Wellbeing,mental_health_wellbeing,false +dalai,toots.ch,Movies,movies,false +dalai,toots.ch,Music,music,false +dalai,toots.ch,Nature & Wildlife,nature_wildlife,false +dalai,toots.ch,Performing Arts,performing_arts,false +dalai,toots.ch,Pets,pets,false +dalai,toots.ch,Philosophy,philosophy,false +dalai,toots.ch,Photography,photography,false +dalai,toots.ch,Physics,physics,false +xlrobot,mastodon.social,Disabled Voices,disabled_voices,false +xlrobot,mastodon.social,Indigenous Peoples,indigenous_peoples,false +xlrobot,mastodon.social,LGBTQ+,lgbtq,false +xlrobot,mastodon.social,Space,space,false +xlrobot,mastodon.social,Technology,technology,false +xlrobot,mastodon.social,Women’s Voices,women_voices,false +xlrobot,mastodon.social,Science,science,true +dalai,toots.ch,Politics,politics,false +dalai,toots.ch,Poverty & Inequality,poverty_inequality,false +dalai,toots.ch,Programming,programming,false +dalai,toots.ch,Puzzles,puzzles,false +dalai,toots.ch,Science,science,false +dalai,toots.ch,Social Media,social_media,false +dalai,toots.ch,Social Sciences,social_sciences,false +dalai,toots.ch,Space,space,false +dalai,toots.ch,Sport,sport,false +dalai,toots.ch,Technology,technology,false +dalai,toots.ch,Travel,travel,false +dalai,toots.ch,TV & Radio,tv_radio,false +dalai,toots.ch,Ukraine Invasion,ukraine_invasion,false +dalai,toots.ch,US Politics,us_politics,false +dalai,toots.ch,US Sport,us_sport,false +dalai,toots.ch,Visual Arts,visual_arts,false +dalai,toots.ch,Weather,weather,false +dalai,toots.ch,Women’s Voices,women_voices,false +dalai,toots.ch,Workers Rights,workers_rights,false +dalai,toots.ch,Journalism & Comment,news_comment_data,true +vlp00,newsmast.social,Business,business,false +vlp00,newsmast.social,Workers Rights,workers_rights,false +PixelRobot,neopaquita.es,Markets & Finance,markets_finance,false +IEF_FIE,newsmast.social,Activism & Civil Rights,activism_civil_rights,false +IEF_FIE,newsmast.social,Black Voices,black_voices,false +IEF_FIE,newsmast.social,Government & Policy,government_policy,false +Ks6suzgdjss,aus.social,Biodiversity & Rewilding,biodiversity_rewilding,false +Ks6suzgdjss,aus.social,Business,business,false +Ks6suzgdjss,aus.social,Climate change,climate_change,false +Ks6suzgdjss,aus.social,Environment,environment,false +Ks6suzgdjss,aus.social,Markets & Finance,markets_finance,false +LiamGilmartin,mastodon.ie,Academia & Research,academia_research,false +LiamGilmartin,mastodon.ie,Biology,biology,false +LiamGilmartin,mastodon.ie,Breaking News,breaking_news,false +LiamGilmartin,mastodon.ie,Chemistry,chemistry,false +LiamGilmartin,mastodon.ie,Government & Policy,government_policy,false +LiamGilmartin,mastodon.ie,Mathematics,mathematics,false +LiamGilmartin,mastodon.ie,Journalism & Comment,news_comment_data,false +LiamGilmartin,mastodon.ie,Physics,physics,false +LiamGilmartin,mastodon.ie,Politics,politics,false +LiamGilmartin,mastodon.ie,Programming,programming,false +LiamGilmartin,mastodon.ie,Science,science,false +LiamGilmartin,mastodon.ie,Social Media,social_media,false +LiamGilmartin,mastodon.ie,Technology,technology,false +LiamGilmartin,mastodon.ie,Space,space,true +Ks6suzgdjss,aus.social,Workers Rights,workers_rights,false +DodoTheDev,front-end.social,Breaking News,breaking_news,false +DodoTheDev,front-end.social,Science,science,false +DodoTheDev,front-end.social,Space,space,false +DodoTheDev,front-end.social,Technology,technology,false +DodoTheDev,front-end.social,Programming,programming,true +kb9ens,mastodon.radio,Chemistry,chemistry,false +kb9ens,mastodon.radio,Engineering,engineering,false +kb9ens,mastodon.radio,Government & Policy,government_policy,false +kb9ens,mastodon.radio,History,history,false +kb9ens,mastodon.radio,Humanities,humanities,false +kb9ens,mastodon.radio,Law & Justice,law_justice,false +kb9ens,mastodon.radio,Philosophy,philosophy,false +kb9ens,mastodon.radio,Physics,physics,false +kb9ens,mastodon.radio,Science,science,false +kb9ens,mastodon.radio,Social Sciences,social_sciences,false +kb9ens,mastodon.radio,Space,space,false +kb9ens,mastodon.radio,Technology,technology,false +kb9ens,mastodon.radio,Ukraine Invasion,ukraine_invasion,false +kb9ens,mastodon.radio,Breaking News,breaking_news,true +GlasWolf,mastodon.scot,Science,science,false +GlasWolf,mastodon.scot,Engineering,engineering,false +GlasWolf,mastodon.scot,Football,football,false +GlasWolf,mastodon.scot,Government & Policy,government_policy,false +GlasWolf,mastodon.scot,Politics,politics,false +GlasWolf,mastodon.scot,Space,space,false +GlasWolf,mastodon.scot,Technology,technology,false +GlasWolf,mastodon.scot,US Sport,us_sport,false +GlasWolf,mastodon.scot,Physics,physics,true +andresortizmasso,xarxa.cloud,Climate change,climate_change,false +andresortizmasso,xarxa.cloud,History,history,false +andresortizmasso,xarxa.cloud,Movies,movies,false +andresortizmasso,xarxa.cloud,Music,music,false +andresortizmasso,xarxa.cloud,Journalism & Comment,news_comment_data,false +andresortizmasso,xarxa.cloud,Politics,politics,false +andresortizmasso,xarxa.cloud,Programming,programming,false +andresortizmasso,xarxa.cloud,Space,space,false +andresortizmasso,xarxa.cloud,Breaking News,breaking_news,true +shawncarter,mastodon.online,Science,science,false +shawncarter,mastodon.online,Space,space,false +shawncarter,mastodon.online,Technology,technology,false +shawncarter,mastodon.online,Weather,weather,false +shawncarter,mastodon.online,Journalism & Comment,news_comment_data,true +rgallery,newsmast.social,Humanities,humanities,false +rgallery,newsmast.social,Politics,politics,false +rgallery,newsmast.social,Social Media,social_media,false +rgallery,newsmast.social,Social Sciences,social_sciences,false +rgallery,newsmast.social,Journalism & Comment,news_comment_data,true +quentinnield,mastodonapp.uk,Biodiversity & Rewilding,biodiversity_rewilding,false +quentinnield,mastodonapp.uk,Breaking News,breaking_news,false +quentinnield,mastodonapp.uk,Climate change,climate_change,false +quentinnield,mastodonapp.uk,Democracy & Human Rights,democracy_human_rights,false +quentinnield,mastodonapp.uk,Energy & Pollution,energy_pollution,false +quentinnield,mastodonapp.uk,Environment,environment,false +quentinnield,mastodonapp.uk,Government & Policy,government_policy,false +quentinnield,mastodonapp.uk,Law & Justice,law_justice,false +quentinnield,mastodonapp.uk,Ukraine Invasion,ukraine_invasion,false +quentinnield,mastodonapp.uk,US Politics,us_politics,false +quentinnield,mastodonapp.uk,Politics,politics,true +mati,moth.social,Music,music,false +mati,moth.social,Breaking News,breaking_news,true +matt,isfeeling.social,Academia & Research,academia_research,false +matt,isfeeling.social,Breaking News,breaking_news,false +matt,isfeeling.social,Government & Policy,government_policy,false +matt,isfeeling.social,Healthcare,healthcare,false +matt,isfeeling.social,Movies,movies,false +matt,isfeeling.social,Technology,technology,false +matt,isfeeling.social,Gaming,gaming,true +safenetwork,mastodon.social,AI,ai,false +bbmin7b5,techhub.social,AI,ai,false +bbmin7b5,techhub.social,Biology,biology,false +bbmin7b5,techhub.social,Breaking News,breaking_news,false +bbmin7b5,techhub.social,Democracy & Human Rights,democracy_human_rights,false +bbmin7b5,techhub.social,Engineering,engineering,false +bbmin7b5,techhub.social,Government & Policy,government_policy,false +bbmin7b5,techhub.social,Markets & Finance,markets_finance,false +bbmin7b5,techhub.social,Programming,programming,false +bbmin7b5,techhub.social,Science,science,false +bbmin7b5,techhub.social,Space,space,false +bbmin7b5,techhub.social,Technology,technology,true +safenetwork,mastodon.social,Books & Literature,books_literature,false +Geboelders,mastodon.nl,Music,music,false +Geboelders,mastodon.nl,Journalism & Comment,news_comment_data,false +Geboelders,mastodon.nl,Science,science,false +Geboelders,mastodon.nl,Technology,technology,false +Geboelders,mastodon.nl,Breaking News,breaking_news,true +safenetwork,mastodon.social,Engineering,engineering,false +safenetwork,mastodon.social,Science,science,false +safenetwork,mastodon.social,Technology,technology,true +MarieLouise,mastodon.social,Journalism & Comment,news_comment_data,false +MarieLouise,mastodon.social,Social Media,social_media,false +MarieLouise,mastodon.social,Ukraine Invasion,ukraine_invasion,false +MarieLouise,mastodon.social,Weather,weather,false +MarieLouise,mastodon.social,Breaking News,breaking_news,true +snoopy,newsmast.social,Mathematics,mathematics,false +snoopy,newsmast.social,Movies,movies,false +snoopy,newsmast.social,Photography,photography,false +snoopy,newsmast.social,Physics,physics,false +snoopy,newsmast.social,Science,science,false +jaapklaver,mastodon.art,Healthcare,healthcare,false +jaapklaver,mastodon.art,"Hunger, Disease & Water",hunger_disease_water,false +jaapklaver,mastodon.art,Politics,politics,false +jaapklaver,mastodon.art,Social Sciences,social_sciences,false +jaapklaver,mastodon.art,Science,science,true +snoopy,newsmast.social,Social Sciences,social_sciences,false +snoopy,newsmast.social,Space,space,false +snoopy,newsmast.social,Visual Arts,visual_arts,false +snoopy,newsmast.social,Gaming,gaming,true +snoopy,newsmast.social,Disabled Voices,disabled_voices,false +fresseng,fediscience.org,AI,ai,false +fresseng,fediscience.org,Climate change,climate_change,false +fresseng,fediscience.org,Democracy & Human Rights,democracy_human_rights,false +fresseng,fediscience.org,Physics,physics,false +fresseng,fediscience.org,Science,science,false +fresseng,fediscience.org,Social Media,social_media,false +fresseng,fediscience.org,Space,space,false +fresseng,fediscience.org,Ukraine Invasion,ukraine_invasion,false +fresseng,fediscience.org,Academia & Research,academia_research,true +riiku,mastodon.social,AI,ai,false +riiku,mastodon.social,Books & Literature,books_literature,false +ssweeny,fosstodon.org,Books & Literature,books_literature,false +ssweeny,fosstodon.org,Engineering,engineering,false +ssweeny,fosstodon.org,Movies,movies,false +ssweeny,fosstodon.org,Music,music,false +ssweeny,fosstodon.org,Philosophy,philosophy,false +ssweeny,fosstodon.org,Social Media,social_media,false +ssweeny,fosstodon.org,Technology,technology,false +ssweeny,fosstodon.org,US Politics,us_politics,false +ssweeny,fosstodon.org,Programming,programming,true +riiku,mastodon.social,Engineering,engineering,false +riiku,mastodon.social,History,history,false +riiku,mastodon.social,Humanities,humanities,false +riiku,mastodon.social,LGBTQ+,lgbtq,false +pem,oslo.town,Democracy & Human Rights,democracy_human_rights,false +pem,oslo.town,Football,football,false +pem,oslo.town,Programming,programming,false +pem,oslo.town,Sport,sport,false +pem,oslo.town,Technology,technology,true +riiku,mastodon.social,Movies,movies,false +riiku,mastodon.social,Music,music,false +riiku,mastodon.social,Journalism & Comment,news_comment_data,false +riiku,mastodon.social,Philosophy,philosophy,false +riiku,mastodon.social,Photography,photography,false +riiku,mastodon.social,Programming,programming,false +mati,moth.social,AI,ai,false +mati,moth.social,Democracy & Human Rights,democracy_human_rights,false +mati,moth.social,Movies,movies,false +mati,moth.social,Technology,technology,false +riiku,mastodon.social,Science,science,false +riiku,mastodon.social,Social Media,social_media,false +riiku,mastodon.social,Social Sciences,social_sciences,false +riiku,mastodon.social,Space,space,false +riiku,mastodon.social,Technology,technology,false +riiku,mastodon.social,TV & Radio,tv_radio,false +riiku,mastodon.social,Gaming,gaming,true +kabtohin2020,newsmast.social,Climate change,climate_change,false +kabtohin2020,newsmast.social,Energy & Pollution,energy_pollution,false +kabtohin2020,newsmast.social,Environment,environment,false +kabtohin2020,newsmast.social,Football,football,false +kabtohin2020,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false +kabtohin2020,newsmast.social,Technology,technology,false +kabtohin2020,newsmast.social,AI,ai,true +PixelRobot,neopaquita.es,Mathematics,mathematics,false +petite_etoile,mastodon.social,Academia & Research,academia_research,false +arunshah,pebble.social,Biodiversity & Rewilding,biodiversity_rewilding,false +arunshah,pebble.social,Climate change,climate_change,false +arunshah,pebble.social,Energy & Pollution,energy_pollution,false +arunshah,pebble.social,Engineering,engineering,false +arunshah,pebble.social,Environment,environment,false +arunshah,pebble.social,Programming,programming,false +arunshah,pebble.social,Technology,technology,false +arunshah,pebble.social,AI,ai,true +edintone,mastodon.green,Humanities,humanities,true +baslow,social.coop,Social Sciences,social_sciences,false +baslow,social.coop,Academia & Research,academia_research,false +baslow,social.coop,Activism & Civil Rights,activism_civil_rights,false +baslow,social.coop,AI,ai,false +baslow,social.coop,Biodiversity & Rewilding,biodiversity_rewilding,false +baslow,social.coop,Biology,biology,false +baslow,social.coop,Black Voices,black_voices,false +baslow,social.coop,Breaking News,breaking_news,false +baslow,social.coop,Chemistry,chemistry,false +baslow,social.coop,Climate change,climate_change,false +baslow,social.coop,Democracy & Human Rights,democracy_human_rights,false +baslow,social.coop,Disabled Voices,disabled_voices,false +baslow,social.coop,Energy & Pollution,energy_pollution,false +baslow,social.coop,Engineering,engineering,false +baslow,social.coop,Environment,environment,false +baslow,social.coop,Government & Policy,government_policy,false +baslow,social.coop,Healthcare,healthcare,false +baslow,social.coop,History,history,false +baslow,social.coop,Humanities,humanities,false +baslow,social.coop,"Hunger, Disease & Water",hunger_disease_water,false +baslow,social.coop,Immigrants Rights,immigrants_rights,false +baslow,social.coop,Indigenous Peoples,indigenous_peoples,false +baslow,social.coop,Law & Justice,law_justice,false +baslow,social.coop,LGBTQ+,lgbtq,false +baslow,social.coop,Mathematics,mathematics,false +baslow,social.coop,Philosophy,philosophy,false +baslow,social.coop,Physics,physics,false +baslow,social.coop,Politics,politics,false +baslow,social.coop,Poverty & Inequality,poverty_inequality,false +baslow,social.coop,Programming,programming,false +baslow,social.coop,Science,science,false +baslow,social.coop,Social Media,social_media,false +baslow,social.coop,Space,space,false +baslow,social.coop,Technology,technology,false +baslow,social.coop,US Politics,us_politics,false +baslow,social.coop,Women’s Voices,women_voices,false +baslow,social.coop,Journalism & Comment,news_comment_data,true +FreddieJ,newsmast.social,Performing Arts,performing_arts,false +yu1ia,ohai.social,Engineering,engineering,false +yu1ia,ohai.social,Music,music,false +yu1ia,ohai.social,Sport,sport,false +yu1ia,ohai.social,Technology,technology,false +yu1ia,ohai.social,Programming,programming,true +tgirl_696,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false +tgirl_696,newsmast.social,Performing Arts,performing_arts,false +tgirl_696,newsmast.social,Travel,travel,false +tgirl_696,newsmast.social,Visual Arts,visual_arts,false +tgirl_696,newsmast.social,Humour,humour,true +YNDA,newsmast.social,Nature & Wildlife,nature_wildlife,false +YNDA,newsmast.social,Performing Arts,performing_arts,false +YNDA,newsmast.social,Pets,pets,false +YNDA,newsmast.social,Photography,photography,false +edintone,mastodon.green,Activism & Civil Rights,activism_civil_rights,false +edintone,mastodon.green,Architecture & Design,architecture_design,false +edintone,mastodon.green,Black Voices,black_voices,false +edintone,mastodon.green,Books & Literature,books_literature,false +edintone,mastodon.green,History,history,false +edintone,mastodon.green,Immigrants Rights,immigrants_rights,false +edintone,mastodon.green,LGBTQ+,lgbtq,false +belfora,newsie.social,Climate change,climate_change,false +belfora,newsie.social,Energy & Pollution,energy_pollution,false +belfora,newsie.social,Environment,environment,false +belfora,newsie.social,History,history,false +belfora,newsie.social,Humanities,humanities,false +belfora,newsie.social,Social Sciences,social_sciences,false +belfora,newsie.social,Biodiversity & Rewilding,biodiversity_rewilding,true +Edwin085,mastodon.nl,Academia & Research,academia_research,false +Edwin085,mastodon.nl,Democracy & Human Rights,democracy_human_rights,false +Edwin085,mastodon.nl,Government & Policy,government_policy,false +Edwin085,mastodon.nl,Healthcare,healthcare,false +Edwin085,mastodon.nl,"Hunger, Disease & Water",hunger_disease_water,false +Edwin085,mastodon.nl,Law & Justice,law_justice,false +Edwin085,mastodon.nl,Politics,politics,false +Edwin085,mastodon.nl,Poverty & Inequality,poverty_inequality,false +Edwin085,mastodon.nl,US Politics,us_politics,true +daniellean,mastodon.green,Breaking News,breaking_news,true +Serious_Feather,newsmast.social,Books & Literature,books_literature,false +Serious_Feather,newsmast.social,Humanities,humanities,false +Serious_Feather,newsmast.social,Creative Arts,creative_arts,false +reynish,mastodon.social,AI,ai,true +OFMagazine,newsmast.social,Business,business,false +Miaa,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false +Miaa,newsmast.social,Climate change,climate_change,false +Miaa,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +Miaa,newsmast.social,Environment,environment,false +Miaa,newsmast.social,Breaking News,breaking_news,true +Fr4n_C0,mastodon.ie,Movies,movies,false +Fr4n_C0,mastodon.ie,Music,music,false +Fr4n_C0,mastodon.ie,Technology,technology,false +Fr4n_C0,mastodon.ie,Workers Rights,workers_rights,false +Fr4n_C0,mastodon.ie,Breaking News,breaking_news,true +PixelRobot,neopaquita.es,Mental Health & Wellbeing,mental_health_wellbeing,false +PixelRobot,neopaquita.es,Movies,movies,false +PixelRobot,neopaquita.es,Music,music,false +PixelRobot,neopaquita.es,Nature & Wildlife,nature_wildlife,false +PixelRobot,neopaquita.es,Journalism & Comment,news_comment_data,false +PixelRobot,neopaquita.es,Performing Arts,performing_arts,false +PixelRobot,neopaquita.es,Pets,pets,false +majdal,social.coop,Climate change,climate_change,false +majdal,social.coop,Energy & Pollution,energy_pollution,false +majdal,social.coop,History,history,false +majdal,social.coop,Humanities,humanities,false +majdal,social.coop,Philosophy,philosophy,false +majdal,social.coop,Social Sciences,social_sciences,false +majdal,social.coop,Academia & Research,academia_research,true +PixelRobot,neopaquita.es,Philosophy,philosophy,false +Ks6suzgdjss,aus.social,Energy & Pollution,energy_pollution,true +PixelRobot,neopaquita.es,Photography,photography,false +PixelRobot,neopaquita.es,Physics,physics,false +AlexiaPonchet,newsmast.social,Workers Rights,workers_rights,false +PixelRobot,neopaquita.es,Politics,politics,false +bbdjgfhjhhg,newsmast.social,Engineering,engineering,false +PixelRobot,neopaquita.es,Poverty & Inequality,poverty_inequality,false +admin,channel.org,Breaking News,breaking_news,true +PixelRobot,neopaquita.es,Puzzles,puzzles,false +PixelRobot,neopaquita.es,Science,science,false +Magda,newsmast.social,Climate change,climate_change,false +Magda,newsmast.social,Creative Arts,creative_arts,false +Magda,newsmast.social,Energy & Pollution,energy_pollution,false +Magda,newsmast.social,Environment,environment,false +Magda,newsmast.social,Government & Policy,government_policy,false +Magda,newsmast.social,History,history,false +Magda,newsmast.social,Movies,movies,false +Magda,newsmast.social,Nature & Wildlife,nature_wildlife,false +Magda,newsmast.social,Journalism & Comment,news_comment_data,false +Magda,newsmast.social,Philosophy,philosophy,false +Magda,newsmast.social,Photography,photography,false +Magda,newsmast.social,Poverty & Inequality,poverty_inequality,false +Magda,newsmast.social,Technology,technology,false +Magda,newsmast.social,Travel,travel,false +Magda,newsmast.social,Workers Rights,workers_rights,false +Magda,newsmast.social,Architecture & Design,architecture_design,true +PixelRobot,neopaquita.es,Social Media,social_media,false +PixelRobot,neopaquita.es,Social Sciences,social_sciences,false +PixelRobot,neopaquita.es,Space,space,false +emeraldskycreative,twaddle.social,Activism & Civil Rights,activism_civil_rights,false +emeraldskycreative,twaddle.social,Breaking News,breaking_news,false +emeraldskycreative,twaddle.social,History,history,false +emeraldskycreative,twaddle.social,Immigrants Rights,immigrants_rights,false +emeraldskycreative,twaddle.social,Indigenous Peoples,indigenous_peoples,false +emeraldskycreative,twaddle.social,LGBTQ+,lgbtq,false +emeraldskycreative,twaddle.social,Nature & Wildlife,nature_wildlife,false +FreddieJ,newsmast.social,Music,music,false +FreddieJ,newsmast.social,Performing Arts,performing_arts,false +thegardendude,regenerate.social,Breaking News,breaking_news,false +thegardendude,regenerate.social,Climate change,climate_change,false +thegardendude,regenerate.social,Environment,environment,false +thegardendude,regenerate.social,Government & Policy,government_policy,false +thegardendude,regenerate.social,Law & Justice,law_justice,false +thegardendude,regenerate.social,US Politics,us_politics,false +thegardendude,regenerate.social,Biodiversity & Rewilding,biodiversity_rewilding,true +emeraldskycreative,twaddle.social,Pets,pets,false +emeraldskycreative,twaddle.social,Creative Arts,creative_arts,true +PixelRobot,neopaquita.es,Technology,technology,false +PixelRobot,neopaquita.es,Travel,travel,false +YNDA,newsmast.social,Puzzles,puzzles,false +YNDA,newsmast.social,Travel,travel,false +YNDA,newsmast.social,TV & Radio,tv_radio,false +YNDA,newsmast.social,Visual Arts,visual_arts,false +YNDA,newsmast.social,Workers Rights,workers_rights,false +YNDA,newsmast.social,Business,business,true +PixelRobot,neopaquita.es,TV & Radio,tv_radio,false +sophia_robeet,newsmast.social,Business,business,false +sophia_robeet,newsmast.social,Government & Policy,government_policy,false +sophia_robeet,newsmast.social,Science,science,false +sophia_robeet,newsmast.social,Sport,sport,false +akp,channel.org,Journalism & Comment,news_comment_data,false +akp,channel.org,Social Media,social_media,false +akp,channel.org,Ukraine Invasion,ukraine_invasion,false +akp,channel.org,Weather,weather,false +akp,channel.org,Breaking News,breaking_news,true +admin,channel.org,Democracy & Human Rights,democracy_human_rights,false +admin,channel.org,"Hunger, Disease & Water",hunger_disease_water,false +admin,channel.org,Journalism & Comment,news_comment_data,false +admin,channel.org,Poverty & Inequality,poverty_inequality,false +admin,channel.org,Social Media,social_media,false +admin,channel.org,Ukraine Invasion,ukraine_invasion,false +admin,channel.org,Weather,weather,false +sophia_robeet,newsmast.social,Technology,technology,true +r_morgan,mstdn.ca,Gaming,gaming,false +yanmoenaing,newsmast.social,AI,ai,true +snoots,channel.org,Architecture & Design,architecture_design,false +snoots,channel.org,Biodiversity & Rewilding,biodiversity_rewilding,false +snoots,channel.org,Books & Literature,books_literature,false +snoots,channel.org,Climate change,climate_change,false +snoots,channel.org,Creative Arts,creative_arts,false +snoots,channel.org,Energy & Pollution,energy_pollution,false +snoots,channel.org,Environment,environment,false +snoots,channel.org,Food & Drink,food_drink,false +snoots,channel.org,Gaming,gaming,false +snoots,channel.org,Humour,humour,false +Dame_,mastodon.social,Activism & Civil Rights,activism_civil_rights,false +Dame_,mastodon.social,Black Voices,black_voices,false +Dame_,mastodon.social,Books & Literature,books_literature,false +Dame_,mastodon.social,Breaking News,breaking_news,false +Dame_,mastodon.social,Democracy & Human Rights,democracy_human_rights,false +Dame_,mastodon.social,Engineering,engineering,false +Dame_,mastodon.social,Gaming,gaming,false +Dame_,mastodon.social,Government & Policy,government_policy,false +Dame_,mastodon.social,History,history,false +Dame_,mastodon.social,Humanities,humanities,false +Dame_,mastodon.social,Indigenous Peoples,indigenous_peoples,false +Dame_,mastodon.social,Law & Justice,law_justice,false +Dame_,mastodon.social,Music,music,false +Dame_,mastodon.social,Journalism & Comment,news_comment_data,false +Dame_,mastodon.social,Photography,photography,false +Dame_,mastodon.social,Politics,politics,false +Dame_,mastodon.social,Social Media,social_media,false +Dame_,mastodon.social,Sport,sport,false +Dame_,mastodon.social,Technology,technology,false +Dame_,mastodon.social,US Politics,us_politics,false +Dame_,mastodon.social,US Sport,us_sport,false +Dame_,mastodon.social,AI,ai,true +PixelRobot,neopaquita.es,Ukraine Invasion,ukraine_invasion,false +PixelRobot,neopaquita.es,US Politics,us_politics,false +FreddieJ,newsmast.social,Gaming,gaming,false +FreddieJ,newsmast.social,Architecture & Design,architecture_design,false +darnell,one.darnell.one,AI,ai,false +darnell,one.darnell.one,Biology,biology,false +darnell,one.darnell.one,Business,business,false +darnell,one.darnell.one,Chemistry,chemistry,false +darnell,one.darnell.one,Creative Arts,creative_arts,false +darnell,one.darnell.one,Democracy & Human Rights,democracy_human_rights,false +darnell,one.darnell.one,Engineering,engineering,false +darnell,one.darnell.one,Food & Drink,food_drink,false +darnell,one.darnell.one,Humour,humour,false +darnell,one.darnell.one,"Hunger, Disease & Water",hunger_disease_water,false +darnell,one.darnell.one,Markets & Finance,markets_finance,false +darnell,one.darnell.one,Mathematics,mathematics,false +darnell,one.darnell.one,Mental Health & Wellbeing,mental_health_wellbeing,false +darnell,one.darnell.one,Nature & Wildlife,nature_wildlife,false +darnell,one.darnell.one,Journalism & Comment,news_comment_data,false +darnell,one.darnell.one,Pets,pets,false +darnell,one.darnell.one,Physics,physics,false +darnell,one.darnell.one,Poverty & Inequality,poverty_inequality,false +darnell,one.darnell.one,Programming,programming,false +darnell,one.darnell.one,Puzzles,puzzles,false +darnell,one.darnell.one,Science,science,false +darnell,one.darnell.one,Social Media,social_media,false +darnell,one.darnell.one,Space,space,false +darnell,one.darnell.one,Technology,technology,false +darnell,one.darnell.one,Travel,travel,false +darnell,one.darnell.one,Ukraine Invasion,ukraine_invasion,false +darnell,one.darnell.one,Weather,weather,false +darnell,one.darnell.one,Workers Rights,workers_rights,false +darnell,one.darnell.one,Breaking News,breaking_news,true +tuckerm,newsmast.social,Pets,pets,false +Downes,newsmast.social,Academia & Research,academia_research,false +Downes,newsmast.social,AI,ai,false +Downes,newsmast.social,Breaking News,breaking_news,false +Downes,newsmast.social,Philosophy,philosophy,false +Downes,newsmast.social,Programming,programming,false +Downes,newsmast.social,Science,science,false +Downes,newsmast.social,Social Media,social_media,false +Downes,newsmast.social,Space,space,false +Downes,newsmast.social,Technology,technology,false +Downes,newsmast.social,Journalism & Comment,news_comment_data,true +olympusmoans,newsmast.social,Academia & Research,academia_research,false +olympusmoans,newsmast.social,AI,ai,false +olympusmoans,newsmast.social,Breaking News,breaking_news,false +olympusmoans,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +channyeintun,newsmast.social,Academia & Research,academia_research,false +channyeintun,newsmast.social,AI,ai,false +channyeintun,newsmast.social,Creative Arts,creative_arts,false +channyeintun,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +channyeintun,newsmast.social,Engineering,engineering,false +channyeintun,newsmast.social,Food & Drink,food_drink,false +channyeintun,newsmast.social,Government & Policy,government_policy,false +channyeintun,newsmast.social,Healthcare,healthcare,false +channyeintun,newsmast.social,Humour,humour,false +channyeintun,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false +channyeintun,newsmast.social,Law & Justice,law_justice,false +channyeintun,newsmast.social,Nature & Wildlife,nature_wildlife,false +channyeintun,newsmast.social,Pets,pets,false +channyeintun,newsmast.social,Politics,politics,false +channyeintun,newsmast.social,Poverty & Inequality,poverty_inequality,false +channyeintun,newsmast.social,Programming,programming,false +channyeintun,newsmast.social,Puzzles,puzzles,false +channyeintun,newsmast.social,Technology,technology,false +channyeintun,newsmast.social,Travel,travel,false +channyeintun,newsmast.social,US Politics,us_politics,false +channyeintun,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,true +olympusmoans,newsmast.social,Engineering,engineering,false +olympusmoans,newsmast.social,Government & Policy,government_policy,false +olympusmoans,newsmast.social,Healthcare,healthcare,false +olympusmoans,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false +olympusmoans,newsmast.social,Law & Justice,law_justice,false +olympusmoans,newsmast.social,Journalism & Comment,news_comment_data,false +olympusmoans,newsmast.social,Poverty & Inequality,poverty_inequality,false +olympusmoans,newsmast.social,Programming,programming,false +olympusmoans,newsmast.social,Social Media,social_media,false +olympusmoans,newsmast.social,Technology,technology,false +olympusmoans,newsmast.social,Ukraine Invasion,ukraine_invasion,false +olympusmoans,newsmast.social,US Politics,us_politics,false +olympusmoans,newsmast.social,Weather,weather,false +olympusmoans,newsmast.social,Politics,politics,true +johnleonard,mastodon.social,AI,ai,false +johnleonard,mastodon.social,Breaking News,breaking_news,false +johnleonard,mastodon.social,Climate change,climate_change,false +bengenn,aus.social,Markets & Finance,markets_finance,false +bengenn,aus.social,Technology,technology,false +bengenn,aus.social,Travel,travel,true +tuckerm,newsmast.social,Biology,biology,false +tuckerm,newsmast.social,Breaking News,breaking_news,false +tuckerm,newsmast.social,Chemistry,chemistry,false +tuckerm,newsmast.social,History,history,false +tuckerm,newsmast.social,Humanities,humanities,false +tuckerm,newsmast.social,Mathematics,mathematics,false +tuckerm,newsmast.social,Philosophy,philosophy,false +tuckerm,newsmast.social,Physics,physics,false +tuckerm,newsmast.social,Science,science,false +tuckerm,newsmast.social,Social Media,social_media,false +tuckerm,newsmast.social,Social Sciences,social_sciences,false +tuckerm,newsmast.social,Space,space,false +tuckerm,newsmast.social,Ukraine Invasion,ukraine_invasion,false +tuckerm,newsmast.social,US Sport,us_sport,false +tuckerm,newsmast.social,Weather,weather,false +tuckerm,newsmast.social,Journalism & Comment,news_comment_data,true +johnleonard,mastodon.social,Journalism & Comment,news_comment_data,false +johnleonard,mastodon.social,Technology,technology,true +r_morgan,mstdn.ca,Breaking News,breaking_news,false +r_morgan,mstdn.ca,Journalism & Comment,news_comment_data,false +r_morgan,mstdn.ca,Science,science,false +r_morgan,mstdn.ca,Programming,programming,true +wmclark,publishing.social,Activism & Civil Rights,activism_civil_rights,false +wmclark,publishing.social,Black Voices,black_voices,false +wmclark,publishing.social,Breaking News,breaking_news,false +wmclark,publishing.social,Creative Arts,creative_arts,false +tuckerm,newsmast.social,Puzzles,puzzles,false +wmclark,publishing.social,Democracy & Human Rights,democracy_human_rights,false +wmclark,publishing.social,Food & Drink,food_drink,false +wmclark,publishing.social,Humanities,humanities,false +wmclark,publishing.social,Music,music,false +wmclark,publishing.social,Journalism & Comment,news_comment_data,false +wmclark,publishing.social,Photography,photography,false +wmclark,publishing.social,Social Media,social_media,false +wmclark,publishing.social,Technology,technology,false +wmclark,publishing.social,Visual Arts,visual_arts,false +wmclark,publishing.social,Books & Literature,books_literature,true +yanmoenaing,newsmast.social,Biology,biology,false +lilythelonelygirl,hear-me.social,Social Sciences,social_sciences,false +AlexiaPonchet,newsmast.social,Humanities,humanities,false +AlexiaPonchet,newsmast.social,Books & Literature,books_literature,false +AlexiaPonchet,newsmast.social,Visual Arts,visual_arts,false +AlexiaPonchet,newsmast.social,Humour,humour,false +AlexiaPonchet,newsmast.social,Nature & Wildlife,nature_wildlife,false +AlexiaPonchet,newsmast.social,Programming,programming,false +bbdjgfhjhhg,newsmast.social,Breaking News,breaking_news,false +bbdjgfhjhhg,newsmast.social,Journalism & Comment,news_comment_data,false +bbdjgfhjhhg,newsmast.social,Ukraine Invasion,ukraine_invasion,false +bbdjgfhjhhg,newsmast.social,Weather,weather,false +bbdjgfhjhhg,newsmast.social,Social Media,social_media,true +bbdjgfhjhhg,newsmast.social,Programming,programming,false +bbdjgfhjhhg,newsmast.social,Poverty & Inequality,poverty_inequality,false +sarampion,masto.es,Academia & Research,academia_research,false +sarampion,masto.es,AI,ai,false +sarampion,masto.es,Architecture & Design,architecture_design,false +sarampion,masto.es,Books & Literature,books_literature,false +sarampion,masto.es,Breaking News,breaking_news,false +sarampion,masto.es,Democracy & Human Rights,democracy_human_rights,false +sarampion,masto.es,Environment,environment,false +sarampion,masto.es,History,history,false +sarampion,masto.es,Humanities,humanities,false +sarampion,masto.es,"Hunger, Disease & Water",hunger_disease_water,false +sarampion,masto.es,Movies,movies,false +sarampion,masto.es,Music,music,false +sarampion,masto.es,Journalism & Comment,news_comment_data,false +sarampion,masto.es,Philosophy,philosophy,false +sarampion,masto.es,Politics,politics,false +sarampion,masto.es,Activism & Civil Rights,activism_civil_rights,false +mofahmawi,mastodon.social,Engineering,engineering,false +mofahmawi,mastodon.social,Programming,programming,false +mofahmawi,mastodon.social,Technology,technology,false +mofahmawi,mastodon.social,Weather,weather,false +mofahmawi,mastodon.social,AI,ai,true +tredford01,retro.pizza,Architecture & Design,architecture_design,false +tredford01,retro.pizza,Books & Literature,books_literature,false +tredford01,retro.pizza,Environment,environment,false +tredford01,retro.pizza,Gaming,gaming,false +tredford01,retro.pizza,History,history,false +tredford01,retro.pizza,Technology,technology,true +teowawki,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false +teowawki,newsmast.social,Biology,biology,false +teowawki,newsmast.social,Climate change,climate_change,false +teowawki,newsmast.social,Energy & Pollution,energy_pollution,false +teowawki,newsmast.social,Environment,environment,false +teowawki,newsmast.social,Government & Policy,government_policy,false +teowawki,newsmast.social,History,history,false +teowawki,newsmast.social,Philosophy,philosophy,false +teowawki,newsmast.social,Science,science,false +teowawki,newsmast.social,Social Sciences,social_sciences,false +teowawki,newsmast.social,Space,space,false +teowawki,newsmast.social,Technology,technology,false +teowawki,newsmast.social,US Politics,us_politics,false +teowawki,newsmast.social,Breaking News,breaking_news,true +snoots,channel.org,Mental Health & Wellbeing,mental_health_wellbeing,false +snoots,channel.org,Movies,movies,false +snoots,channel.org,Music,music,false +snoots,channel.org,Nature & Wildlife,nature_wildlife,false +petite_etoile,mastodon.social,Activism & Civil Rights,activism_civil_rights,false +petite_etoile,mastodon.social,Books & Literature,books_literature,false +petite_etoile,mastodon.social,Breaking News,breaking_news,false +petite_etoile,mastodon.social,Climate change,climate_change,false +PixelRobot,neopaquita.es,Visual Arts,visual_arts,false +petite_etoile,mastodon.social,Environment,environment,false +petite_etoile,mastodon.social,Government & Policy,government_policy,false +petite_etoile,mastodon.social,History,history,false +petite_etoile,mastodon.social,Humanities,humanities,false +petite_etoile,mastodon.social,LGBTQ+,lgbtq,false +petite_etoile,mastodon.social,Music,music,false +petite_etoile,mastodon.social,Journalism & Comment,news_comment_data,false +petite_etoile,mastodon.social,Philosophy,philosophy,false +PixelRobot,neopaquita.es,Weather,weather,false +PixelRobot,neopaquita.es,Women’s Voices,women_voices,false +PixelRobot,neopaquita.es,Workers Rights,workers_rights,false +PixelRobot,neopaquita.es,Programming,programming,true +rajeshaithala4153,rajeshaithala4153@mastodon.social,Academia & Research,academia_research,false +rajeshaithala4153,rajeshaithala4153@mastodon.social,Activism & Civil Rights,activism_civil_rights,false +rajeshaithala4153,rajeshaithala4153@mastodon.social,Architecture & Design,architecture_design,false +rajeshaithala4153,rajeshaithala4153@mastodon.social,Biodiversity & Rewilding,biodiversity_rewilding,false +rajeshaithala4153,rajeshaithala4153@mastodon.social,Biology,biology,false +rajeshaithala4153,rajeshaithala4153@mastodon.social,Black Voices,black_voices,false +rajeshaithala4153,rajeshaithala4153@mastodon.social,Books & Literature,books_literature,false +rajeshaithala4153,rajeshaithala4153@mastodon.social,Breaking News,breaking_news,false +rajeshaithala4153,rajeshaithala4153@mastodon.social,Business,business,false +rajeshaithala4153,rajeshaithala4153@mastodon.social,Chemistry,chemistry,false +rajeshaithala4153,rajeshaithala4153@mastodon.social,Climate change,climate_change,false +rajeshaithala4153,rajeshaithala4153@mastodon.social,Creative Arts,creative_arts,false +rajeshaithala4153,rajeshaithala4153@mastodon.social,Democracy & Human Rights,democracy_human_rights,false +rajeshaithala4153,rajeshaithala4153@mastodon.social,Disabled Voices,disabled_voices,false +rajeshaithala4153,rajeshaithala4153@mastodon.social,Energy & Pollution,energy_pollution,false +rajeshaithala4153,rajeshaithala4153@mastodon.social,Engineering,engineering,false +rajeshaithala4153,rajeshaithala4153@mastodon.social,Environment,environment,false +rajeshaithala4153,rajeshaithala4153@mastodon.social,Food & Drink,food_drink,false +rajeshaithala4153,rajeshaithala4153@mastodon.social,Football,football,false +rajeshaithala4153,rajeshaithala4153@mastodon.social,Gaming,gaming,false +rajeshaithala4153,rajeshaithala4153@mastodon.social,Government & Policy,government_policy,false +rajeshaithala4153,rajeshaithala4153@mastodon.social,Healthcare,healthcare,false +rajeshaithala4153,rajeshaithala4153@mastodon.social,History,history,false +rajeshaithala4153,rajeshaithala4153@mastodon.social,Humanities,humanities,false +rajeshaithala4153,rajeshaithala4153@mastodon.social,Humour,humour,false +rajeshaithala4153,rajeshaithala4153@mastodon.social,"Hunger, Disease & Water",hunger_disease_water,false +rajeshaithala4153,rajeshaithala4153@mastodon.social,Immigrants Rights,immigrants_rights,false +rajeshaithala4153,rajeshaithala4153@mastodon.social,Indigenous Peoples,indigenous_peoples,false +rajeshaithala4153,rajeshaithala4153@mastodon.social,Law & Justice,law_justice,false +rajeshaithala4153,rajeshaithala4153@mastodon.social,LGBTQ+,lgbtq,false +rajeshaithala4153,rajeshaithala4153@mastodon.social,Markets & Finance,markets_finance,false +rajeshaithala4153,rajeshaithala4153@mastodon.social,Mathematics,mathematics,false +rajeshaithala4153,rajeshaithala4153@mastodon.social,Mental Health & Wellbeing,mental_health_wellbeing,false +rajeshaithala4153,rajeshaithala4153@mastodon.social,Movies,movies,false +rajeshaithala4153,rajeshaithala4153@mastodon.social,Music,music,false +rajeshaithala4153,rajeshaithala4153@mastodon.social,Nature & Wildlife,nature_wildlife,false +rajeshaithala4153,rajeshaithala4153@mastodon.social,Journalism & Comment,news_comment_data,false +rajeshaithala4153,rajeshaithala4153@mastodon.social,Performing Arts,performing_arts,false +rajeshaithala4153,rajeshaithala4153@mastodon.social,Pets,pets,false +rajeshaithala4153,rajeshaithala4153@mastodon.social,Philosophy,philosophy,false +rajeshaithala4153,rajeshaithala4153@mastodon.social,Photography,photography,false +rajeshaithala4153,rajeshaithala4153@mastodon.social,Physics,physics,false +rajeshaithala4153,rajeshaithala4153@mastodon.social,Politics,politics,false +rajeshaithala4153,rajeshaithala4153@mastodon.social,Poverty & Inequality,poverty_inequality,false +rajeshaithala4153,rajeshaithala4153@mastodon.social,Programming,programming,false +rajeshaithala4153,rajeshaithala4153@mastodon.social,Puzzles,puzzles,false +rajeshaithala4153,rajeshaithala4153@mastodon.social,Science,science,false +rajeshaithala4153,rajeshaithala4153@mastodon.social,Social Media,social_media,false +rajeshaithala4153,rajeshaithala4153@mastodon.social,Social Sciences,social_sciences,false +rajeshaithala4153,rajeshaithala4153@mastodon.social,Space,space,false +rajeshaithala4153,rajeshaithala4153@mastodon.social,Sport,sport,false +rajeshaithala4153,rajeshaithala4153@mastodon.social,Technology,technology,false +rajeshaithala4153,rajeshaithala4153@mastodon.social,Travel,travel,false +rajeshaithala4153,rajeshaithala4153@mastodon.social,TV & Radio,tv_radio,false +rajeshaithala4153,rajeshaithala4153@mastodon.social,Ukraine Invasion,ukraine_invasion,false +rajeshaithala4153,rajeshaithala4153@mastodon.social,US Politics,us_politics,false +rajeshaithala4153,rajeshaithala4153@mastodon.social,US Sport,us_sport,false +rajeshaithala4153,rajeshaithala4153@mastodon.social,Visual Arts,visual_arts,false +rajeshaithala4153,rajeshaithala4153@mastodon.social,Weather,weather,false +rajeshaithala4153,rajeshaithala4153@mastodon.social,Women’s Voices,women_voices,false +rajeshaithala4153,rajeshaithala4153@mastodon.social,Workers Rights,workers_rights,false +rajeshaithala4153,rajeshaithala4153@mastodon.social,AI,ai,true +enough_jainil,mastodon.social,Biology,biology,false +enough_jainil,mastodon.social,Chemistry,chemistry,false +enough_jainil,mastodon.social,Engineering,engineering,false +enough_jainil,mastodon.social,Mathematics,mathematics,false +enough_jainil,mastodon.social,Physics,physics,false +enough_jainil,mastodon.social,Programming,programming,false +enough_jainil,mastodon.social,Science,science,false +enough_jainil,mastodon.social,Social Media,social_media,false +enough_jainil,mastodon.social,Space,space,false +enough_jainil,mastodon.social,Technology,technology,false +enough_jainil,mastodon.social,AI,ai,true +gbrrrl,mas.to,Engineering,engineering,false +gbrrrl,mas.to,Philosophy,philosophy,false +gbrrrl,mas.to,Physics,physics,false +gbrrrl,mas.to,Programming,programming,false +gbrrrl,mas.to,Technology,technology,true +gbrrrl,mas.to,Movies,movies,false +gbrrrl,mas.to,Music,music,false +gbrrrl,mas.to,Visual Arts,visual_arts,false +gbrrrl,mas.to,Biodiversity & Rewilding,biodiversity_rewilding,false +gbrrrl,mas.to,Academia & Research,academia_research,false +gbrrrl,mas.to,Democracy & Human Rights,democracy_human_rights,false +Yunandar,newsmast.social,Climate change,climate_change,false +Yunandar,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +petite_etoile,mastodon.social,Photography,photography,false +YellowDrone,mas.to,Architecture & Design,architecture_design,false +YellowDrone,mas.to,Breaking News,breaking_news,false +YellowDrone,mas.to,Journalism & Comment,news_comment_data,false +YellowDrone,mas.to,Social Media,social_media,false +YellowDrone,mas.to,Ukraine Invasion,ukraine_invasion,true +min_thu_kyaw,burma.social,Academia & Research,academia_research,false +min_thu_kyaw,burma.social,AI,ai,false +min_thu_kyaw,burma.social,Biology,biology,false +min_thu_kyaw,burma.social,Chemistry,chemistry,false +min_thu_kyaw,burma.social,Democracy & Human Rights,democracy_human_rights,false +min_thu_kyaw,burma.social,Engineering,engineering,false +min_thu_kyaw,burma.social,Government & Policy,government_policy,false +min_thu_kyaw,burma.social,Healthcare,healthcare,false +min_thu_kyaw,burma.social,Law & Justice,law_justice,false +min_thu_kyaw,burma.social,Mathematics,mathematics,false +min_thu_kyaw,burma.social,Physics,physics,false +min_thu_kyaw,burma.social,Politics,politics,false +min_thu_kyaw,burma.social,Poverty & Inequality,poverty_inequality,false +min_thu_kyaw,burma.social,Programming,programming,false +min_thu_kyaw,burma.social,Science,science,false +min_thu_kyaw,burma.social,Space,space,false +min_thu_kyaw,burma.social,Technology,technology,false +min_thu_kyaw,burma.social,US Politics,us_politics,false +min_thu_kyaw,burma.social,"Hunger, Disease & Water",hunger_disease_water,true +petite_etoile,mastodon.social,Poverty & Inequality,poverty_inequality,false +petite_etoile,mastodon.social,Social Sciences,social_sciences,false +petite_etoile,mastodon.social,Weather,weather,false +petite_etoile,mastodon.social,Women’s Voices,women_voices,false +PetRock,newsmast.social,Nature & Wildlife,nature_wildlife,true +PetRock,newsmast.social,Music,music,false +jramompichel2023,mastodon.social,Travel,travel,false +skry,mastodon.social,Academia & Research,academia_research,false +skry,mastodon.social,Biodiversity & Rewilding,biodiversity_rewilding,false +skry,mastodon.social,Space,space,false +skry,mastodon.social,US Politics,us_politics,false +skry,mastodon.social,Breaking News,breaking_news,true +keithramsey,newsmast.social,Environment,environment,false +keithramsey,newsmast.social,Journalism & Comment,news_comment_data,false +keithramsey,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +keithramsey,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false +keithramsey,newsmast.social,Poverty & Inequality,poverty_inequality,false +keithramsey,newsmast.social,Activism & Civil Rights,activism_civil_rights,false +keithramsey,newsmast.social,Women’s Voices,women_voices,false +keithramsey,newsmast.social,LGBTQ+,lgbtq,false +keithramsey,newsmast.social,Indigenous Peoples,indigenous_peoples,false +keithramsey,newsmast.social,Immigrants Rights,immigrants_rights,false +keithramsey,newsmast.social,Disabled Voices,disabled_voices,false +keithramsey,newsmast.social,Black Voices,black_voices,false +keithramsey,newsmast.social,Architecture & Design,architecture_design,false +keithramsey,newsmast.social,Visual Arts,visual_arts,false +keithramsey,newsmast.social,Creative Arts,creative_arts,false +keithramsey,newsmast.social,Nature & Wildlife,nature_wildlife,false +itzme,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +itzme,newsmast.social,Environment,environment,false +itzme,newsmast.social,Law & Justice,law_justice,false +itzme,newsmast.social,Science,science,false +itzme,newsmast.social,Breaking News,breaking_news,true +martynjparker,mastodon.social,Sport,sport,false +martynjparker,mastodon.social,Technology,technology,false +martynjparker,mastodon.social,US Sport,us_sport,false +martynjparker,mastodon.social,Weather,weather,false +martynjparker,mastodon.social,Breaking News,breaking_news,true +ommo,newsmast.social,Engineering,engineering,false +ommo,newsmast.social,Science,science,false +ommo,newsmast.social,Technology,technology,false +ommo,newsmast.social,Weather,weather,false +ommo,newsmast.social,Space,space,true +martinlentink,mastodon.social,Biodiversity & Rewilding,biodiversity_rewilding,false +martinlentink,mastodon.social,Biology,biology,false +martinlentink,mastodon.social,Energy & Pollution,energy_pollution,false +martinlentink,mastodon.social,Government & Policy,government_policy,false +martinlentink,mastodon.social,Physics,physics,false +martinlentink,mastodon.social,Science,science,false +martinlentink,mastodon.social,Space,space,false +martinlentink,mastodon.social,US Politics,us_politics,false +martinlentink,mastodon.social,Climate change,climate_change,true +martinlentink,mastodon.social,Ukraine Invasion,ukraine_invasion,false +martinlentink,mastodon.social,Breaking News,breaking_news,false +martinlentink,mastodon.social,Environment,environment,false +MMaK,Feuerwehr.social,Sport,sport,true +yosoybartsolo,superhappy.social,Academia & Research,academia_research,false +yosoybartsolo,superhappy.social,Activism & Civil Rights,activism_civil_rights,false +yosoybartsolo,superhappy.social,AI,ai,false +yosoybartsolo,superhappy.social,Black Voices,black_voices,false +yosoybartsolo,superhappy.social,Breaking News,breaking_news,false +yosoybartsolo,superhappy.social,Democracy & Human Rights,democracy_human_rights,false +yosoybartsolo,superhappy.social,Disabled Voices,disabled_voices,false +yosoybartsolo,superhappy.social,Engineering,engineering,false +yosoybartsolo,superhappy.social,Government & Policy,government_policy,false +yosoybartsolo,superhappy.social,Healthcare,healthcare,false +yosoybartsolo,superhappy.social,History,history,false +yosoybartsolo,superhappy.social,Humanities,humanities,false +yosoybartsolo,superhappy.social,"Hunger, Disease & Water",hunger_disease_water,false +yosoybartsolo,superhappy.social,Immigrants Rights,immigrants_rights,false +yosoybartsolo,superhappy.social,Indigenous Peoples,indigenous_peoples,false +yosoybartsolo,superhappy.social,Law & Justice,law_justice,false +yosoybartsolo,superhappy.social,LGBTQ+,lgbtq,false +yosoybartsolo,superhappy.social,Journalism & Comment,news_comment_data,false +yosoybartsolo,superhappy.social,Philosophy,philosophy,false +yosoybartsolo,superhappy.social,Politics,politics,false +yosoybartsolo,superhappy.social,Poverty & Inequality,poverty_inequality,false +yosoybartsolo,superhappy.social,Programming,programming,false +yosoybartsolo,superhappy.social,Social Media,social_media,false +yosoybartsolo,superhappy.social,Social Sciences,social_sciences,false +yosoybartsolo,superhappy.social,Ukraine Invasion,ukraine_invasion,false +yosoybartsolo,superhappy.social,US Politics,us_politics,false +yosoybartsolo,superhappy.social,Weather,weather,false +yosoybartsolo,superhappy.social,Women’s Voices,women_voices,false +yosoybartsolo,superhappy.social,Technology,technology,true +petite_etoile,mastodon.social,Democracy & Human Rights,democracy_human_rights,true +Sahqon,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false +Sahqon,newsmast.social,Biology,biology,false +Sahqon,newsmast.social,Breaking News,breaking_news,false +Sahqon,newsmast.social,Climate change,climate_change,false +Sahqon,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +Sahqon,newsmast.social,Energy & Pollution,energy_pollution,false +Sahqon,newsmast.social,Environment,environment,false +Sahqon,newsmast.social,Government & Policy,government_policy,false +Sahqon,newsmast.social,Physics,physics,false +Sahqon,newsmast.social,Science,science,true +AlexiaPonchet,newsmast.social,Social Sciences,social_sciences,false +bbdjgfhjhhg,newsmast.social,Business,business,false +bbdjgfhjhhg,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false +KarenKeiller,indieweb.social,Journalism & Comment,news_comment_data,false +KarenKeiller,indieweb.social,Social Media,social_media,false +KarenKeiller,indieweb.social,Ukraine Invasion,ukraine_invasion,false +KarenKeiller,indieweb.social,Weather,weather,false +KarenKeiller,indieweb.social,Breaking News,breaking_news,true +ste_pal,mastodon.uno,Activism & Civil Rights,activism_civil_rights,false +ste_pal,mastodon.uno,Democracy & Human Rights,democracy_human_rights,false +ste_pal,mastodon.uno,Music,music,false +ste_pal,mastodon.uno,Science,science,false +jrotermund,mastodon.social,Activism & Civil Rights,activism_civil_rights,false +jrotermund,mastodon.social,Environment,environment,false +jrotermund,mastodon.social,Humanities,humanities,false +jrotermund,mastodon.social,Social Media,social_media,false +jrotermund,mastodon.social,Democracy & Human Rights,democracy_human_rights,true +nesieslonk,mastodon.social,Academia & Research,academia_research,false +nesieslonk,mastodon.social,AI,ai,false +nesieslonk,mastodon.social,Biology,biology,false +nesieslonk,mastodon.social,Breaking News,breaking_news,false +nesieslonk,mastodon.social,Business,business,false +nesieslonk,mastodon.social,Chemistry,chemistry,false +aendra,hackers.town,Activism & Civil Rights,activism_civil_rights,false +aendra,hackers.town,AI,ai,false +aendra,hackers.town,Architecture & Design,architecture_design,false +aendra,hackers.town,Biology,biology,false +aendra,hackers.town,Black Voices,black_voices,false +aendra,hackers.town,Books & Literature,books_literature,false +nesieslonk,mastodon.social,Engineering,engineering,false +aendra,hackers.town,Business,business,false +aendra,hackers.town,Chemistry,chemistry,false +aendra,hackers.town,Climate change,climate_change,false +aendra,hackers.town,Creative Arts,creative_arts,false +aendra,hackers.town,Democracy & Human Rights,democracy_human_rights,false +aendra,hackers.town,Engineering,engineering,false +aendra,hackers.town,Environment,environment,false +aendra,hackers.town,Food & Drink,food_drink,false +aendra,hackers.town,Gaming,gaming,false +aendra,hackers.town,Government & Policy,government_policy,false +aendra,hackers.town,Healthcare,healthcare,false +aendra,hackers.town,History,history,false +nesieslonk,mastodon.social,Government & Policy,government_policy,false +nesieslonk,mastodon.social,Healthcare,healthcare,false +nesieslonk,mastodon.social,History,history,false +nesieslonk,mastodon.social,Humanities,humanities,false +nesieslonk,mastodon.social,Law & Justice,law_justice,false +nesieslonk,mastodon.social,Markets & Finance,markets_finance,false +nesieslonk,mastodon.social,Mathematics,mathematics,false +nesieslonk,mastodon.social,Journalism & Comment,news_comment_data,false +nesieslonk,mastodon.social,Physics,physics,false +nesieslonk,mastodon.social,Philosophy,philosophy,true +ste_pal,mastodon.uno,Breaking News,breaking_news,true +swingtimeSeppe,www.lindyhop.community,Pets,pets,false +swingtimeSeppe,www.lindyhop.community,Photography,photography,false +swingtimeSeppe,www.lindyhop.community,Puzzles,puzzles,false +swingtimeSeppe,www.lindyhop.community,Science,science,false +swingtimeSeppe,www.lindyhop.community,Technology,technology,false +swingtimeSeppe,www.lindyhop.community,Space,space,true +snoots,channel.org,Performing Arts,performing_arts,false +snoots,channel.org,Photography,photography,false +snoots,channel.org,Puzzles,puzzles,false +snoots,channel.org,Travel,travel,false +snoots,channel.org,TV & Radio,tv_radio,false +snoots,channel.org,Visual Arts,visual_arts,false +snoots,channel.org,Pets,pets,true +aendra,hackers.town,Humanities,humanities,false +aendra,hackers.town,Humour,humour,false +aendra,hackers.town,LGBTQ+,lgbtq,false +aendra,hackers.town,Mathematics,mathematics,false +aendra,hackers.town,Mental Health & Wellbeing,mental_health_wellbeing,false +aendra,hackers.town,Movies,movies,false +aendra,hackers.town,Music,music,false +aendra,hackers.town,Nature & Wildlife,nature_wildlife,false +aendra,hackers.town,Journalism & Comment,news_comment_data,false +aendra,hackers.town,Performing Arts,performing_arts,false +aendra,hackers.town,Pets,pets,false +aendra,hackers.town,Philosophy,philosophy,false +aendra,hackers.town,Photography,photography,false +aendra,hackers.town,Physics,physics,false +aendra,hackers.town,Politics,politics,false +aendra,hackers.town,Poverty & Inequality,poverty_inequality,false +aendra,hackers.town,Programming,programming,false +aendra,hackers.town,Puzzles,puzzles,false +aendra,hackers.town,Science,science,false +aendra,hackers.town,Social Media,social_media,false +aendra,hackers.town,Social Sciences,social_sciences,false +aendra,hackers.town,Space,space,false +aendra,hackers.town,Technology,technology,false +aendra,hackers.town,Travel,travel,false +aendra,hackers.town,TV & Radio,tv_radio,false +aendra,hackers.town,Visual Arts,visual_arts,false +aendra,hackers.town,Women’s Voices,women_voices,false +aendra,hackers.town,Breaking News,breaking_news,true +ballancier,mastodon.social,Healthcare,healthcare,false +ballancier,mastodon.social,Law & Justice,law_justice,false +Blacktiger,newsmast.social,Food & Drink,food_drink,false +ballancier,mastodon.social,Physics,physics,false +moonmehta,mastodon.social,Books & Literature,books_literature,false +moonmehta,mastodon.social,Physics,physics,false +DarkAlomox,newsmast.social,Books & Literature,books_literature,false +DarkAlomox,newsmast.social,Gaming,gaming,false +DarkAlomox,newsmast.social,Movies,movies,false +DarkAlomox,newsmast.social,Music,music,false +DarkAlomox,newsmast.social,Architecture & Design,architecture_design,true +moonmehta,mastodon.social,Science,science,false +moonmehta,mastodon.social,Technology,technology,false +moonmehta,mastodon.social,Space,space,true +jramompichel2023,mastodon.social,History,history,true +Alomox,newsmast.social,Books & Literature,books_literature,false +Alomox,newsmast.social,Gaming,gaming,false +Alomox,newsmast.social,Movies,movies,false +Alomox,newsmast.social,Music,music,false +Alomox,newsmast.social,Architecture & Design,architecture_design,true +jramompichel2023,mastodon.social,Climate change,climate_change,false +jramompichel2023,mastodon.social,Humanities,humanities,false +jramompichel2023,mastodon.social,Social Sciences,social_sciences,false +jramompichel2023,mastodon.social,Music,music,false +jramompichel2023,mastodon.social,Photography,photography,false +jramompichel2023,mastodon.social,Nature & Wildlife,nature_wildlife,false +jramompichel2023,mastodon.social,Mental Health & Wellbeing,mental_health_wellbeing,false +jramompichel2023,mastodon.social,Humour,humour,false +jramompichel2023,mastodon.social,Food & Drink,food_drink,false +mauriciobc,ursal.zone,Books & Literature,books_literature,false +PetRock,mastodon.art,Breaking News,breaking_news,false +PetRock,mastodon.art,Social Media,social_media,false +PetRock,mastodon.art,Ukraine Invasion,ukraine_invasion,false +PetRock,mastodon.art,Weather,weather,false +PetRock,mastodon.art,Journalism & Comment,news_comment_data,true +jvanvinkenroye,higher-edu.social,AI,ai,false +jvanvinkenroye,higher-edu.social,Books & Literature,books_literature,false +jvanvinkenroye,higher-edu.social,Engineering,engineering,false +jvanvinkenroye,higher-edu.social,Gaming,gaming,false +jvanvinkenroye,higher-edu.social,Government & Policy,government_policy,false +jvanvinkenroye,higher-edu.social,Humanities,humanities,false +jvanvinkenroye,higher-edu.social,Movies,movies,false +jvanvinkenroye,higher-edu.social,Poverty & Inequality,poverty_inequality,false +jvanvinkenroye,higher-edu.social,Programming,programming,false +jvanvinkenroye,higher-edu.social,Social Sciences,social_sciences,false +jvanvinkenroye,higher-edu.social,Technology,technology,false +jvanvinkenroye,higher-edu.social,Academia & Research,academia_research,true +heimoshuiyu,newsmast.social,Journalism & Comment,news_comment_data,false +heimoshuiyu,newsmast.social,Social Media,social_media,false +heimoshuiyu,newsmast.social,Ukraine Invasion,ukraine_invasion,false +heimoshuiyu,newsmast.social,Weather,weather,false +heimoshuiyu,newsmast.social,Breaking News,breaking_news,true +FreddieJ,newsmast.social,Technology,technology,false +FreddieJ,newsmast.social,Programming,programming,false +FreddieJ,newsmast.social,Engineering,engineering,false +nifta,icosahedron.website,Architecture & Design,architecture_design,false +nifta,icosahedron.website,Books & Literature,books_literature,false +nifta,icosahedron.website,Breaking News,breaking_news,false +nifta,icosahedron.website,History,history,false +nifta,icosahedron.website,Humanities,humanities,false +nifta,icosahedron.website,Music,music,false +nifta,icosahedron.website,Philosophy,philosophy,false +nifta,icosahedron.website,Photography,photography,false +nifta,icosahedron.website,TV & Radio,tv_radio,false +nifta,icosahedron.website,Visual Arts,visual_arts,false +nifta,icosahedron.website,Weather,weather,false +nifta,icosahedron.website,Movies,movies,true +raulmagdalena,mastodont.cat,Architecture & Design,architecture_design,false +raulmagdalena,mastodont.cat,Books & Literature,books_literature,false +raulmagdalena,mastodont.cat,History,history,false +raulmagdalena,mastodont.cat,Philosophy,philosophy,false +raulmagdalena,mastodont.cat,Photography,photography,false +raulmagdalena,mastodont.cat,Programming,programming,false +raulmagdalena,mastodont.cat,Science,science,false +raulmagdalena,mastodont.cat,Social Sciences,social_sciences,false +raulmagdalena,mastodont.cat,Humanities,humanities,true +ballancier,mastodon.social,Politics,politics,false +greenskyvai,social.politicaconciencia.org,Breaking News,breaking_news,false +greenskyvai,social.politicaconciencia.org,History,history,false +greenskyvai,social.politicaconciencia.org,Humanities,humanities,false +greenskyvai,social.politicaconciencia.org,Music,music,false +pboehler,mastodon.social,AI,ai,false +pboehler,mastodon.social,Breaking News,breaking_news,false +pboehler,mastodon.social,Democracy & Human Rights,democracy_human_rights,false +pboehler,mastodon.social,Technology,technology,false +pboehler,mastodon.social,Journalism & Comment,news_comment_data,true +greenskyvai,social.politicaconciencia.org,Journalism & Comment,news_comment_data,false +greenskyvai,social.politicaconciencia.org,Photography,photography,false +greenskyvai,social.politicaconciencia.org,Visual Arts,visual_arts,false +greenskyvai,social.politicaconciencia.org,Weather,weather,false +greenskyvai,social.politicaconciencia.org,Philosophy,philosophy,true +ballancier,mastodon.social,Space,space,false +ballancier,mastodon.social,Technology,technology,false +tyom,mastodon.zaclys.com,Biology,biology,false +tyom,mastodon.zaclys.com,Books & Literature,books_literature,false +tyom,mastodon.zaclys.com,Humanities,humanities,false +tyom,mastodon.zaclys.com,Visual Arts,visual_arts,false +tyom,mastodon.zaclys.com,Music,music,true +ballancier,mastodon.social,Science,science,true +ahmed90,newsmast.social,AI,ai,false +ahmed90,newsmast.social,Business,business,false +johannesalbretch,mastodon.social,History,history,false +johannesalbretch,mastodon.social,Humanities,humanities,false +johannesalbretch,mastodon.social,Humour,humour,false +johannesalbretch,mastodon.social,Mental Health & Wellbeing,mental_health_wellbeing,false +johannesalbretch,mastodon.social,Music,music,false +johannesalbretch,mastodon.social,Journalism & Comment,news_comment_data,false +johannesalbretch,mastodon.social,Philosophy,philosophy,false +johannesalbretch,mastodon.social,Photography,photography,false +johannesalbretch,mastodon.social,Science,science,false +johannesalbretch,mastodon.social,Social Media,social_media,false +johannesalbretch,mastodon.social,Social Sciences,social_sciences,false +johannesalbretch,mastodon.social,Space,space,false +johannesalbretch,mastodon.social,Technology,technology,false +johannesalbretch,mastodon.social,Visual Arts,visual_arts,false +johannesalbretch,mastodon.social,Weather,weather,false +johannesalbretch,mastodon.social,Movies,movies,true +ahmed90,newsmast.social,Engineering,engineering,false +ahmed90,newsmast.social,Government & Policy,government_policy,false +ahmed90,newsmast.social,Healthcare,healthcare,false +ahmed90,newsmast.social,Markets & Finance,markets_finance,false +ahmed90,newsmast.social,Programming,programming,false +ahmed90,newsmast.social,Technology,technology,true +mathewi,journa.host,Academia & Research,academia_research,false +mathewi,journa.host,Activism & Civil Rights,activism_civil_rights,false +mathewi,journa.host,AI,ai,false +mathewi,journa.host,Architecture & Design,architecture_design,false +mathewi,journa.host,Black Voices,black_voices,false +mathewi,journa.host,Books & Literature,books_literature,false +RuticaCL_74,mastodon.cr,Books & Literature,books_literature,false +RuticaCL_74,mastodon.cr,Creative Arts,creative_arts,false +RuticaCL_74,mastodon.cr,Food & Drink,food_drink,false +RuticaCL_74,mastodon.cr,Nature & Wildlife,nature_wildlife,false +RuticaCL_74,mastodon.cr,Pets,pets,false +RuticaCL_74,mastodon.cr,Photography,photography,false +RuticaCL_74,mastodon.cr,AI,ai,true +P_FrankCojedor,mastodon.la,Movies,movies,false +P_FrankCojedor,mastodon.la,TV & Radio,tv_radio,false +P_FrankCojedor,mastodon.la,Visual Arts,visual_arts,false +P_FrankCojedor,mastodon.la,Weather,weather,false +P_FrankCojedor,mastodon.la,Space,space,true +emsquared,mastodon.social,Mental Health & Wellbeing,mental_health_wellbeing,false +Nyein,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false +Nyein,newsmast.social,Poverty & Inequality,poverty_inequality,false +RuthCL,mast.lat,AI,ai,false +RuthCL,mast.lat,Biology,biology,false +RuthCL,mast.lat,Space,space,false +RuthCL,mast.lat,Technology,technology,false +RuthCL,mast.lat,Science,science,true +templarknight,ieji.de,AI,ai,false +templarknight,ieji.de,Food & Drink,food_drink,false +templarknight,ieji.de,Technology,technology,false +templarknight,ieji.de,Travel,travel,false +templarknight,ieji.de,Breaking News,breaking_news,true +Lioh,social.anoxinon.de,Architecture & Design,architecture_design,true +GlennMarlowe,sfba.social,Activism & Civil Rights,activism_civil_rights,false +GlennMarlowe,sfba.social,AI,ai,false +GlennMarlowe,sfba.social,Architecture & Design,architecture_design,false +GlennMarlowe,sfba.social,Biodiversity & Rewilding,biodiversity_rewilding,false +GlennMarlowe,sfba.social,Black Voices,black_voices,false +GlennMarlowe,sfba.social,Breaking News,breaking_news,false +GlennMarlowe,sfba.social,Climate change,climate_change,false +GlennMarlowe,sfba.social,Democracy & Human Rights,democracy_human_rights,false +GlennMarlowe,sfba.social,Disabled Voices,disabled_voices,false +GlennMarlowe,sfba.social,Environment,environment,false +GlennMarlowe,sfba.social,Government & Policy,government_policy,false +GlennMarlowe,sfba.social,History,history,false +GlennMarlowe,sfba.social,Humanities,humanities,false +GlennMarlowe,sfba.social,Immigrants Rights,immigrants_rights,false +GlennMarlowe,sfba.social,Indigenous Peoples,indigenous_peoples,false +GlennMarlowe,sfba.social,LGBTQ+,lgbtq,false +emsquared,mastodon.social,Creative Arts,creative_arts,false +GlennMarlowe,sfba.social,Movies,movies,false +GlennMarlowe,sfba.social,Music,music,false +GlennMarlowe,sfba.social,Journalism & Comment,news_comment_data,false +GlennMarlowe,sfba.social,Performing Arts,performing_arts,false +GlennMarlowe,sfba.social,Science,science,false +GlennMarlowe,sfba.social,Social Media,social_media,false +GlennMarlowe,sfba.social,Space,space,false +GlennMarlowe,sfba.social,Technology,technology,false +GlennMarlowe,sfba.social,TV & Radio,tv_radio,false +GlennMarlowe,sfba.social,US Politics,us_politics,false +GlennMarlowe,sfba.social,Visual Arts,visual_arts,false +GlennMarlowe,sfba.social,Women’s Voices,women_voices,false +GlennMarlowe,sfba.social,Photography,photography,true +egc25,newsmast.social,Academia & Research,academia_research,false +egc25,newsmast.social,Activism & Civil Rights,activism_civil_rights,false +fedired,fedired.com,Black Voices,black_voices,false +fedired,fedired.com,Disabled Voices,disabled_voices,false +fedired,fedired.com,Engineering,engineering,false +fedired,fedired.com,Technology,technology,false +fedired,fedired.com,AI,ai,true +TechNieuws,newsmast.social,Business,business,false +TechNieuws,newsmast.social,Journalism & Comment,news_comment_data,false +TechNieuws,newsmast.social,Programming,programming,false +TechNieuws,newsmast.social,Social Media,social_media,false +TechNieuws,newsmast.social,Technology,technology,false +TechNieuws,newsmast.social,Breaking News,breaking_news,true +tkruck6,newsmast.social,AI,ai,false +nesieslonk,mastodon.social,Politics,politics,false +nesieslonk,mastodon.social,Programming,programming,false +nesieslonk,mastodon.social,Science,science,false +nesieslonk,mastodon.social,Social Media,social_media,false +nesieslonk,mastodon.social,Social Sciences,social_sciences,false +nesieslonk,mastodon.social,Space,space,false +nesieslonk,mastodon.social,Technology,technology,false +nesieslonk,mastodon.social,Ukraine Invasion,ukraine_invasion,false +nesieslonk,mastodon.social,US Politics,us_politics,false +nesieslonk,mastodon.social,Weather,weather,false +nesieslonk,mastodon.social,Workers Rights,workers_rights,false +5poox,mastodon.nu,Breaking News,breaking_news,false +5poox,mastodon.nu,Government & Policy,government_policy,false +5poox,mastodon.nu,Politics,politics,false +5poox,mastodon.nu,Ukraine Invasion,ukraine_invasion,false +5poox,mastodon.nu,Poverty & Inequality,poverty_inequality,true +tkruck6,newsmast.social,Biology,biology,false +tkruck6,newsmast.social,Breaking News,breaking_news,false +tkruck6,newsmast.social,Chemistry,chemistry,false +Clarke617,newsmast.social,Academia & Research,academia_research,false +Clarke617,newsmast.social,Creative Arts,creative_arts,false +Clarke617,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +Clarke617,newsmast.social,Food & Drink,food_drink,false +Clarke617,newsmast.social,Government & Policy,government_policy,false +Clarke617,newsmast.social,Healthcare,healthcare,false +Clarke617,newsmast.social,Humour,humour,false +Clarke617,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false +Clarke617,newsmast.social,Law & Justice,law_justice,false +Clarke617,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false +Clarke617,newsmast.social,Nature & Wildlife,nature_wildlife,false +Clarke617,newsmast.social,Journalism & Comment,news_comment_data,false +Clarke617,newsmast.social,Pets,pets,false +Clarke617,newsmast.social,Politics,politics,false +Clarke617,newsmast.social,Poverty & Inequality,poverty_inequality,false +Clarke617,newsmast.social,Puzzles,puzzles,false +Clarke617,newsmast.social,Social Media,social_media,false +Clarke617,newsmast.social,Travel,travel,false +Clarke617,newsmast.social,Ukraine Invasion,ukraine_invasion,false +Clarke617,newsmast.social,US Politics,us_politics,false +Clarke617,newsmast.social,Weather,weather,false +Clarke617,newsmast.social,Breaking News,breaking_news,true +tkruck6,newsmast.social,Engineering,engineering,false +tkruck6,newsmast.social,Healthcare,healthcare,false +sarampion,masto.es,Poverty & Inequality,poverty_inequality,false +sarampion,masto.es,Social Media,social_media,false +sarampion,masto.es,Social Sciences,social_sciences,false +sarampion,masto.es,Technology,technology,false +gbrrrl,mas.to,Creative Arts,creative_arts,false +gbrrrl,mas.to,LGBTQ+,lgbtq,false +Yunandar,newsmast.social,Energy & Pollution,energy_pollution,false +Yunandar,newsmast.social,Environment,environment,false +Yunandar,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false +Yunandar,newsmast.social,Poverty & Inequality,poverty_inequality,false +Yunandar,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,true +sev,burma.social,Activism & Civil Rights,activism_civil_rights,false +sev,burma.social,Business,business,false +sev,burma.social,Creative Arts,creative_arts,false +sev,burma.social,Environment,environment,false +sev,burma.social,Food & Drink,food_drink,false +sev,burma.social,Markets & Finance,markets_finance,false +sev,burma.social,Mental Health & Wellbeing,mental_health_wellbeing,false +sev,burma.social,Movies,movies,false +sev,burma.social,Music,music,false +sev,burma.social,Nature & Wildlife,nature_wildlife,false +sev,burma.social,Performing Arts,performing_arts,false +sev,burma.social,Travel,travel,false +sev,burma.social,Visual Arts,visual_arts,false +sev,burma.social,TV & Radio,tv_radio,true +Blacktiger,newsmast.social,Photography,photography,false +sicolan,mamot.fr,Visual Arts,visual_arts,false +sicolan,mamot.fr,Photography,photography,true +CaptainAyeAye,universeodon.com,Academia & Research,academia_research,false +CaptainAyeAye,universeodon.com,Breaking News,breaking_news,false +CaptainAyeAye,universeodon.com,Engineering,engineering,false +CaptainAyeAye,universeodon.com,Government & Policy,government_policy,false +CaptainAyeAye,universeodon.com,Healthcare,healthcare,false +CaptainAyeAye,universeodon.com,Humanities,humanities,false +CaptainAyeAye,universeodon.com,Law & Justice,law_justice,false +CaptainAyeAye,universeodon.com,Journalism & Comment,news_comment_data,false +CaptainAyeAye,universeodon.com,Philosophy,philosophy,false +CaptainAyeAye,universeodon.com,Politics,politics,false +CaptainAyeAye,universeodon.com,Science,science,false +CaptainAyeAye,universeodon.com,Social Sciences,social_sciences,false +CaptainAyeAye,universeodon.com,Technology,technology,false +CaptainAyeAye,universeodon.com,US Politics,us_politics,false +CaptainAyeAye,universeodon.com,Programming,programming,true +dob0,techhub.social,Business,business,false +dob0,techhub.social,Engineering,engineering,false +dob0,techhub.social,Markets & Finance,markets_finance,false +dob0,techhub.social,Programming,programming,false +aunghtetnay,newsmast.social,Academia & Research,academia_research,false +aunghtetnay,newsmast.social,AI,ai,false +aunghtetnay,newsmast.social,AI,ai,false +aunghtetnay,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false +aunghtetnay,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false +aunghtetnay,newsmast.social,Breaking News,breaking_news,false +aunghtetnay,newsmast.social,Breaking News,breaking_news,false +aunghtetnay,newsmast.social,Climate change,climate_change,false +aunghtetnay,newsmast.social,Climate change,climate_change,false +aunghtetnay,newsmast.social,Energy & Pollution,energy_pollution,false +aunghtetnay,newsmast.social,Energy & Pollution,energy_pollution,false +aunghtetnay,newsmast.social,Engineering,engineering,false +aunghtetnay,newsmast.social,Engineering,engineering,false +aunghtetnay,newsmast.social,Environment,environment,false +aunghtetnay,newsmast.social,Environment,environment,false +aunghtetnay,newsmast.social,Government & Policy,government_policy,false +aunghtetnay,newsmast.social,Government & Policy,government_policy,false +aunghtetnay,newsmast.social,Healthcare,healthcare,false +aunghtetnay,newsmast.social,Healthcare,healthcare,false +aunghtetnay,newsmast.social,Law & Justice,law_justice,false +aunghtetnay,newsmast.social,Law & Justice,law_justice,false +aunghtetnay,newsmast.social,Journalism & Comment,news_comment_data,false +aunghtetnay,newsmast.social,Journalism & Comment,news_comment_data,false +aunghtetnay,newsmast.social,Politics,politics,false +aunghtetnay,newsmast.social,Politics,politics,false +aunghtetnay,newsmast.social,Programming,programming,false +aunghtetnay,newsmast.social,Programming,programming,false +aunghtetnay,newsmast.social,Social Media,social_media,false +aunghtetnay,newsmast.social,Social Media,social_media,false +aunghtetnay,newsmast.social,Technology,technology,false +aunghtetnay,newsmast.social,Technology,technology,false +aunghtetnay,newsmast.social,Ukraine Invasion,ukraine_invasion,false +aunghtetnay,newsmast.social,US Politics,us_politics,false +aunghtetnay,newsmast.social,Ukraine Invasion,ukraine_invasion,false +aunghtetnay,newsmast.social,Weather,weather,false +aunghtetnay,newsmast.social,US Politics,us_politics,false +aunghtetnay,newsmast.social,Weather,weather,false +aunghtetnay,newsmast.social,Academia & Research,academia_research,true +tou89,mastodon.social,Football,football,false +tou89,mastodon.social,Humour,humour,false +tou89,mastodon.social,Pets,pets,false +tou89,mastodon.social,US Sport,us_sport,false +tou89,mastodon.social,Sport,sport,true +joaoalberto9009,bolha.us,Music,music,false +joaoalberto9009,bolha.us,Poverty & Inequality,poverty_inequality,false +joaoalberto9009,bolha.us,Science,science,false +joaoalberto9009,bolha.us,Social Media,social_media,false +joaoalberto9009,bolha.us,Space,space,false +joaoalberto9009,bolha.us,Technology,technology,false +joaoalberto9009,bolha.us,Visual Arts,visual_arts,false +joaoalberto9009,bolha.us,Movies,movies,true +rcg,twit.social,AI,ai,false +rcg,twit.social,Government & Policy,government_policy,false +rcg,twit.social,Journalism & Comment,news_comment_data,false +rcg,twit.social,Technology,technology,false +rcg,twit.social,Breaking News,breaking_news,true +sylphrenetic,newsmast.social,Academia & Research,academia_research,false +sylphrenetic,newsmast.social,Philosophy,philosophy,false +sylphrenetic,newsmast.social,Science,science,false +sylphrenetic,newsmast.social,Social Sciences,social_sciences,false +sylphrenetic,newsmast.social,Technology,technology,false +sylphrenetic,newsmast.social,US Politics,us_politics,false +sylphrenetic,newsmast.social,Programming,programming,true +John90,newsmast.social,Breaking News,breaking_news,false +John90,newsmast.social,Climate change,climate_change,false +John90,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +John90,newsmast.social,Environment,environment,false +John90,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,true +sev,newsmast.social,Philosophy,philosophy,false +Blacktiger,newsmast.social,Sport,sport,false +mauriciobc,ursal.zone,Creative Arts,creative_arts,false +schmegs,retro.pizza,Breaking News,breaking_news,false +schmegs,retro.pizza,Environment,environment,false +schmegs,retro.pizza,Movies,movies,false +schmegs,retro.pizza,Music,music,false +schmegs,retro.pizza,Performing Arts,performing_arts,false +schmegs,retro.pizza,Photography,photography,false +schmegs,retro.pizza,Science,science,false +schmegs,retro.pizza,Technology,technology,false +schmegs,retro.pizza,TV & Radio,tv_radio,true +mauriciobc,ursal.zone,Food & Drink,food_drink,false +mauriciobc,ursal.zone,Gaming,gaming,false +mauriciobc,ursal.zone,History,history,false +mauriciobc,ursal.zone,Humanities,humanities,false +Johan,newsmast.social,Academia & Research,academia_research,false +Johan,newsmast.social,Business,business,false +Johan,newsmast.social,Engineering,engineering,false +Johan,newsmast.social,Government & Policy,government_policy,false +Johan,newsmast.social,Healthcare,healthcare,false +Johan,newsmast.social,Law & Justice,law_justice,false +Johan,newsmast.social,Markets & Finance,markets_finance,false +Johan,newsmast.social,Politics,politics,false +Johan,newsmast.social,Programming,programming,false +Johan,newsmast.social,Technology,technology,false +Johan,newsmast.social,US Politics,us_politics,false +Johan,newsmast.social,Workers Rights,workers_rights,false +Johan,newsmast.social,AI,ai,true +tatkotel,newsmast.social,AI,ai,false +tatkotel,newsmast.social,Architecture & Design,architecture_design,false +tatkotel,newsmast.social,Books & Literature,books_literature,false +tatkotel,newsmast.social,Engineering,engineering,false +tatkotel,newsmast.social,Gaming,gaming,false +tatkotel,newsmast.social,Movies,movies,false +tatkotel,newsmast.social,Music,music,false +tatkotel,newsmast.social,Journalism & Comment,news_comment_data,false +tatkotel,newsmast.social,Performing Arts,performing_arts,false +tatkotel,newsmast.social,Photography,photography,false +tatkotel,newsmast.social,Programming,programming,false +tatkotel,newsmast.social,Social Media,social_media,false +tatkotel,newsmast.social,Technology,technology,false +tatkotel,newsmast.social,TV & Radio,tv_radio,false +tatkotel,newsmast.social,Ukraine Invasion,ukraine_invasion,false +tatkotel,newsmast.social,Visual Arts,visual_arts,false +tatkotel,newsmast.social,Weather,weather,false +tatkotel,newsmast.social,Breaking News,breaking_news,true +theridgebikedaily,mastodon.world,Books & Literature,books_literature,false +theridgebikedaily,mastodon.world,Humanities,humanities,false +theridgebikedaily,mastodon.world,Photography,photography,false +theridgebikedaily,mastodon.world,Technology,technology,false +theridgebikedaily,mastodon.world,Visual Arts,visual_arts,true +familyphysio,newsmast.social,Academia & Research,academia_research,false +familyphysio,newsmast.social,Breaking News,breaking_news,false +familyphysio,newsmast.social,Government & Policy,government_policy,false +familyphysio,newsmast.social,Healthcare,healthcare,false +familyphysio,newsmast.social,Journalism & Comment,news_comment_data,false +familyphysio,newsmast.social,Politics,politics,false +familyphysio,newsmast.social,Social Media,social_media,false +familyphysio,newsmast.social,Ukraine Invasion,ukraine_invasion,false +familyphysio,newsmast.social,US Politics,us_politics,false +familyphysio,newsmast.social,Weather,weather,false +familyphysio,newsmast.social,Law & Justice,law_justice,true +impactphysio,newsmast.social,Breaking News,breaking_news,false +impactphysio,newsmast.social,Journalism & Comment,news_comment_data,false +impactphysio,newsmast.social,Ukraine Invasion,ukraine_invasion,false +impactphysio,newsmast.social,Weather,weather,false +impactphysio,newsmast.social,Social Media,social_media,true +momentumphysio,newsmast.social,Journalism & Comment,news_comment_data,false +momentumphysio,newsmast.social,Social Media,social_media,false +momentumphysio,newsmast.social,Ukraine Invasion,ukraine_invasion,false +momentumphysio,newsmast.social,Weather,weather,false +momentumphysio,newsmast.social,Breaking News,breaking_news,true +junctionpoint,newsmast.social,AI,ai,false +junctionpoint,newsmast.social,Engineering,engineering,false +junctionpoint,newsmast.social,Football,football,false +junctionpoint,newsmast.social,Markets & Finance,markets_finance,false +junctionpoint,newsmast.social,Programming,programming,false +junctionpoint,newsmast.social,Sport,sport,false +junctionpoint,newsmast.social,Technology,technology,false +junctionpoint,newsmast.social,US Sport,us_sport,false +junctionpoint,newsmast.social,Workers Rights,workers_rights,false +junctionpoint,newsmast.social,Business,business,true +gppainphysio,newsmast.social,AI,ai,false +gppainphysio,newsmast.social,Engineering,engineering,false +gppainphysio,newsmast.social,Football,football,false +gppainphysio,newsmast.social,Markets & Finance,markets_finance,false +gppainphysio,newsmast.social,Programming,programming,false +gppainphysio,newsmast.social,Sport,sport,false +gppainphysio,newsmast.social,Technology,technology,false +gppainphysio,newsmast.social,US Sport,us_sport,false +gppainphysio,newsmast.social,Workers Rights,workers_rights,false +gppainphysio,newsmast.social,Business,business,true +emeraldphysio,newsmast.social,Breaking News,breaking_news,false +emeraldphysio,newsmast.social,Journalism & Comment,news_comment_data,false +emeraldphysio,newsmast.social,Social Media,social_media,false +emeraldphysio,newsmast.social,Weather,weather,false +emeraldphysio,newsmast.social,Ukraine Invasion,ukraine_invasion,true +physioedmonton,newsmast.social,Journalism & Comment,news_comment_data,false +physioedmonton,newsmast.social,Social Media,social_media,false +physioedmonton,newsmast.social,Ukraine Invasion,ukraine_invasion,false +physioedmonton,newsmast.social,Weather,weather,false +physioedmonton,newsmast.social,Breaking News,breaking_news,true +Blacktiger,newsmast.social,TV & Radio,tv_radio,false +Blacktiger,newsmast.social,Music,music,true +mauriciobc,ursal.zone,Movies,movies,false +mauriciobc,ursal.zone,Music,music,false +sunrisephysio,newsmast.social,Football,football,false +sunrisephysio,newsmast.social,History,history,false +sunrisephysio,newsmast.social,Humanities,humanities,false +sunrisephysio,newsmast.social,Markets & Finance,markets_finance,false +sunrisephysio,newsmast.social,Philosophy,philosophy,false +sunrisephysio,newsmast.social,Social Sciences,social_sciences,false +sunrisephysio,newsmast.social,Sport,sport,false +sunrisephysio,newsmast.social,US Sport,us_sport,false +sunrisephysio,newsmast.social,Workers Rights,workers_rights,false +sunrisephysio,newsmast.social,Business,business,true +mauriciobc,ursal.zone,Pets,pets,false +mauriciobc,ursal.zone,Philosophy,philosophy,false +mauriciobc,ursal.zone,Photography,photography,false +mauriciobc,ursal.zone,Programming,programming,false +mauriciobc,ursal.zone,Science,science,false +mauriciobc,ursal.zone,Social Sciences,social_sciences,false +mauriciobc,ursal.zone,Space,space,false +mauriciobc,ursal.zone,Technology,technology,false +mauriciobc,ursal.zone,TV & Radio,tv_radio,false +mauriciobc,ursal.zone,Football,football,true +mathewi,journa.host,Breaking News,breaking_news,false +mathewi,journa.host,Climate change,climate_change,false +mathewi,journa.host,Democracy & Human Rights,democracy_human_rights,false +mathewi,journa.host,History,history,false +mathewi,journa.host,Humanities,humanities,false +mathewi,journa.host,"Hunger, Disease & Water",hunger_disease_water,false +mathewi,journa.host,Indigenous Peoples,indigenous_peoples,false +nexstepphysio,newsmast.social,Business,business,false +nexstepphysio,newsmast.social,Markets & Finance,markets_finance,false +nexstepphysio,newsmast.social,Journalism & Comment,news_comment_data,false +nexstepphysio,newsmast.social,Social Media,social_media,false +nexstepphysio,newsmast.social,Ukraine Invasion,ukraine_invasion,false +nexstepphysio,newsmast.social,Weather,weather,false +nexstepphysio,newsmast.social,Workers Rights,workers_rights,false +nexstepphysio,newsmast.social,Breaking News,breaking_news,true +healthylifetips,newsmast.social,Social Media,social_media,false +mathewi,journa.host,Markets & Finance,markets_finance,false +mathewi,journa.host,Music,music,false +mathewi,journa.host,Journalism & Comment,news_comment_data,false +mathewi,journa.host,Philosophy,philosophy,false +mathewi,journa.host,Photography,photography,false +mathewi,journa.host,Physics,physics,false +mathewi,journa.host,Poverty & Inequality,poverty_inequality,false +yesterdaybye777,mastodon.social,Business,business,false +yesterdaybye777,mastodon.social,Humanities,humanities,false +yesterdaybye777,mastodon.social,Philosophy,philosophy,false +yesterdaybye777,mastodon.social,Science,science,false +yesterdaybye777,mastodon.social,Social Sciences,social_sciences,false +yesterdaybye777,mastodon.social,History,history,true +mathewi,journa.host,Science,science,false +mathewi,journa.host,Social Media,social_media,false +mathewi,journa.host,Social Sciences,social_sciences,false +mathewi,journa.host,Space,space,false +mathewi,journa.host,US Politics,us_politics,false +mathewi,journa.host,Women’s Voices,women_voices,false +mathewi,journa.host,Technology,technology,true +dob0,techhub.social,Technology,technology,false +dob0,techhub.social,Workers Rights,workers_rights,false +dob0,techhub.social,AI,ai,true +egc25,newsmast.social,Architecture & Design,architecture_design,false +egc25,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false +egc25,newsmast.social,Black Voices,black_voices,false +egc25,newsmast.social,Books & Literature,books_literature,false +kkobo,mastodon.social,Breaking News,breaking_news,false +kkobo,mastodon.social,Business,business,false +kkobo,mastodon.social,Markets & Finance,markets_finance,false +kkobo,mastodon.social,Programming,programming,false +kkobo,mastodon.social,Technology,technology,true +gbrrrl,mas.to,Architecture & Design,architecture_design,false +gbrrrl,mas.to,Mental Health & Wellbeing,mental_health_wellbeing,false +sigimund,101010.pl,Books & Literature,books_literature,false +sigimund,101010.pl,Breaking News,breaking_news,false +sigimund,101010.pl,Sport,sport,false +sigimund,101010.pl,Technology,technology,false +sigimund,101010.pl,Journalism & Comment,news_comment_data,true +sassyboi,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +sassyboi,newsmast.social,Government & Policy,government_policy,false +sassyboi,newsmast.social,Journalism & Comment,news_comment_data,false +sassyboi,newsmast.social,Poverty & Inequality,poverty_inequality,false +chafafa,newsmast.social,AI,ai,false +chafafa,newsmast.social,Architecture & Design,architecture_design,false +chafafa,newsmast.social,Books & Literature,books_literature,false +chafafa,newsmast.social,Chemistry,chemistry,false +chafafa,newsmast.social,Engineering,engineering,false +chafafa,newsmast.social,History,history,false +chafafa,newsmast.social,Humanities,humanities,false +chafafa,newsmast.social,Mathematics,mathematics,false +chafafa,newsmast.social,Philosophy,philosophy,false +chafafa,newsmast.social,Photography,photography,false +chafafa,newsmast.social,Physics,physics,false +chafafa,newsmast.social,Programming,programming,false +chafafa,newsmast.social,Science,science,false +chafafa,newsmast.social,Technology,technology,false +chafafa,newsmast.social,TV & Radio,tv_radio,false +chafafa,newsmast.social,Visual Arts,visual_arts,false +chafafa,newsmast.social,Weather,weather,false +chafafa,newsmast.social,Breaking News,breaking_news,true +captnmnemo,newsmast.social,AI,ai,false +captnmnemo,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false +captnmnemo,newsmast.social,Books & Literature,books_literature,false +captnmnemo,newsmast.social,Gaming,gaming,false +captnmnemo,newsmast.social,Journalism & Comment,news_comment_data,false +captnmnemo,newsmast.social,Programming,programming,false +captnmnemo,newsmast.social,Science,science,false +captnmnemo,newsmast.social,Visual Arts,visual_arts,false +captnmnemo,newsmast.social,Women’s Voices,women_voices,false +captnmnemo,newsmast.social,Disabled Voices,disabled_voices,true +Kira,hear-me.social,Architecture & Design,architecture_design,false +Kira,hear-me.social,Books & Literature,books_literature,false +Kira,hear-me.social,Breaking News,breaking_news,false +Kira,hear-me.social,Gaming,gaming,false +Kira,hear-me.social,History,history,false +Kira,hear-me.social,Humanities,humanities,false +Kira,hear-me.social,Movies,movies,false +Kira,hear-me.social,Music,music,false +Kira,hear-me.social,Journalism & Comment,news_comment_data,false +Kira,hear-me.social,Performing Arts,performing_arts,false +GuyDudeman,beige.party,Creative Arts,creative_arts,true +egc25,newsmast.social,Breaking News,breaking_news,false +rydercashnews,newsmast.social,Activism & Civil Rights,activism_civil_rights,false +rydercashnews,newsmast.social,AI,ai,false +rydercashnews,newsmast.social,Engineering,engineering,false +rydercashnews,newsmast.social,Programming,programming,false +rydercashnews,newsmast.social,Technology,technology,false +rydercashnews,newsmast.social,Law & Justice,law_justice,true +egc25,newsmast.social,Climate change,climate_change,false +Kira,hear-me.social,Philosophy,philosophy,false +egc25,newsmast.social,Disabled Voices,disabled_voices,false +egc25,newsmast.social,Energy & Pollution,energy_pollution,false +emsquared,mastodon.social,Books & Literature,books_literature,false +egc25,newsmast.social,Environment,environment,false +GuyDudeman,beige.party,Academia & Research,academia_research,false +GuyDudeman,beige.party,Activism & Civil Rights,activism_civil_rights,false +GuyDudeman,beige.party,Architecture & Design,architecture_design,false +GuyDudeman,beige.party,Biodiversity & Rewilding,biodiversity_rewilding,false +Levi1594,mastodon.social,Breaking News,breaking_news,false +Levi1594,mastodon.social,Government & Policy,government_policy,false +Levi1594,mastodon.social,Journalism & Comment,news_comment_data,false +Levi1594,mastodon.social,Social Media,social_media,false +Levi1594,mastodon.social,Technology,technology,true +06fxsts,mastodon.online,Humour,humour,false +healthylifetips,newsmast.social,Climate change,climate_change,false +GuyDudeman,beige.party,Biology,biology,false +GuyDudeman,beige.party,Breaking News,breaking_news,false +GuyDudeman,beige.party,Climate change,climate_change,false +GuyDudeman,beige.party,Democracy & Human Rights,democracy_human_rights,false +GuyDudeman,beige.party,Energy & Pollution,energy_pollution,false +GuyDudeman,beige.party,Engineering,engineering,false +GuyDudeman,beige.party,Environment,environment,false +GuyDudeman,beige.party,Government & Policy,government_policy,false +GuyDudeman,beige.party,Healthcare,healthcare,false +GuyDudeman,beige.party,History,history,false +GuyDudeman,beige.party,Humanities,humanities,false +GuyDudeman,beige.party,Humour,humour,false +GuyDudeman,beige.party,"Hunger, Disease & Water",hunger_disease_water,false +egc25,newsmast.social,Gaming,gaming,false +egc25,newsmast.social,Government & Policy,government_policy,false +egc25,newsmast.social,Healthcare,healthcare,false +egc25,newsmast.social,History,history,false +egc25,newsmast.social,Humanities,humanities,false +egc25,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false +egc25,newsmast.social,Immigrants Rights,immigrants_rights,false +egc25,newsmast.social,Indigenous Peoples,indigenous_peoples,false +egc25,newsmast.social,LGBTQ+,lgbtq,false +egc25,newsmast.social,Journalism & Comment,news_comment_data,false +egc25,newsmast.social,Philosophy,philosophy,false +egc25,newsmast.social,Photography,photography,false +egc25,newsmast.social,Poverty & Inequality,poverty_inequality,false +egc25,newsmast.social,Social Media,social_media,false +egc25,newsmast.social,Social Sciences,social_sciences,false +egc25,newsmast.social,Ukraine Invasion,ukraine_invasion,false +egc25,newsmast.social,Weather,weather,false +Kira,hear-me.social,Photography,photography,false +Kira,hear-me.social,Social Sciences,social_sciences,false +Kira,hear-me.social,TV & Radio,tv_radio,false +Kira,hear-me.social,Ukraine Invasion,ukraine_invasion,false +Kira,hear-me.social,Visual Arts,visual_arts,false +Kira,hear-me.social,Weather,weather,false +Kira,hear-me.social,Social Media,social_media,true +sassyboi,newsmast.social,Breaking News,breaking_news,true +egc25,newsmast.social,Women’s Voices,women_voices,false +egc25,newsmast.social,Democracy & Human Rights,democracy_human_rights,true +AlexiaPonchet,newsmast.social,Environment,environment,false +AlexiaPonchet,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false +antix7602,antix7602@mastodon.social,AI,ai,false +antix7602,antix7602@mastodon.social,Physics,physics,false +antix7602,antix7602@mastodon.social,Space,space,false +antix7602,antix7602@mastodon.social,Weather,weather,false +antix7602,antix7602@mastodon.social,Technology,technology,true +hanubeki,fedibird.com,Engineering,engineering,false +hanubeki,fedibird.com,Programming,programming,false +hanubeki,fedibird.com,Space,space,false +hanubeki,fedibird.com,Weather,weather,false +hanubeki,fedibird.com,Technology,technology,true +OurSkyHaven,newsmast.social,Architecture & Design,architecture_design,false +OurSkyHaven,newsmast.social,Books & Literature,books_literature,false +OurSkyHaven,newsmast.social,Breaking News,breaking_news,false +OurSkyHaven,newsmast.social,Gaming,gaming,false +OurSkyHaven,newsmast.social,Movies,movies,false +OurSkyHaven,newsmast.social,Music,music,false +OurSkyHaven,newsmast.social,Performing Arts,performing_arts,false +OurSkyHaven,newsmast.social,Photography,photography,false +OurSkyHaven,newsmast.social,Sport,sport,false +OurSkyHaven,newsmast.social,TV & Radio,tv_radio,false +OurSkyHaven,newsmast.social,US Sport,us_sport,false +OurSkyHaven,newsmast.social,Visual Arts,visual_arts,false +OurSkyHaven,newsmast.social,Football,football,true +mrnail,mastodon.social,Activism & Civil Rights,activism_civil_rights,false +mrnail,mastodon.social,Biology,biology,false +mrnail,mastodon.social,Chemistry,chemistry,false +mrnail,mastodon.social,Climate change,climate_change,false +mrnail,mastodon.social,History,history,false +mrnail,mastodon.social,Humanities,humanities,false +mrnail,mastodon.social,Immigrants Rights,immigrants_rights,false +mrnail,mastodon.social,Indigenous Peoples,indigenous_peoples,false +mrnail,mastodon.social,Mathematics,mathematics,false +mrnail,mastodon.social,Journalism & Comment,news_comment_data,false +mrnail,mastodon.social,Philosophy,philosophy,false +mrnail,mastodon.social,Physics,physics,false +mrnail,mastodon.social,Politics,politics,false +mrnail,mastodon.social,Poverty & Inequality,poverty_inequality,false +mrnail,mastodon.social,Programming,programming,false +mrnail,mastodon.social,Science,science,false +mrnail,mastodon.social,Social Sciences,social_sciences,false +mrnail,mastodon.social,Space,space,false +mrnail,mastodon.social,Technology,technology,false +mrnail,mastodon.social,Democracy & Human Rights,democracy_human_rights,true +BobH,newsmast.social,Journalism & Comment,news_comment_data,false +BobH,newsmast.social,Social Media,social_media,false +BobH,newsmast.social,Ukraine Invasion,ukraine_invasion,false +BobH,newsmast.social,Weather,weather,false +BobH,newsmast.social,Breaking News,breaking_news,true +internetross,social.coop,Biodiversity & Rewilding,biodiversity_rewilding,true +physioemerald,newsmast.social,Biology,biology,false +physioemerald,newsmast.social,Creative Arts,creative_arts,false +physioemerald,newsmast.social,Food & Drink,food_drink,false +physioemerald,newsmast.social,Football,football,false +physioemerald,newsmast.social,History,history,false +physioemerald,newsmast.social,Humanities,humanities,false +physioemerald,newsmast.social,Humour,humour,false +physioemerald,newsmast.social,Mathematics,mathematics,false +physioemerald,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false +physioemerald,newsmast.social,Nature & Wildlife,nature_wildlife,false +physioemerald,newsmast.social,Pets,pets,false +physioemerald,newsmast.social,Philosophy,philosophy,false +physioemerald,newsmast.social,Physics,physics,false +physioemerald,newsmast.social,Puzzles,puzzles,false +physioemerald,newsmast.social,Science,science,false +physioemerald,newsmast.social,Social Sciences,social_sciences,false +physioemerald,newsmast.social,Space,space,false +physioemerald,newsmast.social,Sport,sport,false +physioemerald,newsmast.social,Travel,travel,false +physioemerald,newsmast.social,US Sport,us_sport,false +physioemerald,newsmast.social,Chemistry,chemistry,true +internetross,social.coop,Activism & Civil Rights,activism_civil_rights,false +internetross,social.coop,Engineering,engineering,false +internetross,social.coop,Gaming,gaming,false +internetross,social.coop,Music,music,false +internetross,social.coop,Programming,programming,false +internetross,social.coop,Technology,technology,false +internetross,social.coop,Visual Arts,visual_arts,false +Kitchensimply,mastodon.social,Business,business,false +Kitchensimply,mastodon.social,Humanities,humanities,false +Kitchensimply,mastodon.social,Markets & Finance,markets_finance,false +Kitchensimply,mastodon.social,Social Sciences,social_sciences,false +Kitchensimply,mastodon.social,Workers Rights,workers_rights,false +Kitchensimply,mastodon.social,History,history,true +ritesh,newsmast.social,Biology,biology,false +ritesh,newsmast.social,Food & Drink,food_drink,false +ritesh,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false +ritesh,newsmast.social,Social Media,social_media,false +ritesh,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,true +AlexiaPonchet,newsmast.social,Poverty & Inequality,poverty_inequality,false +AlexiaPonchet,newsmast.social,Technology,technology,false +AlexiaPonchet,newsmast.social,Architecture & Design,architecture_design,false +AlexiaPonchet,newsmast.social,TV & Radio,tv_radio,false +AlexiaPonchet,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false +AlexiaPonchet,newsmast.social,Puzzles,puzzles,false +AlexiaPonchet,newsmast.social,Energy & Pollution,energy_pollution,false +BlesthThySoul,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +BlesthThySoul,newsmast.social,Government & Policy,government_policy,false +BlesthThySoul,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false +BlesthThySoul,newsmast.social,Law & Justice,law_justice,false +BlesthThySoul,newsmast.social,Journalism & Comment,news_comment_data,false +BlesthThySoul,newsmast.social,Politics,politics,false +BlesthThySoul,newsmast.social,Poverty & Inequality,poverty_inequality,false +BlesthThySoul,newsmast.social,Ukraine Invasion,ukraine_invasion,false +BlesthThySoul,newsmast.social,US Politics,us_politics,false +BlesthThySoul,newsmast.social,Breaking News,breaking_news,true +BlesthThySoul,newsmast.social,Programming,programming,false +sarampion,masto.es,Visual Arts,visual_arts,true +sarampion,masto.es,Government & Policy,government_policy,false +sarampion,masto.es,Biodiversity & Rewilding,biodiversity_rewilding,false +sarampion,masto.es,Climate change,climate_change,false +sarampion,masto.es,Energy & Pollution,energy_pollution,false +tkruck6,newsmast.social,Mathematics,mathematics,false +tkruck6,newsmast.social,Physics,physics,false +tkruck6,newsmast.social,Politics,politics,false +tkruck6,newsmast.social,Programming,programming,false +tkruck6,newsmast.social,Science,science,false +tkruck6,newsmast.social,Space,space,false +tkruck6,newsmast.social,Technology,technology,false +tkruck6,newsmast.social,Weather,weather,false +tkruck6,newsmast.social,Social Media,social_media,true +martin3456,newsmast.social,Architecture & Design,architecture_design,false +martin3456,newsmast.social,Biology,biology,false +martin3456,newsmast.social,Books & Literature,books_literature,false +martin3456,newsmast.social,Breaking News,breaking_news,false +martin3456,newsmast.social,Business,business,false +martin3456,newsmast.social,Chemistry,chemistry,false +martin3456,newsmast.social,Creative Arts,creative_arts,false +martin3456,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +martin3456,newsmast.social,Food & Drink,food_drink,false +martin3456,newsmast.social,Football,football,false +martin3456,newsmast.social,Gaming,gaming,false +martin3456,newsmast.social,History,history,false +martin3456,newsmast.social,Humanities,humanities,false +martin3456,newsmast.social,Humour,humour,false +martin3456,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false +martin3456,newsmast.social,Markets & Finance,markets_finance,false +martin3456,newsmast.social,Mathematics,mathematics,false +martin3456,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false +martin3456,newsmast.social,Movies,movies,false +martin3456,newsmast.social,Music,music,false +martin3456,newsmast.social,Nature & Wildlife,nature_wildlife,false +martin3456,newsmast.social,Journalism & Comment,news_comment_data,false +martin3456,newsmast.social,Performing Arts,performing_arts,false +martin3456,newsmast.social,Pets,pets,false +martin3456,newsmast.social,Philosophy,philosophy,false +martin3456,newsmast.social,Photography,photography,false +martin3456,newsmast.social,Physics,physics,false +martin3456,newsmast.social,Poverty & Inequality,poverty_inequality,false +martin3456,newsmast.social,Puzzles,puzzles,false +martin3456,newsmast.social,Science,science,false +martin3456,newsmast.social,Social Media,social_media,false +martin3456,newsmast.social,Social Sciences,social_sciences,false +martin3456,newsmast.social,Space,space,false +martin3456,newsmast.social,Sport,sport,false +martin3456,newsmast.social,Travel,travel,false +martin3456,newsmast.social,TV & Radio,tv_radio,false +martin3456,newsmast.social,Ukraine Invasion,ukraine_invasion,false +martin3456,newsmast.social,US Sport,us_sport,false +martin3456,newsmast.social,Visual Arts,visual_arts,false +martin3456,newsmast.social,Weather,weather,false +martin3456,newsmast.social,Workers Rights,workers_rights,true +nicholasyliu,mastodon.social,Architecture & Design,architecture_design,false +nicholasyliu,mastodon.social,Books & Literature,books_literature,false +nicholasyliu,mastodon.social,Creative Arts,creative_arts,false +nicholasyliu,mastodon.social,Democracy & Human Rights,democracy_human_rights,false +nicholasyliu,mastodon.social,Food & Drink,food_drink,false +nicholasyliu,mastodon.social,Government & Policy,government_policy,false +nicholasyliu,mastodon.social,Humour,humour,false +nicholasyliu,mastodon.social,Law & Justice,law_justice,false +nicholasyliu,mastodon.social,Movies,movies,false +nicholasyliu,mastodon.social,Music,music,false +nicholasyliu,mastodon.social,Nature & Wildlife,nature_wildlife,false +nicholasyliu,mastodon.social,Journalism & Comment,news_comment_data,false +nicholasyliu,mastodon.social,Performing Arts,performing_arts,false +nicholasyliu,mastodon.social,Pets,pets,false +nicholasyliu,mastodon.social,Photography,photography,false +nicholasyliu,mastodon.social,Politics,politics,false +nicholasyliu,mastodon.social,Poverty & Inequality,poverty_inequality,false +nicholasyliu,mastodon.social,Social Media,social_media,false +nicholasyliu,mastodon.social,Breaking News,breaking_news,true +nicholasyliu,mastodon.social,Travel,travel,false +nicholasyliu,mastodon.social,US Politics,us_politics,false +nicholasyliu,mastodon.social,Visual Arts,visual_arts,false +AlexiaPonchet,newsmast.social,Gaming,gaming,false +AlexiaPonchet,newsmast.social,Music,music,false +AlexiaPonchet,newsmast.social,Creative Arts,creative_arts,false +AlexiaPonchet,newsmast.social,Pets,pets,false +AlexiaPonchet,newsmast.social,Engineering,engineering,false +vimalgoel,sfba.social,Environment,environment,false +vimalgoel,sfba.social,Humour,humour,false +vimalgoel,sfba.social,Indigenous Peoples,indigenous_peoples,false +vimalgoel,sfba.social,Movies,movies,false +vimalgoel,sfba.social,TV & Radio,tv_radio,false +vimalgoel,sfba.social,Breaking News,breaking_news,true +fotiskarioris,mastodon.social,Disabled Voices,disabled_voices,true +desertdog,mastoart.social,Architecture & Design,architecture_design,false +desertdog,mastoart.social,Books & Literature,books_literature,false +desertdog,mastoart.social,Democracy & Human Rights,democracy_human_rights,false +desertdog,mastoart.social,History,history,false +desertdog,mastoart.social,Humanities,humanities,false +desertdog,mastoart.social,Music,music,false +desertdog,mastoart.social,Journalism & Comment,news_comment_data,false +desertdog,mastoart.social,Performing Arts,performing_arts,false +desertdog,mastoart.social,Philosophy,philosophy,false +desertdog,mastoart.social,Photography,photography,false +desertdog,mastoart.social,Politics,politics,false +desertdog,mastoart.social,Social Sciences,social_sciences,false +desertdog,mastoart.social,TV & Radio,tv_radio,false +desertdog,mastoart.social,Visual Arts,visual_arts,false +josaimaging,newsmast.social,AI,ai,false +josaimaging,newsmast.social,Engineering,engineering,false +josaimaging,newsmast.social,Markets & Finance,markets_finance,false +josaimaging,newsmast.social,Programming,programming,false +josaimaging,newsmast.social,Technology,technology,false +josaimaging,newsmast.social,Workers Rights,workers_rights,false +josaimaging,newsmast.social,Business,business,true +desertdog,mastoart.social,Movies,movies,true +stepwinder,newsie.social,Breaking News,breaking_news,false +stepwinder,newsie.social,Government & Policy,government_policy,false +stepwinder,newsie.social,History,history,false +stepwinder,newsie.social,Law & Justice,law_justice,false +stepwinder,newsie.social,Philosophy,philosophy,false +stepwinder,newsie.social,Social Sciences,social_sciences,false +stepwinder,newsie.social,Humanities,humanities,true +bernardjensen,newsmast.social,Academia & Research,academia_research,false +bernardjensen,newsmast.social,Activism & Civil Rights,activism_civil_rights,false +bernardjensen,newsmast.social,Architecture & Design,architecture_design,false +bernardjensen,newsmast.social,Books & Literature,books_literature,false +bernardjensen,newsmast.social,Business,business,false +bernardjensen,newsmast.social,Creative Arts,creative_arts,false +bernardjensen,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +bernardjensen,newsmast.social,Disabled Voices,disabled_voices,false +bernardjensen,newsmast.social,Food & Drink,food_drink,false +bernardjensen,newsmast.social,Gaming,gaming,false +bernardjensen,newsmast.social,Government & Policy,government_policy,false +bernardjensen,newsmast.social,Healthcare,healthcare,false +fotiskarioris,mastodon.social,Activism & Civil Rights,activism_civil_rights,false +fotiskarioris,mastodon.social,AI,ai,false +fotiskarioris,mastodon.social,Books & Literature,books_literature,false +fotiskarioris,mastodon.social,Breaking News,breaking_news,false +fotiskarioris,mastodon.social,Business,business,false +fotiskarioris,mastodon.social,Democracy & Human Rights,democracy_human_rights,false +fotiskarioris,mastodon.social,History,history,false +fotiskarioris,mastodon.social,Humanities,humanities,false +fotiskarioris,mastodon.social,"Hunger, Disease & Water",hunger_disease_water,false +fotiskarioris,mastodon.social,LGBTQ+,lgbtq,false +fotiskarioris,mastodon.social,Philosophy,philosophy,false +fotiskarioris,mastodon.social,Photography,photography,false +fotiskarioris,mastodon.social,Poverty & Inequality,poverty_inequality,false +bernardjensen,newsmast.social,Humanities,humanities,false +bernardjensen,newsmast.social,Humour,humour,false +bernardjensen,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false +bernardjensen,newsmast.social,Law & Justice,law_justice,false +bernardjensen,newsmast.social,Breaking News,breaking_news,true +fotiskarioris,mastodon.social,Programming,programming,false +fotiskarioris,mastodon.social,Social Media,social_media,false +fotiskarioris,mastodon.social,Social Sciences,social_sciences,false +fotiskarioris,mastodon.social,Technology,technology,false +fotiskarioris,mastodon.social,Visual Arts,visual_arts,false +AlexiaPonchet,newsmast.social,Performing Arts,performing_arts,false +AlexiaPonchet,newsmast.social,Sport,sport,false +AlexiaPonchet,newsmast.social,Food & Drink,food_drink,false +desertdog,mastoart.social,Mathematics,mathematics,false +AlexiaPonchet,newsmast.social,AI,ai,false +HeyPappagena,mstdn.social,Breaking News,breaking_news,false +HeyPappagena,mstdn.social,Mathematics,mathematics,false +HeyPappagena,mstdn.social,Physics,physics,false +HeyPappagena,mstdn.social,Programming,programming,false +HeyPappagena,mstdn.social,Science,science,false +HeyPappagena,mstdn.social,Space,space,false +HeyPappagena,mstdn.social,Technology,technology,false +HeyPappagena,mstdn.social,Engineering,engineering,true +qlp,linh.social,Activism & Civil Rights,activism_civil_rights,false +qlp,linh.social,Democracy & Human Rights,democracy_human_rights,false +qlp,linh.social,History,history,false +qlp,linh.social,Humanities,humanities,false +qlp,linh.social,"Hunger, Disease & Water",hunger_disease_water,false +iop5,newsmast.social,Academia & Research,academia_research,false +iop5,newsmast.social,Government & Policy,government_policy,false +iop5,newsmast.social,Healthcare,healthcare,false +iop5,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false +iop5,newsmast.social,Poverty & Inequality,poverty_inequality,false +iop5,newsmast.social,Democracy & Human Rights,democracy_human_rights,true +emsquared,mastodon.social,Poverty & Inequality,poverty_inequality,false +emsquared,mastodon.social,Democracy & Human Rights,democracy_human_rights,false +emsquared,mastodon.social,Activism & Civil Rights,activism_civil_rights,false +emsquared,mastodon.social,Disabled Voices,disabled_voices,false +emsquared,mastodon.social,Women’s Voices,women_voices,false +emsquared,mastodon.social,Food & Drink,food_drink,false +emsquared,mastodon.social,Humour,humour,false +emsquared,mastodon.social,Nature & Wildlife,nature_wildlife,false +WestWifey,newsmast.social,Humour,humour,false +WestWifey,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false +WestWifey,newsmast.social,Social Sciences,social_sciences,false +WestWifey,newsmast.social,Travel,travel,false +WestWifey,newsmast.social,Food & Drink,food_drink,true +2night,newsmast.social,Social Media,social_media,false +2night,newsmast.social,Business,business,true +lunarvalleys,mstdn.ca,Climate change,climate_change,false +lunarvalleys,mstdn.ca,Movies,movies,false +lunarvalleys,mstdn.ca,Journalism & Comment,news_comment_data,false +lunarvalleys,mstdn.ca,TV & Radio,tv_radio,false +lunarvalleys,mstdn.ca,Breaking News,breaking_news,true +ivanovabr,mastodon.social,Biology,biology,false +ivanovabr,mastodon.social,Books & Literature,books_literature,false +0fj0,newsmast.social,Markets & Finance,markets_finance,false +0fj0,newsmast.social,Journalism & Comment,news_comment_data,false +0fj0,newsmast.social,Social Media,social_media,false +0fj0,newsmast.social,Technology,technology,false +0fj0,newsmast.social,Ukraine Invasion,ukraine_invasion,false +0fj0,newsmast.social,Breaking News,breaking_news,true +jrotermund,mastodon.social,Philosophy,philosophy,false +jrotermund,mastodon.social,Social Sciences,social_sciences,false +jrotermund,mastodon.social,Women’s Voices,women_voices,false +jrotermund,mastodon.social,AI,ai,false +ivanovabr,mastodon.social,Music,music,false +ivanovabr,mastodon.social,Science,science,false +ivanovabr,mastodon.social,Space,space,false +ivanovabr,mastodon.social,TV & Radio,tv_radio,false +j022,newsmast.social,Breaking News,breaking_news,false +j022,newsmast.social,Markets & Finance,markets_finance,false +j022,newsmast.social,Journalism & Comment,news_comment_data,false +j022,newsmast.social,Weather,weather,false +j022,newsmast.social,Workers Rights,workers_rights,true +0j22,newsmast.social,Architecture & Design,architecture_design,false +0j22,newsmast.social,Books & Literature,books_literature,false +0j22,newsmast.social,Business,business,false +0j22,newsmast.social,Workers Rights,workers_rights,false +0j22,newsmast.social,Markets & Finance,markets_finance,true +0j33,newsmast.social,Business,business,false +0j33,newsmast.social,Engineering,engineering,false +0j33,newsmast.social,Markets & Finance,markets_finance,false +0j33,newsmast.social,Programming,programming,false +0j33,newsmast.social,AI,ai,true +0j30,newsmast.social,Business,business,false +0j30,newsmast.social,Creative Arts,creative_arts,false +0j30,newsmast.social,Humour,humour,false +0j30,newsmast.social,Markets & Finance,markets_finance,false +0j30,newsmast.social,Workers Rights,workers_rights,true +0j20,newsmast.social,Creative Arts,creative_arts,false +0j20,newsmast.social,Markets & Finance,markets_finance,false +0j20,newsmast.social,Technology,technology,false +0j20,newsmast.social,Workers Rights,workers_rights,false +0j20,newsmast.social,Business,business,true +fxdpntthm,newsmast.social,Biology,biology,false +Willow,newsmast.social,AI,ai,false +Willow,newsmast.social,Architecture & Design,architecture_design,false +Willow,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false +Willow,newsmast.social,Books & Literature,books_literature,false +Willow,newsmast.social,Business,business,false +Willow,newsmast.social,Environment,environment,false +Willow,newsmast.social,Philosophy,philosophy,false +Willow,newsmast.social,Programming,programming,false +Willow,newsmast.social,Social Sciences,social_sciences,false +Willow,newsmast.social,Visual Arts,visual_arts,false +Willow,newsmast.social,Climate change,climate_change,true +AlexiaPonchet,newsmast.social,US Sport,us_sport,false +AlexiaPonchet,newsmast.social,Football,football,false +Zahid11,newsmast.social,Academia & Research,academia_research,false +Zahid11,newsmast.social,Activism & Civil Rights,activism_civil_rights,false +Zahid11,newsmast.social,Architecture & Design,architecture_design,false +Zahid11,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false +Zahid11,newsmast.social,Biology,biology,false +Zahid11,newsmast.social,Black Voices,black_voices,false +emiliafilipowic,newsmast.social,Academia & Research,academia_research,false +emiliafilipowic,newsmast.social,Activism & Civil Rights,activism_civil_rights,false +emiliafilipowic,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false +emiliafilipowic,newsmast.social,Black Voices,black_voices,false +emiliafilipowic,newsmast.social,Breaking News,breaking_news,false +emiliafilipowic,newsmast.social,Climate change,climate_change,false +emiliafilipowic,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +emiliafilipowic,newsmast.social,Disabled Voices,disabled_voices,false +emiliafilipowic,newsmast.social,Energy & Pollution,energy_pollution,false +emiliafilipowic,newsmast.social,Environment,environment,false +emiliafilipowic,newsmast.social,Government & Policy,government_policy,false +emiliafilipowic,newsmast.social,Healthcare,healthcare,false +emiliafilipowic,newsmast.social,History,history,false +emiliafilipowic,newsmast.social,Humanities,humanities,false +emiliafilipowic,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false +emiliafilipowic,newsmast.social,Immigrants Rights,immigrants_rights,false +emiliafilipowic,newsmast.social,Indigenous Peoples,indigenous_peoples,false +emiliafilipowic,newsmast.social,Law & Justice,law_justice,false +emiliafilipowic,newsmast.social,LGBTQ+,lgbtq,false +emiliafilipowic,newsmast.social,Markets & Finance,markets_finance,false +emiliafilipowic,newsmast.social,Journalism & Comment,news_comment_data,false +emiliafilipowic,newsmast.social,Philosophy,philosophy,false +emiliafilipowic,newsmast.social,Politics,politics,false +emiliafilipowic,newsmast.social,Poverty & Inequality,poverty_inequality,false +emiliafilipowic,newsmast.social,Social Media,social_media,false +emiliafilipowic,newsmast.social,Social Sciences,social_sciences,false +emiliafilipowic,newsmast.social,Ukraine Invasion,ukraine_invasion,false +emiliafilipowic,newsmast.social,US Politics,us_politics,false +emiliafilipowic,newsmast.social,Weather,weather,false +emiliafilipowic,newsmast.social,Women’s Voices,women_voices,false +emiliafilipowic,newsmast.social,Workers Rights,workers_rights,false +emiliafilipowic,newsmast.social,Business,business,true +emiliafilipowic,newsmast.social,Gaming,gaming,false +Zahid11,newsmast.social,Books & Literature,books_literature,false +Zahid11,newsmast.social,Breaking News,breaking_news,false +Zahid11,newsmast.social,Business,business,false +Zahid11,newsmast.social,Chemistry,chemistry,false +Zahid11,newsmast.social,Climate change,climate_change,false +Zahid11,newsmast.social,Creative Arts,creative_arts,false +Zahid11,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +Zahid11,newsmast.social,Disabled Voices,disabled_voices,false +Zahid11,newsmast.social,Energy & Pollution,energy_pollution,false +Zahid11,newsmast.social,Engineering,engineering,false +csu,newsmast.social,AI,ai,false +csu,newsmast.social,Breaking News,breaking_news,false +csu,newsmast.social,Engineering,engineering,false +csu,newsmast.social,Mathematics,mathematics,false +csu,newsmast.social,Journalism & Comment,news_comment_data,false +csu,newsmast.social,Science,science,false +csu,newsmast.social,Social Media,social_media,false +csu,newsmast.social,Space,space,false +csu,newsmast.social,Technology,technology,false +csu,newsmast.social,Programming,programming,true +Zahid11,newsmast.social,Environment,environment,false +Zahid11,newsmast.social,AI,ai,true +qlp,linh.social,LGBTQ+,lgbtq,false +severus113,mastodon.social,Food & Drink,food_drink,false +severus113,mastodon.social,Humour,humour,false +severus113,mastodon.social,Mental Health & Wellbeing,mental_health_wellbeing,false +severus113,mastodon.social,Nature & Wildlife,nature_wildlife,false +severus113,mastodon.social,Pets,pets,false +severus113,mastodon.social,Puzzles,puzzles,false +severus113,mastodon.social,Travel,travel,false +severus113,mastodon.social,Creative Arts,creative_arts,true +neff,raphus.social,Architecture & Design,architecture_design,false +neff,raphus.social,Biodiversity & Rewilding,biodiversity_rewilding,false +neff,raphus.social,Indigenous Peoples,indigenous_peoples,false +neff,raphus.social,Photography,photography,false +neff,raphus.social,Visual Arts,visual_arts,false +neff,raphus.social,Women’s Voices,women_voices,false +neff,raphus.social,Gaming,gaming,true +myfender,mastodon.social,AI,ai,false +myfender,mastodon.social,Breaking News,breaking_news,false +myfender,mastodon.social,Engineering,engineering,false +myfender,mastodon.social,Politics,politics,false +myfender,mastodon.social,Technology,technology,true +sandwich,mastodon.world,Academia & Research,academia_research,false +sandwich,mastodon.world,Democracy & Human Rights,democracy_human_rights,false +sandwich,mastodon.world,Physics,physics,false +sandwich,mastodon.world,Politics,politics,false +sandwich,mastodon.world,Poverty & Inequality,poverty_inequality,false +sandwich,mastodon.world,Science,science,false +sandwich,mastodon.world,Social Media,social_media,false +sandwich,mastodon.world,Space,space,false +sandwich,mastodon.world,Technology,technology,false +sandwich,mastodon.world,US Sport,us_sport,false +sandwich,mastodon.world,Breaking News,breaking_news,true +Zahid11,newsmast.social,Food & Drink,food_drink,false +Zahid11,newsmast.social,Gaming,gaming,false +Zahid11,newsmast.social,Government & Policy,government_policy,false +Zahid11,newsmast.social,Healthcare,healthcare,false +Zahid11,newsmast.social,History,history,false +Zahid11,newsmast.social,Humanities,humanities,false +Zahid11,newsmast.social,Humour,humour,false +Zahid11,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false +Zahid11,newsmast.social,Immigrants Rights,immigrants_rights,false +Zahid11,newsmast.social,Indigenous Peoples,indigenous_peoples,false +Zahid11,newsmast.social,Law & Justice,law_justice,false +Zahid11,newsmast.social,LGBTQ+,lgbtq,false +Zahid11,newsmast.social,Markets & Finance,markets_finance,false +Zahid11,newsmast.social,Mathematics,mathematics,false +Zahid11,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false +Zahid11,newsmast.social,Movies,movies,false +Zahid11,newsmast.social,Music,music,false +Zahid11,newsmast.social,Nature & Wildlife,nature_wildlife,false +Zahid11,newsmast.social,Journalism & Comment,news_comment_data,false +Zahid11,newsmast.social,Performing Arts,performing_arts,false +Zahid11,newsmast.social,Pets,pets,false +Zahid11,newsmast.social,Philosophy,philosophy,false +Zahid11,newsmast.social,Photography,photography,false +Zahid11,newsmast.social,Physics,physics,false +Zahid11,newsmast.social,Politics,politics,false +Zahid11,newsmast.social,Poverty & Inequality,poverty_inequality,false +Zahid11,newsmast.social,Programming,programming,false +Zahid11,newsmast.social,Puzzles,puzzles,false +Zahid11,newsmast.social,Science,science,false +Zahid11,newsmast.social,Social Media,social_media,false +Zahid11,newsmast.social,Social Sciences,social_sciences,false +Zahid11,newsmast.social,Space,space,false +Zahid11,newsmast.social,Technology,technology,false +Zahid11,newsmast.social,Travel,travel,false +Zahid11,newsmast.social,TV & Radio,tv_radio,false +Zahid11,newsmast.social,Ukraine Invasion,ukraine_invasion,false +Zahid11,newsmast.social,US Politics,us_politics,false +Zahid11,newsmast.social,Visual Arts,visual_arts,false +Zahid11,newsmast.social,Weather,weather,false +Zahid11,newsmast.social,Women’s Voices,women_voices,false +Zahid11,newsmast.social,Workers Rights,workers_rights,false +qlp,linh.social,Journalism & Comment,news_comment_data,false +qlp,linh.social,Physics,physics,false +qlp,linh.social,Poverty & Inequality,poverty_inequality,false +qlp,linh.social,Programming,programming,false +qlp,linh.social,Science,science,false +goofy,newsmast.social,Journalism & Comment,news_comment_data,false +goofy,newsmast.social,Social Media,social_media,false +goofy,newsmast.social,Ukraine Invasion,ukraine_invasion,false +goofy,newsmast.social,Weather,weather,false +goofy,newsmast.social,Breaking News,breaking_news,true +bernardjensen,newsmast.social,Markets & Finance,markets_finance,false +bernardjensen,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false +bernardjensen,newsmast.social,Movies,movies,false +bernardjensen,newsmast.social,Music,music,false +bernardjensen,newsmast.social,Nature & Wildlife,nature_wildlife,false +bernardjensen,newsmast.social,Journalism & Comment,news_comment_data,false +bernardjensen,newsmast.social,Performing Arts,performing_arts,false +bernardjensen,newsmast.social,Philosophy,philosophy,false +bernardjensen,newsmast.social,Photography,photography,false +bernardjensen,newsmast.social,Politics,politics,false +bernardjensen,newsmast.social,Social Media,social_media,false +bernardjensen,newsmast.social,Social Sciences,social_sciences,false +bernardjensen,newsmast.social,Travel,travel,false +bernardjensen,newsmast.social,TV & Radio,tv_radio,false +bernardjensen,newsmast.social,US Politics,us_politics,false +bernardjensen,newsmast.social,Visual Arts,visual_arts,false +bernardjensen,newsmast.social,Women’s Voices,women_voices,false +bernardjensen,newsmast.social,Workers Rights,workers_rights,false +presidenttailor,newsmast.social,Business,business,false +presidenttailor,newsmast.social,Creative Arts,creative_arts,false +presidenttailor,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +presidenttailor,newsmast.social,Humanities,humanities,false +presidenttailor,newsmast.social,Markets & Finance,markets_finance,false +presidenttailor,newsmast.social,Journalism & Comment,news_comment_data,false +presidenttailor,newsmast.social,Social Media,social_media,false +presidenttailor,newsmast.social,Ukraine Invasion,ukraine_invasion,false +presidenttailor,newsmast.social,Weather,weather,false +presidenttailor,newsmast.social,Workers Rights,workers_rights,false +presidenttailor,newsmast.social,Breaking News,breaking_news,true +qlp,linh.social,Technology,technology,true +Miraculous,c.im,Architecture & Design,architecture_design,false +Miraculous,c.im,Books & Literature,books_literature,false +Miraculous,c.im,Breaking News,breaking_news,false +Miraculous,c.im,Movies,movies,false +Miraculous,c.im,Music,music,false +Miraculous,c.im,Journalism & Comment,news_comment_data,false +Miraculous,c.im,Performing Arts,performing_arts,false +Miraculous,c.im,Photography,photography,false +Miraculous,c.im,Social Media,social_media,false +Miraculous,c.im,TV & Radio,tv_radio,false +Miraculous,c.im,Ukraine Invasion,ukraine_invasion,false +Miraculous,c.im,Visual Arts,visual_arts,false +Miraculous,c.im,Weather,weather,false +Miraculous,c.im,Gaming,gaming,true +Lady_IniQ,newsmast.social,Architecture & Design,architecture_design,false +Lady_IniQ,newsmast.social,Gaming,gaming,false +Lady_IniQ,newsmast.social,Movies,movies,false +Lady_IniQ,newsmast.social,Nature & Wildlife,nature_wildlife,false +Lady_IniQ,newsmast.social,Pets,pets,false +Lady_IniQ,newsmast.social,Travel,travel,false +Lady_IniQ,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,true +Jon6705,mastodon.world,Activism & Civil Rights,activism_civil_rights,false +Jon6705,mastodon.world,AI,ai,false +Jon6705,mastodon.world,Biology,biology,false +Jon6705,mastodon.world,Black Voices,black_voices,false +Jon6705,mastodon.world,Breaking News,breaking_news,false +Jon6705,mastodon.world,Chemistry,chemistry,false +Jon6705,mastodon.world,Democracy & Human Rights,democracy_human_rights,false +Jon6705,mastodon.world,Disabled Voices,disabled_voices,false +Jon6705,mastodon.world,Energy & Pollution,energy_pollution,false +Jon6705,mastodon.world,Engineering,engineering,false +Jon6705,mastodon.world,Environment,environment,false +Jon6705,mastodon.world,History,history,false +Jon6705,mastodon.world,Humanities,humanities,false +Jon6705,mastodon.world,"Hunger, Disease & Water",hunger_disease_water,false +Jon6705,mastodon.world,Immigrants Rights,immigrants_rights,false +Jon6705,mastodon.world,Indigenous Peoples,indigenous_peoples,false +Jon6705,mastodon.world,LGBTQ+,lgbtq,false +Jon6705,mastodon.world,Mathematics,mathematics,false +Jon6705,mastodon.world,Journalism & Comment,news_comment_data,false +Jon6705,mastodon.world,Philosophy,philosophy,false +Jon6705,mastodon.world,Physics,physics,false +Jon6705,mastodon.world,Poverty & Inequality,poverty_inequality,false +Jon6705,mastodon.world,Programming,programming,false +Jon6705,mastodon.world,Science,science,false +Jon6705,mastodon.world,Social Media,social_media,false +Jon6705,mastodon.world,Social Sciences,social_sciences,false +Jon6705,mastodon.world,Space,space,false +Jon6705,mastodon.world,Technology,technology,false +Jon6705,mastodon.world,Ukraine Invasion,ukraine_invasion,false +Jon6705,mastodon.world,Weather,weather,false +Jon6705,mastodon.world,Women’s Voices,women_voices,false +tenndawa,www.lindyhop.community,Academia & Research,academia_research,false +tenndawa,www.lindyhop.community,AI,ai,false +Jon6705,mastodon.world,Climate change,climate_change,false +Jon6705,mastodon.world,Biodiversity & Rewilding,biodiversity_rewilding,true +Jon6705,mastodon.world,Nature & Wildlife,nature_wildlife,false +Jon6705,mastodon.world,Mental Health & Wellbeing,mental_health_wellbeing,false +tenndawa,www.lindyhop.community,Architecture & Design,architecture_design,false +tenndawa,www.lindyhop.community,Biodiversity & Rewilding,biodiversity_rewilding,false +tenndawa,www.lindyhop.community,Biology,biology,false +tenndawa,www.lindyhop.community,Black Voices,black_voices,false +tenndawa,www.lindyhop.community,Breaking News,breaking_news,false +tenndawa,www.lindyhop.community,Climate change,climate_change,false +tenndawa,www.lindyhop.community,Creative Arts,creative_arts,false +tenndawa,www.lindyhop.community,Democracy & Human Rights,democracy_human_rights,false +kevinflynn,newsmast.social,Government & Policy,government_policy,false +kevinflynn,newsmast.social,Science,science,false +kevinflynn,newsmast.social,Space,space,false +kevinflynn,newsmast.social,Technology,technology,false +kevinflynn,newsmast.social,Ukraine Invasion,ukraine_invasion,false +kevinflynn,newsmast.social,Breaking News,breaking_news,true +tenndawa,www.lindyhop.community,Disabled Voices,disabled_voices,false +tenndawa,www.lindyhop.community,Energy & Pollution,energy_pollution,false +tenndawa,www.lindyhop.community,Environment,environment,false +tenndawa,www.lindyhop.community,Food & Drink,food_drink,false +tenndawa,www.lindyhop.community,Gaming,gaming,false +tenndawa,www.lindyhop.community,Government & Policy,government_policy,false +tenndawa,www.lindyhop.community,Immigrants Rights,immigrants_rights,false +tenndawa,www.lindyhop.community,Law & Justice,law_justice,false +tenndawa,www.lindyhop.community,LGBTQ+,lgbtq,false +tenndawa,www.lindyhop.community,Mental Health & Wellbeing,mental_health_wellbeing,false +tenndawa,www.lindyhop.community,Nature & Wildlife,nature_wildlife,false +tenndawa,www.lindyhop.community,Pets,pets,false +tenndawa,www.lindyhop.community,Poverty & Inequality,poverty_inequality,false +tenndawa,www.lindyhop.community,Science,science,false +tenndawa,www.lindyhop.community,Social Media,social_media,false +tenndawa,www.lindyhop.community,Sport,sport,false +tenndawa,www.lindyhop.community,Technology,technology,false +tenndawa,www.lindyhop.community,Travel,travel,false +tenndawa,www.lindyhop.community,Activism & Civil Rights,activism_civil_rights,true +leonfeuer,newsmast.social,Academia & Research,academia_research,false +leonfeuer,newsmast.social,Breaking News,breaking_news,false +toadthepaladin,freesky.world,LGBTQ+,lgbtq,false +toadthepaladin,freesky.world,Activism & Civil Rights,activism_civil_rights,false +toadthepaladin,freesky.world,AI,ai,false +toadthepaladin,freesky.world,Biodiversity & Rewilding,biodiversity_rewilding,false +toadthepaladin,freesky.world,Black Voices,black_voices,false +toadthepaladin,freesky.world,Breaking News,breaking_news,false +toadthepaladin,freesky.world,Climate change,climate_change,false +toadthepaladin,freesky.world,Creative Arts,creative_arts,false +toadthepaladin,freesky.world,Democracy & Human Rights,democracy_human_rights,false +toadthepaladin,freesky.world,Disabled Voices,disabled_voices,false +toadthepaladin,freesky.world,Energy & Pollution,energy_pollution,false +toadthepaladin,freesky.world,Engineering,engineering,false +toadthepaladin,freesky.world,Environment,environment,false +toadthepaladin,freesky.world,Humour,humour,true +leonfeuer,newsmast.social,Government & Policy,government_policy,false +leonfeuer,newsmast.social,Healthcare,healthcare,false +leonfeuer,newsmast.social,History,history,false +leonfeuer,newsmast.social,Humanities,humanities,false +toadthepaladin,freesky.world,"Hunger, Disease & Water",hunger_disease_water,false +toadthepaladin,freesky.world,Immigrants Rights,immigrants_rights,false +toadthepaladin,freesky.world,Indigenous Peoples,indigenous_peoples,false +toadthepaladin,freesky.world,Journalism & Comment,news_comment_data,false +toadthepaladin,freesky.world,Poverty & Inequality,poverty_inequality,false +toadthepaladin,freesky.world,Programming,programming,false +toadthepaladin,freesky.world,Puzzles,puzzles,false +toadthepaladin,freesky.world,Social Media,social_media,false +toadthepaladin,freesky.world,Ukraine Invasion,ukraine_invasion,false +toadthepaladin,freesky.world,US Politics,us_politics,false +toadthepaladin,freesky.world,Weather,weather,false +toadthepaladin,freesky.world,Women’s Voices,women_voices,false +leonfeuer,newsmast.social,Law & Justice,law_justice,false +leonfeuer,newsmast.social,Journalism & Comment,news_comment_data,false +leonfeuer,newsmast.social,Philosophy,philosophy,false +leonfeuer,newsmast.social,Politics,politics,false +leonfeuer,newsmast.social,Social Sciences,social_sciences,false +leonfeuer,newsmast.social,Ukraine Invasion,ukraine_invasion,false +leonfeuer,newsmast.social,US Politics,us_politics,false +leonfeuer,newsmast.social,Weather,weather,false +leonfeuer,newsmast.social,Social Media,social_media,true +spacealgae,newsmast.social,Academia & Research,academia_research,false +spacealgae,newsmast.social,AI,ai,false +spacealgae,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false +spacealgae,newsmast.social,Biology,biology,false +spacealgae,newsmast.social,Breaking News,breaking_news,false +spacealgae,newsmast.social,Chemistry,chemistry,false +spacealgae,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +spacealgae,newsmast.social,Energy & Pollution,energy_pollution,false +spacealgae,newsmast.social,Engineering,engineering,false +spacealgae,newsmast.social,Environment,environment,false +spacealgae,newsmast.social,Government & Policy,government_policy,false +spacealgae,newsmast.social,Healthcare,healthcare,false +spacealgae,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false +spacealgae,newsmast.social,Law & Justice,law_justice,false +spacealgae,newsmast.social,Mathematics,mathematics,false +spacealgae,newsmast.social,Journalism & Comment,news_comment_data,false +spacealgae,newsmast.social,Physics,physics,false +spacealgae,newsmast.social,Politics,politics,false +spacealgae,newsmast.social,Poverty & Inequality,poverty_inequality,false +spacealgae,newsmast.social,Programming,programming,false +spacealgae,newsmast.social,Science,science,false +spacealgae,newsmast.social,Social Media,social_media,false +spacealgae,newsmast.social,Space,space,false +spacealgae,newsmast.social,Technology,technology,false +spacealgae,newsmast.social,Ukraine Invasion,ukraine_invasion,false +spacealgae,newsmast.social,US Politics,us_politics,false +spacealgae,newsmast.social,Weather,weather,false +spacealgae,newsmast.social,Climate change,climate_change,true +yuriiname,twiukraine.com,AI,ai,true +yuriiname,twiukraine.com,Humour,humour,false +yuriiname,twiukraine.com,Programming,programming,false +yuriiname,twiukraine.com,Social Sciences,social_sciences,false +yuriiname,twiukraine.com,Technology,technology,false +VeXHarbinger,mastodon.social,AI,ai,false +VeXHarbinger,mastodon.social,Biology,biology,false +VeXHarbinger,mastodon.social,Chemistry,chemistry,false +VeXHarbinger,mastodon.social,Engineering,engineering,false +VeXHarbinger,mastodon.social,Mathematics,mathematics,false +VeXHarbinger,mastodon.social,Physics,physics,false +VeXHarbinger,mastodon.social,Science,science,false +VeXHarbinger,mastodon.social,Space,space,false +VeXHarbinger,mastodon.social,Technology,technology,false +VeXHarbinger,mastodon.social,Programming,programming,true +jakofields,mastodon.social,Academia & Research,academia_research,false +jakofields,mastodon.social,Breaking News,breaking_news,false +jakofields,mastodon.social,Government & Policy,government_policy,false +jakofields,mastodon.social,Politics,politics,false +jakofields,mastodon.social,Activism & Civil Rights,activism_civil_rights,true +joonatanitkonen,mstdn.social,Breaking News,breaking_news,false +joonatanitkonen,mstdn.social,Gaming,gaming,false +joonatanitkonen,mstdn.social,Journalism & Comment,news_comment_data,false +joonatanitkonen,mstdn.social,Technology,technology,false +joonatanitkonen,mstdn.social,TV & Radio,tv_radio,false +joonatanitkonen,mstdn.social,Movies,movies,true +frejusdabord,newsmast.social,Academia & Research,academia_research,false +frejusdabord,newsmast.social,Government & Policy,government_policy,false +frejusdabord,newsmast.social,Healthcare,healthcare,false +frejusdabord,newsmast.social,Law & Justice,law_justice,false +frejusdabord,newsmast.social,US Politics,us_politics,false +frejusdabord,newsmast.social,Politics,politics,true +ralfbecker,mastodon.social,Architecture & Design,architecture_design,false +ralfbecker,mastodon.social,Breaking News,breaking_news,false +ralfbecker,mastodon.social,Business,business,false +ralfbecker,mastodon.social,Creative Arts,creative_arts,false +ralfbecker,mastodon.social,Technology,technology,true +DocumentingReal,newsmast.social,Academia & Research,academia_research,false +DocumentingReal,newsmast.social,Breaking News,breaking_news,false +DocumentingReal,newsmast.social,Government & Policy,government_policy,false +DocumentingReal,newsmast.social,Law & Justice,law_justice,false +DocumentingReal,newsmast.social,Journalism & Comment,news_comment_data,false +DocumentingReal,newsmast.social,Politics,politics,false +DocumentingReal,newsmast.social,Social Media,social_media,false +DocumentingReal,newsmast.social,Ukraine Invasion,ukraine_invasion,false +DocumentingReal,newsmast.social,Weather,weather,false +DocumentingReal,newsmast.social,US Politics,us_politics,true +ivanovabr,mastodon.social,Visual Arts,visual_arts,false +ivanovabr,mastodon.social,Movies,movies,true +introvertcatto,mstdn.party,AI,ai,false +introvertcatto,mstdn.party,Books & Literature,books_literature,false +introvertcatto,mstdn.party,Football,football,false +introvertcatto,mstdn.party,History,history,false +technicat,universeodon.com,AI,ai,false +technicat,universeodon.com,Engineering,engineering,false +technicat,universeodon.com,Government & Policy,government_policy,false +technicat,universeodon.com,Healthcare,healthcare,false +technicat,universeodon.com,Technology,technology,false +technicat,universeodon.com,US Politics,us_politics,false +technicat,universeodon.com,Programming,programming,true +introvertcatto,mstdn.party,Philosophy,philosophy,false +introvertcatto,mstdn.party,Photography,photography,false +introvertcatto,mstdn.party,Science,science,false +introvertcatto,mstdn.party,Social Sciences,social_sciences,false +introvertcatto,mstdn.party,Sport,sport,false +introvertcatto,mstdn.party,Technology,technology,false +introvertcatto,mstdn.party,Breaking News,breaking_news,true +blablalinux,mastodon.blablalinux.be,Engineering,engineering,false +blablalinux,mastodon.blablalinux.be,Programming,programming,false +blablalinux,mastodon.blablalinux.be,Science,science,false +blablalinux,mastodon.blablalinux.be,Travel,travel,false +blablalinux,mastodon.blablalinux.be,Technology,technology,true +LukaszHorodecki,pol.social,Activism & Civil Rights,activism_civil_rights,false +LukaszHorodecki,pol.social,Breaking News,breaking_news,false +LukaszHorodecki,pol.social,Democracy & Human Rights,democracy_human_rights,false +LukaszHorodecki,pol.social,Poverty & Inequality,poverty_inequality,false +LukaszHorodecki,pol.social,Climate change,climate_change,true +rinnal,@mastodon.social,Academia & Research,academia_research,false +rinnal,@mastodon.social,Activism & Civil Rights,activism_civil_rights,false +rinnal,@mastodon.social,Biodiversity & Rewilding,biodiversity_rewilding,false +rinnal,@mastodon.social,Biology,biology,false +rinnal,@mastodon.social,Black Voices,black_voices,false +rinnal,@mastodon.social,Chemistry,chemistry,false +rinnal,@mastodon.social,Climate change,climate_change,false +rinnal,@mastodon.social,Democracy & Human Rights,democracy_human_rights,false +rinnal,@mastodon.social,Disabled Voices,disabled_voices,false +rinnal,@mastodon.social,Energy & Pollution,energy_pollution,false +rinnal,@mastodon.social,Environment,environment,false +rinnal,@mastodon.social,Government & Policy,government_policy,false +rinnal,@mastodon.social,Healthcare,healthcare,false +rinnal,@mastodon.social,History,history,false +rinnal,@mastodon.social,Humanities,humanities,false +rinnal,@mastodon.social,"Hunger, Disease & Water",hunger_disease_water,false +rinnal,@mastodon.social,Immigrants Rights,immigrants_rights,false +rinnal,@mastodon.social,Indigenous Peoples,indigenous_peoples,false +rinnal,@mastodon.social,Law & Justice,law_justice,false +rinnal,@mastodon.social,LGBTQ+,lgbtq,false +rinnal,@mastodon.social,Mathematics,mathematics,false +rinnal,@mastodon.social,Journalism & Comment,news_comment_data,false +rinnal,@mastodon.social,Philosophy,philosophy,false +rinnal,@mastodon.social,Physics,physics,false +rinnal,@mastodon.social,Politics,politics,false +rinnal,@mastodon.social,Poverty & Inequality,poverty_inequality,false +rinnal,@mastodon.social,Science,science,false +rinnal,@mastodon.social,Social Media,social_media,false +rinnal,@mastodon.social,Social Sciences,social_sciences,false +rinnal,@mastodon.social,Space,space,false +rinnal,@mastodon.social,Ukraine Invasion,ukraine_invasion,false +rinnal,@mastodon.social,US Politics,us_politics,false +rinnal,@mastodon.social,Weather,weather,false +rinnal,@mastodon.social,Women’s Voices,women_voices,false +rinnal,@mastodon.social,Breaking News,breaking_news,true +gelbphoenix,social.gelbphoenix.de,Breaking News,breaking_news,false +gelbphoenix,social.gelbphoenix.de,Business,business,false +gelbphoenix,social.gelbphoenix.de,Markets & Finance,markets_finance,false +gelbphoenix,social.gelbphoenix.de,Journalism & Comment,news_comment_data,false +gelbphoenix,social.gelbphoenix.de,Programming,programming,false +gelbphoenix,social.gelbphoenix.de,Technology,technology,false +gelbphoenix,social.gelbphoenix.de,LGBTQ+,lgbtq,true +mcg,social.lol,Climate change,climate_change,false +mcg,social.lol,Environment,environment,false +mcg,social.lol,Government & Policy,government_policy,false +mcg,social.lol,Healthcare,healthcare,false +mcg,social.lol,Journalism & Comment,news_comment_data,false +mcg,social.lol,Physics,physics,false +mcg,social.lol,Politics,politics,false +mcg,social.lol,Programming,programming,false +mcg,social.lol,Science,science,false +mcg,social.lol,Space,space,false +mcg,social.lol,Breaking News,breaking_news,true +MarkDW,mstdn.social,Biodiversity & Rewilding,biodiversity_rewilding,false +MarkDW,mstdn.social,Engineering,engineering,false +MarkDW,mstdn.social,Healthcare,healthcare,false +MarkDW,mstdn.social,Politics,politics,false +MarkDW,mstdn.social,Technology,technology,false +MarkDW,mstdn.social,Climate change,climate_change,true +wslfeed,channel.org,LGBTQ+,lgbtq,false +wslfeed,channel.org,Journalism & Comment,news_comment_data,false +wslfeed,channel.org,Sport,sport,false +wslfeed,channel.org,Women’s Voices,women_voices,false +wslfeed,channel.org,Football,football,true +evilk,mastodon.social,Engineering,engineering,false +evilk,mastodon.social,Government & Policy,government_policy,false +evilk,mastodon.social,Healthcare,healthcare,false +evilk,mastodon.social,Law & Justice,law_justice,false +evilk,mastodon.social,Politics,politics,false +evilk,mastodon.social,Programming,programming,false +evilk,mastodon.social,Technology,technology,false +evilk,mastodon.social,Ukraine Invasion,ukraine_invasion,false +evilk,mastodon.social,US Politics,us_politics,false +evilk,mastodon.social,Breaking News,breaking_news,true +0014,mastodon.social,Architecture & Design,architecture_design,false +0014,mastodon.social,Books & Literature,books_literature,false +0014,mastodon.social,Gaming,gaming,false +0014,mastodon.social,Music,music,false +0014,mastodon.social,Performing Arts,performing_arts,false +0014,mastodon.social,Photography,photography,false +0014,mastodon.social,TV & Radio,tv_radio,false +0014,mastodon.social,Visual Arts,visual_arts,false +0014,mastodon.social,Movies,movies,true +mohammadromjan,newsmast.social,Breaking News,breaking_news,false +mohammadromjan,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false +mohammadromjan,newsmast.social,Nature & Wildlife,nature_wildlife,false +mohammadromjan,newsmast.social,Philosophy,philosophy,false +mohammadromjan,newsmast.social,Ukraine Invasion,ukraine_invasion,false +mohammadromjan,newsmast.social,Travel,travel,true +fas_dan,mastodon.social,Architecture & Design,architecture_design,false +fas_dan,mastodon.social,Books & Literature,books_literature,false +fas_dan,mastodon.social,Music,music,false +fas_dan,mastodon.social,Photography,photography,false +fas_dan,mastodon.social,Gaming,gaming,true +Caiocvsilva,mastodon.social,AI,ai,false +Caiocvsilva,mastodon.social,Breaking News,breaking_news,false +Caiocvsilva,mastodon.social,Programming,programming,false +Caiocvsilva,mastodon.social,Science,science,false +Caiocvsilva,mastodon.social,Technology,technology,true +mohammed,newsmast.social,Biology,biology,false +mohammed,newsmast.social,History,history,false +mohammed,newsmast.social,Humanities,humanities,false +mohammed,newsmast.social,Philosophy,philosophy,false +mohammed,newsmast.social,Social Sciences,social_sciences,false +mohammed,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,true +jtarde23,newsmast.social,Creative Arts,creative_arts,false +jtarde23,newsmast.social,Humour,humour,false +jtarde23,newsmast.social,Travel,travel,false +jtarde23,newsmast.social,Visual Arts,visual_arts,false +jtarde23,newsmast.social,Photography,photography,true +kaerisonic,newsmast.social,Academia & Research,academia_research,false +kaerisonic,newsmast.social,Activism & Civil Rights,activism_civil_rights,false +kaerisonic,newsmast.social,AI,ai,false +kaerisonic,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false +kaerisonic,newsmast.social,Biology,biology,false +kaerisonic,newsmast.social,Business,business,false +kaerisonic,newsmast.social,Climate change,climate_change,false +kaerisonic,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +TheTepidEmperor,mastodon.social,Football,football,false +TheTepidEmperor,mastodon.social,Humour,humour,false +TheTepidEmperor,mastodon.social,Law & Justice,law_justice,false +TheTepidEmperor,mastodon.social,Music,music,false +TheTepidEmperor,mastodon.social,Politics,politics,false +TheTepidEmperor,mastodon.social,Social Media,social_media,false +TheTepidEmperor,mastodon.social,Breaking News,breaking_news,true +itsmywink,pixelfed.fr,Nature & Wildlife,nature_wildlife,false +itsmywink,pixelfed.fr,Travel,travel,false +itsmywink,pixelfed.fr,Photography,photography,true +muhammedkizilkaya,sosyal.nextconnect.app,AI,ai,false +muhammedkizilkaya,sosyal.nextconnect.app,Engineering,engineering,false +muhammedkizilkaya,sosyal.nextconnect.app,Science,science,false +muhammedkizilkaya,sosyal.nextconnect.app,Technology,technology,false +muhammedkizilkaya,sosyal.nextconnect.app,Programming,programming,true +mieg,waag.social,Biodiversity & Rewilding,biodiversity_rewilding,false +mieg,waag.social,Democracy & Human Rights,democracy_human_rights,false +mieg,waag.social,Environment,environment,false +mieg,waag.social,Social Media,social_media,false +mieg,waag.social,Climate change,climate_change,true +yunandar,mastodon.social,Academia & Research,academia_research,false +yunandar,mastodon.social,Biology,biology,false +yunandar,mastodon.social,Chemistry,chemistry,false +yunandar,mastodon.social,Engineering,engineering,false +yunandar,mastodon.social,Government & Policy,government_policy,false +yunandar,mastodon.social,Healthcare,healthcare,false +yunandar,mastodon.social,Law & Justice,law_justice,false +yunandar,mastodon.social,Mathematics,mathematics,false +yunandar,mastodon.social,Physics,physics,false +yunandar,mastodon.social,Politics,politics,false +yunandar,mastodon.social,Programming,programming,false +yunandar,mastodon.social,Science,science,false +yunandar,mastodon.social,Space,space,false +yunandar,mastodon.social,Technology,technology,false +yunandar,mastodon.social,US Politics,us_politics,false +yunandar,mastodon.social,AI,ai,true +emuwasabi,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false +emuwasabi,newsmast.social,Climate change,climate_change,false +emuwasabi,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +emuwasabi,newsmast.social,Energy & Pollution,energy_pollution,false +emuwasabi,newsmast.social,Environment,environment,false +emuwasabi,newsmast.social,US Politics,us_politics,true +gedvondur,hulvr.com,AI,ai,false +gedvondur,hulvr.com,Biology,biology,false +gedvondur,hulvr.com,Breaking News,breaking_news,false +gedvondur,hulvr.com,Business,business,false +gedvondur,hulvr.com,Chemistry,chemistry,false +gedvondur,hulvr.com,Engineering,engineering,false +gedvondur,hulvr.com,Journalism & Comment,news_comment_data,false +gedvondur,hulvr.com,Physics,physics,false +gedvondur,hulvr.com,Science,science,false +gedvondur,hulvr.com,Social Media,social_media,false +gedvondur,hulvr.com,Space,space,false +gedvondur,hulvr.com,Workers Rights,workers_rights,false +gedvondur,hulvr.com,Technology,technology,true +Radio_Progres,piaille.fr,Environment,environment,true +Radio_Progres,piaille.fr,TV & Radio,tv_radio,false +Radio_Progres,piaille.fr,Breaking News,breaking_news,false +kaerypheur,newsmast.social,Academia & Research,academia_research,false +kaerypheur,newsmast.social,Activism & Civil Rights,activism_civil_rights,false +kaerypheur,newsmast.social,AI,ai,false +kaerypheur,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false +kaerypheur,newsmast.social,Biology,biology,false +kaerypheur,newsmast.social,Breaking News,breaking_news,false +kaerypheur,newsmast.social,Business,business,false +kaerypheur,newsmast.social,Climate change,climate_change,false +DerekL,mastodonapp.uk,Climate change,climate_change,false +DerekL,mastodonapp.uk,Engineering,engineering,false +DerekL,mastodonapp.uk,Mathematics,mathematics,false +DerekL,mastodonapp.uk,Physics,physics,false +DerekL,mastodonapp.uk,Programming,programming,false +DerekL,mastodonapp.uk,Science,science,false +DerekL,mastodonapp.uk,Space,space,false +DerekL,mastodonapp.uk,Technology,technology,true +TheJamieDub1,mastodon.world,Activism & Civil Rights,activism_civil_rights,false +TheJamieDub1,mastodon.world,Books & Literature,books_literature,false +TheJamieDub1,mastodon.world,Breaking News,breaking_news,false +TheJamieDub1,mastodon.world,Business,business,false +TheJamieDub1,mastodon.world,Democracy & Human Rights,democracy_human_rights,false +TheJamieDub1,mastodon.world,Engineering,engineering,false +TheJamieDub1,mastodon.world,Gaming,gaming,false +TheJamieDub1,mastodon.world,Government & Policy,government_policy,false +TheJamieDub1,mastodon.world,Healthcare,healthcare,false +TheJamieDub1,mastodon.world,History,history,false +TheJamieDub1,mastodon.world,Humanities,humanities,false +TheJamieDub1,mastodon.world,LGBTQ+,lgbtq,false +TheJamieDub1,mastodon.world,Politics,politics,false +TheJamieDub1,mastodon.world,Social Sciences,social_sciences,false +TheJamieDub1,mastodon.world,Technology,technology,false +TheJamieDub1,mastodon.world,Weather,weather,false +TheJamieDub1,mastodon.world,Workers Rights,workers_rights,false +TheJamieDub1,mastodon.world,Markets & Finance,markets_finance,true +muhammedkizilkaya,sosyal.nextconnect.app,Environment,environment,false +pjoter9,newsmast.social,Academia & Research,academia_research,false +pjoter9,newsmast.social,Activism & Civil Rights,activism_civil_rights,false +pjoter9,newsmast.social,Architecture & Design,architecture_design,false +pjoter9,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false +pjoter9,newsmast.social,Biology,biology,false +pjoter9,newsmast.social,Black Voices,black_voices,false +pjoter9,newsmast.social,Breaking News,breaking_news,false +pjoter9,newsmast.social,Climate change,climate_change,false +pjoter9,newsmast.social,Creative Arts,creative_arts,false +pjoter9,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +pjoter9,newsmast.social,Disabled Voices,disabled_voices,false +pjoter9,newsmast.social,Energy & Pollution,energy_pollution,false +pjoter9,newsmast.social,Engineering,engineering,false +pjoter9,newsmast.social,Environment,environment,false +pjoter9,newsmast.social,Gaming,gaming,false +pjoter9,newsmast.social,Government & Policy,government_policy,false +pjoter9,newsmast.social,Healthcare,healthcare,false +pjoter9,newsmast.social,History,history,false +pjoter9,newsmast.social,Humanities,humanities,false +pjoter9,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false +pjoter9,newsmast.social,Immigrants Rights,immigrants_rights,false +pjoter9,newsmast.social,Indigenous Peoples,indigenous_peoples,false +pjoter9,newsmast.social,Law & Justice,law_justice,false +pjoter9,newsmast.social,LGBTQ+,lgbtq,false +pjoter9,newsmast.social,Movies,movies,false +pjoter9,newsmast.social,Music,music,false +pjoter9,newsmast.social,Nature & Wildlife,nature_wildlife,false +pjoter9,newsmast.social,Journalism & Comment,news_comment_data,false +pjoter9,newsmast.social,Performing Arts,performing_arts,false +pjoter9,newsmast.social,Pets,pets,false +pjoter9,newsmast.social,Philosophy,philosophy,false +pjoter9,newsmast.social,Photography,photography,false +pjoter9,newsmast.social,Politics,politics,false +pjoter9,newsmast.social,Poverty & Inequality,poverty_inequality,false +pjoter9,newsmast.social,Programming,programming,false +pjoter9,newsmast.social,Science,science,false +pjoter9,newsmast.social,Social Media,social_media,false +pjoter9,newsmast.social,Social Sciences,social_sciences,false +pjoter9,newsmast.social,Space,space,false +pjoter9,newsmast.social,Technology,technology,false +pjoter9,newsmast.social,TV & Radio,tv_radio,false +pjoter9,newsmast.social,Ukraine Invasion,ukraine_invasion,false +pjoter9,newsmast.social,US Politics,us_politics,false +pjoter9,newsmast.social,Visual Arts,visual_arts,false +pjoter9,newsmast.social,Weather,weather,false +pjoter9,newsmast.social,Women’s Voices,women_voices,false +pjoter9,newsmast.social,Books & Literature,books_literature,true +channyeintun,mastodon.social,Academia & Research,academia_research,false +channyeintun,mastodon.social,Breaking News,breaking_news,false +channyeintun,mastodon.social,Healthcare,healthcare,false +channyeintun,mastodon.social,Law & Justice,law_justice,false +channyeintun,mastodon.social,Journalism & Comment,news_comment_data,false +channyeintun,mastodon.social,Politics,politics,false +channyeintun,mastodon.social,Social Media,social_media,false +channyeintun,mastodon.social,Ukraine Invasion,ukraine_invasion,false +channyeintun,mastodon.social,US Politics,us_politics,false +channyeintun,mastodon.social,Weather,weather,false +channyeintun,mastodon.social,Government & Policy,government_policy,true +Ypsilenna,mastodon.social,Gaming,gaming,false +Ypsilenna,mastodon.social,Music,music,false +Ypsilenna,mastodon.social,Performing Arts,performing_arts,false +Ypsilenna,mastodon.social,Photography,photography,false +Ypsilenna,mastodon.social,Visual Arts,visual_arts,true +GersonDeWinter,mastodon.social,Mathematics,mathematics,false +GersonDeWinter,mastodon.social,Physics,physics,false +GersonDeWinter,mastodon.social,Programming,programming,false +GersonDeWinter,mastodon.social,Space,space,false +GersonDeWinter,mastodon.social,AI,ai,true +mini_panini,Mastodon.social,AI,ai,false +mini_panini,Mastodon.social,Business,business,false +mini_panini,Mastodon.social,Markets & Finance,markets_finance,false +mini_panini,Mastodon.social,Science,science,false +mini_panini,Mastodon.social,Technology,technology,true +ldcolton,masto.ai,Academia & Research,academia_research,false +ldcolton,masto.ai,Activism & Civil Rights,activism_civil_rights,false +ldcolton,masto.ai,Biodiversity & Rewilding,biodiversity_rewilding,false +ldcolton,masto.ai,Biology,biology,false +ldcolton,masto.ai,Black Voices,black_voices,false +ldcolton,masto.ai,Books & Literature,books_literature,false +ldcolton,masto.ai,Chemistry,chemistry,false +ldcolton,masto.ai,Climate change,climate_change,false +ldcolton,masto.ai,Democracy & Human Rights,democracy_human_rights,false +ldcolton,masto.ai,Disabled Voices,disabled_voices,false +ldcolton,masto.ai,Energy & Pollution,energy_pollution,false +ldcolton,masto.ai,Environment,environment,false +ldcolton,masto.ai,Football,football,false +ldcolton,masto.ai,Gaming,gaming,false +ldcolton,masto.ai,Government & Policy,government_policy,false +ldcolton,masto.ai,Healthcare,healthcare,false +ldcolton,masto.ai,Immigrants Rights,immigrants_rights,false +ldcolton,masto.ai,Indigenous Peoples,indigenous_peoples,false +ldcolton,masto.ai,Law & Justice,law_justice,false +ldcolton,masto.ai,LGBTQ+,lgbtq,false +ldcolton,masto.ai,Movies,movies,false +ldcolton,masto.ai,Music,music,false +ldcolton,masto.ai,Journalism & Comment,news_comment_data,false +ldcolton,masto.ai,Performing Arts,performing_arts,false +ldcolton,masto.ai,Photography,photography,false +ldcolton,masto.ai,Physics,physics,false +ldcolton,masto.ai,Politics,politics,false +ldcolton,masto.ai,Poverty & Inequality,poverty_inequality,false +ldcolton,masto.ai,Science,science,false +ldcolton,masto.ai,Space,space,false +ldcolton,masto.ai,Technology,technology,false +ldcolton,masto.ai,TV & Radio,tv_radio,false +ldcolton,masto.ai,Ukraine Invasion,ukraine_invasion,false +ldcolton,masto.ai,US Politics,us_politics,false +ldcolton,masto.ai,US Sport,us_sport,false +ldcolton,masto.ai,Visual Arts,visual_arts,false +ldcolton,masto.ai,Weather,weather,false +ldcolton,masto.ai,Women’s Voices,women_voices,false +ldcolton,masto.ai,Breaking News,breaking_news,true +bval,tinnies.club,Journalism & Comment,news_comment_data,false +bval,tinnies.club,Science,science,false +bval,tinnies.club,Space,space,false +bval,tinnies.club,Technology,technology,false +bval,tinnies.club,Breaking News,breaking_news,true +ravelin,mindly.social,Activism & Civil Rights,activism_civil_rights,false +ravelin,mindly.social,Biology,biology,false +ravelin,mindly.social,Black Voices,black_voices,false +ravelin,mindly.social,Breaking News,breaking_news,false +ravelin,mindly.social,Chemistry,chemistry,false +ravelin,mindly.social,Disabled Voices,disabled_voices,false +ravelin,mindly.social,Immigrants Rights,immigrants_rights,false +ravelin,mindly.social,Indigenous Peoples,indigenous_peoples,false +ravelin,mindly.social,LGBTQ+,lgbtq,false +ravelin,mindly.social,Mathematics,mathematics,false +ravelin,mindly.social,Physics,physics,false +ravelin,mindly.social,Science,science,false +ravelin,mindly.social,Women’s Voices,women_voices,false +ravelin,mindly.social,Space,space,true +LukaszHorodecki,mastodon.com.pl,Biodiversity & Rewilding,biodiversity_rewilding,false +LukaszHorodecki,mastodon.com.pl,Gaming,gaming,false +LukaszHorodecki,mastodon.com.pl,Movies,movies,false +s74rdus7,mastodon.social,US Politics,us_politics,true +LukaszHorodecki,mastodon.com.pl,Breaking News,breaking_news,false +LukaszHorodecki,mastodon.com.pl,Climate change,climate_change,true +alemida44,newsmast.social,AI,ai,false +alemida44,newsmast.social,Engineering,engineering,false +alemida44,newsmast.social,Technology,technology,false +alemida44,newsmast.social,Ukraine Invasion,ukraine_invasion,false +jl_fl,mastodon.social,Biodiversity & Rewilding,biodiversity_rewilding,false +jl_fl,mastodon.social,Environment,environment,false +jl_fl,mastodon.social,Science,science,false +jl_fl,mastodon.social,Space,space,false +alemida44,newsmast.social,Breaking News,breaking_news,true +danielsuguwa,mstdn.party,Engineering,engineering,false +danielsuguwa,mstdn.party,Gaming,gaming,false +danielsuguwa,mstdn.party,Physics,physics,false +danielsuguwa,mstdn.party,Programming,programming,false +danielsuguwa,mstdn.party,Space,space,true +s74rdus7,mastodon.social,Breaking News,breaking_news,false +s74rdus7,mastodon.social,Politics,politics,false +s74rdus7,mastodon.social,Science,science,false +s74rdus7,mastodon.social,Space,space,false +josef_huber,mastodon.social,Food & Drink,food_drink,false +josef_huber,mastodon.social,Humour,humour,false +josef_huber,mastodon.social,Programming,programming,false +josef_huber,mastodon.social,Science,science,false +josef_huber,mastodon.social,AI,ai,true +Bassey_Ijomanta,newsmast.social,Academia & Research,academia_research,false +Bassey_Ijomanta,newsmast.social,Government & Policy,government_policy,false +Bassey_Ijomanta,newsmast.social,Politics,politics,false +Bassey_Ijomanta,newsmast.social,US Politics,us_politics,false +Bassey_Ijomanta,newsmast.social,Social Sciences,social_sciences,true +jl_fl,mastodon.social,Climate change,climate_change,false +jl_fl,mastodon.social,Nature & Wildlife,nature_wildlife,false +lucia_efsun,@mastodon.social,Academia & Research,academia_research,false +lucia_efsun,@mastodon.social,Activism & Civil Rights,activism_civil_rights,false +lucia_efsun,@mastodon.social,AI,ai,false +lucia_efsun,@mastodon.social,Architecture & Design,architecture_design,false +lucia_efsun,@mastodon.social,Biodiversity & Rewilding,biodiversity_rewilding,false +lucia_efsun,@mastodon.social,Biology,biology,false +lucia_efsun,@mastodon.social,Black Voices,black_voices,false +lucia_efsun,@mastodon.social,Books & Literature,books_literature,false +lucia_efsun,@mastodon.social,Breaking News,breaking_news,false +lucia_efsun,@mastodon.social,Business,business,false +lucia_efsun,@mastodon.social,Chemistry,chemistry,false +lucia_efsun,@mastodon.social,Climate change,climate_change,false +lucia_efsun,@mastodon.social,Creative Arts,creative_arts,false +lucia_efsun,@mastodon.social,Democracy & Human Rights,democracy_human_rights,false +lucia_efsun,@mastodon.social,Disabled Voices,disabled_voices,false +lucia_efsun,@mastodon.social,Energy & Pollution,energy_pollution,false +lucia_efsun,@mastodon.social,Engineering,engineering,false +lucia_efsun,@mastodon.social,Environment,environment,false +lucia_efsun,@mastodon.social,Food & Drink,food_drink,false +lucia_efsun,@mastodon.social,Gaming,gaming,false +lucia_efsun,@mastodon.social,Government & Policy,government_policy,false +lucia_efsun,@mastodon.social,Healthcare,healthcare,false +lucia_efsun,@mastodon.social,History,history,false +lucia_efsun,@mastodon.social,Humanities,humanities,false +lucia_efsun,@mastodon.social,Humour,humour,false +lucia_efsun,@mastodon.social,"Hunger, Disease & Water",hunger_disease_water,false +lucia_efsun,@mastodon.social,Immigrants Rights,immigrants_rights,false +lucia_efsun,@mastodon.social,Indigenous Peoples,indigenous_peoples,false +lucia_efsun,@mastodon.social,Law & Justice,law_justice,false +lucia_efsun,@mastodon.social,LGBTQ+,lgbtq,false +lucia_efsun,@mastodon.social,Markets & Finance,markets_finance,false +lucia_efsun,@mastodon.social,Mathematics,mathematics,false +lucia_efsun,@mastodon.social,Mental Health & Wellbeing,mental_health_wellbeing,false +lucia_efsun,@mastodon.social,Movies,movies,false +lucia_efsun,@mastodon.social,Music,music,false +lucia_efsun,@mastodon.social,Nature & Wildlife,nature_wildlife,false +lucia_efsun,@mastodon.social,Journalism & Comment,news_comment_data,false +lucia_efsun,@mastodon.social,Performing Arts,performing_arts,false +lucia_efsun,@mastodon.social,Pets,pets,false +lucia_efsun,@mastodon.social,Philosophy,philosophy,false +lucia_efsun,@mastodon.social,Photography,photography,false +lucia_efsun,@mastodon.social,Physics,physics,false +lucia_efsun,@mastodon.social,Politics,politics,false +lucia_efsun,@mastodon.social,Poverty & Inequality,poverty_inequality,false +lucia_efsun,@mastodon.social,Programming,programming,false +lucia_efsun,@mastodon.social,Puzzles,puzzles,false +lucia_efsun,@mastodon.social,Science,science,false +lucia_efsun,@mastodon.social,Social Media,social_media,false +lucia_efsun,@mastodon.social,Social Sciences,social_sciences,false +lucia_efsun,@mastodon.social,Space,space,false +lucia_efsun,@mastodon.social,Technology,technology,false +lucia_efsun,@mastodon.social,Travel,travel,false +lucia_efsun,@mastodon.social,TV & Radio,tv_radio,false +lucia_efsun,@mastodon.social,US Politics,us_politics,false +lucia_efsun,@mastodon.social,Visual Arts,visual_arts,false +lucia_efsun,@mastodon.social,Weather,weather,false +lucia_efsun,@mastodon.social,Workers Rights,workers_rights,false +lucia_efsun,@mastodon.social,Women’s Voices,women_voices,true +JenniferLLawson,newsmast.social,Activism & Civil Rights,activism_civil_rights,false +JenniferLLawson,newsmast.social,AI,ai,false +JenniferLLawson,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false +JenniferLLawson,newsmast.social,Biology,biology,false +JenniferLLawson,newsmast.social,Black Voices,black_voices,false +JenniferLLawson,newsmast.social,Business,business,false +JenniferLLawson,newsmast.social,Chemistry,chemistry,false +JenniferLLawson,newsmast.social,Climate change,climate_change,false +JenniferLLawson,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +JenniferLLawson,newsmast.social,Disabled Voices,disabled_voices,false +JenniferLLawson,newsmast.social,Energy & Pollution,energy_pollution,false +JenniferLLawson,newsmast.social,Engineering,engineering,false +JenniferLLawson,newsmast.social,Environment,environment,false +JenniferLLawson,newsmast.social,Government & Policy,government_policy,false +JenniferLLawson,newsmast.social,Healthcare,healthcare,false +JenniferLLawson,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false +JenniferLLawson,newsmast.social,Immigrants Rights,immigrants_rights,false +JenniferLLawson,newsmast.social,Indigenous Peoples,indigenous_peoples,false +JenniferLLawson,newsmast.social,Law & Justice,law_justice,false +JenniferLLawson,newsmast.social,LGBTQ+,lgbtq,false +JenniferLLawson,newsmast.social,Markets & Finance,markets_finance,false +JenniferLLawson,newsmast.social,Mathematics,mathematics,true +ameliawampler,mastodon.social,AI,ai,false +ameliawampler,mastodon.social,Business,business,false +ameliawampler,mastodon.social,History,history,false +ameliawampler,mastodon.social,Philosophy,philosophy,false +ameliawampler,mastodon.social,Science,science,false +ameliawampler,mastodon.social,Space,space,false +ameliawampler,mastodon.social,Sport,sport,false +ameliawampler,mastodon.social,Technology,technology,false +ameliawampler,mastodon.social,Programming,programming,true +JenniferLLawson,newsmast.social,Physics,physics,false +JenniferLLawson,newsmast.social,Politics,politics,false +JenniferLLawson,newsmast.social,Poverty & Inequality,poverty_inequality,false +JenniferLLawson,newsmast.social,Programming,programming,false +JenniferLLawson,newsmast.social,Science,science,false +JenniferLLawson,newsmast.social,Space,space,false +JenniferLLawson,newsmast.social,Technology,technology,false +JenniferLLawson,newsmast.social,US Politics,us_politics,false +JenniferLLawson,newsmast.social,Women’s Voices,women_voices,false +JenniferLLawson,newsmast.social,Workers Rights,workers_rights,false +fas_dan,mastodon.social,Weather,weather,false +Linda,kind.social,Food & Drink,food_drink,false +Linda,kind.social,Mental Health & Wellbeing,mental_health_wellbeing,false +Linda,kind.social,Journalism & Comment,news_comment_data,false +Linda,kind.social,Social Media,social_media,false +Linda,kind.social,Breaking News,breaking_news,true +Rowena,mathstodon.xyz,Biology,biology,false +Rowena,mathstodon.xyz,Chemistry,chemistry,false +Rowena,mathstodon.xyz,Physics,physics,false +Rowena,mathstodon.xyz,Science,science,false +Rowena,mathstodon.xyz,Space,space,false +Rowena,mathstodon.xyz,Mathematics,mathematics,true +gyrusinczky,flipboard.social,Activism & Civil Rights,activism_civil_rights,false +gyrusinczky,flipboard.social,Architecture & Design,architecture_design,false +gyrusinczky,flipboard.social,Biodiversity & Rewilding,biodiversity_rewilding,false +gyrusinczky,flipboard.social,Biology,biology,false +gyrusinczky,flipboard.social,Black Voices,black_voices,false +gyrusinczky,flipboard.social,Books & Literature,books_literature,false +gyrusinczky,flipboard.social,Chemistry,chemistry,false +gyrusinczky,flipboard.social,Creative Arts,creative_arts,false +gyrusinczky,flipboard.social,Energy & Pollution,energy_pollution,false +gyrusinczky,flipboard.social,History,history,false +gyrusinczky,flipboard.social,Humanities,humanities,false +gyrusinczky,flipboard.social,Mathematics,mathematics,false +gyrusinczky,flipboard.social,Mental Health & Wellbeing,mental_health_wellbeing,false +gyrusinczky,flipboard.social,Nature & Wildlife,nature_wildlife,false +gyrusinczky,flipboard.social,Philosophy,philosophy,false +gyrusinczky,flipboard.social,Photography,photography,false +gyrusinczky,flipboard.social,Physics,physics,false +gyrusinczky,flipboard.social,Science,science,false +gyrusinczky,flipboard.social,Social Sciences,social_sciences,false +gyrusinczky,flipboard.social,Travel,travel,false +gyrusinczky,flipboard.social,Visual Arts,visual_arts,false +gyrusinczky,flipboard.social,Women’s Voices,women_voices,false +gyrusinczky,flipboard.social,Environment,environment,true +nidalamer,mastodon.social,Architecture & Design,architecture_design,false +nidalamer,mastodon.social,Biodiversity & Rewilding,biodiversity_rewilding,false +nidalamer,mastodon.social,Books & Literature,books_literature,false +nidalamer,mastodon.social,Climate change,climate_change,false +nidalamer,mastodon.social,Creative Arts,creative_arts,false +nidalamer,mastodon.social,Democracy & Human Rights,democracy_human_rights,false +nidalamer,mastodon.social,Engineering,engineering,false +nidalamer,mastodon.social,Environment,environment,false +nidalamer,mastodon.social,History,history,false +nidalamer,mastodon.social,Humanities,humanities,false +nidalamer,mastodon.social,Humour,humour,false +nidalamer,mastodon.social,Mental Health & Wellbeing,mental_health_wellbeing,false +nidalamer,mastodon.social,Movies,movies,false +nidalamer,mastodon.social,Nature & Wildlife,nature_wildlife,false +nidalamer,mastodon.social,Journalism & Comment,news_comment_data,false +nidalamer,mastodon.social,Performing Arts,performing_arts,false +nidalamer,mastodon.social,Philosophy,philosophy,false +nidalamer,mastodon.social,Politics,politics,false +nidalamer,mastodon.social,Poverty & Inequality,poverty_inequality,false +nidalamer,mastodon.social,Programming,programming,false +nidalamer,mastodon.social,Science,science,false +nidalamer,mastodon.social,Social Sciences,social_sciences,false +nidalamer,mastodon.social,Technology,technology,false +nidalamer,mastodon.social,Travel,travel,false +nidalamer,mastodon.social,Visual Arts,visual_arts,false +nidalamer,mastodon.social,Activism & Civil Rights,activism_civil_rights,true +lilythelonelygirl,tootworld.social,Breaking News,breaking_news,false +lilythelonelygirl,tootworld.social,Biodiversity & Rewilding,biodiversity_rewilding,false +lilythelonelygirl,tootworld.social,Business,business,false +lilythelonelygirl,tootworld.social,Climate change,climate_change,false +lilythelonelygirl,tootworld.social,Energy & Pollution,energy_pollution,false +lilythelonelygirl,tootworld.social,Environment,environment,false +lilythelonelygirl,tootworld.social,Markets & Finance,markets_finance,false +lilythelonelygirl,tootworld.social,Journalism & Comment,news_comment_data,false +lilythelonelygirl,tootworld.social,Ukraine Invasion,ukraine_invasion,false +lilythelonelygirl,tootworld.social,Weather,weather,false +lilythelonelygirl,tootworld.social,Workers Rights,workers_rights,false +lilythelonelygirl,tootworld.social,Social Media,social_media,true +nijicat,newsmast.social,Academia & Research,academia_research,false +nijicat,newsmast.social,Activism & Civil Rights,activism_civil_rights,false +nijicat,newsmast.social,Architecture & Design,architecture_design,false +nijicat,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false +nijicat,newsmast.social,Biology,biology,false +nijicat,newsmast.social,Black Voices,black_voices,false +nijicat,newsmast.social,Books & Literature,books_literature,false +nijicat,newsmast.social,Breaking News,breaking_news,false +nijicat,newsmast.social,Business,business,false +nijicat,newsmast.social,Chemistry,chemistry,false +nijicat,newsmast.social,Climate change,climate_change,false +nijicat,newsmast.social,Creative Arts,creative_arts,false +nijicat,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +nijicat,newsmast.social,Disabled Voices,disabled_voices,false +nijicat,newsmast.social,Energy & Pollution,energy_pollution,false +nijicat,newsmast.social,Engineering,engineering,false +nijicat,newsmast.social,Environment,environment,false +nijicat,newsmast.social,Food & Drink,food_drink,false +nijicat,newsmast.social,Football,football,false +nijicat,newsmast.social,Gaming,gaming,false +nijicat,newsmast.social,Government & Policy,government_policy,false +nijicat,newsmast.social,Healthcare,healthcare,false +nijicat,newsmast.social,History,history,false +nijicat,newsmast.social,Humanities,humanities,false +nijicat,newsmast.social,Humour,humour,false +nijicat,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false +nijicat,newsmast.social,Immigrants Rights,immigrants_rights,false +nijicat,newsmast.social,Indigenous Peoples,indigenous_peoples,false +nijicat,newsmast.social,Law & Justice,law_justice,false +nijicat,newsmast.social,LGBTQ+,lgbtq,false +nijicat,newsmast.social,Markets & Finance,markets_finance,false +nijicat,newsmast.social,Mathematics,mathematics,false +nijicat,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false +nijicat,newsmast.social,Movies,movies,false +nijicat,newsmast.social,Music,music,false +nijicat,newsmast.social,Nature & Wildlife,nature_wildlife,false +nijicat,newsmast.social,Journalism & Comment,news_comment_data,false +nijicat,newsmast.social,Performing Arts,performing_arts,false +nijicat,newsmast.social,Pets,pets,false +nijicat,newsmast.social,Philosophy,philosophy,false +nijicat,newsmast.social,Photography,photography,false +nijicat,newsmast.social,Physics,physics,false +nijicat,newsmast.social,Politics,politics,false +nijicat,newsmast.social,Poverty & Inequality,poverty_inequality,false +nijicat,newsmast.social,Programming,programming,false +nijicat,newsmast.social,Puzzles,puzzles,false +nijicat,newsmast.social,Science,science,false +nijicat,newsmast.social,Social Media,social_media,false +nijicat,newsmast.social,Social Sciences,social_sciences,false +nijicat,newsmast.social,Space,space,false +nijicat,newsmast.social,Sport,sport,false +nijicat,newsmast.social,Technology,technology,false +nijicat,newsmast.social,Travel,travel,false +nijicat,newsmast.social,TV & Radio,tv_radio,false +nijicat,newsmast.social,Ukraine Invasion,ukraine_invasion,false +nijicat,newsmast.social,US Politics,us_politics,false +nijicat,newsmast.social,US Sport,us_sport,false +nijicat,newsmast.social,Visual Arts,visual_arts,false +nijicat,newsmast.social,Weather,weather,false +nijicat,newsmast.social,Women’s Voices,women_voices,false +nijicat,newsmast.social,Workers Rights,workers_rights,false +nijicat,newsmast.social,AI,ai,true +fas_dan,mastodon.social,Breaking News,breaking_news,false +kaerisonic,newsmast.social,Disabled Voices,disabled_voices,false +kaerisonic,newsmast.social,Energy & Pollution,energy_pollution,false +kaerisonic,newsmast.social,Environment,environment,false +kaerisonic,newsmast.social,Food & Drink,food_drink,false +kaerisonic,newsmast.social,Government & Policy,government_policy,false +kaerisonic,newsmast.social,History,history,false +kaerisonic,newsmast.social,Humanities,humanities,false +kaerisonic,newsmast.social,Humour,humour,false +kaerisonic,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false +kaerisonic,newsmast.social,Indigenous Peoples,indigenous_peoples,false +kaerisonic,newsmast.social,Law & Justice,law_justice,false +kaerisonic,newsmast.social,Markets & Finance,markets_finance,false +kaerisonic,newsmast.social,Mathematics,mathematics,false +acastro,newsmast.social,Architecture & Design,architecture_design,false +acastro,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false +acastro,newsmast.social,Books & Literature,books_literature,false +acastro,newsmast.social,Creative Arts,creative_arts,false +acastro,newsmast.social,Energy & Pollution,energy_pollution,false +acastro,newsmast.social,History,history,false +acastro,newsmast.social,Humanities,humanities,false +acastro,newsmast.social,Humour,humour,false +acastro,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false +acastro,newsmast.social,Music,music,false +acastro,newsmast.social,Philosophy,philosophy,false +acastro,newsmast.social,AI,ai,true +kaerisonic,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,true +acastro,newsmast.social,Puzzles,puzzles,false +acastro,newsmast.social,Social Sciences,social_sciences,false +acastro,newsmast.social,Space,space,false +acastro,newsmast.social,Technology,technology,false +acastro,newsmast.social,Visual Arts,visual_arts,false +randmbits,mstdn.social,AI,ai,false +randmbits,mstdn.social,Markets & Finance,markets_finance,false +randmbits,mstdn.social,Technology,technology,false +randmbits,mstdn.social,US Sport,us_sport,false +randmbits,mstdn.social,Breaking News,breaking_news,true +randmbits,mstdn.social,Government & Policy,government_policy,false +randmbits,mstdn.social,Law & Justice,law_justice,false +randmbits,mstdn.social,Politics,politics,false +randmbits,mstdn.social,US Politics,us_politics,false +randmbits,mstdn.social,Environment,environment,false +randmbits,mstdn.social,Climate change,climate_change,false +kaerisonic,newsmast.social,Nature & Wildlife,nature_wildlife,false +kaerisonic,newsmast.social,Journalism & Comment,news_comment_data,false +kaerisonic,newsmast.social,Pets,pets,false +kaerisonic,newsmast.social,Politics,politics,false +kaerisonic,newsmast.social,Poverty & Inequality,poverty_inequality,false +kaerisonic,newsmast.social,Programming,programming,false +rogerms,sfba.social,Breaking News,breaking_news,false +rogerms,sfba.social,Engineering,engineering,false +rogerms,sfba.social,Programming,programming,false +rogerms,sfba.social,Science,science,false +rogerms,sfba.social,Technology,technology,false +rogerms,sfba.social,AI,ai,true +jl_fl,mastodon.social,History,history,false +jl_fl,mastodon.social,Photography,photography,true +kaerisonic,newsmast.social,Science,science,false +kaerisonic,newsmast.social,Social Media,social_media,false +kaerisonic,newsmast.social,Social Sciences,social_sciences,false +kaerisonic,newsmast.social,Space,space,false +kaerisonic,newsmast.social,Technology,technology,false +kaerisonic,newsmast.social,Travel,travel,false +kaerisonic,newsmast.social,Ukraine Invasion,ukraine_invasion,false +kaerisonic,newsmast.social,Weather,weather,false +kaerisonic,newsmast.social,Women’s Voices,women_voices,false +postmanbrown,mastodon.social,AI,ai,false +postmanbrown,mastodon.social,Biodiversity & Rewilding,biodiversity_rewilding,false +postmanbrown,mastodon.social,Biology,biology,false +postmanbrown,mastodon.social,Chemistry,chemistry,false +postmanbrown,mastodon.social,Climate change,climate_change,false +postmanbrown,mastodon.social,Energy & Pollution,energy_pollution,false +postmanbrown,mastodon.social,Engineering,engineering,false +postmanbrown,mastodon.social,Environment,environment,false +postmanbrown,mastodon.social,History,history,false +postmanbrown,mastodon.social,Humanities,humanities,false +postmanbrown,mastodon.social,Mathematics,mathematics,false +postmanbrown,mastodon.social,Physics,physics,false +postmanbrown,mastodon.social,Programming,programming,false +postmanbrown,mastodon.social,Science,science,false +postmanbrown,mastodon.social,Social Sciences,social_sciences,false +postmanbrown,mastodon.social,Space,space,false +postmanbrown,mastodon.social,Technology,technology,false +postmanbrown,mastodon.social,US Sport,us_sport,false +postmanbrown,mastodon.social,Philosophy,philosophy,true +Oparator,mas.to,Biology,biology,false +Oparator,mas.to,Breaking News,breaking_news,false +Oparator,mas.to,Chemistry,chemistry,false +Oparator,mas.to,Climate change,climate_change,false +Oparator,mas.to,Energy & Pollution,energy_pollution,false +Oparator,mas.to,Engineering,engineering,false +Oparator,mas.to,Environment,environment,false +Oparator,mas.to,Physics,physics,false +Oparator,mas.to,Space,space,false +Oparator,mas.to,Technology,technology,false +Oparator,mas.to,Science,science,true +collected_cards,newsmast.social,History,history,false +collected_cards,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false +collected_cards,newsmast.social,Music,music,false +collected_cards,newsmast.social,Nature & Wildlife,nature_wildlife,false +collected_cards,newsmast.social,Philosophy,philosophy,false +collected_cards,newsmast.social,Social Sciences,social_sciences,false +collected_cards,newsmast.social,LGBTQ+,lgbtq,true +jlfl,social.vivaldi.net,Humanities,humanities,false +jlfl,social.vivaldi.net,Philosophy,philosophy,false +jlfl,social.vivaldi.net,Space,space,false +jlfl,social.vivaldi.net,Food & Drink,food_drink,false +jlfl,social.vivaldi.net,Humour,humour,false +jlfl,social.vivaldi.net,History,history,false +jlfl,social.vivaldi.net,Books & Literature,books_literature,false +jlfl,social.vivaldi.net,Nature & Wildlife,nature_wildlife,false +jlfl,social.vivaldi.net,Photography,photography,true +MichielFraters,mastodon.social,Architecture & Design,architecture_design,false +MichielFraters,mastodon.social,Biodiversity & Rewilding,biodiversity_rewilding,false +MichielFraters,mastodon.social,Biology,biology,false +MichielFraters,mastodon.social,Chemistry,chemistry,false +MichielFraters,mastodon.social,Energy & Pollution,energy_pollution,false +MichielFraters,mastodon.social,Environment,environment,false +MichielFraters,mastodon.social,Mathematics,mathematics,false +MichielFraters,mastodon.social,Photography,photography,false +MichielFraters,mastodon.social,Physics,physics,false +MichielFraters,mastodon.social,Science,science,false +MichielFraters,mastodon.social,Space,space,false +MichielFraters,mastodon.social,Visual Arts,visual_arts,false +MichielFraters,mastodon.social,Climate change,climate_change,true +Ypsilenna,newsmast.social,Gaming,gaming,false +Ypsilenna,newsmast.social,Music,music,false +Ypsilenna,newsmast.social,Performing Arts,performing_arts,false +Ypsilenna,newsmast.social,Photography,photography,false +Ypsilenna,newsmast.social,Visual Arts,visual_arts,true +kaerisonic,newsmast.social,Workers Rights,workers_rights,false +burnitdownpls,newsmast.social,Architecture & Design,architecture_design,false +burnitdownpls,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false +burnitdownpls,newsmast.social,Biology,biology,false +burnitdownpls,newsmast.social,Books & Literature,books_literature,false +burnitdownpls,newsmast.social,Breaking News,breaking_news,false +burnitdownpls,newsmast.social,Chemistry,chemistry,false +burnitdownpls,newsmast.social,Climate change,climate_change,false +burnitdownpls,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +burnitdownpls,newsmast.social,Energy & Pollution,energy_pollution,false +burnitdownpls,newsmast.social,Environment,environment,false +burnitdownpls,newsmast.social,Gaming,gaming,false +burnitdownpls,newsmast.social,Government & Policy,government_policy,false +burnitdownpls,newsmast.social,Healthcare,healthcare,false +burnitdownpls,newsmast.social,History,history,false +burnitdownpls,newsmast.social,Humanities,humanities,false +burnitdownpls,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false +burnitdownpls,newsmast.social,Law & Justice,law_justice,false +burnitdownpls,newsmast.social,Mathematics,mathematics,false +burnitdownpls,newsmast.social,Movies,movies,false +burnitdownpls,newsmast.social,Music,music,false +burnitdownpls,newsmast.social,Journalism & Comment,news_comment_data,false +burnitdownpls,newsmast.social,Performing Arts,performing_arts,false +burnitdownpls,newsmast.social,Philosophy,philosophy,false +burnitdownpls,newsmast.social,Photography,photography,false +burnitdownpls,newsmast.social,Physics,physics,false +burnitdownpls,newsmast.social,Politics,politics,false +burnitdownpls,newsmast.social,Poverty & Inequality,poverty_inequality,false +burnitdownpls,newsmast.social,Science,science,false +burnitdownpls,newsmast.social,Social Media,social_media,false +burnitdownpls,newsmast.social,Social Sciences,social_sciences,false +burnitdownpls,newsmast.social,Space,space,false +burnitdownpls,newsmast.social,TV & Radio,tv_radio,false +burnitdownpls,newsmast.social,Ukraine Invasion,ukraine_invasion,false +burnitdownpls,newsmast.social,US Politics,us_politics,false +burnitdownpls,newsmast.social,Visual Arts,visual_arts,false +burnitdownpls,newsmast.social,Weather,weather,false +burnitdownpls,newsmast.social,Academia & Research,academia_research,true +kaerypheur,newsmast.social,Creative Arts,creative_arts,false +kaerypheur,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +kaerypheur,newsmast.social,Disabled Voices,disabled_voices,false +kaerypheur,newsmast.social,Energy & Pollution,energy_pollution,false +kaerypheur,newsmast.social,Engineering,engineering,false +kaerypheur,newsmast.social,Environment,environment,false +kaerypheur,newsmast.social,Food & Drink,food_drink,false +kaerypheur,newsmast.social,Government & Policy,government_policy,false +kaerypheur,newsmast.social,Healthcare,healthcare,false +kaerypheur,newsmast.social,History,history,false +kaerypheur,newsmast.social,Humanities,humanities,false +kaerypheur,newsmast.social,Humour,humour,false +kaerypheur,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false +kaerypheur,newsmast.social,Immigrants Rights,immigrants_rights,false +kaerypheur,newsmast.social,Indigenous Peoples,indigenous_peoples,false +kaerypheur,newsmast.social,Law & Justice,law_justice,false +kaerypheur,newsmast.social,Markets & Finance,markets_finance,false +kaerypheur,newsmast.social,Mathematics,mathematics,false +kaerypheur,newsmast.social,Nature & Wildlife,nature_wildlife,false +kaerypheur,newsmast.social,Journalism & Comment,news_comment_data,false +kaerypheur,newsmast.social,Pets,pets,false +kaerypheur,newsmast.social,Philosophy,philosophy,false +kaerypheur,newsmast.social,Politics,politics,false +kaerypheur,newsmast.social,Poverty & Inequality,poverty_inequality,false +kaerypheur,newsmast.social,Programming,programming,false +kaerypheur,newsmast.social,Puzzles,puzzles,false +kaerypheur,newsmast.social,Science,science,false +kaerypheur,newsmast.social,Social Media,social_media,false +kaerypheur,newsmast.social,Social Sciences,social_sciences,false +kaerypheur,newsmast.social,Space,space,false +kaerypheur,newsmast.social,Technology,technology,false +kaerypheur,newsmast.social,Travel,travel,false +Acethe1st,newsmast.social,Academia & Research,academia_research,false +Acethe1st,newsmast.social,Activism & Civil Rights,activism_civil_rights,false +Acethe1st,newsmast.social,Architecture & Design,architecture_design,false +Acethe1st,newsmast.social,Biology,biology,false +Acethe1st,newsmast.social,Black Voices,black_voices,false +Acethe1st,newsmast.social,Books & Literature,books_literature,false +Acethe1st,newsmast.social,Breaking News,breaking_news,false +Acethe1st,newsmast.social,Chemistry,chemistry,false +Acethe1st,newsmast.social,Disabled Voices,disabled_voices,false +Acethe1st,newsmast.social,Gaming,gaming,false +Acethe1st,newsmast.social,Democracy & Human Rights,democracy_human_rights,true +kaerypheur,newsmast.social,Ukraine Invasion,ukraine_invasion,false +kaerypheur,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,true +Acethe1st,newsmast.social,Government & Policy,government_policy,false +Acethe1st,newsmast.social,Healthcare,healthcare,false +Acethe1st,newsmast.social,History,history,false +Acethe1st,newsmast.social,Humanities,humanities,false +Acethe1st,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false +Acethe1st,newsmast.social,Immigrants Rights,immigrants_rights,false +Acethe1st,newsmast.social,Indigenous Peoples,indigenous_peoples,false +Acethe1st,newsmast.social,Law & Justice,law_justice,false +Acethe1st,newsmast.social,LGBTQ+,lgbtq,false +Acethe1st,newsmast.social,Mathematics,mathematics,false +Acethe1st,newsmast.social,Movies,movies,false +Acethe1st,newsmast.social,Music,music,false +Acethe1st,newsmast.social,Journalism & Comment,news_comment_data,false +Acethe1st,newsmast.social,Performing Arts,performing_arts,false +Acethe1st,newsmast.social,Philosophy,philosophy,false +Acethe1st,newsmast.social,Photography,photography,false +Acethe1st,newsmast.social,Physics,physics,false +Acethe1st,newsmast.social,Politics,politics,false +Acethe1st,newsmast.social,Poverty & Inequality,poverty_inequality,false +Acethe1st,newsmast.social,Science,science,false +Acethe1st,newsmast.social,Social Media,social_media,false +Acethe1st,newsmast.social,Social Sciences,social_sciences,false +Acethe1st,newsmast.social,Space,space,false +Acethe1st,newsmast.social,TV & Radio,tv_radio,false +Acethe1st,newsmast.social,Ukraine Invasion,ukraine_invasion,false +Acethe1st,newsmast.social,US Politics,us_politics,false +Acethe1st,newsmast.social,Visual Arts,visual_arts,false +Acethe1st,newsmast.social,Weather,weather,false +Acethe1st,newsmast.social,Women’s Voices,women_voices,false +lexoyo,framapiaf.org,Disabled Voices,disabled_voices,false +lexoyo,framapiaf.org,Mathematics,mathematics,false +lexoyo,framapiaf.org,Physics,physics,false +lexoyo,framapiaf.org,Programming,programming,true +Polotman,mastodon.social,Architecture & Design,architecture_design,false +Polotman,mastodon.social,Books & Literature,books_literature,false +Polotman,mastodon.social,Gaming,gaming,false +Polotman,mastodon.social,Movies,movies,false +Polotman,mastodon.social,Music,music,false +Polotman,mastodon.social,Journalism & Comment,news_comment_data,false +Polotman,mastodon.social,Performing Arts,performing_arts,false +Polotman,mastodon.social,Photography,photography,false +Polotman,mastodon.social,Social Media,social_media,false +Polotman,mastodon.social,TV & Radio,tv_radio,false +Polotman,mastodon.social,Ukraine Invasion,ukraine_invasion,false +Polotman,mastodon.social,Weather,weather,false +Polotman,mastodon.social,Visual Arts,visual_arts,true +kaerypheur,newsmast.social,US Politics,us_politics,false +kaerypheur,newsmast.social,Weather,weather,false +kaerypheur,newsmast.social,Women’s Voices,women_voices,false +kaerypheur,newsmast.social,Workers Rights,workers_rights,false +stott,pkm.social,AI,ai,false +stott,pkm.social,Books & Literature,books_literature,false +stott,pkm.social,Breaking News,breaking_news,false +stott,pkm.social,Movies,movies,false +stott,pkm.social,Technology,technology,true +greenhombre,mstdn.social,Academia & Research,academia_research,false +greenhombre,mstdn.social,AI,ai,false +greenhombre,mstdn.social,Architecture & Design,architecture_design,false +greenhombre,mstdn.social,Biodiversity & Rewilding,biodiversity_rewilding,false +greenhombre,mstdn.social,Biology,biology,false +greenhombre,mstdn.social,Books & Literature,books_literature,false +greenhombre,mstdn.social,Chemistry,chemistry,false +greenhombre,mstdn.social,Climate change,climate_change,false +greenhombre,mstdn.social,Democracy & Human Rights,democracy_human_rights,false +greenhombre,mstdn.social,Energy & Pollution,energy_pollution,false +greenhombre,mstdn.social,Engineering,engineering,false +greenhombre,mstdn.social,Environment,environment,false +greenhombre,mstdn.social,Gaming,gaming,false +greenhombre,mstdn.social,Government & Policy,government_policy,false +greenhombre,mstdn.social,Healthcare,healthcare,false +greenhombre,mstdn.social,History,history,false +greenhombre,mstdn.social,Humanities,humanities,false +greenhombre,mstdn.social,"Hunger, Disease & Water",hunger_disease_water,false +greenhombre,mstdn.social,Law & Justice,law_justice,false +greenhombre,mstdn.social,Mathematics,mathematics,false +greenhombre,mstdn.social,Breaking News,breaking_news,true +sgtnasty,mastodon.social,Academia & Research,academia_research,false +sgtnasty,mastodon.social,Activism & Civil Rights,activism_civil_rights,false +sgtnasty,mastodon.social,AI,ai,false +sgtnasty,mastodon.social,Architecture & Design,architecture_design,false +sgtnasty,mastodon.social,Biodiversity & Rewilding,biodiversity_rewilding,false +sgtnasty,mastodon.social,Biology,biology,false +sgtnasty,mastodon.social,Books & Literature,books_literature,false +sgtnasty,mastodon.social,Breaking News,breaking_news,false +sgtnasty,mastodon.social,Chemistry,chemistry,false +sgtnasty,mastodon.social,Climate change,climate_change,false +sgtnasty,mastodon.social,Democracy & Human Rights,democracy_human_rights,false +sgtnasty,mastodon.social,Energy & Pollution,energy_pollution,false +sgtnasty,mastodon.social,Engineering,engineering,false +sgtnasty,mastodon.social,Environment,environment,false +sgtnasty,mastodon.social,Government & Policy,government_policy,false +sgtnasty,mastodon.social,Healthcare,healthcare,false +sgtnasty,mastodon.social,History,history,false +sgtnasty,mastodon.social,Humanities,humanities,false +sgtnasty,mastodon.social,"Hunger, Disease & Water",hunger_disease_water,false +sgtnasty,mastodon.social,Immigrants Rights,immigrants_rights,false +sgtnasty,mastodon.social,Law & Justice,law_justice,false +sgtnasty,mastodon.social,Mathematics,mathematics,false +sgtnasty,mastodon.social,Movies,movies,false +sgtnasty,mastodon.social,Music,music,false +sgtnasty,mastodon.social,Journalism & Comment,news_comment_data,false +sgtnasty,mastodon.social,Performing Arts,performing_arts,false +sgtnasty,mastodon.social,Philosophy,philosophy,false +sgtnasty,mastodon.social,Photography,photography,false +sgtnasty,mastodon.social,Physics,physics,false +sgtnasty,mastodon.social,Politics,politics,false +sgtnasty,mastodon.social,Poverty & Inequality,poverty_inequality,false +sgtnasty,mastodon.social,Programming,programming,false +sgtnasty,mastodon.social,Science,science,false +sgtnasty,mastodon.social,Social Media,social_media,false +sgtnasty,mastodon.social,Social Sciences,social_sciences,false +sgtnasty,mastodon.social,Space,space,false +sgtnasty,mastodon.social,Technology,technology,false +sgtnasty,mastodon.social,TV & Radio,tv_radio,false +sgtnasty,mastodon.social,Ukraine Invasion,ukraine_invasion,false +sgtnasty,mastodon.social,US Politics,us_politics,false +sgtnasty,mastodon.social,Visual Arts,visual_arts,false +sgtnasty,mastodon.social,Weather,weather,false +sgtnasty,mastodon.social,Gaming,gaming,true +greenhombre,mstdn.social,Movies,movies,false +greenhombre,mstdn.social,Music,music,false +greenhombre,mstdn.social,Journalism & Comment,news_comment_data,false +greenhombre,mstdn.social,Performing Arts,performing_arts,false +greenhombre,mstdn.social,Philosophy,philosophy,false +greenhombre,mstdn.social,Photography,photography,false +greenhombre,mstdn.social,Physics,physics,false +greenhombre,mstdn.social,Politics,politics,false +greenhombre,mstdn.social,Poverty & Inequality,poverty_inequality,false +greenhombre,mstdn.social,Programming,programming,false +greenhombre,mstdn.social,Science,science,false +greenhombre,mstdn.social,Social Media,social_media,false +greenhombre,mstdn.social,Social Sciences,social_sciences,false +greenhombre,mstdn.social,Space,space,false +greenhombre,mstdn.social,Technology,technology,false +greenhombre,mstdn.social,TV & Radio,tv_radio,false +greenhombre,mstdn.social,Ukraine Invasion,ukraine_invasion,false +greenhombre,mstdn.social,US Politics,us_politics,false +greenhombre,mstdn.social,Visual Arts,visual_arts,false +greenhombre,mstdn.social,Weather,weather,false +forumformadsuveraenitet,radikal.social,Activism & Civil Rights,activism_civil_rights,false +forumformadsuveraenitet,radikal.social,Biodiversity & Rewilding,biodiversity_rewilding,false +forumformadsuveraenitet,radikal.social,Climate change,climate_change,false +forumformadsuveraenitet,radikal.social,Environment,environment,false +forumformadsuveraenitet,radikal.social,Government & Policy,government_policy,false +forumformadsuveraenitet,radikal.social,"Hunger, Disease & Water",hunger_disease_water,false +forumformadsuveraenitet,radikal.social,Indigenous Peoples,indigenous_peoples,false +forumformadsuveraenitet,radikal.social,Poverty & Inequality,poverty_inequality,true +alzatari,newsmast.social,Activism & Civil Rights,activism_civil_rights,false +alzatari,newsmast.social,Architecture & Design,architecture_design,false +alzatari,newsmast.social,Books & Literature,books_literature,false +alzatari,newsmast.social,Breaking News,breaking_news,false +alzatari,newsmast.social,Creative Arts,creative_arts,false +alzatari,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +alzatari,newsmast.social,Food & Drink,food_drink,false +alzatari,newsmast.social,Government & Policy,government_policy,false +alzatari,newsmast.social,Healthcare,healthcare,false +alzatari,newsmast.social,History,history,false +alzatari,newsmast.social,Humanities,humanities,false +alzatari,newsmast.social,Humour,humour,false +alzatari,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false +alzatari,newsmast.social,Indigenous Peoples,indigenous_peoples,false +alzatari,newsmast.social,Law & Justice,law_justice,false +alzatari,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false +alzatari,newsmast.social,Nature & Wildlife,nature_wildlife,false +alzatari,newsmast.social,Journalism & Comment,news_comment_data,false +alzatari,newsmast.social,Pets,pets,false +alzatari,newsmast.social,Philosophy,philosophy,false +alzatari,newsmast.social,Photography,photography,false +alzatari,newsmast.social,Politics,politics,false +alzatari,newsmast.social,Poverty & Inequality,poverty_inequality,false +alzatari,newsmast.social,Puzzles,puzzles,false +alzatari,newsmast.social,Social Media,social_media,false +alzatari,newsmast.social,Social Sciences,social_sciences,false +alzatari,newsmast.social,Travel,travel,false +alzatari,newsmast.social,Ukraine Invasion,ukraine_invasion,false +alzatari,newsmast.social,US Politics,us_politics,false +alzatari,newsmast.social,Visual Arts,visual_arts,false +alzatari,newsmast.social,Weather,weather,false +alzatari,newsmast.social,Academia & Research,academia_research,true +jautero,indieweb.social,Activism & Civil Rights,activism_civil_rights,false +jautero,indieweb.social,Democracy & Human Rights,democracy_human_rights,false +jautero,indieweb.social,Energy & Pollution,energy_pollution,false +jautero,indieweb.social,Programming,programming,false +chrisclay,mastodon.social,Food & Drink,food_drink,true +PeteBleackley,wandering.shop,Books & Literature,books_literature,false +PeteBleackley,wandering.shop,Music,music,false +PeteBleackley,wandering.shop,Photography,photography,false +PeteBleackley,wandering.shop,Physics,physics,false +PeteBleackley,wandering.shop,Programming,programming,false +PeteBleackley,wandering.shop,Science,science,false +PeteBleackley,wandering.shop,Space,space,false +PeteBleackley,wandering.shop,Technology,technology,false +PeteBleackley,wandering.shop,AI,ai,true +jautero,indieweb.social,LGBTQ+,lgbtq,false +jautero,indieweb.social,Climate change,climate_change,true +chrisclay,mastodon.social,Architecture & Design,architecture_design,false +chrisclay,mastodon.social,Humour,humour,false +chrisclay,mastodon.social,Mental Health & Wellbeing,mental_health_wellbeing,false +chrisclay,mastodon.social,Music,music,false +chrisclay,mastodon.social,Photography,photography,false +chrisclay,mastodon.social,Technology,technology,false +chrisclay,mastodon.social,Travel,travel,false +chrisclay,mastodon.social,TV & Radio,tv_radio,false +jvk,mastodon.org.uk,Books & Literature,books_literature,false +jvk,mastodon.org.uk,Music,music,false +jvk,mastodon.org.uk,Photography,photography,false +jvk,mastodon.org.uk,TV & Radio,tv_radio,false +jvk,mastodon.org.uk,Visual Arts,visual_arts,true +stevetough,newsmast.social,AI,ai,false +stevetough,newsmast.social,Biology,biology,false +stevetough,newsmast.social,Breaking News,breaking_news,false +stevetough,newsmast.social,Chemistry,chemistry,false +stevetough,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +stevetough,newsmast.social,Engineering,engineering,false +stevetough,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false +stevetough,newsmast.social,Mathematics,mathematics,false +stevetough,newsmast.social,Journalism & Comment,news_comment_data,false +stevetough,newsmast.social,Physics,physics,false +stevetough,newsmast.social,Poverty & Inequality,poverty_inequality,false +stevetough,newsmast.social,Programming,programming,false +stevetough,newsmast.social,Science,science,false +stevetough,newsmast.social,Social Media,social_media,false +stevetough,newsmast.social,Space,space,false +stevetough,newsmast.social,Ukraine Invasion,ukraine_invasion,false +stevetough,newsmast.social,US Sport,us_sport,false +stevetough,newsmast.social,Weather,weather,false +arizpe,newsmast.social,Humour,humour,true +stevetough,newsmast.social,Government & Policy,government_policy,false +stevetough,newsmast.social,Academia & Research,academia_research,false +stevetough,newsmast.social,Healthcare,healthcare,false +stevetough,newsmast.social,Law & Justice,law_justice,false +stevetough,newsmast.social,Politics,politics,false +stevetough,newsmast.social,US Politics,us_politics,false +stevetough,newsmast.social,Environment,environment,false +stevetough,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false +stevetough,newsmast.social,Climate change,climate_change,false +stevetough,newsmast.social,Energy & Pollution,energy_pollution,false +stevetough,newsmast.social,Activism & Civil Rights,activism_civil_rights,false +stevetough,newsmast.social,Black Voices,black_voices,false +stevetough,newsmast.social,Disabled Voices,disabled_voices,false +stevetough,newsmast.social,Immigrants Rights,immigrants_rights,false +stevetough,newsmast.social,Indigenous Peoples,indigenous_peoples,false +stevetough,newsmast.social,LGBTQ+,lgbtq,false +stevetough,newsmast.social,Women’s Voices,women_voices,false +stevetough,newsmast.social,Business,business,false +stevetough,newsmast.social,Markets & Finance,markets_finance,false +stevetough,newsmast.social,Workers Rights,workers_rights,false +stevetough,newsmast.social,Technology,technology,false +stevetough,newsmast.social,Humanities,humanities,false +stevetough,newsmast.social,Social Sciences,social_sciences,false +stevetough,newsmast.social,Philosophy,philosophy,false +stevetough,newsmast.social,Architecture & Design,architecture_design,false +stevetough,newsmast.social,Books & Literature,books_literature,false +stevetough,newsmast.social,Gaming,gaming,false +stevetough,newsmast.social,Movies,movies,false +stevetough,newsmast.social,Music,music,false +stevetough,newsmast.social,Performing Arts,performing_arts,false +stevetough,newsmast.social,Photography,photography,false +stevetough,newsmast.social,TV & Radio,tv_radio,false +stevetough,newsmast.social,Visual Arts,visual_arts,false +stevetough,newsmast.social,Football,football,false +stevetough,newsmast.social,Creative Arts,creative_arts,false +stevetough,newsmast.social,Food & Drink,food_drink,false +stevetough,newsmast.social,Humour,humour,false +stevetough,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false +stevetough,newsmast.social,Nature & Wildlife,nature_wildlife,false +stevetough,newsmast.social,Pets,pets,false +stevetough,newsmast.social,Puzzles,puzzles,false +stevetough,newsmast.social,Travel,travel,false +stevetough,newsmast.social,Sport,sport,false +stevetough,newsmast.social,History,history,true +missioncontrol,fosstodon.org,Ukraine Invasion,ukraine_invasion,false +beta_123,newsmast.social,Indigenous Peoples,indigenous_peoples,false +Nyein,newsmast.social,Football,football,false +phillycodehound,indieweb.social,AI,ai,false +phillycodehound,indieweb.social,Biology,biology,false +phillycodehound,indieweb.social,Breaking News,breaking_news,false +phillycodehound,indieweb.social,Business,business,false +phillycodehound,indieweb.social,Chemistry,chemistry,false +phillycodehound,indieweb.social,Democracy & Human Rights,democracy_human_rights,false +phillycodehound,indieweb.social,Engineering,engineering,false +phillycodehound,indieweb.social,History,history,false +phillycodehound,indieweb.social,Humanities,humanities,false +phillycodehound,indieweb.social,Markets & Finance,markets_finance,false +phillycodehound,indieweb.social,Mathematics,mathematics,false +phillycodehound,indieweb.social,Journalism & Comment,news_comment_data,false +phillycodehound,indieweb.social,Philosophy,philosophy,false +phillycodehound,indieweb.social,Physics,physics,false +phillycodehound,indieweb.social,Poverty & Inequality,poverty_inequality,false +phillycodehound,indieweb.social,Programming,programming,false +phillycodehound,indieweb.social,Science,science,false +phillycodehound,indieweb.social,Social Media,social_media,false +phillycodehound,indieweb.social,Social Sciences,social_sciences,false +phillycodehound,indieweb.social,Space,space,false +phillycodehound,indieweb.social,Ukraine Invasion,ukraine_invasion,false +phillycodehound,indieweb.social,Weather,weather,false +phillycodehound,indieweb.social,Workers Rights,workers_rights,false +phillycodehound,indieweb.social,Technology,technology,true +arizpe,newsmast.social,Food & Drink,food_drink,false +arizpe,newsmast.social,Nature & Wildlife,nature_wildlife,false +arizpe,newsmast.social,Pets,pets,false +arizpe,newsmast.social,Science,science,false +arizpe,newsmast.social,Social Media,social_media,false +arizpe,newsmast.social,Space,space,false +arizpe,newsmast.social,Sport,sport,false +arizpe,newsmast.social,Technology,technology,false +arizpe,newsmast.social,Breaking News,breaking_news,false +Lugeiva,mastodon.social,Breaking News,breaking_news,false +Lugeiva,mastodon.social,Government & Policy,government_policy,false +Lugeiva,mastodon.social,Humour,humour,false +Lugeiva,mastodon.social,Nature & Wildlife,nature_wildlife,false +Lugeiva,mastodon.social,Technology,technology,false +Lugeiva,mastodon.social,TV & Radio,tv_radio,false +Lugeiva,mastodon.social,LGBTQ+,lgbtq,true +PlayAwfulThings,pixelfed.social,Biodiversity & Rewilding,biodiversity_rewilding,false +PlayAwfulThings,pixelfed.social,Breaking News,breaking_news,false +PlayAwfulThings,pixelfed.social,Climate change,climate_change,false +PlayAwfulThings,pixelfed.social,Energy & Pollution,energy_pollution,false +PlayAwfulThings,pixelfed.social,Journalism & Comment,news_comment_data,false +PlayAwfulThings,pixelfed.social,Social Media,social_media,false +PlayAwfulThings,pixelfed.social,Ukraine Invasion,ukraine_invasion,false +PlayAwfulThings,pixelfed.social,Weather,weather,false +PlayAwfulThings,pixelfed.social,Environment,environment,true +yisem,newsmast.social,Journalism & Comment,news_comment_data,false +yisem,newsmast.social,Social Media,social_media,false +yisem,newsmast.social,Ukraine Invasion,ukraine_invasion,false +yisem,newsmast.social,Weather,weather,false +yisem,newsmast.social,Breaking News,breaking_news,true +claytech1,mastodon.social,AI,ai,false +claytech1,mastodon.social,Engineering,engineering,false +claytech1,mastodon.social,Food & Drink,food_drink,false +claytech1,mastodon.social,Programming,programming,false +claytech1,mastodon.social,Technology,technology,true +ghfiii,mastodon.xyz,Breaking News,breaking_news,true +YNA,newsmast.social,Technology,technology,true +riaan,mastodon.social,Architecture & Design,architecture_design,false +riaan,mastodon.social,Books & Literature,books_literature,false +riaan,mastodon.social,Breaking News,breaking_news,false +riaan,mastodon.social,Engineering,engineering,false +riaan,mastodon.social,Gaming,gaming,false +riaan,mastodon.social,Movies,movies,false +riaan,mastodon.social,Music,music,false +riaan,mastodon.social,Journalism & Comment,news_comment_data,false +riaan,mastodon.social,Performing Arts,performing_arts,false +riaan,mastodon.social,Photography,photography,false +riaan,mastodon.social,Programming,programming,false +riaan,mastodon.social,Social Media,social_media,false +riaan,mastodon.social,Technology,technology,false +riaan,mastodon.social,TV & Radio,tv_radio,false +riaan,mastodon.social,Ukraine Invasion,ukraine_invasion,false +riaan,mastodon.social,Visual Arts,visual_arts,false +riaan,mastodon.social,Weather,weather,false +riaan,mastodon.social,AI,ai,true +joanathx,newsmast.social,Technology,technology,false +joanathx,newsmast.social,Engineering,engineering,false +joanathx,newsmast.social,Programming,programming,false +ymt_12,newsmast.social,Biology,biology,false +ymt_12,newsmast.social,Chemistry,chemistry,false +ymt_12,newsmast.social,Government & Policy,government_policy,false +ymt_12,newsmast.social,Healthcare,healthcare,false +ymt_12,newsmast.social,Law & Justice,law_justice,false +ymt_12,newsmast.social,Mathematics,mathematics,false +ymt_12,newsmast.social,Physics,physics,false +ymt_12,newsmast.social,Politics,politics,false +ymt_12,newsmast.social,Science,science,false +ymt_12,newsmast.social,Space,space,false +ymt_12,newsmast.social,US Politics,us_politics,false +ymt_12,newsmast.social,Academia & Research,academia_research,true +sev,newsmast.social,Creative Arts,creative_arts,false +ghfiii,mastodon.xyz,Environment,environment,false +ghfiii,mastodon.xyz,Journalism & Comment,news_comment_data,false +ghfiii,mastodon.xyz,Physics,physics,false +ghfiii,mastodon.xyz,Science,science,false +ghfiii,mastodon.xyz,Space,space,false +ghfiii,mastodon.xyz,Technology,technology,false +ghfiii,mastodon.xyz,Ukraine Invasion,ukraine_invasion,false +ghfiii,mastodon.xyz,Weather,weather,false +jwalterclark,mastodon.online,Academia & Research,academia_research,false +jwalterclark,mastodon.online,Activism & Civil Rights,activism_civil_rights,false +jwalterclark,mastodon.online,AI,ai,false +jwalterclark,mastodon.online,Architecture & Design,architecture_design,false +jwalterclark,mastodon.online,Biodiversity & Rewilding,biodiversity_rewilding,false +jwalterclark,mastodon.online,Biology,biology,false +jwalterclark,mastodon.online,Black Voices,black_voices,false +jwalterclark,mastodon.online,Books & Literature,books_literature,false +jwalterclark,mastodon.online,Business,business,false +jwalterclark,mastodon.online,Chemistry,chemistry,false +jwalterclark,mastodon.online,Climate change,climate_change,false +jwalterclark,mastodon.online,Creative Arts,creative_arts,false +jwalterclark,mastodon.online,Democracy & Human Rights,democracy_human_rights,false +jwalterclark,mastodon.online,Disabled Voices,disabled_voices,false +jwalterclark,mastodon.online,Energy & Pollution,energy_pollution,false +jwalterclark,mastodon.online,Engineering,engineering,false +jwalterclark,mastodon.online,Environment,environment,false +jwalterclark,mastodon.online,Food & Drink,food_drink,false +jwalterclark,mastodon.online,Gaming,gaming,false +jwalterclark,mastodon.online,Government & Policy,government_policy,false +jwalterclark,mastodon.online,Healthcare,healthcare,false +jwalterclark,mastodon.online,History,history,false +jwalterclark,mastodon.online,Humanities,humanities,false +jwalterclark,mastodon.online,Humour,humour,false +jwalterclark,mastodon.online,"Hunger, Disease & Water",hunger_disease_water,false +jwalterclark,mastodon.online,Immigrants Rights,immigrants_rights,false +jwalterclark,mastodon.online,Indigenous Peoples,indigenous_peoples,false +jwalterclark,mastodon.online,Law & Justice,law_justice,false +jwalterclark,mastodon.online,LGBTQ+,lgbtq,false +jwalterclark,mastodon.online,Markets & Finance,markets_finance,false +jwalterclark,mastodon.online,Mathematics,mathematics,false +jwalterclark,mastodon.online,Mental Health & Wellbeing,mental_health_wellbeing,false +jwalterclark,mastodon.online,Movies,movies,false +jwalterclark,mastodon.online,Music,music,false +jwalterclark,mastodon.online,Nature & Wildlife,nature_wildlife,false +jwalterclark,mastodon.online,Journalism & Comment,news_comment_data,false +jwalterclark,mastodon.online,Performing Arts,performing_arts,false +jwalterclark,mastodon.online,Pets,pets,false +jwalterclark,mastodon.online,Philosophy,philosophy,false +jwalterclark,mastodon.online,Photography,photography,false +jwalterclark,mastodon.online,Physics,physics,false +jwalterclark,mastodon.online,Politics,politics,false +jwalterclark,mastodon.online,Poverty & Inequality,poverty_inequality,false +jwalterclark,mastodon.online,Programming,programming,false +jwalterclark,mastodon.online,Puzzles,puzzles,false +jwalterclark,mastodon.online,Science,science,false +jwalterclark,mastodon.online,Social Media,social_media,false +jwalterclark,mastodon.online,Social Sciences,social_sciences,false +jwalterclark,mastodon.online,Space,space,false +jwalterclark,mastodon.online,Technology,technology,false +jwalterclark,mastodon.online,Travel,travel,false +jwalterclark,mastodon.online,TV & Radio,tv_radio,false +jwalterclark,mastodon.online,Ukraine Invasion,ukraine_invasion,false +jwalterclark,mastodon.online,US Politics,us_politics,false +jwalterclark,mastodon.online,Visual Arts,visual_arts,false +jwalterclark,mastodon.online,Weather,weather,false +jwalterclark,mastodon.online,Women’s Voices,women_voices,false +jwalterclark,mastodon.online,Workers Rights,workers_rights,false +jwalterclark,mastodon.online,Breaking News,breaking_news,true +skarnio,organica.social,Breaking News,breaking_news,false +skarnio,organica.social,Social Media,social_media,false +skarnio,organica.social,Ukraine Invasion,ukraine_invasion,false +skarnio,organica.social,Weather,weather,false +skarnio,organica.social,Journalism & Comment,news_comment_data,true +sev,newsmast.social,Journalism & Comment,news_comment_data,false +sev,newsmast.social,Breaking News,breaking_news,false +sev,newsmast.social,Weather,weather,false +YNA,newsmast.social,Engineering,engineering,false +ymt_12,newsmast.social,Journalism & Comment,news_comment_data,false +ymt_12,newsmast.social,Social Media,social_media,false +ymt_12,newsmast.social,Ukraine Invasion,ukraine_invasion,false +ymt_12,newsmast.social,Poverty & Inequality,poverty_inequality,false +ymt_12,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false +ymt_12,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +sev,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false +sev,newsmast.social,Nature & Wildlife,nature_wildlife,false +sev,newsmast.social,Ukraine Invasion,ukraine_invasion,false +sev,newsmast.social,Social Media,social_media,false +sev,newsmast.social,Visual Arts,visual_arts,false +greg,flipboard.social,AI,ai,false +greg,flipboard.social,Business,business,false +greg,flipboard.social,Engineering,engineering,false +greg,flipboard.social,Markets & Finance,markets_finance,false +greg,flipboard.social,Programming,programming,false +greg,flipboard.social,Technology,technology,true From 7f5b8b749ac338ad929880573617639f1bba85ab Mon Sep 17 00:00:00 2001 From: Aung Kyaw Phyo Date: Tue, 8 Jul 2025 14:40:11 +0700 Subject: [PATCH 45/51] Add more logs --- app/jobs/migrate_newsmast_accounts_job.rb | 45 ++++++++++++++++++++++- 1 file changed, 44 insertions(+), 1 deletion(-) diff --git a/app/jobs/migrate_newsmast_accounts_job.rb b/app/jobs/migrate_newsmast_accounts_job.rb index 1a94e6f6..0f049a09 100644 --- a/app/jobs/migrate_newsmast_accounts_job.rb +++ b/app/jobs/migrate_newsmast_accounts_job.rb @@ -5,6 +5,8 @@ class MigrateNewsmastAccountsJob < ApplicationJob BATCH_SIZE = 100 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 @@ -23,6 +25,9 @@ def perform(csv_path = Rails.root.join('user_community_export.csv')) end end process_batch(batch) if batch.any? + + # Output missing accounts at the end + output_missing_accounts end private @@ -40,6 +45,7 @@ def process_batch(rows) account_id_map[acct] = search_target_account_id(acct, @owner_token) end accounts = Account.where(id: account_id_map.values.compact).index_by(&:id) + rows.each do |row| username, domain, name, slug, is_primary = row.values_at('username', 'domain', 'name', 'slug', 'is_primary') community = communities[[slug.tr('_', '-'), name]] @@ -52,6 +58,15 @@ def process_batch(rows) target_account_id = account_id_map[acct] target_account = accounts[target_account_id.to_i] unless target_account + # Store missing account in array + @missing_accounts << { + username: username, + domain: domain, + acct: acct, + community_name: name, + community_slug: slug.tr('_', '-'), + target_account_id: target_account_id + } Rails.logger.error "Account not found for user acct: #{username}@#{domain}" next end @@ -78,6 +93,34 @@ def process_batch(rows) 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 "#{index + 1}. #{account[:acct]} -> #{account[:community_name]} (#{account[:community_slug]})" + Rails.logger.info " Target ID: #{account[:target_account_id] || 'Not found'}" + end + + Rails.logger.info "-" * 80 + Rails.logger.info "Missing accounts by domain:" + domain_counts = @missing_accounts.group_by { |a| a[:domain] }.transform_values(&:count) + domain_counts.each do |domain, count| + Rails.logger.info " #{domain}: #{count} accounts" + end + end + + Rails.logger.info "="*80 + end + def search_target_account_id(query, owner_token) @account_id_cache ||= {} return @account_id_cache[query] if @account_id_cache.key?(query) @@ -104,4 +147,4 @@ def fetch_oauth_token(user_id) token_service = GenerateAdminAccessTokenService.new(user_id) token_service.call end -end +end \ No newline at end of file From 8e0a5aa81a01a160961be8b5c631b33b37ca56b1 Mon Sep 17 00:00:00 2001 From: Aung Kyaw Phyo Date: Tue, 8 Jul 2025 14:52:00 +0700 Subject: [PATCH 46/51] Add updated csv file --- user_community_export.csv | 38119 +++++++++++++----------------------- 1 file changed, 13411 insertions(+), 24708 deletions(-) diff --git a/user_community_export.csv b/user_community_export.csv index 625df804..ba2ba757 100644 --- a/user_community_export.csv +++ b/user_community_export.csv @@ -1,184 +1,10 @@ username,domain,name,slug,is_primary -daniel_mckeon,newsmast.social,TV & Radio,tv_radio,false -alice11,newsmast.social,Humour,humour,false -JayAySevenTwo,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false -Stephen,newsmast.social,Journalism & Comment,news_comment_data,false -jannus,newsmast.social,Technology,technology,false -mariana_b,newsmast.social,Nature & Wildlife,nature_wildlife,false -dannyweller,newsmast.social,Sport,sport,false -Kayleigh,newsmast.social,Disabled Voices,disabled_voices,false -Headfort,newsmast.social,Government & Policy,government_policy,false -zerotwo,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,true -askchefdennis,newsmast.social,Breaking News,breaking_news,false -orianavmatos,newsmast.social,Government & Policy,government_policy,true -icey_mark,newsmast.social,Government & Policy,government_policy,false -seb_bw,newsmast.social,Government & Policy,government_policy,true -Kayleigh,newsmast.social,Humanities,humanities,false -PolGeoNow,newsmast.social,Government & Policy,government_policy,false -JackMoulton,newsmast.social,Government & Policy,government_policy,false -Dragonholley,mastodon.social,Nature & Wildlife,nature_wildlife,false -Kayleigh,newsmast.social,Government & Policy,government_policy,false -Dragonholley,mastodon.social,Performing Arts,performing_arts,false -Nyein,newsmast.social,Workers Rights,workers_rights,false -clairejuliaart,newsmast.social,Activism & Civil Rights,activism_civil_rights,false -EV_Musings,newsmast.social,Technology,technology,true -SustMeme,newsmast.social,Technology,technology,false -JulieSpray,newsmast.social,Government & Policy,government_policy,false -GraceReckers,newsmast.social,Government & Policy,government_policy,false -simonerochembe,newsmast.social,Technology,technology,false -samf,newsmast.social,Government & Policy,government_policy,false -candice_chirwa,newsmast.social,Government & Policy,government_policy,false -zerotwo,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false -enangha,newsmast.social,Ukraine Invasion,ukraine_invasion,false -MarieGeneste,newsmast.social,Technology,technology,false -peter,newsmast.social,Technology,technology,false -Thomas,newsmast.social,Philosophy,philosophy,false -Thomas,newsmast.social,Activism & Civil Rights,activism_civil_rights,false -Thomas,newsmast.social,Ukraine Invasion,ukraine_invasion,true -Crof,newsmast.social,Government & Policy,government_policy,false -luisaropio,newsmast.social,Government & Policy,government_policy,false -zerotwo,newsmast.social,Climate change,climate_change,false -jessa,newsmast.social,Government & Policy,government_policy,true -FrontSeatPhil,newsmast.social,Technology,technology,true -zerotwo,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -Dr_Finbar,newsmast.social,Technology,technology,false -zerotwo,newsmast.social,Energy & Pollution,energy_pollution,false -zerotwo,newsmast.social,Environment,environment,false -seb_bw,newsmast.social,Technology,technology,false -indiajade_68,newsmast.social,Technology,technology,false -akp,newsmast.social,Space,space,false -dianashurman,newsmast.social,Markets & Finance,markets_finance,false -SithuBo,newsmast.social,Biology,biology,false -dianashurman,newsmast.social,AI,ai,true -dianashurman,newsmast.social,Government & Policy,government_policy,false -ianwalker,newsmast.social,Technology,technology,false -RachelBranson,newsmast.social,Technology,technology,false -zerotwo,newsmast.social,Healthcare,healthcare,false -Roamancing,newsmast.social,Government & Policy,government_policy,false -zerotwo,newsmast.social,Poverty & Inequality,poverty_inequality,false -Bell,newsmast.social,Government & Policy,government_policy,false -askchefdennis,newsmast.social,Technology,technology,true -zerotwo,newsmast.social,Law & Justice,law_justice,false -zerotwo,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false -zerotwo,newsmast.social,Journalism & Comment,news_comment_data,false -zerotwo,newsmast.social,Politics,politics,false -YuliaMHersey,newsmast.social,Technology,technology,false -IZMartinez86,newsmast.social,Government & Policy,government_policy,false -mariana_b,newsmast.social,Government & Policy,government_policy,false -nyeinBinarylab,newsmast.social,Activism & Civil Rights,activism_civil_rights,false -nyeinBinarylab,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false -zerotwo,newsmast.social,Ukraine Invasion,ukraine_invasion,false -nyeinBinarylab,newsmast.social,Black Voices,black_voices,false -zerotwo,newsmast.social,Weather,weather,false -JamesNewsMast,newsmast.social,Gaming,gaming,false -JamesNewsMast,newsmast.social,Food & Drink,food_drink,false -JamesNewsMast,newsmast.social,Government & Policy,government_policy,false -nyeinBinarylab,newsmast.social,Breaking News,breaking_news,false -JamesNewsMast,newsmast.social,Space,space,true -nyeinBinarylab,newsmast.social,Climate change,climate_change,false -eve,newsmast.social,Creative Arts,creative_arts,false -sandy,newsmast.social,Chemistry,chemistry,false -jomaan123,newsmast.social,Politics,politics,false -sabah,newsmast.social,Performing Arts,performing_arts,false -enangha,newsmast.social,Journalism & Comment,news_comment_data,true -mariana_b,newsmast.social,Movies,movies,false -nyeinBinarylab,newsmast.social,Creative Arts,creative_arts,false -mariana_b,newsmast.social,Philosophy,philosophy,false -mariana_b,newsmast.social,Activism & Civil Rights,activism_civil_rights,false -mariana_b,newsmast.social,LGBTQ+,lgbtq,false -mariana_b,newsmast.social,Journalism & Comment,news_comment_data,true -JackMoulton,newsmast.social,Breaking News,breaking_news,false -JackMoulton,newsmast.social,Music,music,false -JackMoulton,newsmast.social,TV & Radio,tv_radio,false -JackMoulton,newsmast.social,Gaming,gaming,false -JackMoulton,newsmast.social,Journalism & Comment,news_comment_data,true -orianavmatos,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false -akp,newsmast.social,Technology,technology,false -max_chaudhary,newsmast.social,Academia & Research,academia_research,false -max_chaudhary,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -max_chaudhary,newsmast.social,Healthcare,healthcare,false -wildlife,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false -max_chaudhary,newsmast.social,History,history,false -max_chaudhary,newsmast.social,Law & Justice,law_justice,false -max_chaudhary,newsmast.social,Politics,politics,false -max_chaudhary,newsmast.social,US Politics,us_politics,false -JayAySevenTwo,newsmast.social,Ukraine Invasion,ukraine_invasion,false -AnnaJ,newsmast.social,Movies,movies,false -AnnaJ,newsmast.social,Activism & Civil Rights,activism_civil_rights,false -AnnaJ,newsmast.social,Journalism & Comment,news_comment_data,true -DannSy18,newsmast.social,Ukraine Invasion,ukraine_invasion,false -eve,newsmast.social,Environment,environment,false -nyeinBinarylab,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -enangha,newsmast.social,Social Sciences,social_sciences,false -Dragonholley,mastodon.social,Pets,pets,false -ErichWeikert,newsmast.social,Social Sciences,social_sciences,false -eve,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false -eve,newsmast.social,Journalism & Comment,news_comment_data,true -delyan,newsmast.social,Breaking News,breaking_news,false -delyan,newsmast.social,Journalism & Comment,news_comment_data,false -delyan,newsmast.social,Creative Arts,creative_arts,false -delyan,newsmast.social,Photography,photography,false -delyan,newsmast.social,Travel,travel,false -delyan,newsmast.social,Performing Arts,performing_arts,false -delyan,newsmast.social,Politics,politics,false -delyan,newsmast.social,Humour,humour,false -delyan,newsmast.social,Humanities,humanities,false -delyan,newsmast.social,Social Sciences,social_sciences,false -delyan,newsmast.social,Gaming,gaming,false -delyan,newsmast.social,Music,music,false -delyan,newsmast.social,Football,football,false -delyan,newsmast.social,TV & Radio,tv_radio,false -delyan,newsmast.social,Sport,sport,false -delyan,newsmast.social,LGBTQ+,lgbtq,false -delyan,newsmast.social,Workers Rights,workers_rights,false -delyan,newsmast.social,Disabled Voices,disabled_voices,false -delyan,newsmast.social,Visual Arts,visual_arts,false -delyan,newsmast.social,AI,ai,false -delyan,newsmast.social,Activism & Civil Rights,activism_civil_rights,false -delyan,newsmast.social,Government & Policy,government_policy,false -delyan,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -Dragonholley,mastodon.social,Photography,photography,false -nyeinBinarylab,newsmast.social,Disabled Voices,disabled_voices,false -chamkaurghag,newsmast.social,Social Sciences,social_sciences,false -delyan,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false -delyan,newsmast.social,Movies,movies,true -orianavictoria,newsmast.social,Environment,environment,false -orianavictoria,newsmast.social,Movies,movies,false -orianavictoria,newsmast.social,Politics,politics,false -orianavictoria,newsmast.social,Food & Drink,food_drink,false -orianavictoria,newsmast.social,Journalism & Comment,news_comment_data,true -enangha,newsmast.social,Science,science,false -janerockhouse,newsmast.social,Social Sciences,social_sciences,false -enangha,newsmast.social,Government & Policy,government_policy,false -enangha,newsmast.social,Mathematics,mathematics,false -nyeinBinarylab,newsmast.social,Energy & Pollution,energy_pollution,false -kamran,newsmast.social,Government & Policy,government_policy,false -enangha,newsmast.social,Biology,biology,false -enangha,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false -enangha,newsmast.social,Activism & Civil Rights,activism_civil_rights,false -enangha,newsmast.social,Black Voices,black_voices,false -enangha,newsmast.social,Women’s Voices,women_voices,false -nyeinBinarylab,newsmast.social,Environment,environment,false -enangha,newsmast.social,Pets,pets,false -Kayleigh,newsmast.social,Journalism & Comment,news_comment_data,false -Kayleigh,newsmast.social,Women’s Voices,women_voices,false -Kayleigh,newsmast.social,LGBTQ+,lgbtq,false -Kayleigh,newsmast.social,Black Voices,black_voices,false -SuperScienceGrl,newsmast.social,Social Sciences,social_sciences,false -Kayleigh,newsmast.social,Business,business,false -Dragonholley,mastodon.social,Physics,physics,false -Kayleigh,newsmast.social,Books & Literature,books_literature,true -enangha,newsmast.social,Healthcare,healthcare,false -dianashurman,newsmast.social,Humanities,humanities,false emilyjd,newsmast.social,Travel,travel,false emilyjd,newsmast.social,Environment,environment,false emilyjd,newsmast.social,Movies,movies,false emilyjd,newsmast.social,Poverty & Inequality,poverty_inequality,false -ipsc48,newsmast.social,Government & Policy,government_policy,false emilyjd,newsmast.social,Humanities,humanities,false emilyjd,newsmast.social,Social Sciences,social_sciences,false -Phebe,newsmast.social,Architecture & Design,architecture_design,false -muzaffarab,newsmast.social,Government & Policy,government_policy,false emilyjd,newsmast.social,Music,music,false emilyjd,newsmast.social,Space,space,false emilyjd,newsmast.social,TV & Radio,tv_radio,false @@ -186,23278 +12,10892 @@ emilyjd,newsmast.social,LGBTQ+,lgbtq,false emilyjd,newsmast.social,Women’s Voices,women_voices,false emilyjd,newsmast.social,Visual Arts,visual_arts,false emilyjd,newsmast.social,Books & Literature,books_literature,false -robotmaths,newsmast.social,Government & Policy,government_policy,false emilyjd,newsmast.social,Climate change,climate_change,false -BostonAbrams,newsmast.social,History,history,false -nyeinBinarylab,newsmast.social,Food & Drink,food_drink,false -nyeinBinarylab,newsmast.social,Government & Policy,government_policy,false emilyjd,newsmast.social,Food & Drink,food_drink,false emilyjd,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false emilyjd,newsmast.social,Journalism & Comment,news_comment_data,true -chloeariellle,newsmast.social,Social Sciences,social_sciences,true -daniel_mckeon,newsmast.social,Chemistry,chemistry,false -mariana_b,newsmast.social,Travel,travel,false -thosgood,newsmast.social,Social Sciences,social_sciences,false -sandy,newsmast.social,Social Sciences,social_sciences,false -mariana_b,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false -nyeinBinarylab,newsmast.social,Healthcare,healthcare,false -sophiecunningham,newsmast.social,Environment,environment,false -sophiecunningham,newsmast.social,Science,science,false -BostonAbrams,newsmast.social,Humanities,humanities,false -IlCava,mastodon.uno,Humour,humour,false -sophiecunningham,newsmast.social,Journalism & Comment,news_comment_data,true -mariana_b,newsmast.social,History,history,false -mariana_b,newsmast.social,Pets,pets,false -enangha,newsmast.social,Poverty & Inequality,poverty_inequality,false -jomaan123,newsmast.social,Breaking News,breaking_news,false -jomaan123,newsmast.social,Journalism & Comment,news_comment_data,false -jomaan123,newsmast.social,History,history,false -jomaan123,newsmast.social,Humanities,humanities,false -orianavictoria,newsmast.social,Technology,technology,false -saskia,newsmast.social,Pets,pets,false -saskia,newsmast.social,Humour,humour,false -FreddieJ,newsmast.social,Movies,movies,false -DannSy18,newsmast.social,AI,ai,false -DannSy18,newsmast.social,Government & Policy,government_policy,true -lucygreenwold,newsmast.social,Creative Arts,creative_arts,false -lucygreenwold,newsmast.social,Journalism & Comment,news_comment_data,false -lucygreenwold,newsmast.social,Performing Arts,performing_arts,false -lucygreenwold,newsmast.social,Travel,travel,false -09SHEEHANM,newsmast.social,Breaking News,breaking_news,false -lucygreenwold,newsmast.social,Music,music,false -lucygreenwold,newsmast.social,Indigenous Peoples,indigenous_peoples,false -lucygreenwold,newsmast.social,Women’s Voices,women_voices,false -lucygreenwold,newsmast.social,LGBTQ+,lgbtq,false -dianashurman,newsmast.social,Social Sciences,social_sciences,false -lucygreenwold,newsmast.social,Visual Arts,visual_arts,false -lucygreenwold,newsmast.social,Activism & Civil Rights,activism_civil_rights,false -pennywalker,newsmast.social,Government & Policy,government_policy,false -lucygreenwold,newsmast.social,Philosophy,philosophy,false -lucygreenwold,newsmast.social,Climate change,climate_change,false -lucygreenwold,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -Janet_O,newsmast.social,Government & Policy,government_policy,false -09SHEEHANM,newsmast.social,Business,business,false -nyeinBinarylab,newsmast.social,Humour,humour,false -lucygreenwold,newsmast.social,Nature & Wildlife,nature_wildlife,false -lucygreenwold,newsmast.social,Books & Literature,books_literature,true -dannyweller,newsmast.social,Government & Policy,government_policy,false -09SHEEHANM,newsmast.social,Government & Policy,government_policy,false -Hayfa_Sdiri,newsmast.social,Government & Policy,government_policy,true -dannyweller,newsmast.social,Workers Rights,workers_rights,false -dannyweller,newsmast.social,Music,music,false -mental_health,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,true -dannyweller,newsmast.social,Travel,travel,false -dannyweller,newsmast.social,Creative Arts,creative_arts,false -dannyweller,newsmast.social,Movies,movies,false -dannyweller,newsmast.social,Breaking News,breaking_news,false -dannyweller,newsmast.social,Journalism & Comment,news_comment_data,true -FreddieJ,newsmast.social,Politics,politics,false -FreddieJ,newsmast.social,History,history,false -clairejuliaart,newsmast.social,Disabled Voices,disabled_voices,false -Tasha,newsmast.social,Breaking News,breaking_news,false -Tasha,newsmast.social,Journalism & Comment,news_comment_data,false -Tasha,newsmast.social,Creative Arts,creative_arts,false -Tasha,newsmast.social,Photography,photography,false -Tasha,newsmast.social,Pets,pets,false -Tasha,newsmast.social,Physics,physics,false -Hayfa_Sdiri,newsmast.social,Social Sciences,social_sciences,false -dltj,newsmast.social,Government & Policy,government_policy,false -peter,newsmast.social,Social Sciences,social_sciences,false -Tasha,newsmast.social,Healthcare,healthcare,false -Tasha,newsmast.social,Movies,movies,false -Tasha,newsmast.social,Science,science,false -nyeinBinarylab,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false -QasimRashid,newsmast.social,Social Sciences,social_sciences,false -Tasha,newsmast.social,Engineering,engineering,false -lspar002,newsmast.social,AI,ai,false -mariana_b,newsmast.social,Politics,politics,false -tderyugina,newsmast.social,Social Sciences,social_sciences,true -AFalcon,newsmast.social,Government & Policy,government_policy,false -zerotwo,newsmast.social,Breaking News,breaking_news,false -Phebe,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false -Phebe,newsmast.social,Poverty & Inequality,poverty_inequality,false -Phebe,newsmast.social,Movies,movies,false -Phebe,newsmast.social,Journalism & Comment,news_comment_data,true -zainabismail,newsmast.social,Breaking News,breaking_news,false -zainabismail,newsmast.social,Travel,travel,false -zainabismail,newsmast.social,Politics,politics,false -zainabismail,newsmast.social,Activism & Civil Rights,activism_civil_rights,false -Thomas,newsmast.social,Government & Policy,government_policy,false -zainabismail,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false -zainabismail,newsmast.social,Journalism & Comment,news_comment_data,true -nyeinBinarylab,newsmast.social,Immigrants Rights,immigrants_rights,false -dianashurman,newsmast.social,Pets,pets,false -priyal,newsmast.social,Environment,environment,false -priyal,newsmast.social,Movies,movies,false -priyal,newsmast.social,Books & Literature,books_literature,false -priyal,newsmast.social,Climate change,climate_change,false -nyeinBinarylab,newsmast.social,Indigenous Peoples,indigenous_peoples,false -priyal,newsmast.social,History,history,false -priyal,newsmast.social,Journalism & Comment,news_comment_data,true -daniel_mckeon,newsmast.social,Journalism & Comment,news_comment_data,false -zerotwo,newsmast.social,Creative Arts,creative_arts,false -jomaan123,newsmast.social,Pets,pets,true -daniel_mckeon,newsmast.social,Social Sciences,social_sciences,false -daniel_mckeon,newsmast.social,Physics,physics,true -sabah,newsmast.social,Creative Arts,creative_arts,false -sabah,newsmast.social,Social Sciences,social_sciences,false -sabah,newsmast.social,Music,music,false -sabah,newsmast.social,Visual Arts,visual_arts,false -sabah,newsmast.social,Journalism & Comment,news_comment_data,true -jacklscanlan,newsmast.social,Government & Policy,government_policy,false -kenweber,mastodon.social,AI,ai,false -nyeinBinarylab,newsmast.social,Law & Justice,law_justice,false -katieharbath,newsmast.social,Government & Policy,government_policy,false -ProfTJCurry,newsmast.social,Government & Policy,government_policy,false -PAAwarenessUK,newsmast.social,Government & Policy,government_policy,false -Iyad_Abumoghli,newsmast.social,Government & Policy,government_policy,false -Ed_Rempel,newsmast.social,Social Sciences,social_sciences,false -mariana_b,newsmast.social,Social Sciences,social_sciences,false -Crates,mastodon.social,Biology,biology,false -wingingittravel,newsmast.social,Activism & Civil Rights,activism_civil_rights,false -tderyugina,newsmast.social,Government & Policy,government_policy,false -09SHEEHANM,newsmast.social,Journalism & Comment,news_comment_data,false -Stephen,newsmast.social,Movies,movies,false -Stephen,newsmast.social,Music,music,false -Stephen,newsmast.social,Gaming,gaming,false -Stephen,newsmast.social,TV & Radio,tv_radio,false -Stephen,newsmast.social,Law & Justice,law_justice,false -Stephen,newsmast.social,Visual Arts,visual_arts,true -BostonAbrams,newsmast.social,Journalism & Comment,news_comment_data,false -saskia,newsmast.social,LGBTQ+,lgbtq,false -saskia,newsmast.social,Movies,movies,false -saskia,newsmast.social,Breaking News,breaking_news,false -saskia,newsmast.social,Photography,photography,false -saskia,newsmast.social,Gaming,gaming,false -saskia,newsmast.social,Space,space,false -saskia,newsmast.social,Sport,sport,false -mombian,newsmast.social,Government & Policy,government_policy,false -saskia,newsmast.social,Books & Literature,books_literature,false -saskia,newsmast.social,Football,football,true +emilyjd,newsmast.social,Creative Arts,creative_arts,false +emilyjd,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +robotmaths,newsmast.social,Government & Policy,government_policy,false +robotmaths,newsmast.social,Mathematics,mathematics,true +robotmaths,newsmast.social,Movies,movies,false +robotmaths,newsmast.social,Journalism & Comment,news_comment_data,false +robotmaths,newsmast.social,TV & Radio,tv_radio,false +mstepich,newsmast.social,Academia & Research,academia_research,false +mstepich,newsmast.social,AI,ai,false +mstepich,newsmast.social,Business,business,false +mstepich,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +mstepich,newsmast.social,Energy & Pollution,energy_pollution,false +mstepich,newsmast.social,Engineering,engineering,false +mstepich,newsmast.social,Environment,environment,false +mstepich,newsmast.social,Government & Policy,government_policy,false +mstepich,newsmast.social,Healthcare,healthcare,false +mstepich,newsmast.social,History,history,false +mstepich,newsmast.social,Humanities,humanities,false +mstepich,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false +mstepich,newsmast.social,Law & Justice,law_justice,false +mstepich,newsmast.social,Journalism & Comment,news_comment_data,true +mstepich,newsmast.social,Philosophy,philosophy,false +mstepich,newsmast.social,Politics,politics,false +mstepich,newsmast.social,Science,science,false +mstepich,newsmast.social,Social Sciences,social_sciences,false +mstepich,newsmast.social,Space,space,false +mstepich,newsmast.social,Technology,technology,false +mstepich,newsmast.social,Ukraine Invasion,ukraine_invasion,false +mstepich,newsmast.social,US Politics,us_politics,false +kamran,newsmast.social,Government & Policy,government_policy,false kamran,newsmast.social,Breaking News,breaking_news,false -ccgh,newsmast.social,Government & Policy,government_policy,false kamran,newsmast.social,Politics,politics,false kamran,newsmast.social,Ukraine Invasion,ukraine_invasion,false -JURISTnews,newsmast.social,Social Sciences,social_sciences,false kamran,newsmast.social,Mathematics,mathematics,false kamran,newsmast.social,Journalism & Comment,news_comment_data,true -JackMoulton,newsmast.social,Movies,movies,false -sandy,newsmast.social,Creative Arts,creative_arts,false -nyeinBinarylab,newsmast.social,LGBTQ+,lgbtq,false -nyeinBinarylab,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false -sandy,newsmast.social,Humour,humour,false -sandy,newsmast.social,Humanities,humanities,false -sandy,newsmast.social,LGBTQ+,lgbtq,false -sandy,newsmast.social,Philosophy,philosophy,false -sandy,newsmast.social,Journalism & Comment,news_comment_data,true -christina88,newsmast.social,Books & Literature,books_literature,false -TasmanianTimes,newsmast.social,Government & Policy,government_policy,false -mariana_b,newsmast.social,Books & Literature,books_literature,false -MotorcycleGuy,newsmast.social,Government & Policy,government_policy,false -ilovefilm,newsmast.social,Government & Policy,government_policy,false -matt_cary,newsmast.social,Government & Policy,government_policy,false -alawriedejesus,newsmast.social,Government & Policy,government_policy,false -alice11,newsmast.social,Movies,movies,false -alice11,newsmast.social,Pets,pets,false -alice11,newsmast.social,Photography,photography,false -alice11,newsmast.social,Creative Arts,creative_arts,false -alice11,newsmast.social,Journalism & Comment,news_comment_data,false -alice11,newsmast.social,Performing Arts,performing_arts,false -alice11,newsmast.social,Travel,travel,false -alice11,newsmast.social,TV & Radio,tv_radio,false -alice11,newsmast.social,LGBTQ+,lgbtq,false -alice11,newsmast.social,Weather,weather,false -alice11,newsmast.social,Music,music,true -Tasha,newsmast.social,Performing Arts,performing_arts,false -Tasha,newsmast.social,Travel,travel,false -Tasha,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false -Tasha,newsmast.social,Poverty & Inequality,poverty_inequality,false -jannus,newsmast.social,Social Sciences,social_sciences,false -nyeinBinarylab,newsmast.social,Nature & Wildlife,nature_wildlife,false -nyeinBinarylab,newsmast.social,Journalism & Comment,news_comment_data,false -Tasha,newsmast.social,Politics,politics,false -Tasha,newsmast.social,History,history,false -Tasha,newsmast.social,Humour,humour,false -newsmast,newsmast.social,Activism & Civil Rights,activism_civil_rights,false -Tasha,newsmast.social,Humanities,humanities,false -Tasha,newsmast.social,Social Sciences,social_sciences,false -christina88,newsmast.social,Government & Policy,government_policy,false -Tasha,newsmast.social,Indigenous Peoples,indigenous_peoples,false -Tasha,newsmast.social,Music,music,false -Tasha,newsmast.social,Gaming,gaming,false -Tasha,newsmast.social,Technology,technology,false -Tasha,newsmast.social,Space,space,false -Tasha,newsmast.social,TV & Radio,tv_radio,false -Tasha,newsmast.social,Sport,sport,false -Hedvig1Lindahl,newsmast.social,Social Sciences,social_sciences,false -Tasha,newsmast.social,Ukraine Invasion,ukraine_invasion,false -TVPsychologist,newsmast.social,Social Sciences,social_sciences,true -09SHEEHANM,newsmast.social,Ukraine Invasion,ukraine_invasion,true -nowinaminute,newsmast.social,Social Sciences,social_sciences,false -Tasha,newsmast.social,LGBTQ+,lgbtq,false -Tasha,newsmast.social,Women’s Voices,women_voices,false -Tasha,newsmast.social,Disabled Voices,disabled_voices,false -Tasha,newsmast.social,Workers Rights,workers_rights,false -Tasha,newsmast.social,Visual Arts,visual_arts,false -Tasha,newsmast.social,Black Voices,black_voices,false -Tasha,newsmast.social,AI,ai,false -Tasha,newsmast.social,Activism & Civil Rights,activism_civil_rights,false -Tasha,newsmast.social,Chemistry,chemistry,false -Tasha,newsmast.social,Biology,biology,false -Tasha,newsmast.social,Books & Literature,books_literature,false -Tasha,newsmast.social,Weather,weather,false -petenothing,newsmast.social,Food & Drink,food_drink,false -Tasha,newsmast.social,Energy & Pollution,energy_pollution,false -chrisfrench,newsmast.social,Social Sciences,social_sciences,true -PAAwarenessUK,newsmast.social,Social Sciences,social_sciences,false -MarieGeneste,newsmast.social,Social Sciences,social_sciences,false -BostonAbrams,newsmast.social,Philosophy,philosophy,false -Tasha,newsmast.social,Philosophy,philosophy,false -Tasha,newsmast.social,Business,business,false -Tasha,newsmast.social,Climate change,climate_change,false -Tasha,newsmast.social,Markets & Finance,markets_finance,false -ChinHuaLu,newsmast.social,Social Sciences,social_sciences,false -Kayleigh,newsmast.social,Activism & Civil Rights,activism_civil_rights,false -jeremygodwin,newsmast.social,LGBTQ+,lgbtq,false -eve,newsmast.social,Humour,humour,false -MKandHerBC,newsmast.social,Social Sciences,social_sciences,false -tomy,newsmast.social,Social Sciences,social_sciences,false -KittyInTheMitty,newsmast.social,Social Sciences,social_sciences,false -orianavictoria,newsmast.social,Markets & Finance,markets_finance,false -sophiecunningham,newsmast.social,Energy & Pollution,energy_pollution,false -dannyweller,newsmast.social,AI,ai,false -Player2,newsmast.social,Energy & Pollution,energy_pollution,false -GraceReckers,newsmast.social,Energy & Pollution,energy_pollution,false -Kayleigh,newsmast.social,Markets & Finance,markets_finance,false +princessbamboo,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false +princessbamboo,newsmast.social,Food & Drink,food_drink,true +princessbamboo,newsmast.social,Pets,pets,false +princessbamboo,newsmast.social,Travel,travel,false +YNDA,newsmast.social,Architecture & Design,architecture_design,false +YNDA,newsmast.social,Books & Literature,books_literature,false +YNDA,newsmast.social,Creative Arts,creative_arts,false +YNDA,newsmast.social,Food & Drink,food_drink,false +YNDA,newsmast.social,Gaming,gaming,false +YNDA,newsmast.social,Humour,humour,false +YNDA,newsmast.social,Markets & Finance,markets_finance,false +YNDA,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false +YNDA,newsmast.social,Movies,movies,false +YNDA,newsmast.social,Music,music,false +YNDA,newsmast.social,Nature & Wildlife,nature_wildlife,false +YNDA,newsmast.social,Performing Arts,performing_arts,false +YNDA,newsmast.social,Pets,pets,false +YNDA,newsmast.social,Photography,photography,false +YNDA,newsmast.social,Puzzles,puzzles,false +YNDA,newsmast.social,Travel,travel,false +YNDA,newsmast.social,TV & Radio,tv_radio,false +YNDA,newsmast.social,Visual Arts,visual_arts,false +YNDA,newsmast.social,Workers Rights,workers_rights,false +YNDA,newsmast.social,Business,business,true +AnnaJ,newsmast.social,Movies,movies,false +AnnaJ,newsmast.social,Activism & Civil Rights,activism_civil_rights,false +AnnaJ,newsmast.social,Journalism & Comment,news_comment_data,true +AnnaJ,newsmast.social,AI,ai,false +AnnaJ,newsmast.social,Books & Literature,books_literature,false +AnnaJ,newsmast.social,Humanities,humanities,false +AnnaJ,newsmast.social,Women’s Voices,women_voices,false +AnnaJ,newsmast.social,LGBTQ+,lgbtq,false +AnnaJ,newsmast.social,Black Voices,black_voices,false +AnnaJ,newsmast.social,Food & Drink,food_drink,false +AnnaJ,newsmast.social,Visual Arts,visual_arts,false +AnnaJ,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false minkhantkyaw35,newsmast.social,Breaking News,breaking_news,false -vegannutrition,newsmast.social,Energy & Pollution,energy_pollution,false -CBhattacharji,newsmast.social,Energy & Pollution,energy_pollution,true -minkhantkyaw35,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,true -dannyweller,newsmast.social,Science,science,false -Kayleigh,newsmast.social,Music,music,false -Kayleigh,newsmast.social,TV & Radio,tv_radio,false -Kayleigh,newsmast.social,Pets,pets,false -Kayleigh,newsmast.social,Philosophy,philosophy,false -saskia,newsmast.social,Music,music,false -JenniferLawson,newsmast.social,Energy & Pollution,energy_pollution,false -Iyad_Abumoghli,newsmast.social,Energy & Pollution,energy_pollution,false minkhantkyaw35,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -TasmanianTimes,newsmast.social,Energy & Pollution,energy_pollution,false +minkhantkyaw35,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,true minkhantkyaw35,newsmast.social,Poverty & Inequality,poverty_inequality,false -arg02,newsmast.social,Energy & Pollution,energy_pollution,true minkhantkyaw35,newsmast.social,Journalism & Comment,news_comment_data,false minkhantkyaw35,newsmast.social,Politics,politics,false -JURISTnews,newsmast.social,Energy & Pollution,energy_pollution,false -Thomas,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false -karlienoon,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false minkhantkyaw35,newsmast.social,Ukraine Invasion,ukraine_invasion,false minkhantkyaw35,newsmast.social,Weather,weather,false -petenothing,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false -eve,newsmast.social,Breaking News,breaking_news,false -Themontyproject,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false -BostonAbrams,newsmast.social,Social Media,social_media,false -BostonAbrams,newsmast.social,Breaking News,breaking_news,true -stephieduffy,newsmast.social,Journalism & Comment,news_comment_data,false -stephieduffy,newsmast.social,Performing Arts,performing_arts,true -jeremygodwin,newsmast.social,Philosophy,philosophy,false -RachelBranson,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false -akp,newsmast.social,Breaking News,breaking_news,true -aungmyatmoe,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false -ilovefilm,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false -han_smith,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false -asausagehastwo,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false -nyeinBinarylab,newsmast.social,Pets,pets,false -Dragonholley,mastodon.social,Programming,programming,false -TexasHistoryL,newsmast.social,Books & Literature,books_literature,false -nyeinBinarylab,newsmast.social,Politics,politics,false -vpatel,newsmast.social,Business,business,false -vpatel,newsmast.social,Journalism & Comment,news_comment_data,false -vpatel,newsmast.social,Philosophy,philosophy,true -Kayleigh,newsmast.social,Immigrants Rights,immigrants_rights,false -Kayleigh,newsmast.social,Workers Rights,workers_rights,false -keithramsey,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false -Kayleigh,newsmast.social,Gaming,gaming,false -Kayleigh,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false -nyeinBinarylab,newsmast.social,Poverty & Inequality,poverty_inequality,false -Kayleigh,newsmast.social,Breaking News,breaking_news,false -Janet_O,newsmast.social,Photography,photography,false -Janet_O,newsmast.social,Black Voices,black_voices,false -Janet_O,newsmast.social,Journalism & Comment,news_comment_data,false -nyeinBinarylab,newsmast.social,Puzzles,puzzles,false -Janet_O,newsmast.social,Breaking News,breaking_news,true -nyeinBinarylab,newsmast.social,Social Media,social_media,false -Tasha,newsmast.social,Nature & Wildlife,nature_wildlife,false -Tasha,newsmast.social,Food & Drink,food_drink,false -Tasha,newsmast.social,Puzzles,puzzles,false -aungmyatmoe,newsmast.social,Activism & Civil Rights,activism_civil_rights,false -stephieduffy,newsmast.social,Breaking News,breaking_news,false -Sushmitapanda,newsmast.social,Healthcare,healthcare,true -vespula,newsmast.social,Biology,biology,false -stephieduffy,newsmast.social,Pets,pets,false -AnnaJ,newsmast.social,AI,ai,false -AnnaJ,newsmast.social,Books & Literature,books_literature,false -stephieduffy,newsmast.social,Creative Arts,creative_arts,false -stephieduffy,newsmast.social,Travel,travel,false -stephieduffy,newsmast.social,Humour,humour,false -stephieduffy,newsmast.social,Humanities,humanities,false -Alan_Moran,newsmast.social,Journalism & Comment,news_comment_data,false -stephieduffy,newsmast.social,Music,music,false -Alan_Moran,newsmast.social,Politics,politics,false -stephieduffy,newsmast.social,LGBTQ+,lgbtq,false -stephieduffy,newsmast.social,Women’s Voices,women_voices,false -stephieduffy,newsmast.social,Disabled Voices,disabled_voices,false -Alan_Moran,newsmast.social,Ukraine Invasion,ukraine_invasion,false -stephieduffy,newsmast.social,Books & Literature,books_literature,false -stephieduffy,newsmast.social,Activism & Civil Rights,activism_civil_rights,false -sophiecunningham,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false -vespula,newsmast.social,Engineering,engineering,false -stephieduffy,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false -lucygreenwold,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false -icey_mark,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false -akp,newsmast.social,Journalism & Comment,news_comment_data,false -pam_palmater,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false -akp,newsmast.social,Weather,weather,false -akp,newsmast.social,Politics,politics,false -aungmyatmoe,newsmast.social,Black Voices,black_voices,false -aungmyatmoe,newsmast.social,Disabled Voices,disabled_voices,false -aungmyatmoe,newsmast.social,Healthcare,healthcare,false -aungmyatmoe,newsmast.social,Immigrants Rights,immigrants_rights,false -aungmyatmoe,newsmast.social,Indigenous Peoples,indigenous_peoples,false -aungmyatmoe,newsmast.social,Law & Justice,law_justice,false -aungmyatmoe,newsmast.social,LGBTQ+,lgbtq,false -aungmyatmoe,newsmast.social,Women’s Voices,women_voices,false -aungmyatmoe,newsmast.social,Workers Rights,workers_rights,false -jannus,newsmast.social,AI,ai,false -dannyweller,newsmast.social,History,history,false -mattskal,newsmast.social,AI,ai,false +minkhantkyaw35,newsmast.social,Environment,environment,false +minkhantkyaw35,newsmast.social,Immigrants Rights,immigrants_rights,false +sonbish,newsmast.social,Creative Arts,creative_arts,false +sonbish,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,true +sonbish,newsmast.social,Food & Drink,food_drink,false +sonbish,newsmast.social,Humour,humour,false +fs0c131y,newsmast.social,Breaking News,breaking_news,false +fs0c131y,newsmast.social,Politics,politics,false +fs0c131y,newsmast.social,Technology,technology,false +fs0c131y,newsmast.social,Ukraine Invasion,ukraine_invasion,false +fs0c131y,newsmast.social,Journalism & Comment,news_comment_data,true +thepopblog,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false +thepopblog,newsmast.social,Creative Arts,creative_arts,false +thepopblog,newsmast.social,Movies,movies,false +thepopblog,newsmast.social,Music,music,true +thepopblog,newsmast.social,TV & Radio,tv_radio,false +refugeescommunityupdate,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false +refugeescommunityupdate,newsmast.social,Poverty & Inequality,poverty_inequality,false +refugeescommunityupdate,newsmast.social,Immigrants Rights,immigrants_rights,true +kazwan,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false +kazwan,newsmast.social,AI,ai,false +kazwan,newsmast.social,Breaking News,breaking_news,false +kazwan,newsmast.social,Food & Drink,food_drink,false +kazwan,newsmast.social,Humour,humour,false +kazwan,newsmast.social,Journalism & Comment,news_comment_data,false +kazwan,newsmast.social,Space,space,false +kazwan,newsmast.social,Technology,technology,true +kazwan,newsmast.social,Travel,travel,false +kazwan,newsmast.social,Environment,environment,false +kazwan,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +dianajspencer,newsmast.social,Nature & Wildlife,nature_wildlife,false +dianajspencer,newsmast.social,AI,ai,false +dianajspencer,newsmast.social,Architecture & Design,architecture_design,false +dianajspencer,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false +dianajspencer,newsmast.social,Books & Literature,books_literature,false +dianajspencer,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +dianajspencer,newsmast.social,Environment,environment,false +dianajspencer,newsmast.social,History,history,false +dianajspencer,newsmast.social,Humanities,humanities,true +dianajspencer,newsmast.social,Movies,movies,false +dianajspencer,newsmast.social,Philosophy,philosophy,false +dianajspencer,newsmast.social,Photography,photography,false +dianajspencer,newsmast.social,Physics,physics,false +dianajspencer,newsmast.social,Science,science,false +dianajspencer,newsmast.social,Space,space,false +dianajspencer,newsmast.social,Technology,technology,false +dianajspencer,newsmast.social,Visual Arts,visual_arts,false +quincyocharles,newsmast.social,AI,ai,false +quincyocharles,newsmast.social,Biology,biology,false +quincyocharles,newsmast.social,Breaking News,breaking_news,false +quincyocharles,newsmast.social,Business,business,false +quincyocharles,newsmast.social,Chemistry,chemistry,false +quincyocharles,newsmast.social,Engineering,engineering,false +quincyocharles,newsmast.social,Football,football,true +quincyocharles,newsmast.social,Markets & Finance,markets_finance,false +quincyocharles,newsmast.social,Mathematics,mathematics,false +quincyocharles,newsmast.social,Journalism & Comment,news_comment_data,false +quincyocharles,newsmast.social,Physics,physics,false +quincyocharles,newsmast.social,Politics,politics,false +quincyocharles,newsmast.social,Science,science,false +quincyocharles,newsmast.social,Space,space,false +quincyocharles,newsmast.social,Sport,sport,false +quincyocharles,newsmast.social,Technology,technology,false +quincyocharles,newsmast.social,Ukraine Invasion,ukraine_invasion,false +quincyocharles,newsmast.social,Weather,weather,false +yangfengji,newsmast.social,AI,ai,true +yangfengji,newsmast.social,Breaking News,breaking_news,false +yangfengji,newsmast.social,Humanities,humanities,false +yangfengji,newsmast.social,Mathematics,mathematics,false +yangfengji,newsmast.social,Journalism & Comment,news_comment_data,false +yangfengji,newsmast.social,Philosophy,philosophy,false +yangfengji,newsmast.social,Programming,programming,false +yangfengji,newsmast.social,Science,science,false +yangfengji,newsmast.social,Social Sciences,social_sciences,false +yangfengji,newsmast.social,Technology,technology,false +DisabledWorld,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false +DisabledWorld,newsmast.social,AI,ai,false +DisabledWorld,newsmast.social,Biology,biology,false +DisabledWorld,newsmast.social,Books & Literature,books_literature,false +DisabledWorld,newsmast.social,Engineering,engineering,false +DisabledWorld,newsmast.social,Humanities,humanities,false +DisabledWorld,newsmast.social,Poverty & Inequality,poverty_inequality,false +DisabledWorld,newsmast.social,Nature & Wildlife,nature_wildlife,false +DisabledWorld,newsmast.social,Physics,physics,false +DisabledWorld,newsmast.social,Science,science,false +DisabledWorld,newsmast.social,Social Sciences,social_sciences,false +DisabledWorld,newsmast.social,Space,space,false +DisabledWorld,newsmast.social,Technology,technology,false +DisabledWorld,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,true +DisabledWorld,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +FinlandatWar,newsmast.social,Books & Literature,books_literature,false +FinlandatWar,newsmast.social,Breaking News,breaking_news,false +FinlandatWar,newsmast.social,Gaming,gaming,false +FinlandatWar,newsmast.social,History,history,true +FinlandatWar,newsmast.social,Humanities,humanities,false +FinlandatWar,newsmast.social,Movies,movies,false +FinlandatWar,newsmast.social,Journalism & Comment,news_comment_data,false +FinlandatWar,newsmast.social,TV & Radio,tv_radio,false +FinlandatWar,newsmast.social,Ukraine Invasion,ukraine_invasion,false +Shali,newsmast.social,Activism & Civil Rights,activism_civil_rights,false +Shali,newsmast.social,Breaking News,breaking_news,false +Shali,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +Shali,newsmast.social,Government & Policy,government_policy,false +Shali,newsmast.social,Poverty & Inequality,poverty_inequality,false +Shali,newsmast.social,Law & Justice,law_justice,false +Shali,newsmast.social,Journalism & Comment,news_comment_data,false +Shali,newsmast.social,Politics,politics,true +Shali,newsmast.social,Social Sciences,social_sciences,false +Shali,newsmast.social,Ukraine Invasion,ukraine_invasion,false +chamkaurghag,newsmast.social,Social Sciences,social_sciences,false +chamkaurghag,newsmast.social,AI,ai,false +chamkaurghag,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false +chamkaurghag,newsmast.social,Biology,biology,false +chamkaurghag,newsmast.social,Chemistry,chemistry,false +chamkaurghag,newsmast.social,Climate change,climate_change,false +chamkaurghag,newsmast.social,Energy & Pollution,energy_pollution,false +chamkaurghag,newsmast.social,Engineering,engineering,false +chamkaurghag,newsmast.social,Environment,environment,false +chamkaurghag,newsmast.social,Mathematics,mathematics,false +chamkaurghag,newsmast.social,Physics,physics,true +chamkaurghag,newsmast.social,Science,science,false +chamkaurghag,newsmast.social,Space,space,false +dollarbureau,newsmast.social,AI,ai,false +dollarbureau,newsmast.social,Breaking News,breaking_news,false +dollarbureau,newsmast.social,Business,business,false +dollarbureau,newsmast.social,Humour,humour,false +dollarbureau,newsmast.social,Markets & Finance,markets_finance,false +dollarbureau,newsmast.social,Journalism & Comment,news_comment_data,false +dollarbureau,newsmast.social,Technology,technology,false +dollarbureau,newsmast.social,Travel,travel,true +Lamech,newsmast.social,Nature & Wildlife,nature_wildlife,false +Lamech,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false +Lamech,newsmast.social,Climate change,climate_change,false +Lamech,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +Lamech,newsmast.social,Energy & Pollution,energy_pollution,false +Lamech,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false +Lamech,newsmast.social,Poverty & Inequality,poverty_inequality,false +Lamech,newsmast.social,Environment,environment,true +Lamech,newsmast.social,Immigrants Rights,immigrants_rights,false +awanderfulsole,newsmast.social,Architecture & Design,architecture_design,false +awanderfulsole,newsmast.social,Gaming,gaming,false +awanderfulsole,newsmast.social,Movies,movies,false +awanderfulsole,newsmast.social,Music,music,false +awanderfulsole,newsmast.social,Performing Arts,performing_arts,false +awanderfulsole,newsmast.social,Photography,photography,true +awanderfulsole,newsmast.social,TV & Radio,tv_radio,false +awanderfulsole,newsmast.social,Visual Arts,visual_arts,false +MarieGeneste,newsmast.social,Technology,technology,false +MarieGeneste,newsmast.social,Social Sciences,social_sciences,false +MarieGeneste,newsmast.social,Business,business,false +MarieGeneste,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false +MarieGeneste,newsmast.social,Climate change,climate_change,true +MarieGeneste,newsmast.social,Energy & Pollution,energy_pollution,false +MarieGeneste,newsmast.social,Environment,environment,false +aliegilbert,newsmast.social,Nature & Wildlife,nature_wildlife,false +aliegilbert,newsmast.social,Breaking News,breaking_news,true +aliegilbert,newsmast.social,Environment,environment,false +aliegilbert,newsmast.social,LGBTQ+,lgbtq,false +aliegilbert,newsmast.social,Journalism & Comment,news_comment_data,false +aliegilbert,newsmast.social,Science,science,false +aliegilbert,newsmast.social,Women’s Voices,women_voices,false +aliegilbert,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +salads4lunch,newsmast.social,Breaking News,breaking_news,false +salads4lunch,newsmast.social,Creative Arts,creative_arts,false +salads4lunch,newsmast.social,Food & Drink,food_drink,true +salads4lunch,newsmast.social,Humour,humour,false +salads4lunch,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false +salads4lunch,newsmast.social,Nature & Wildlife,nature_wildlife,false +salads4lunch,newsmast.social,Pets,pets,false +salads4lunch,newsmast.social,Puzzles,puzzles,false +salads4lunch,newsmast.social,Social Media,social_media,false +salads4lunch,newsmast.social,Travel,travel,false Hope,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false -Dragonholley,mastodon.social,Puzzles,puzzles,false -francisco_blaha,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,true -kenweber,mastodon.social,Football,football,false -kenweber,mastodon.social,Humour,humour,false -sithu_dev3,newsmast.social,Journalism & Comment,news_comment_data,false -Hayfa_Sdiri,newsmast.social,Business,business,false -nyeinBinarylab,newsmast.social,Travel,travel,false -sithu_dev3,newsmast.social,Creative Arts,creative_arts,false -dev_sithu,newsmast.social,Journalism & Comment,news_comment_data,false -dev_sithu,newsmast.social,Politics,politics,false -dev_sithu,newsmast.social,Ukraine Invasion,ukraine_invasion,false -dev_sithu,newsmast.social,Weather,weather,false -dev_sithu,newsmast.social,Breaking News,breaking_news,true -newsmast,newsmast.social,AI,ai,false -clairejuliaart,newsmast.social,Immigrants Rights,immigrants_rights,false +Hope,newsmast.social,Environment,environment,false +Hope,newsmast.social,Movies,movies,true +Hope,newsmast.social,Performing Arts,performing_arts,false +Hope,newsmast.social,TV & Radio,tv_radio,false +lspar002,newsmast.social,AI,ai,false +lspar002,newsmast.social,Breaking News,breaking_news,true lspar002,newsmast.social,Pets,pets,false lspar002,newsmast.social,Science,science,false lspar002,newsmast.social,Social Sciences,social_sciences,false -lspar002,newsmast.social,Breaking News,breaking_news,true -SustMeme,newsmast.social,Business,business,false -dadonthemoveph,newsmast.social,Performing Arts,performing_arts,false -dadonthemoveph,newsmast.social,Humour,humour,false -newsmast,newsmast.social,Architecture & Design,architecture_design,false -StephenScouted,newsmast.social,History,history,false -StephenScouted,newsmast.social,Sport,sport,false -Dragonholley,mastodon.social,Science,science,false -Dragonholley,mastodon.social,Space,space,false -Dragonholley,mastodon.social,Sport,sport,false -Dragonholley,mastodon.social,Technology,technology,false -Dragonholley,mastodon.social,Travel,travel,false -Dragonholley,mastodon.social,TV & Radio,tv_radio,false -Dragonholley,mastodon.social,US Sport,us_sport,false -Tasha,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false -Kayleigh,newsmast.social,Indigenous Peoples,indigenous_peoples,false -Kayleigh,newsmast.social,Poverty & Inequality,poverty_inequality,false -MarieGeneste,newsmast.social,Business,business,false -peter,newsmast.social,Business,business,false -Kayleigh,newsmast.social,Movies,movies,false -nyeinBinarylab,newsmast.social,Ukraine Invasion,ukraine_invasion,false -Kayleigh,newsmast.social,Healthcare,healthcare,false -arlettecontrers,newsmast.social,Social Sciences,social_sciences,false -AlasdairGold,newsmast.social,Movies,movies,false -StephenScouted,newsmast.social,Travel,travel,false -Tasha,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -Dhiraj,newsmast.social,Business,business,false -orianavictoria,newsmast.social,Business,business,false -StephenScouted,newsmast.social,Football,football,true -newsmast,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false -AnnaJ,newsmast.social,Humanities,humanities,false -nyeinBinarylab,newsmast.social,US Politics,us_politics,false -eve,newsmast.social,Climate change,climate_change,false -mariana_b,newsmast.social,Music,music,false -newsmast,newsmast.social,Biology,biology,false -akp,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false -akp,newsmast.social,Poverty & Inequality,poverty_inequality,false -EV_Musings,newsmast.social,Business,business,false -samf,newsmast.social,Business,business,false -business,newsmast.social,Business,business,false -Sinobabble,newsmast.social,Markets & Finance,markets_finance,false -newsmast,newsmast.social,Black Voices,black_voices,false -nyeinBinarylab,newsmast.social,Weather,weather,false -vijay,newsmast.social,AI,ai,true -AlasdairGold,newsmast.social,Sport,sport,false -aungmyatmoe,newsmast.social,Government & Policy,government_policy,true -AlasdairGold,newsmast.social,Travel,travel,false -jenandreacchi,newsmast.social,Social Sciences,social_sciences,false -AlasdairGold,newsmast.social,TV & Radio,tv_radio,false -AlasdairGold,newsmast.social,Football,football,true -protein,newsmast.social,Activism & Civil Rights,activism_civil_rights,false -protein,newsmast.social,AI,ai,false -protein,newsmast.social,Architecture & Design,architecture_design,false -protein,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false -SoeMyinHtel_dev,newsmast.social,Breaking News,breaking_news,false -eve,newsmast.social,Social Sciences,social_sciences,false -nyeinBinarylab,newsmast.social,Women’s Voices,women_voices,false -nyeinBinarylab,newsmast.social,Workers Rights,workers_rights,false -nyeinBinarylab,newsmast.social,Academia & Research,academia_research,true -SoeMyinHtel_dev,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false -SoeMyinHtel_dev,newsmast.social,Poverty & Inequality,poverty_inequality,false -JackMoulton,newsmast.social,Law & Justice,law_justice,false -SoeMyinHtel_dev,newsmast.social,Journalism & Comment,news_comment_data,false -SoeMyinHtel_dev,newsmast.social,Politics,politics,false -docwinters,newsmast.social,Law & Justice,law_justice,false -Headfort,newsmast.social,Law & Justice,law_justice,false -saralimback,newsmast.social,Law & Justice,law_justice,false -SoeMyinHtel_dev,newsmast.social,Ukraine Invasion,ukraine_invasion,false -SoeMyinHtel_dev,newsmast.social,Weather,weather,false -SoeMyinHtel_dev,newsmast.social,Democracy & Human Rights,democracy_human_rights,true -protein,newsmast.social,Biology,biology,false -protein,newsmast.social,Black Voices,black_voices,false -protein,newsmast.social,Books & Literature,books_literature,false -protein,newsmast.social,Breaking News,breaking_news,false -newsmast,newsmast.social,Books & Literature,books_literature,false -Kevin_Healey,newsmast.social,Law & Justice,law_justice,false -wildlife,newsmast.social,Climate change,climate_change,false -wildlife,newsmast.social,Environment,environment,false -siji,newsmast.social,Law & Justice,law_justice,false -mitchell_ab,newsmast.social,Law & Justice,law_justice,false -Lawrence,newsmast.social,AI,ai,false -Lawrence,newsmast.social,Breaking News,breaking_news,false -akp,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -minkhantkyawygn,newsmast.social,Breaking News,breaking_news,false -esgcsrpodcastalert,newsmast.social,Business,business,true -macroliter,newsmast.social,Markets & Finance,markets_finance,false -Hayfa_Sdiri,newsmast.social,Markets & Finance,markets_finance,false -minkhantkyawygn,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -vegannutrition,newsmast.social,Markets & Finance,markets_finance,false -minkhantkyawygn,newsmast.social,Poverty & Inequality,poverty_inequality,false -MKandHerBC,newsmast.social,Markets & Finance,markets_finance,false -minkhantkyawygn,newsmast.social,Journalism & Comment,news_comment_data,false -minkhantkyawygn,newsmast.social,Politics,politics,false -Tarden7,newsmast.social,Markets & Finance,markets_finance,false -FemalesNFinance,newsmast.social,Markets & Finance,markets_finance,true -mweinbach,newsmast.social,Markets & Finance,markets_finance,false -minkhantkyawygn,newsmast.social,Ukraine Invasion,ukraine_invasion,false -minkhantkyawygn,newsmast.social,Weather,weather,false -stephieduffy,newsmast.social,Movies,movies,false -Dragonholley,mastodon.social,Visual Arts,visual_arts,false -dannyweller,newsmast.social,Performing Arts,performing_arts,false -dannyweller,newsmast.social,Photography,photography,false -Fitwirr,newsmast.social,Markets & Finance,markets_finance,false -akp,newsmast.social,Indigenous Peoples,indigenous_peoples,false -JenniferLawson,newsmast.social,Books & Literature,books_literature,false -minkhantkyawygn,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,true -akp,newsmast.social,TV & Radio,tv_radio,false -vijay,newsmast.social,Markets & Finance,markets_finance,false -clairejuliaart,newsmast.social,LGBTQ+,lgbtq,false -EdBowers101,newsmast.social,Markets & Finance,markets_finance,false -mariana_b,newsmast.social,Markets & Finance,markets_finance,false -Headfort,newsmast.social,Activism & Civil Rights,activism_civil_rights,false -zerotwo,newsmast.social,Government & Policy,government_policy,false -TexasHistoryL,newsmast.social,Humanities,humanities,false -lucygreenwold,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false -sithu_dev3,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false -Lawrence,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false -avalio77,newsmast.social,Law & Justice,law_justice,false -princessbamboo,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false -NineBall,newsmast.social,AI,ai,false -Bekash,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false -CharityNews,newsmast.social,Law & Justice,law_justice,false -lawyer,newsmast.social,Law & Justice,law_justice,true -NineBall,newsmast.social,Journalism & Comment,news_comment_data,false -NineBall,newsmast.social,Politics,politics,false -NineBall,newsmast.social,Technology,technology,false -NineBall,newsmast.social,Ukraine Invasion,ukraine_invasion,false -NineBall,newsmast.social,Weather,weather,false -NineBall,newsmast.social,Breaking News,breaking_news,true -S33J,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false -DerrickEMugisha,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false -IlCava,mastodon.uno,Government & Policy,government_policy,false -orianavmatos,newsmast.social,Food & Drink,food_drink,false -thepopblog,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false -healthygfasian,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false -islifearecipe,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false -EasternBorder,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false -morefunwithjuan,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false -manii,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false -christina88,newsmast.social,Law & Justice,law_justice,false -IZMartinez86,newsmast.social,Law & Justice,law_justice,false -saturn,newsmast.social,Activism & Civil Rights,activism_civil_rights,false -saturn,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false -saturn,newsmast.social,Black Voices,black_voices,false -saturn,newsmast.social,Climate change,climate_change,false -saturn,newsmast.social,Disabled Voices,disabled_voices,false -saturn,newsmast.social,Energy & Pollution,energy_pollution,false -saturn,newsmast.social,Immigrants Rights,immigrants_rights,false -saturn,newsmast.social,Indigenous Peoples,indigenous_peoples,false -saturn,newsmast.social,LGBTQ+,lgbtq,false -saturn,newsmast.social,Women’s Voices,women_voices,false -saturn,newsmast.social,Workers Rights,workers_rights,false -saturn,newsmast.social,Environment,environment,true -TashaA,newsmast.social,Government & Policy,government_policy,false -TashaA,newsmast.social,Healthcare,healthcare,false -TashaA,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false -TashaA,newsmast.social,Immigrants Rights,immigrants_rights,false -TashaA,newsmast.social,Indigenous Peoples,indigenous_peoples,false -TashaA,newsmast.social,Poverty & Inequality,poverty_inequality,false -TashaA,newsmast.social,Law & Justice,law_justice,false -TashaA,newsmast.social,LGBTQ+,lgbtq,false -TashaA,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false -TashaA,newsmast.social,Women’s Voices,women_voices,false -TashaA,newsmast.social,Workers Rights,workers_rights,false -TashaA,newsmast.social,Creative Arts,creative_arts,false -TashaA,newsmast.social,Food & Drink,food_drink,false -TashaA,newsmast.social,Humour,humour,false -TashaA,newsmast.social,Nature & Wildlife,nature_wildlife,false -TashaA,newsmast.social,Pets,pets,false -TashaA,newsmast.social,Puzzles,puzzles,false -TashaA,newsmast.social,Travel,travel,false -TashaA,newsmast.social,Architecture & Design,architecture_design,false -TashaA,newsmast.social,Gaming,gaming,false -TashaA,newsmast.social,Movies,movies,false -TashaA,newsmast.social,Music,music,false -TashaA,newsmast.social,Performing Arts,performing_arts,false -TashaA,newsmast.social,Photography,photography,false -TashaA,newsmast.social,TV & Radio,tv_radio,false -TashaA,newsmast.social,Visual Arts,visual_arts,false -TashaA,newsmast.social,Humanities,humanities,false -TashaA,newsmast.social,Books & Literature,books_literature,false -TashaA,newsmast.social,History,history,false -mkk_newsmast,newsmast.social,Journalism & Comment,news_comment_data,true -kazwan,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false -Zamzam,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false -sithu_dev3,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,true -sithu_dev3,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -DrECSkirmuntt,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false -sithu_dev3,newsmast.social,Poverty & Inequality,poverty_inequality,false -BriannaABaker,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false -DisabledWorld,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false -sithu_dev3,newsmast.social,Politics,politics,false -TexasHistoryL,newsmast.social,Movies,movies,false -liharris30,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false -siji,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false -savenues,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false -thelmzkitchen,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false -Roncaglia,newsmast.social,Books & Literature,books_literature,false -ChinHuaLu,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false -MummyMatters,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,true -natashaklondon,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,true -sithu_dev3,newsmast.social,Ukraine Invasion,ukraine_invasion,false -sithu_dev3,newsmast.social,Weather,weather,false -ghutchis,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false -CharityNews,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false -ANT_LCFC,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false -Roncaglia,newsmast.social,History,history,false -lawyer,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false -Thiha,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false -dadonthemoveph,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false -Andy,newsmast.social,Weather,weather,false -joanathx,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false -KevinWagar,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false -TexasHistoryL,newsmast.social,Music,music,false -TexasHistoryL,newsmast.social,Social Sciences,social_sciences,false -TexasHistoryL,newsmast.social,Visual Arts,visual_arts,false -dadonthemoveph,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false -uthi,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false -JulieAtkinson,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,true -Aysegul,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,true -clairejuliaart,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false -EdBowers101,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false -Randee,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false -shubhambutola,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false -vijay,newsmast.social,Ukraine Invasion,ukraine_invasion,false -vijay,newsmast.social,Activism & Civil Rights,activism_civil_rights,false -TexasHistoryL,newsmast.social,History,history,true -esgcsrpodcastalert,newsmast.social,Markets & Finance,markets_finance,false -O_makanjuola,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false -emilyjd,newsmast.social,Creative Arts,creative_arts,false -priyal,newsmast.social,Creative Arts,creative_arts,false -Kayleigh,newsmast.social,Creative Arts,creative_arts,false -Test_App,newsmast.social,AI,ai,false -mariana_b,newsmast.social,Breaking News,breaking_news,false -TashaA,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false -TashaA,newsmast.social,Black Voices,black_voices,false -TashaA,newsmast.social,Climate change,climate_change,false -mkk_newsmast,newsmast.social,Breaking News,breaking_news,false -mkk_newsmast,newsmast.social,Politics,politics,false -mkk_newsmast,newsmast.social,Ukraine Invasion,ukraine_invasion,false -mkk_newsmast,newsmast.social,Weather,weather,false -TashaA,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -TashaA,newsmast.social,Disabled Voices,disabled_voices,false -TashaA,newsmast.social,Energy & Pollution,energy_pollution,false -TashaA,newsmast.social,Environment,environment,false -TashaA,newsmast.social,Philosophy,philosophy,false -TashaA,newsmast.social,Sport,sport,false -TashaA,newsmast.social,Football,football,false -TashaA,newsmast.social,Social Sciences,social_sciences,false -vijay,newsmast.social,Black Voices,black_voices,false -TashaA,newsmast.social,Science,science,false -TashaA,newsmast.social,Biology,biology,false -TashaA,newsmast.social,Chemistry,chemistry,false -TashaA,newsmast.social,Engineering,engineering,false -TashaA,newsmast.social,Mathematics,mathematics,false -TashaA,newsmast.social,Physics,physics,false -TashaA,newsmast.social,Space,space,false -TashaA,newsmast.social,Technology,technology,false -TashaA,newsmast.social,AI,ai,false -MichaelCaines,newsmast.social,Humanities,humanities,false -TashaA,newsmast.social,Business,business,false -orianavmatos,newsmast.social,Creative Arts,creative_arts,false -sonbish,newsmast.social,Creative Arts,creative_arts,false -TashaA,newsmast.social,Journalism & Comment,news_comment_data,false -TashaA,newsmast.social,Breaking News,breaking_news,false -Stutsies,newsmast.social,Creative Arts,creative_arts,false -TashaA,newsmast.social,Politics,politics,false -TashaA,newsmast.social,Ukraine Invasion,ukraine_invasion,false -TashaA,newsmast.social,Weather,weather,false -morefunwithjuan,newsmast.social,Creative Arts,creative_arts,false -Lawrence,newsmast.social,Creative Arts,creative_arts,false -DrECSkirmuntt,newsmast.social,Creative Arts,creative_arts,false -TVPsychologist,newsmast.social,Creative Arts,creative_arts,false -discerningcat,newsmast.social,Creative Arts,creative_arts,false -HRWright,newsmast.social,Creative Arts,creative_arts,false -Lawrence,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -FreddieJ,newsmast.social,Indigenous Peoples,indigenous_peoples,false -savenues,newsmast.social,Creative Arts,creative_arts,false -Alastair,mastodon.me.uk,AI,ai,false -Lawrence,newsmast.social,Food & Drink,food_drink,false -thelmzkitchen,newsmast.social,Creative Arts,creative_arts,false -poverty,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false -natashaklondon,newsmast.social,Creative Arts,creative_arts,false -refugeescommunityupdate,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false -refugeescommunityupdate,newsmast.social,Poverty & Inequality,poverty_inequality,false -hopheim,newsmast.social,Creative Arts,creative_arts,false -chrysalismama,newsmast.social,Creative Arts,creative_arts,false -elisexavier,newsmast.social,Creative Arts,creative_arts,false -nancymangano,newsmast.social,Creative Arts,creative_arts,true -YuliaMHersey,newsmast.social,Creative Arts,creative_arts,false -poverty,newsmast.social,Poverty & Inequality,poverty_inequality,true -Calmsage,newsmast.social,Creative Arts,creative_arts,false -JamesNewsMast,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false -vijay,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false -allaroundoz,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false -sabah,newsmast.social,Poverty & Inequality,poverty_inequality,false -sonbish,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,true -orianavmatos,newsmast.social,Space,space,false -orianavmatos,newsmast.social,Science,science,false -stephieduffy,newsmast.social,Philosophy,philosophy,false -stephieduffy,newsmast.social,TV & Radio,tv_radio,false -Stevivor,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false -TVPsychologist,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false -vegannutrition,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,true -Unwanted_Life,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false -enangha,newsmast.social,Breaking News,breaking_news,false -orianavmatos,newsmast.social,Nature & Wildlife,nature_wildlife,false -orianavmatos,newsmast.social,Pets,pets,false -healthcare,newsmast.social,Government & Policy,government_policy,false -Test_App,newsmast.social,Technology,technology,true -healthcare,newsmast.social,Law & Justice,law_justice,false -healthcare,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false -healthcare,newsmast.social,Healthcare,healthcare,true -Pyae,newsmast.social,Activism & Civil Rights,activism_civil_rights,false -Pyae,newsmast.social,Business,business,false -Pyae,newsmast.social,Environment,environment,false -Test_App,newsmast.social,Nature & Wildlife,nature_wildlife,false -Pyae,newsmast.social,Humanities,humanities,false -Pyae,newsmast.social,Journalism & Comment,news_comment_data,false -Pyae,newsmast.social,Social Sciences,social_sciences,false -Pyae,newsmast.social,Technology,technology,false -Pyae,newsmast.social,Government & Policy,government_policy,true -lgbtq,newsmast.social,Black Voices,black_voices,false -lgbtq,newsmast.social,Disabled Voices,disabled_voices,false -lgbtq,newsmast.social,Immigrants Rights,immigrants_rights,false -lgbtq,newsmast.social,Indigenous Peoples,indigenous_peoples,false -lgbtq,newsmast.social,LGBTQ+,lgbtq,false -lgbtq,newsmast.social,Women’s Voices,women_voices,false -lgbtq,newsmast.social,Workers Rights,workers_rights,false -lgbtq,newsmast.social,Activism & Civil Rights,activism_civil_rights,true -FreddieJ,newsmast.social,Environment,environment,false -FreddieJ,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false -FreddieJ,newsmast.social,Climate change,climate_change,false -FreddieJ,newsmast.social,Disabled Voices,disabled_voices,false -FreddieJ,newsmast.social,Immigrants Rights,immigrants_rights,false -FreddieJ,newsmast.social,Workers Rights,workers_rights,false -FreddieJ,newsmast.social,Books & Literature,books_literature,false -FreddieJ,newsmast.social,Humanities,humanities,false -FreddieJ,newsmast.social,Visual Arts,visual_arts,false -DeliSaavedra,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,true -Dolores,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,true -vijay,newsmast.social,Disabled Voices,disabled_voices,false -FreddieJ,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -faithbenson,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,true -Lawrence,newsmast.social,History,history,false -Nancie,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false -Lawrence,newsmast.social,Humanities,humanities,false -vijay,newsmast.social,Immigrants Rights,immigrants_rights,false -Lawrence,newsmast.social,Journalism & Comment,news_comment_data,false -Lawrence,newsmast.social,Philosophy,philosophy,false -Tarden7,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false -Lawrence,newsmast.social,Technology,technology,true -Freddie3,newsmast.social,Women’s Voices,women_voices,false -Roncaglia,newsmast.social,Humanities,humanities,false -Roncaglia,newsmast.social,Space,space,false -infobl,newsmast.social,Breaking News,breaking_news,false -hopheim,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,true -vijay,newsmast.social,Indigenous Peoples,indigenous_peoples,false -vijay,newsmast.social,Humour,humour,false -newsmast,newsmast.social,Breaking News,breaking_news,false -infobl,newsmast.social,Politics,politics,false -infobl,newsmast.social,Technology,technology,false -infobl,newsmast.social,Ukraine Invasion,ukraine_invasion,false -infobl,newsmast.social,Weather,weather,false -infobl,newsmast.social,AI,ai,true -Tasha,newsmast.social,Government & Policy,government_policy,false -Tasha,newsmast.social,Law & Justice,law_justice,false -orianavmatos,newsmast.social,Mathematics,mathematics,false -orianavmatos,newsmast.social,Chemistry,chemistry,false -Roncaglia,newsmast.social,AI,ai,true -thisisqueerly,newsmast.social,Movies,movies,false -Ed_Rempel,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false -Fitwirr,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,true -RachelBranson,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,true -chrysalismama,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false -allaroundoz,newsmast.social,Food & Drink,food_drink,false -MichaelCaines,newsmast.social,Music,music,false -allaroundoz,newsmast.social,Nature & Wildlife,nature_wildlife,false -allaroundoz,newsmast.social,Puzzles,puzzles,false -allaroundoz,newsmast.social,Travel,travel,true -PriyankaJoshi,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,true -travelpast50,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false -thepetsnet,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false -chloeariellle,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false -YuliaMHersey,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false -MichaelCaines,newsmast.social,Performing Arts,performing_arts,false -sonbish,newsmast.social,Food & Drink,food_drink,false -patnawomens,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false -sonbish,newsmast.social,Humour,humour,false -patnawomens,newsmast.social,Energy & Pollution,energy_pollution,false -mbarbatti,newsmast.social,Biology,biology,false -mbarbatti,newsmast.social,Engineering,engineering,false -mbarbatti,newsmast.social,Mathematics,mathematics,false -mbarbatti,newsmast.social,Physics,physics,false -jacklscanlan,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false -jacklscanlan,newsmast.social,Biology,biology,false -monicareinagel,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,true -Calmsage,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,true -jacklscanlan,newsmast.social,Science,science,true -mbarbatti,newsmast.social,Science,science,false -mbarbatti,newsmast.social,Space,space,false -mbarbatti,newsmast.social,Chemistry,chemistry,true -Thomas,newsmast.social,Nature & Wildlife,nature_wildlife,false -zerotwo,newsmast.social,Nature & Wildlife,nature_wildlife,false -eve,newsmast.social,Nature & Wildlife,nature_wildlife,false -sophiecunningham,newsmast.social,Nature & Wildlife,nature_wildlife,false -dianashurman,newsmast.social,Nature & Wildlife,nature_wildlife,false -Sushmitapanda,newsmast.social,Nature & Wildlife,nature_wildlife,false -DeliSaavedra,newsmast.social,Activism & Civil Rights,activism_civil_rights,false -sethlazar,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -sethlazar,newsmast.social,Government & Policy,government_policy,false -sethlazar,newsmast.social,Poverty & Inequality,poverty_inequality,false -sethlazar,newsmast.social,Technology,technology,false -sethlazar,newsmast.social,AI,ai,true -DeliSaavedra,newsmast.social,Breaking News,breaking_news,false -DeliSaavedra,newsmast.social,Climate change,climate_change,false -DeliSaavedra,newsmast.social,Energy & Pollution,energy_pollution,false -DeliSaavedra,newsmast.social,Environment,environment,false -Stutsies,newsmast.social,Breaking News,breaking_news,false -Stutsies,newsmast.social,Food & Drink,food_drink,false -Stutsies,newsmast.social,Movies,movies,false -Stutsies,newsmast.social,Music,music,false -Stutsies,newsmast.social,Performing Arts,performing_arts,false -Stutsies,newsmast.social,Travel,travel,false -Stutsies,newsmast.social,Gaming,gaming,true -DeliSaavedra,newsmast.social,Indigenous Peoples,indigenous_peoples,false -DeliSaavedra,newsmast.social,Poverty & Inequality,poverty_inequality,false -DeliSaavedra,newsmast.social,LGBTQ+,lgbtq,false -DeliSaavedra,newsmast.social,Journalism & Comment,news_comment_data,false -DeliSaavedra,newsmast.social,Politics,politics,false -DeliSaavedra,newsmast.social,Ukraine Invasion,ukraine_invasion,false -phylis,newsmast.social,Architecture & Design,architecture_design,false -phylis,newsmast.social,Biology,biology,false -phylis,newsmast.social,Chemistry,chemistry,false -phylis,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -phylis,newsmast.social,Engineering,engineering,false -phylis,newsmast.social,Gaming,gaming,false -phylis,newsmast.social,Government & Policy,government_policy,false -phylis,newsmast.social,AI,ai,true -FreddieJ,newsmast.social,Poverty & Inequality,poverty_inequality,false -wildlife,newsmast.social,Nature & Wildlife,nature_wildlife,true -saturn,newsmast.social,Nature & Wildlife,nature_wildlife,false -mati,moth.social,Social Media,social_media,false -patnawomens,newsmast.social,Government & Policy,government_policy,false -patnawomens,newsmast.social,Law & Justice,law_justice,false -vijay,newsmast.social,Breaking News,breaking_news,false -thisisqueerly,newsmast.social,Music,music,false -DerrickEMugisha,newsmast.social,Breaking News,breaking_news,false -DerrickEMugisha,newsmast.social,Business,business,false -akp,newsmast.social,Nature & Wildlife,nature_wildlife,false -DeliSaavedra,newsmast.social,Nature & Wildlife,nature_wildlife,false -dianajspencer,newsmast.social,Nature & Wildlife,nature_wildlife,false -thisisqueerly,newsmast.social,Journalism & Comment,news_comment_data,false -thisisqueerly,newsmast.social,Travel,travel,false -JenniferLawson,newsmast.social,History,history,false -patnawomens,newsmast.social,Academia & Research,academia_research,true -stephenreid,newsmast.social,Nature & Wildlife,nature_wildlife,false -MichaelMarshall,newsmast.social,Nature & Wildlife,nature_wildlife,false -Stevivor,newsmast.social,Creative Arts,creative_arts,false -vijay,newsmast.social,Journalism & Comment,news_comment_data,false -Stevivor,newsmast.social,LGBTQ+,lgbtq,false -womens_voices,newsmast.social,Activism & Civil Rights,activism_civil_rights,false -womens_voices,newsmast.social,Black Voices,black_voices,false -womens_voices,newsmast.social,Disabled Voices,disabled_voices,false -womens_voices,newsmast.social,Immigrants Rights,immigrants_rights,false -womens_voices,newsmast.social,Indigenous Peoples,indigenous_peoples,false -womens_voices,newsmast.social,LGBTQ+,lgbtq,false -womens_voices,newsmast.social,Workers Rights,workers_rights,false -womens_voices,newsmast.social,Women’s Voices,women_voices,true -Freddie3,newsmast.social,Nature & Wildlife,nature_wildlife,false -Tasha,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false -macroliter,newsmast.social,Nature & Wildlife,nature_wildlife,false -Freddie3,newsmast.social,Breaking News,breaking_news,false -docip,newsmast.social,Nature & Wildlife,nature_wildlife,false -Freddie3,newsmast.social,Journalism & Comment,news_comment_data,false -Freddie3,newsmast.social,Ukraine Invasion,ukraine_invasion,false -dadonthemoveph,newsmast.social,Nature & Wildlife,nature_wildlife,false -Freddie3,newsmast.social,Politics,politics,true -saskia,newsmast.social,History,history,false -vijay,newsmast.social,Social Media,social_media,false -vijay,newsmast.social,Weather,weather,false -vijay,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -mervecaldiran,newsmast.social,Nature & Wildlife,nature_wildlife,false -mati,moth.social,Journalism & Comment,news_comment_data,false -orianavmatos,newsmast.social,Business,business,false -timakimoff,newsmast.social,Nature & Wildlife,nature_wildlife,true -orianavmatos,newsmast.social,Markets & Finance,markets_finance,false -sallyhawkins,newsmast.social,Nature & Wildlife,nature_wildlife,false -ajj65,newsmast.social,Nature & Wildlife,nature_wildlife,false -vijay,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false -RonCharles,newsmast.social,Breaking News,breaking_news,false -Stevivor,newsmast.social,Technology,technology,false -Stevivor,newsmast.social,Journalism & Comment,news_comment_data,true -vijay,newsmast.social,Chemistry,chemistry,false -RonCharles,newsmast.social,Social Media,social_media,false -princessbamboo,newsmast.social,Pets,pets,false -Bekash,newsmast.social,Creative Arts,creative_arts,false -RonCharles,newsmast.social,Ukraine Invasion,ukraine_invasion,false -Bekash,newsmast.social,Food & Drink,food_drink,false -princessbamboo,newsmast.social,Travel,travel,false -Bekash,newsmast.social,Humour,humour,false -RonCharles,newsmast.social,Weather,weather,false -Bekash,newsmast.social,Nature & Wildlife,nature_wildlife,false -Bekash,newsmast.social,Pets,pets,false -Bekash,newsmast.social,Puzzles,puzzles,false -Bekash,newsmast.social,Sport,sport,false -Bekash,newsmast.social,Travel,travel,false -Bekash,newsmast.social,Football,football,true -incnews,newsmast.social,Academia & Research,academia_research,false -incnews,newsmast.social,Breaking News,breaking_news,false -princessbamboo,newsmast.social,Food & Drink,food_drink,true -incnews,newsmast.social,Business,business,false -aishiterutokyo,newsmast.social,Gaming,gaming,false -aishiterutokyo,newsmast.social,Journalism & Comment,news_comment_data,false -aishiterutokyo,newsmast.social,Sport,sport,false -aishiterutokyo,newsmast.social,TV & Radio,tv_radio,false -aishiterutokyo,newsmast.social,Football,football,true -incnews,newsmast.social,Government & Policy,government_policy,false -incnews,newsmast.social,Healthcare,healthcare,false -incnews,newsmast.social,Law & Justice,law_justice,false -incnews,newsmast.social,Markets & Finance,markets_finance,false -S33J,newsmast.social,Biology,biology,false -S33J,newsmast.social,Environment,environment,false -S33J,newsmast.social,Food & Drink,food_drink,false -incnews,newsmast.social,Politics,politics,false -S33J,newsmast.social,Nature & Wildlife,nature_wildlife,false -S33J,newsmast.social,Performing Arts,performing_arts,false -S33J,newsmast.social,Science,science,false -S33J,newsmast.social,Sport,sport,false -S33J,newsmast.social,Visual Arts,visual_arts,false -AnnaJ,newsmast.social,Women’s Voices,women_voices,false -AnnaJ,newsmast.social,LGBTQ+,lgbtq,false -AnnaJ,newsmast.social,Black Voices,black_voices,false -jannus,newsmast.social,Climate change,climate_change,false -docwinters,newsmast.social,Books & Literature,books_literature,false -docwinters,newsmast.social,Humanities,humanities,false -docwinters,newsmast.social,Philosophy,philosophy,false -docwinters,newsmast.social,History,history,true -jannus,newsmast.social,Energy & Pollution,energy_pollution,false -phylis,newsmast.social,Healthcare,healthcare,false -calebijioma,newsmast.social,Nature & Wildlife,nature_wildlife,false -phylis,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false -phylis,newsmast.social,Poverty & Inequality,poverty_inequality,false -AldridgePhoto,newsmast.social,Nature & Wildlife,nature_wildlife,false -indiajade_68,newsmast.social,Nature & Wildlife,nature_wildlife,false -phylis,newsmast.social,Law & Justice,law_justice,false -phylis,newsmast.social,Mathematics,mathematics,false -phylis,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false -phylis,newsmast.social,Movies,movies,false -phylis,newsmast.social,Music,music,false -phylis,newsmast.social,Performing Arts,performing_arts,false -phylis,newsmast.social,Photography,photography,false -phylis,newsmast.social,Physics,physics,false -drvolts,newsmast.social,Nature & Wildlife,nature_wildlife,false -peter,newsmast.social,Nature & Wildlife,nature_wildlife,false -rewildingsam,newsmast.social,Nature & Wildlife,nature_wildlife,false -phylis,newsmast.social,Science,science,false -phylis,newsmast.social,Space,space,false -tillathenun,newsmast.social,Nature & Wildlife,nature_wildlife,false -phylis,newsmast.social,Technology,technology,false -phylis,newsmast.social,TV & Radio,tv_radio,false -phylis,newsmast.social,Visual Arts,visual_arts,false -Sushmitapanda,newsmast.social,Architecture & Design,architecture_design,false -Sushmitapanda,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false -Sushmitapanda,newsmast.social,Biology,biology,false -Sushmitapanda,newsmast.social,Breaking News,breaking_news,false -Sushmitapanda,newsmast.social,Business,business,false -RhondaAlbom,newsmast.social,Nature & Wildlife,nature_wildlife,false -Sushmitapanda,newsmast.social,Chemistry,chemistry,false -aliegilbert,newsmast.social,Nature & Wildlife,nature_wildlife,false -Anneliese,newsmast.social,Nature & Wildlife,nature_wildlife,false -Sushmitapanda,newsmast.social,Climate change,climate_change,false -zhichangliu,newsmast.social,AI,ai,false -zhichangliu,newsmast.social,Breaking News,breaking_news,false -zhichangliu,newsmast.social,Energy & Pollution,energy_pollution,false -ScharSchool,newsmast.social,Nature & Wildlife,nature_wildlife,false -zhichangliu,newsmast.social,Chemistry,chemistry,true -vijay,newsmast.social,Poverty & Inequality,poverty_inequality,false -vijay,newsmast.social,Government & Policy,government_policy,false -Sushmitapanda,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -vijay,newsmast.social,Academia & Research,academia_research,false -Sushmitapanda,newsmast.social,Energy & Pollution,energy_pollution,false -Sushmitapanda,newsmast.social,Engineering,engineering,false -Sushmitapanda,newsmast.social,Environment,environment,false -vijay,newsmast.social,Healthcare,healthcare,false -vijay,newsmast.social,Law & Justice,law_justice,false -Sushmitapanda,newsmast.social,Gaming,gaming,false -Sushmitapanda,newsmast.social,Government & Policy,government_policy,false -DerrickEMugisha,newsmast.social,Climate change,climate_change,false -vijay,newsmast.social,Politics,politics,false -Sushmitapanda,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false -Sushmitapanda,newsmast.social,Poverty & Inequality,poverty_inequality,false -vijay,newsmast.social,US Politics,us_politics,false -vijay,newsmast.social,Environment,environment,false -Sushmitapanda,newsmast.social,Law & Justice,law_justice,false -Sushmitapanda,newsmast.social,Markets & Finance,markets_finance,false -Sushmitapanda,newsmast.social,Mathematics,mathematics,false -Sushmitapanda,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false -Sushmitapanda,newsmast.social,Movies,movies,false -Sushmitapanda,newsmast.social,Music,music,false -Sushmitapanda,newsmast.social,Journalism & Comment,news_comment_data,false -quincyocharles,newsmast.social,AI,ai,false -quincyocharles,newsmast.social,Biology,biology,false -quincyocharles,newsmast.social,Breaking News,breaking_news,false -quincyocharles,newsmast.social,Business,business,false -quincyocharles,newsmast.social,Chemistry,chemistry,false -vijay,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false -vijay,newsmast.social,Climate change,climate_change,false -quincyocharles,newsmast.social,Engineering,engineering,false -vijay,newsmast.social,Energy & Pollution,energy_pollution,false -vijay,newsmast.social,LGBTQ+,lgbtq,false -vijay,newsmast.social,Women’s Voices,women_voices,false -quincyocharles,newsmast.social,Markets & Finance,markets_finance,false -quincyocharles,newsmast.social,Mathematics,mathematics,false -quincyocharles,newsmast.social,Journalism & Comment,news_comment_data,false -vijay,newsmast.social,Business,business,false -quincyocharles,newsmast.social,Physics,physics,false -quincyocharles,newsmast.social,Politics,politics,false -quincyocharles,newsmast.social,Science,science,false -quincyocharles,newsmast.social,Space,space,false -quincyocharles,newsmast.social,Sport,sport,false -quincyocharles,newsmast.social,Technology,technology,false -quincyocharles,newsmast.social,Ukraine Invasion,ukraine_invasion,false -quincyocharles,newsmast.social,Weather,weather,false -quincyocharles,newsmast.social,Football,football,true -Sushmitapanda,newsmast.social,Performing Arts,performing_arts,false -vijay,newsmast.social,Workers Rights,workers_rights,false -Sushmitapanda,newsmast.social,Photography,photography,false -Sushmitapanda,newsmast.social,Physics,physics,false -Sushmitapanda,newsmast.social,Politics,politics,false -vijay,newsmast.social,Programming,programming,false -vijay,newsmast.social,Science,science,false -vijay,newsmast.social,Biology,biology,false -vijay,newsmast.social,Engineering,engineering,false -vijay,newsmast.social,Mathematics,mathematics,false -Sushmitapanda,newsmast.social,Science,science,false -Sushmitapanda,newsmast.social,Space,space,false -vijay,newsmast.social,Physics,physics,false -Sushmitapanda,newsmast.social,TV & Radio,tv_radio,false -Sushmitapanda,newsmast.social,Ukraine Invasion,ukraine_invasion,false -Sushmitapanda,newsmast.social,Visual Arts,visual_arts,false -vijay,newsmast.social,Space,space,false -Sushmitapanda,newsmast.social,Weather,weather,false -vijay,newsmast.social,Humanities,humanities,false -vijay,newsmast.social,Social Sciences,social_sciences,false -vijay,newsmast.social,History,history,false -vijay,newsmast.social,Philosophy,philosophy,false -jannus,newsmast.social,Physics,physics,false -vijay,newsmast.social,Architecture & Design,architecture_design,false -WildCard,newsmast.social,Nature & Wildlife,nature_wildlife,false -jannus,newsmast.social,Space,space,false -hopheim,newsmast.social,Nature & Wildlife,nature_wildlife,false -jannus,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,true -DerrickEMugisha,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -DerrickEMugisha,newsmast.social,Energy & Pollution,energy_pollution,false -DerrickEMugisha,newsmast.social,Environment,environment,false -Lamech,newsmast.social,Nature & Wildlife,nature_wildlife,false -DerrickEMugisha,newsmast.social,Football,football,false -vijay,newsmast.social,Books & Literature,books_literature,false -ShaggyShepherd,newsmast.social,Nature & Wildlife,nature_wildlife,false -DerrickEMugisha,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false -MichaelCaines,newsmast.social,Photography,photography,false -DerrickEMugisha,newsmast.social,Poverty & Inequality,poverty_inequality,false -PlantInitiative,newsmast.social,Nature & Wildlife,nature_wildlife,false -vijay,newsmast.social,Music,music,false -DerrickEMugisha,newsmast.social,Nature & Wildlife,nature_wildlife,false -DerrickEMugisha,newsmast.social,Pets,pets,false -Joan_Kem,newsmast.social,Activism & Civil Rights,activism_civil_rights,false -Joan_Kem,newsmast.social,Black Voices,black_voices,false -Kyaw,newsmast.social,Nature & Wildlife,nature_wildlife,false -pennywalker,newsmast.social,Nature & Wildlife,nature_wildlife,false -Joan_Kem,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -sustainabilityx,newsmast.social,Nature & Wildlife,nature_wildlife,false -Joan_Kem,newsmast.social,Poverty & Inequality,poverty_inequality,false -arg02,newsmast.social,Nature & Wildlife,nature_wildlife,false -benogeh,newsmast.social,Nature & Wildlife,nature_wildlife,false -Joan_Kem,newsmast.social,Women’s Voices,women_voices,false -Joan_Kem,newsmast.social,Workers Rights,workers_rights,false -TasmanianTimes,newsmast.social,Nature & Wildlife,nature_wildlife,false -mongabay,newsmast.social,Nature & Wildlife,nature_wildlife,false -han_smith,newsmast.social,Nature & Wildlife,nature_wildlife,false -RewildScotland,newsmast.social,Nature & Wildlife,nature_wildlife,false -DerrickEMugisha,newsmast.social,Science,science,false -DerrickEMugisha,newsmast.social,Sport,sport,false -mikea,newsmast.social,Nature & Wildlife,nature_wildlife,false -DerrickEMugisha,newsmast.social,Travel,travel,false -gnasralla,newsmast.social,Nature & Wildlife,nature_wildlife,false -DerrickEMugisha,newsmast.social,Weather,weather,false -vijay,newsmast.social,Performing Arts,performing_arts,false -thepopblog,newsmast.social,Creative Arts,creative_arts,false -MichaelCaines,newsmast.social,Visual Arts,visual_arts,false -vijay,newsmast.social,Photography,photography,false -thepopblog,newsmast.social,Movies,movies,false -thepopblog,newsmast.social,TV & Radio,tv_radio,false -thepopblog,newsmast.social,Music,music,true -DerrickEMugisha,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,true -stephenreid,newsmast.social,AI,ai,false -Sebsb,newsmast.social,AI,ai,false -Sebsb,newsmast.social,Architecture & Design,architecture_design,false -Sebsb,newsmast.social,Breaking News,breaking_news,false -dennisfparker,newsmast.social,Nature & Wildlife,nature_wildlife,false -aliciahaydenart,newsmast.social,Nature & Wildlife,nature_wildlife,true -akptest007,newsmast.social,Nature & Wildlife,nature_wildlife,false -Sebsb,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -vijay,newsmast.social,TV & Radio,tv_radio,false -vijay,newsmast.social,Visual Arts,visual_arts,false -stephenreid,newsmast.social,Architecture & Design,architecture_design,false -Sebsb,newsmast.social,Gaming,gaming,false -DrGCrisp,newsmast.social,Nature & Wildlife,nature_wildlife,false -Sebsb,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false -Sebsb,newsmast.social,Poverty & Inequality,poverty_inequality,false -Joan_Kem,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,true -WestWeather,newsmast.social,Nature & Wildlife,nature_wildlife,false -vijay,newsmast.social,Sport,sport,false -vijay,newsmast.social,Football,football,false -vijay,newsmast.social,US Sport,us_sport,false -vijay,newsmast.social,Creative Arts,creative_arts,false -vijay,newsmast.social,Nature & Wildlife,nature_wildlife,false -vijay,newsmast.social,Pets,pets,false -vijay,newsmast.social,Puzzles,puzzles,false -vijay,newsmast.social,Travel,travel,false -posts,newsmast.social,Journalism & Comment,news_comment_data,false -posts,newsmast.social,Social Media,social_media,false -posts,newsmast.social,Ukraine Invasion,ukraine_invasion,false -posts,newsmast.social,Weather,weather,false -posts,newsmast.social,Breaking News,breaking_news,true -healthygfasian,newsmast.social,AI,ai,false -healthygfasian,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false -healthygfasian,newsmast.social,Business,business,false -sai_myo_1993,newsmast.social,Climate change,climate_change,false -healthygfasian,newsmast.social,Climate change,climate_change,false -healthygfasian,newsmast.social,Creative Arts,creative_arts,false -healthygfasian,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -healthygfasian,newsmast.social,Disabled Voices,disabled_voices,false -healthygfasian,newsmast.social,Energy & Pollution,energy_pollution,false -healthygfasian,newsmast.social,Environment,environment,false -sai_myo_1993,newsmast.social,Engineering,engineering,false -sai_myo_1993,newsmast.social,Environment,environment,false -sai_myo_1993,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false -healthygfasian,newsmast.social,Humour,humour,false -healthygfasian,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false -healthygfasian,newsmast.social,Immigrants Rights,immigrants_rights,false -healthygfasian,newsmast.social,Poverty & Inequality,poverty_inequality,false -healthygfasian,newsmast.social,Markets & Finance,markets_finance,false -healthygfasian,newsmast.social,Nature & Wildlife,nature_wildlife,false -healthygfasian,newsmast.social,Pets,pets,false -healthygfasian,newsmast.social,Puzzles,puzzles,false -healthygfasian,newsmast.social,Technology,technology,false -healthygfasian,newsmast.social,Travel,travel,false -vijay,newsmast.social,Food & Drink,food_drink,false -healthygfasian,newsmast.social,Women’s Voices,women_voices,false -healthygfasian,newsmast.social,Food & Drink,food_drink,true -jessicanewmast,newsmast.social,Activism & Civil Rights,activism_civil_rights,false -Sebsb,newsmast.social,Movies,movies,false -Sebsb,newsmast.social,Music,music,false -Sebsb,newsmast.social,Journalism & Comment,news_comment_data,false -Sebsb,newsmast.social,Performing Arts,performing_arts,false -Sebsb,newsmast.social,Photography,photography,false -Sebsb,newsmast.social,Politics,politics,false -jessicanewmast,newsmast.social,Black Voices,black_voices,false -jessicanewmast,newsmast.social,Business,business,false -Sebsb,newsmast.social,Sport,sport,false -Sebsb,newsmast.social,Technology,technology,false -Sebsb,newsmast.social,TV & Radio,tv_radio,false -Sebsb,newsmast.social,Ukraine Invasion,ukraine_invasion,false -Sebsb,newsmast.social,Visual Arts,visual_arts,false -Sebsb,newsmast.social,Weather,weather,false -Sebsb,newsmast.social,Football,football,true -newsmast,newsmast.social,Business,business,false -jessicanewmast,newsmast.social,Disabled Voices,disabled_voices,false -newsmast,newsmast.social,Chemistry,chemistry,false -jessicanewmast,newsmast.social,Energy & Pollution,energy_pollution,false -jessicanewmast,newsmast.social,Engineering,engineering,false -newsmast,newsmast.social,Climate change,climate_change,false -newsmast,newsmast.social,Creative Arts,creative_arts,false -jessicanewmast,newsmast.social,Environment,environment,false -MichaelCaines,newsmast.social,Books & Literature,books_literature,true -Freddie3,newsmast.social,Law & Justice,law_justice,false -jessicanewmast,newsmast.social,Immigrants Rights,immigrants_rights,false -Freddie3,newsmast.social,Healthcare,healthcare,false -jessicanewmast,newsmast.social,Indigenous Peoples,indigenous_peoples,false -jessicanewmast,newsmast.social,LGBTQ+,lgbtq,false -jessicanewmast,newsmast.social,Markets & Finance,markets_finance,false -Freddie3,newsmast.social,Government & Policy,government_policy,false -jessicanewmast,newsmast.social,Programming,programming,false -jessicanewmast,newsmast.social,Technology,technology,false -jessicanewmast,newsmast.social,Women’s Voices,women_voices,false -Freddie3,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -jessicanewmast,newsmast.social,Climate change,climate_change,true -Freddie3,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false -Freddie3,newsmast.social,Poverty & Inequality,poverty_inequality,false -sitothebo,newsmast.social,AI,ai,false -max_chaudhary,newsmast.social,Government & Policy,government_policy,true -newsmast,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -newsmast,newsmast.social,Disabled Voices,disabled_voices,false -TimBlack,newsmast.social,Black Voices,black_voices,false -Abrikosoff,newsmast.social,AI,ai,false -TimBlack,newsmast.social,Breaking News,breaking_news,false -Freddie3,newsmast.social,Performing Arts,performing_arts,false -TimBlack,newsmast.social,Journalism & Comment,news_comment_data,false -Freddie3,newsmast.social,Visual Arts,visual_arts,false -Tasha,newsmast.social,Football,football,false -wingingittravel,newsmast.social,AI,ai,false -wingingittravel,newsmast.social,Books & Literature,books_literature,false -wingingittravel,newsmast.social,Food & Drink,food_drink,false -wingingittravel,newsmast.social,Humour,humour,false -wingingittravel,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false -wingingittravel,newsmast.social,Music,music,false -wingingittravel,newsmast.social,Philosophy,philosophy,false -wingingittravel,newsmast.social,Technology,technology,false -Hedvig1Lindahl,newsmast.social,Football,football,true -wingingittravel,newsmast.social,Travel,travel,true -Serious_Feather,newsmast.social,History,history,false -Serious_Feather,newsmast.social,Philosophy,philosophy,false -Serious_Feather,newsmast.social,Social Sciences,social_sciences,false -islifearecipe,newsmast.social,Music,music,false -islifearecipe,newsmast.social,Travel,travel,false -islifearecipe,newsmast.social,Food & Drink,food_drink,true -DeliSaavedra,newsmast.social,Weather,weather,false -DeliSaavedra,newsmast.social,Women’s Voices,women_voices,false -DeliSaavedra,newsmast.social,Workers Rights,workers_rights,false -Hedvig1Lindahl,newsmast.social,Breaking News,breaking_news,false -Hedvig1Lindahl,newsmast.social,Climate change,climate_change,false -Hedvig1Lindahl,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -Hedvig1Lindahl,newsmast.social,Poverty & Inequality,poverty_inequality,false -Hedvig1Lindahl,newsmast.social,Movies,movies,false -Hedvig1Lindahl,newsmast.social,Politics,politics,false -maketheswitchAU,newsmast.social,Activism & Civil Rights,activism_civil_rights,false -maketheswitchAU,newsmast.social,AI,ai,false -maketheswitchAU,newsmast.social,Black Voices,black_voices,false -maketheswitchAU,newsmast.social,Disabled Voices,disabled_voices,false -maketheswitchAU,newsmast.social,Immigrants Rights,immigrants_rights,false -maketheswitchAU,newsmast.social,Indigenous Peoples,indigenous_peoples,false -maketheswitchAU,newsmast.social,LGBTQ+,lgbtq,false -maketheswitchAU,newsmast.social,TV & Radio,tv_radio,false -maketheswitchAU,newsmast.social,Women’s Voices,women_voices,false -maketheswitchAU,newsmast.social,Movies,movies,true -EasternBorder,newsmast.social,AI,ai,false -EasternBorder,newsmast.social,Architecture & Design,architecture_design,false -EasternBorder,newsmast.social,Books & Literature,books_literature,false -EasternBorder,newsmast.social,Breaking News,breaking_news,false -EasternBorder,newsmast.social,Creative Arts,creative_arts,false -EasternBorder,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -EasternBorder,newsmast.social,Engineering,engineering,false -theshescribe,newsmast.social,Academia & Research,academia_research,false -EasternBorder,newsmast.social,Food & Drink,food_drink,false -EasternBorder,newsmast.social,Football,football,false -EasternBorder,newsmast.social,Gaming,gaming,false -EasternBorder,newsmast.social,Government & Policy,government_policy,false -EasternBorder,newsmast.social,Healthcare,healthcare,false -EasternBorder,newsmast.social,History,history,false -posts2,newsmast.social,AI,ai,false -EasternBorder,newsmast.social,Humanities,humanities,false -EasternBorder,newsmast.social,Humour,humour,false -posts2,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false -posts2,newsmast.social,Biology,biology,false -EasternBorder,newsmast.social,Law & Justice,law_justice,false -EasternBorder,newsmast.social,Mathematics,mathematics,false -EasternBorder,newsmast.social,Movies,movies,false -EasternBorder,newsmast.social,Nature & Wildlife,nature_wildlife,false -EasternBorder,newsmast.social,Philosophy,philosophy,false -EasternBorder,newsmast.social,Photography,photography,false -EasternBorder,newsmast.social,Politics,politics,false -posts2,newsmast.social,Chemistry,chemistry,false -posts2,newsmast.social,Climate change,climate_change,false -posts2,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -EasternBorder,newsmast.social,Science,science,false -EasternBorder,newsmast.social,Social Sciences,social_sciences,false -EasternBorder,newsmast.social,Space,space,false -EasternBorder,newsmast.social,Sport,sport,false -EasternBorder,newsmast.social,Technology,technology,false -EasternBorder,newsmast.social,Travel,travel,false -EasternBorder,newsmast.social,TV & Radio,tv_radio,false -EasternBorder,newsmast.social,Ukraine Invasion,ukraine_invasion,false -EasternBorder,newsmast.social,Weather,weather,false -EasternBorder,newsmast.social,Journalism & Comment,news_comment_data,true -stephenreid,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false -stephenreid,newsmast.social,Breaking News,breaking_news,false -stephenreid,newsmast.social,Business,business,false -posts2,newsmast.social,Energy & Pollution,energy_pollution,false -stephenreid,newsmast.social,Climate change,climate_change,false -theshescribe,newsmast.social,Activism & Civil Rights,activism_civil_rights,false -posts2,newsmast.social,Engineering,engineering,false -stephenreid,newsmast.social,Energy & Pollution,energy_pollution,false -stephenreid,newsmast.social,Environment,environment,false -posts2,newsmast.social,Environment,environment,false -posts2,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false -posts2,newsmast.social,Mathematics,mathematics,false -newsmast,newsmast.social,Energy & Pollution,energy_pollution,false -newsmast,newsmast.social,Engineering,engineering,false -newsmast,newsmast.social,Environment,environment,false -dianajspencer,newsmast.social,AI,ai,false -dianajspencer,newsmast.social,Architecture & Design,architecture_design,false -dianajspencer,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false -dianajspencer,newsmast.social,Books & Literature,books_literature,false -theshescribe,newsmast.social,Architecture & Design,architecture_design,false -dianajspencer,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -dianajspencer,newsmast.social,Environment,environment,false -posts2,newsmast.social,Journalism & Comment,news_comment_data,false -dianajspencer,newsmast.social,History,history,false -dianajspencer,newsmast.social,Movies,movies,false -dianajspencer,newsmast.social,Philosophy,philosophy,false -dianajspencer,newsmast.social,Photography,photography,false -dianajspencer,newsmast.social,Physics,physics,false -posts2,newsmast.social,Physics,physics,false -dianajspencer,newsmast.social,Science,science,false -dianajspencer,newsmast.social,Space,space,false -posts2,newsmast.social,Poverty & Inequality,poverty_inequality,false -dianajspencer,newsmast.social,Technology,technology,false -dianajspencer,newsmast.social,Visual Arts,visual_arts,false -posts2,newsmast.social,Programming,programming,false -dianajspencer,newsmast.social,Humanities,humanities,true -Freddie3,newsmast.social,Workers Rights,workers_rights,false -posts2,newsmast.social,Science,science,false -Freddie3,newsmast.social,Indigenous Peoples,indigenous_peoples,false -Freddie3,newsmast.social,Immigrants Rights,immigrants_rights,false -Freddie3,newsmast.social,Disabled Voices,disabled_voices,false -Freddie3,newsmast.social,Black Voices,black_voices,false -Freddie3,newsmast.social,Activism & Civil Rights,activism_civil_rights,false -posts2,newsmast.social,Social Media,social_media,false -posts2,newsmast.social,Space,space,false -posts2,newsmast.social,Technology,technology,false -newsmast,newsmast.social,Food & Drink,food_drink,false -posts2,newsmast.social,Ukraine Invasion,ukraine_invasion,false -Freddie3,newsmast.social,Humour,humour,false -newsmast,newsmast.social,Football,football,false -newsmast,newsmast.social,Gaming,gaming,false -newsmast,newsmast.social,Government & Policy,government_policy,false -posts2,newsmast.social,Weather,weather,false -Freddie3,newsmast.social,Movies,movies,false -newsmast,newsmast.social,Healthcare,healthcare,false -posts2,newsmast.social,Breaking News,breaking_news,true -theshescribe,newsmast.social,Black Voices,black_voices,false -S33J,newsmast.social,Football,football,false -sonia_sna0002,newsmast.social,Ukraine Invasion,ukraine_invasion,false -sonia_sna0002,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false -sonia_sna0002,newsmast.social,Breaking News,breaking_news,false -morefunwithjuan,newsmast.social,Architecture & Design,architecture_design,false -morefunwithjuan,newsmast.social,Food & Drink,food_drink,false -morefunwithjuan,newsmast.social,Movies,movies,false -morefunwithjuan,newsmast.social,Music,music,false -morefunwithjuan,newsmast.social,Nature & Wildlife,nature_wildlife,false -morefunwithjuan,newsmast.social,Visual Arts,visual_arts,false -morefunwithjuan,newsmast.social,Weather,weather,false -morefunwithjuan,newsmast.social,Travel,travel,true -Sinobabble,newsmast.social,AI,ai,false -Sinobabble,newsmast.social,Books & Literature,books_literature,false -Sinobabble,newsmast.social,Breaking News,breaking_news,false -Sinobabble,newsmast.social,Business,business,false -Sinobabble,newsmast.social,History,history,false -Sinobabble,newsmast.social,Journalism & Comment,news_comment_data,false -rozenberg,newsmast.social,Law & Justice,law_justice,true -Sinobabble,newsmast.social,Philosophy,philosophy,false -Sinobabble,newsmast.social,Technology,technology,false -Sinobabble,newsmast.social,Humanities,humanities,true -stephenreid,newsmast.social,Gaming,gaming,false -theshescribe,newsmast.social,Books & Literature,books_literature,false -stephenreid,newsmast.social,Markets & Finance,markets_finance,false -stephenreid,newsmast.social,Movies,movies,false -stephenreid,newsmast.social,Music,music,false -stephenreid,newsmast.social,Journalism & Comment,news_comment_data,false -EV_Musings,newsmast.social,Climate change,climate_change,false -EV_Musings,newsmast.social,Engineering,engineering,false -theshescribe,newsmast.social,Breaking News,breaking_news,false -theshescribe,newsmast.social,Business,business,false -EV_Musings,newsmast.social,Physics,physics,false -EV_Musings,newsmast.social,Travel,travel,false -theshescribe,newsmast.social,Creative Arts,creative_arts,false -stephenreid,newsmast.social,Performing Arts,performing_arts,false -theshescribe,newsmast.social,Disabled Voices,disabled_voices,false -stephenreid,newsmast.social,Photography,photography,false -stephenreid,newsmast.social,Politics,politics,false -theshescribe,newsmast.social,Food & Drink,food_drink,false -theshescribe,newsmast.social,Gaming,gaming,false -stephenreid,newsmast.social,TV & Radio,tv_radio,false -stephenreid,newsmast.social,Ukraine Invasion,ukraine_invasion,false -stephenreid,newsmast.social,Visual Arts,visual_arts,false -sonia_sna0002,newsmast.social,Climate change,climate_change,false -stephenreid,newsmast.social,Weather,weather,false -NoisyBits,newsmast.social,Activism & Civil Rights,activism_civil_rights,false -NoisyBits,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -NoisyBits,newsmast.social,History,history,false -samarpahwa,newsmast.social,Government & Policy,government_policy,true -NoisyBits,newsmast.social,Poverty & Inequality,poverty_inequality,false -NoisyBits,newsmast.social,LGBTQ+,lgbtq,false -NoisyBits,newsmast.social,Philosophy,philosophy,false -NoisyBits,newsmast.social,Social Sciences,social_sciences,false -NoisyBits,newsmast.social,Visual Arts,visual_arts,false -NoisyBits,newsmast.social,Humanities,humanities,true -stephenreid,newsmast.social,Technology,technology,true -newsmast,newsmast.social,History,history,false -sonia_sna0002,newsmast.social,Energy & Pollution,energy_pollution,false -newsmast,newsmast.social,Humanities,humanities,false -newsmast,newsmast.social,Humour,humour,false -newsmast,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false -newsmast,newsmast.social,Immigrants Rights,immigrants_rights,false -breakingnews,newsmast.social,Journalism & Comment,news_comment_data,false -newsmast,newsmast.social,Indigenous Peoples,indigenous_peoples,false -newsmast,newsmast.social,Poverty & Inequality,poverty_inequality,false -Tasha,newsmast.social,Environment,environment,true -sonia_sna0002,newsmast.social,Environment,environment,false -sonia_sna0002,newsmast.social,History,history,false -sonia_sna0002,newsmast.social,Humanities,humanities,false -sonia_sna0002,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false -sonia_sna0002,newsmast.social,Journalism & Comment,news_comment_data,false -sonia_sna0002,newsmast.social,Philosophy,philosophy,false -sonia_sna0002,newsmast.social,Poverty & Inequality,poverty_inequality,false -sonia_sna0002,newsmast.social,Social Media,social_media,false -sonia_sna0002,newsmast.social,Social Sciences,social_sciences,false -rozenberg,newsmast.social,Books & Literature,books_literature,false -rozenberg,newsmast.social,Breaking News,breaking_news,false -sonia_sna0002,newsmast.social,Weather,weather,false -rozenberg,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -rozenberg,newsmast.social,Government & Policy,government_policy,false -rozenberg,newsmast.social,History,history,false -sonia_sna0002,newsmast.social,Democracy & Human Rights,democracy_human_rights,true -rozenberg,newsmast.social,Humanities,humanities,false -breakingnews,newsmast.social,Social Media,social_media,false -breakingnews,newsmast.social,Ukraine Invasion,ukraine_invasion,false -rozenberg,newsmast.social,Journalism & Comment,news_comment_data,false -rozenberg,newsmast.social,Philosophy,philosophy,false -rozenberg,newsmast.social,Politics,politics,false -breakingnews,newsmast.social,Weather,weather,false -rozenberg,newsmast.social,Workers Rights,workers_rights,false -breakingnews,newsmast.social,Breaking News,breaking_news,true -theshescribe,newsmast.social,Government & Policy,government_policy,false -theshescribe,newsmast.social,Healthcare,healthcare,false -UniverseMoment,newsmast.social,Biology,biology,false -samarpahwa,newsmast.social,Breaking News,breaking_news,false -samarpahwa,newsmast.social,Business,business,false -theshescribe,newsmast.social,History,history,false -theshescribe,newsmast.social,Humanities,humanities,false -samarpahwa,newsmast.social,Creative Arts,creative_arts,false -samarpahwa,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -samarpahwa,newsmast.social,Food & Drink,food_drink,false -samarpahwa,newsmast.social,Healthcare,healthcare,false -samarpahwa,newsmast.social,Humour,humour,false -samarpahwa,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false -UniverseMoment,newsmast.social,Chemistry,chemistry,false -UniverseMoment,newsmast.social,Engineering,engineering,false -UniverseMoment,newsmast.social,Mathematics,mathematics,false -UniverseMoment,newsmast.social,Physics,physics,false -UniverseMoment,newsmast.social,Space,space,false -UniverseMoment,newsmast.social,Science,science,true -Freddie3,newsmast.social,Social Sciences,social_sciences,false -Freddie3,newsmast.social,Humanities,humanities,false -Freddie3,newsmast.social,History,history,false -Freddie3,newsmast.social,Environment,environment,false -Freddie3,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false -Freddie3,newsmast.social,Climate change,climate_change,false -Freddie3,newsmast.social,Energy & Pollution,energy_pollution,false -samarpahwa,newsmast.social,Poverty & Inequality,poverty_inequality,false -theshescribe,newsmast.social,Humour,humour,false -theshescribe,newsmast.social,Immigrants Rights,immigrants_rights,false -samarpahwa,newsmast.social,Law & Justice,law_justice,false -theshescribe,newsmast.social,Indigenous Peoples,indigenous_peoples,false -samarpahwa,newsmast.social,Markets & Finance,markets_finance,false -samarpahwa,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false -samarpahwa,newsmast.social,Nature & Wildlife,nature_wildlife,false -samarpahwa,newsmast.social,Journalism & Comment,news_comment_data,false -theshescribe,newsmast.social,Law & Justice,law_justice,false -samarpahwa,newsmast.social,Pets,pets,false -samarpahwa,newsmast.social,Politics,politics,false -maungchawnwe,newsmast.social,Engineering,engineering,true -theshescribe,newsmast.social,LGBTQ+,lgbtq,false -samarpahwa,newsmast.social,Puzzles,puzzles,false -theshescribe,newsmast.social,Markets & Finance,markets_finance,false -theshescribe,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false -samarpahwa,newsmast.social,Travel,travel,false -samarpahwa,newsmast.social,Ukraine Invasion,ukraine_invasion,false -samarpahwa,newsmast.social,Weather,weather,false -thisisqueerly,newsmast.social,TV & Radio,tv_radio,false -thisisqueerly,newsmast.social,LGBTQ+,lgbtq,true -Alan_Moran,newsmast.social,Weather,weather,false -Alan_Moran,newsmast.social,Breaking News,breaking_news,true -mattskal,newsmast.social,Business,business,false -petenothing,newsmast.social,Football,football,false -mervecaldiran,newsmast.social,Journalism & Comment,news_comment_data,false -mervecaldiran,newsmast.social,Performing Arts,performing_arts,false -protein,newsmast.social,Business,business,false -protein,newsmast.social,Chemistry,chemistry,false -protein,newsmast.social,Climate change,climate_change,false -protein,newsmast.social,Creative Arts,creative_arts,false -protein,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -protein,newsmast.social,Disabled Voices,disabled_voices,false -protein,newsmast.social,Energy & Pollution,energy_pollution,false -protein,newsmast.social,Engineering,engineering,false -protein,newsmast.social,Environment,environment,false -maungchawnwe,newsmast.social,Academia & Research,academia_research,false -maungchawnwe,newsmast.social,AI,ai,false -protein,newsmast.social,Food & Drink,food_drink,false -mervecaldiran,newsmast.social,Philosophy,philosophy,false -protein,newsmast.social,Gaming,gaming,false -protein,newsmast.social,Government & Policy,government_policy,false -maungchawnwe,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false -protein,newsmast.social,Healthcare,healthcare,false -protein,newsmast.social,History,history,false -maungchawnwe,newsmast.social,Biology,biology,false -protein,newsmast.social,Humanities,humanities,false -protein,newsmast.social,Humour,humour,false -protein,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false -protein,newsmast.social,Immigrants Rights,immigrants_rights,false -protein,newsmast.social,Indigenous Peoples,indigenous_peoples,false -protein,newsmast.social,Poverty & Inequality,poverty_inequality,false -maungchawnwe,newsmast.social,Breaking News,breaking_news,false -maungchawnwe,newsmast.social,Chemistry,chemistry,false -protein,newsmast.social,Law & Justice,law_justice,false -protein,newsmast.social,LGBTQ+,lgbtq,false -maungchawnwe,newsmast.social,Climate change,climate_change,false -protein,newsmast.social,Markets & Finance,markets_finance,false -protein,newsmast.social,Mathematics,mathematics,false -MichaelMarshall,newsmast.social,Architecture & Design,architecture_design,false -MichaelMarshall,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false -MichaelMarshall,newsmast.social,Biology,biology,false -MichaelMarshall,newsmast.social,Books & Literature,books_literature,false -MichaelMarshall,newsmast.social,Breaking News,breaking_news,false -maungchawnwe,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -MichaelMarshall,newsmast.social,Chemistry,chemistry,false -maungchawnwe,newsmast.social,Energy & Pollution,energy_pollution,false -MichaelMarshall,newsmast.social,Climate change,climate_change,false -maungchawnwe,newsmast.social,Environment,environment,false -MichaelMarshall,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -maungchawnwe,newsmast.social,Government & Policy,government_policy,false -MichaelMarshall,newsmast.social,Energy & Pollution,energy_pollution,false -MichaelMarshall,newsmast.social,Engineering,engineering,false -MichaelMarshall,newsmast.social,Environment,environment,false -maungchawnwe,newsmast.social,Healthcare,healthcare,false -MichaelMarshall,newsmast.social,Gaming,gaming,false -MichaelMarshall,newsmast.social,Government & Policy,government_policy,false -MichaelMarshall,newsmast.social,Healthcare,healthcare,false -MichaelMarshall,newsmast.social,History,history,false -maungchawnwe,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false -MichaelMarshall,newsmast.social,Humanities,humanities,false -MichaelMarshall,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false -MichaelMarshall,newsmast.social,Poverty & Inequality,poverty_inequality,false -maungchawnwe,newsmast.social,Law & Justice,law_justice,false -maungchawnwe,newsmast.social,Mathematics,mathematics,false -MichaelMarshall,newsmast.social,Law & Justice,law_justice,false -MichaelMarshall,newsmast.social,Mathematics,mathematics,false -MichaelMarshall,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false -MichaelMarshall,newsmast.social,Movies,movies,false -maungchawnwe,newsmast.social,Journalism & Comment,news_comment_data,false -maungchawnwe,newsmast.social,Physics,physics,false -maungchawnwe,newsmast.social,Politics,politics,false -maungchawnwe,newsmast.social,Poverty & Inequality,poverty_inequality,false -maungchawnwe,newsmast.social,Programming,programming,false -maungchawnwe,newsmast.social,Science,science,false -MichaelMarshall,newsmast.social,Music,music,false -MichaelMarshall,newsmast.social,Journalism & Comment,news_comment_data,false -MichaelMarshall,newsmast.social,Performing Arts,performing_arts,false -MichaelMarshall,newsmast.social,Philosophy,philosophy,false -MichaelMarshall,newsmast.social,Photography,photography,false -MichaelMarshall,newsmast.social,Physics,physics,false -MichaelMarshall,newsmast.social,Politics,politics,false -theshescribe,newsmast.social,Movies,movies,false -theshescribe,newsmast.social,Music,music,false -theshescribe,newsmast.social,Nature & Wildlife,nature_wildlife,false -ThomasFoster,newsmast.social,Academia & Research,academia_research,false -ThomasFoster,newsmast.social,Activism & Civil Rights,activism_civil_rights,false -MichaelMarshall,newsmast.social,Space,space,false -ThomasFoster,newsmast.social,Gaming,gaming,false -MichaelMarshall,newsmast.social,TV & Radio,tv_radio,false -MichaelMarshall,newsmast.social,Ukraine Invasion,ukraine_invasion,false -MichaelMarshall,newsmast.social,Visual Arts,visual_arts,false -ThomasFoster,newsmast.social,Immigrants Rights,immigrants_rights,false -MichaelMarshall,newsmast.social,Weather,weather,false -ThomasFoster,newsmast.social,Indigenous Peoples,indigenous_peoples,false -MichaelMarshall,newsmast.social,Science,science,true -ThomasFoster,newsmast.social,Ukraine Invasion,ukraine_invasion,false -newsmast,newsmast.social,Law & Justice,law_justice,false -theshescribe,newsmast.social,Journalism & Comment,news_comment_data,false -dadonthemoveph,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false -Andy,newsmast.social,Politics,politics,false -newsmast,newsmast.social,LGBTQ+,lgbtq,false -ThomasFoster,newsmast.social,Workers Rights,workers_rights,false -lorenaflag,newsmast.social,Activism & Civil Rights,activism_civil_rights,false -ThomasFoster,newsmast.social,Movies,movies,true -lorenaflag,newsmast.social,Photography,photography,false -lorenaflag,newsmast.social,Social Sciences,social_sciences,false -lorenaflag,newsmast.social,Technology,technology,false -lorenaflag,newsmast.social,TV & Radio,tv_radio,false -lorenaflag,newsmast.social,Visual Arts,visual_arts,false -lorenaflag,newsmast.social,Women’s Voices,women_voices,true -theshescribe,newsmast.social,Performing Arts,performing_arts,false -newsmast,newsmast.social,Markets & Finance,markets_finance,false -maungchawnwe,newsmast.social,Social Media,social_media,false -Omega_RF,newsmast.social,Democracy & Human Rights,democracy_human_rights,true -maungchawnwe,newsmast.social,Space,space,false -maungchawnwe,newsmast.social,Technology,technology,false -maungchawnwe,newsmast.social,Ukraine Invasion,ukraine_invasion,false -maungchawnwe,newsmast.social,US Politics,us_politics,false -maungchawnwe,newsmast.social,Weather,weather,false -nayyaung9,newsmast.social,Performing Arts,performing_arts,true -Omega_RF,newsmast.social,Activism & Civil Rights,activism_civil_rights,false -andrewfeinstein,newsmast.social,Breaking News,breaking_news,false -theshescribe,newsmast.social,Pets,pets,false -andrewfeinstein,newsmast.social,Journalism & Comment,news_comment_data,false -andrewfeinstein,newsmast.social,Ukraine Invasion,ukraine_invasion,false -andrewfeinstein,newsmast.social,Weather,weather,false -andrewfeinstein,newsmast.social,Politics,politics,true -Omega_RF,newsmast.social,Breaking News,breaking_news,false -theshescribe,newsmast.social,Philosophy,philosophy,false -theshescribe,newsmast.social,Photography,photography,false -theshescribe,newsmast.social,Politics,politics,false -Omega_RF,newsmast.social,Government & Policy,government_policy,false -manii,newsmast.social,LGBTQ+,lgbtq,false -theshescribe,newsmast.social,Puzzles,puzzles,false -manii,newsmast.social,Sport,sport,false -manii,newsmast.social,Technology,technology,false -manii,newsmast.social,Breaking News,breaking_news,true -theshescribe,newsmast.social,Social Media,social_media,false -theshescribe,newsmast.social,Social Sciences,social_sciences,false -Omega_RF,newsmast.social,Law & Justice,law_justice,false -Omega_RF,newsmast.social,Journalism & Comment,news_comment_data,false -Omega_RF,newsmast.social,Politics,politics,false -vividbiology,newsmast.social,Biology,biology,false -vividbiology,newsmast.social,Chemistry,chemistry,false -vividbiology,newsmast.social,Technology,technology,false -vividbiology,newsmast.social,Visual Arts,visual_arts,false -vividbiology,newsmast.social,Science,science,true -theshescribe,newsmast.social,Travel,travel,false -theshescribe,newsmast.social,TV & Radio,tv_radio,false -theshescribe,newsmast.social,Ukraine Invasion,ukraine_invasion,false -orel,newsmast.social,Books & Literature,books_literature,false -orel,newsmast.social,Poverty & Inequality,poverty_inequality,false -orel,newsmast.social,Social Sciences,social_sciences,false -orel,newsmast.social,History,history,true -Headfort,newsmast.social,Technology,technology,false -JulieSpray,newsmast.social,Activism & Civil Rights,activism_civil_rights,false -JulieSpray,newsmast.social,AI,ai,false -JulieSpray,newsmast.social,Black Voices,black_voices,false -JulieSpray,newsmast.social,Breaking News,breaking_news,false -JulieSpray,newsmast.social,Disabled Voices,disabled_voices,false -JulieSpray,newsmast.social,Healthcare,healthcare,false -JulieSpray,newsmast.social,Immigrants Rights,immigrants_rights,false -JulieSpray,newsmast.social,Indigenous Peoples,indigenous_peoples,false -JulieSpray,newsmast.social,Poverty & Inequality,poverty_inequality,false -JulieSpray,newsmast.social,Law & Justice,law_justice,false -JulieSpray,newsmast.social,LGBTQ+,lgbtq,false -JulieSpray,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false -JulieSpray,newsmast.social,Journalism & Comment,news_comment_data,false -JulieSpray,newsmast.social,Politics,politics,false -theshescribe,newsmast.social,US Politics,us_politics,false -theshescribe,newsmast.social,Visual Arts,visual_arts,false -JulieSpray,newsmast.social,Science,science,false -JulieSpray,newsmast.social,Technology,technology,false -JulieSpray,newsmast.social,TV & Radio,tv_radio,false -JulieSpray,newsmast.social,Ukraine Invasion,ukraine_invasion,false -JulieSpray,newsmast.social,Visual Arts,visual_arts,false -JulieSpray,newsmast.social,Women’s Voices,women_voices,false -JulieSpray,newsmast.social,Workers Rights,workers_rights,false -JulieSpray,newsmast.social,Social Sciences,social_sciences,true -theshescribe,newsmast.social,Weather,weather,false -petenothing,newsmast.social,History,history,false -macroliter,newsmast.social,Activism & Civil Rights,activism_civil_rights,false -macroliter,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false -macroliter,newsmast.social,Biology,biology,false -nowinaminute,newsmast.social,Activism & Civil Rights,activism_civil_rights,false -nowinaminute,newsmast.social,AI,ai,false -nowinaminute,newsmast.social,Humour,humour,false -Zamzam,newsmast.social,Black Voices,black_voices,false -Zamzam,newsmast.social,Climate change,climate_change,false -Supantha,newsmast.social,Breaking News,breaking_news,false -sithudev,newsmast.social,Academia & Research,academia_research,false -sithudev,newsmast.social,Activism & Civil Rights,activism_civil_rights,false -sithudev,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false -Supantha,newsmast.social,Government & Policy,government_policy,false -sithudev,newsmast.social,Black Voices,black_voices,false -Supantha,newsmast.social,Journalism & Comment,news_comment_data,false -Supantha,newsmast.social,Politics,politics,false -Supantha,newsmast.social,Technology,technology,false -Supantha,newsmast.social,Ukraine Invasion,ukraine_invasion,false -Supantha,newsmast.social,Weather,weather,false -Supantha,newsmast.social,AI,ai,true -Zamzam,newsmast.social,Creative Arts,creative_arts,false -mervecaldiran,newsmast.social,Activism & Civil Rights,activism_civil_rights,false -mervecaldiran,newsmast.social,Architecture & Design,architecture_design,false -mervecaldiran,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false -mervecaldiran,newsmast.social,Black Voices,black_voices,false -mervecaldiran,newsmast.social,Books & Literature,books_literature,false -mervecaldiran,newsmast.social,Breaking News,breaking_news,false -sithudev,newsmast.social,Climate change,climate_change,false -mervecaldiran,newsmast.social,Climate change,climate_change,false -sithudev,newsmast.social,Disabled Voices,disabled_voices,false -Player2,newsmast.social,Breaking News,breaking_news,false -sithudev,newsmast.social,Energy & Pollution,energy_pollution,false -Player2,newsmast.social,Football,football,false -Player2,newsmast.social,Journalism & Comment,news_comment_data,false -Player2,newsmast.social,Politics,politics,false -sithudev,newsmast.social,Environment,environment,false -Player2,newsmast.social,Sport,sport,false -Player2,newsmast.social,Ukraine Invasion,ukraine_invasion,false -Player2,newsmast.social,Weather,weather,false -kazwan,newsmast.social,Technology,technology,true -sithudev,newsmast.social,Government & Policy,government_policy,false -mervecaldiran,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -sithudev,newsmast.social,Healthcare,healthcare,false -mervecaldiran,newsmast.social,Energy & Pollution,energy_pollution,false -sithudev,newsmast.social,Immigrants Rights,immigrants_rights,false -mervecaldiran,newsmast.social,Government & Policy,government_policy,false -mervecaldiran,newsmast.social,History,history,false -Player2,newsmast.social,Movies,movies,false -sithudev,newsmast.social,Indigenous Peoples,indigenous_peoples,false -protein,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false -protein,newsmast.social,Movies,movies,false -protein,newsmast.social,Music,music,false -protein,newsmast.social,Nature & Wildlife,nature_wildlife,false -protein,newsmast.social,Journalism & Comment,news_comment_data,false -protein,newsmast.social,Performing Arts,performing_arts,false -sithudev,newsmast.social,Law & Justice,law_justice,false -protein,newsmast.social,Pets,pets,false -mervecaldiran,newsmast.social,Environment,environment,true -sithudev,newsmast.social,LGBTQ+,lgbtq,false -Player2,newsmast.social,Books & Literature,books_literature,false -sithudev,newsmast.social,Journalism & Comment,news_comment_data,false -Player2,newsmast.social,Gaming,gaming,true -sithudev,newsmast.social,Politics,politics,false -kazwan,newsmast.social,AI,ai,false -kazwan,newsmast.social,Breaking News,breaking_news,false -sithudev,newsmast.social,Social Media,social_media,false -kazwan,newsmast.social,Food & Drink,food_drink,false -sithudev,newsmast.social,Ukraine Invasion,ukraine_invasion,false -sithudev,newsmast.social,US Politics,us_politics,false -kazwan,newsmast.social,Humour,humour,false -sithudev,newsmast.social,Weather,weather,false -kazwan,newsmast.social,Journalism & Comment,news_comment_data,false -kazwan,newsmast.social,Space,space,false -sithudev,newsmast.social,Women’s Voices,women_voices,false -kazwan,newsmast.social,Travel,travel,false -sithudev,newsmast.social,Breaking News,breaking_news,true -icey_mark,newsmast.social,Breaking News,breaking_news,false -icey_mark,newsmast.social,Energy & Pollution,energy_pollution,false -icey_mark,newsmast.social,Environment,environment,false -icey_mark,newsmast.social,Football,football,false -icey_mark,newsmast.social,History,history,false -icey_mark,newsmast.social,Poverty & Inequality,poverty_inequality,false -icey_mark,newsmast.social,Journalism & Comment,news_comment_data,false -icey_mark,newsmast.social,Physics,physics,false -icey_mark,newsmast.social,Space,space,false -icey_mark,newsmast.social,Ukraine Invasion,ukraine_invasion,false -icey_mark,newsmast.social,Climate change,climate_change,true -protein,newsmast.social,Philosophy,philosophy,false -protein,newsmast.social,Photography,photography,false -protein,newsmast.social,Physics,physics,false -protein,newsmast.social,Politics,politics,false -protein,newsmast.social,Technology,technology,true -luked522,newsmast.social,Academia & Research,academia_research,false -theshescribe,newsmast.social,Workers Rights,workers_rights,false -protein,newsmast.social,Puzzles,puzzles,false -reverb,newsmast.social,Academia & Research,academia_research,false -reverb,newsmast.social,Activism & Civil Rights,activism_civil_rights,false -protein,newsmast.social,Science,science,false -protein,newsmast.social,Social Sciences,social_sciences,false -protein,newsmast.social,Space,space,false -protein,newsmast.social,Travel,travel,false -protein,newsmast.social,TV & Radio,tv_radio,false -protein,newsmast.social,Ukraine Invasion,ukraine_invasion,false -protein,newsmast.social,Visual Arts,visual_arts,false -reverb,newsmast.social,Architecture & Design,architecture_design,false -protein,newsmast.social,Weather,weather,false -reverb,newsmast.social,Biology,biology,false -protein,newsmast.social,Women’s Voices,women_voices,false -protein,newsmast.social,Workers Rights,workers_rights,false -reverb,newsmast.social,Black Voices,black_voices,false -Zamzam,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -Zamzam,newsmast.social,Environment,environment,false -reverb,newsmast.social,Books & Literature,books_literature,false -reverb,newsmast.social,Breaking News,breaking_news,false -reverb,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -Zamzam,newsmast.social,Humour,humour,false -Zamzam,newsmast.social,Immigrants Rights,immigrants_rights,false -Zamzam,newsmast.social,Poverty & Inequality,poverty_inequality,false -reverb,newsmast.social,Disabled Voices,disabled_voices,false -reverb,newsmast.social,Engineering,engineering,false -Zamzam,newsmast.social,Travel,travel,false -Zamzam,newsmast.social,Activism & Civil Rights,activism_civil_rights,true -reverb,newsmast.social,Football,football,false -reverb,newsmast.social,Gaming,gaming,false -reverb,newsmast.social,Government & Policy,government_policy,false -reverb,newsmast.social,Healthcare,healthcare,false -reverb,newsmast.social,History,history,false -reverb,newsmast.social,Humanities,humanities,false -reverb,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false -reverb,newsmast.social,Immigrants Rights,immigrants_rights,false -reverb,newsmast.social,Indigenous Peoples,indigenous_peoples,false -reverb,newsmast.social,Law & Justice,law_justice,false -Academistry,newsmast.social,Biology,biology,false -Academistry,newsmast.social,Breaking News,breaking_news,false -reverb,newsmast.social,Movies,movies,false -reverb,newsmast.social,Music,music,false -Academistry,newsmast.social,Government & Policy,government_policy,false -Academistry,newsmast.social,Healthcare,healthcare,false -Academistry,newsmast.social,Poverty & Inequality,poverty_inequality,false -reverb,newsmast.social,Journalism & Comment,news_comment_data,false -Academistry,newsmast.social,Journalism & Comment,news_comment_data,false -Academistry,newsmast.social,Politics,politics,false -reverb,newsmast.social,Photography,photography,false -Academistry,newsmast.social,Science,science,false -Academistry,newsmast.social,Chemistry,chemistry,true -reverb,newsmast.social,AI,ai,true -marianaa,newsmast.social,Business,business,false -marianaa,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -DrECSkirmuntt,newsmast.social,AI,ai,false -DrECSkirmuntt,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false -DrECSkirmuntt,newsmast.social,Biology,biology,false -DrECSkirmuntt,newsmast.social,Breaking News,breaking_news,false -DrECSkirmuntt,newsmast.social,Food & Drink,food_drink,false -DrECSkirmuntt,newsmast.social,Gaming,gaming,false -DrECSkirmuntt,newsmast.social,Movies,movies,false -DrECSkirmuntt,newsmast.social,Nature & Wildlife,nature_wildlife,false -DrECSkirmuntt,newsmast.social,Journalism & Comment,news_comment_data,false -DrECSkirmuntt,newsmast.social,Pets,pets,false -DrECSkirmuntt,newsmast.social,Space,space,false -DrECSkirmuntt,newsmast.social,Travel,travel,false -DrECSkirmuntt,newsmast.social,Weather,weather,false -DrECSkirmuntt,newsmast.social,Science,science,true -TVPsychologist,newsmast.social,Journalism & Comment,news_comment_data,false -TVPsychologist,newsmast.social,Politics,politics,false -TVPsychologist,newsmast.social,TV & Radio,tv_radio,false -JustinWeinberg,newsmast.social,AI,ai,false -JustinWeinberg,newsmast.social,Environment,environment,false -JustinWeinberg,newsmast.social,Humanities,humanities,false -JustinWeinberg,newsmast.social,Music,music,false -JustinWeinberg,newsmast.social,Science,science,false -JustinWeinberg,newsmast.social,Social Sciences,social_sciences,false -JustinWeinberg,newsmast.social,Visual Arts,visual_arts,false -JustinWeinberg,newsmast.social,Philosophy,philosophy,true -Tasha,newsmast.social,Immigrants Rights,immigrants_rights,false -Tasha,newsmast.social,Mathematics,mathematics,false -Tasha,newsmast.social,Architecture & Design,architecture_design,false -FinlandatWar,newsmast.social,Books & Literature,books_literature,false -FinlandatWar,newsmast.social,Breaking News,breaking_news,false -FinlandatWar,newsmast.social,Gaming,gaming,false -FinlandatWar,newsmast.social,Humanities,humanities,false -FinlandatWar,newsmast.social,Movies,movies,false -FinlandatWar,newsmast.social,Journalism & Comment,news_comment_data,false -FinlandatWar,newsmast.social,TV & Radio,tv_radio,false -FinlandatWar,newsmast.social,Ukraine Invasion,ukraine_invasion,false -FinlandatWar,newsmast.social,History,history,true -ErichWeikert,newsmast.social,AI,ai,false -ErichWeikert,newsmast.social,Architecture & Design,architecture_design,false -ErichWeikert,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false -ErichWeikert,newsmast.social,Chemistry,chemistry,false -ErichWeikert,newsmast.social,Energy & Pollution,energy_pollution,false -ErichWeikert,newsmast.social,Engineering,engineering,false -ErichWeikert,newsmast.social,Environment,environment,false -theshescribe,newsmast.social,Women’s Voices,women_voices,true -reverb,newsmast.social,Physics,physics,false -ErichWeikert,newsmast.social,Photography,photography,false -ErichWeikert,newsmast.social,Physics,physics,false -reverb,newsmast.social,Politics,politics,false -reverb,newsmast.social,Poverty & Inequality,poverty_inequality,false -reverb,newsmast.social,Science,science,false -ErichWeikert,newsmast.social,Science,science,false -ErichWeikert,newsmast.social,Space,space,false -ErichWeikert,newsmast.social,Technology,technology,false -ErichWeikert,newsmast.social,Visual Arts,visual_arts,false -ErichWeikert,newsmast.social,Humanities,humanities,true -macroliter,newsmast.social,Climate change,climate_change,false -macroliter,newsmast.social,Environment,environment,false -reverb,newsmast.social,Social Sciences,social_sciences,false -reverb,newsmast.social,Space,space,false -macroliter,newsmast.social,Science,science,false -reverb,newsmast.social,Technology,technology,false -katieharbath,newsmast.social,Business,business,false -katieharbath,newsmast.social,Food & Drink,food_drink,false -katieharbath,newsmast.social,Journalism & Comment,news_comment_data,false -reverb,newsmast.social,TV & Radio,tv_radio,false -katieharbath,newsmast.social,Technology,technology,false -katieharbath,newsmast.social,Democracy & Human Rights,democracy_human_rights,true -BriannaABaker,newsmast.social,Activism & Civil Rights,activism_civil_rights,false -BriannaABaker,newsmast.social,Breaking News,breaking_news,false -BriannaABaker,newsmast.social,Creative Arts,creative_arts,false -reverb,newsmast.social,US Politics,us_politics,false -BriannaABaker,newsmast.social,Humour,humour,false -BriannaABaker,newsmast.social,Poverty & Inequality,poverty_inequality,false -vidit,newsmast.social,AI,ai,false -vidit,newsmast.social,Biology,biology,false -vidit,newsmast.social,Breaking News,breaking_news,false -vidit,newsmast.social,Business,business,false -vidit,newsmast.social,Chemistry,chemistry,false -reverb,newsmast.social,US Sport,us_sport,false -reverb,newsmast.social,Visual Arts,visual_arts,false -reverb,newsmast.social,Weather,weather,false -reverb,newsmast.social,Women’s Voices,women_voices,false -vidit,newsmast.social,Engineering,engineering,false -putuu,newsmast.social,Breaking News,breaking_news,false -putuu,newsmast.social,Social Media,social_media,false -putuu,newsmast.social,Ukraine Invasion,ukraine_invasion,false -vidit,newsmast.social,Government & Policy,government_policy,false -vidit,newsmast.social,Healthcare,healthcare,false -luked522,newsmast.social,Architecture & Design,architecture_design,false -putuu,newsmast.social,Weather,weather,false -vidit,newsmast.social,Law & Justice,law_justice,false -vidit,newsmast.social,Markets & Finance,markets_finance,false -vidit,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false -vidit,newsmast.social,Journalism & Comment,news_comment_data,false -putuu,newsmast.social,Journalism & Comment,news_comment_data,true -vidit,newsmast.social,Physics,physics,false -vidit,newsmast.social,Politics,politics,false -luked522,newsmast.social,Biology,biology,false -vidit,newsmast.social,Science,science,false -vidit,newsmast.social,Space,space,false -vidit,newsmast.social,Technology,technology,false -vidit,newsmast.social,Ukraine Invasion,ukraine_invasion,false -vidit,newsmast.social,Weather,weather,false -vidit,newsmast.social,Mathematics,mathematics,true -luked522,newsmast.social,Gaming,gaming,false -BriannaABaker,newsmast.social,Journalism & Comment,news_comment_data,false -BriannaABaker,newsmast.social,Politics,politics,false -docip,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false -docip,newsmast.social,Climate change,climate_change,false -luked522,newsmast.social,Government & Policy,government_policy,false -luked522,newsmast.social,Humanities,humanities,false -docip,newsmast.social,Energy & Pollution,energy_pollution,false -docip,newsmast.social,Environment,environment,false -luked522,newsmast.social,LGBTQ+,lgbtq,false -luked522,newsmast.social,Philosophy,philosophy,false -luked522,newsmast.social,Photography,photography,false -docip,newsmast.social,Social Sciences,social_sciences,false -luked522,newsmast.social,Politics,politics,false -luked522,newsmast.social,Science,science,false -docip,newsmast.social,Indigenous Peoples,indigenous_peoples,true -discerningcat,newsmast.social,Food & Drink,food_drink,false -discerningcat,newsmast.social,Nature & Wildlife,nature_wildlife,false -discerningcat,newsmast.social,Travel,travel,false -discerningcat,newsmast.social,Pets,pets,true -DisabledWorld,newsmast.social,AI,ai,false -DisabledWorld,newsmast.social,Biology,biology,false -DisabledWorld,newsmast.social,Books & Literature,books_literature,false -canvasoul,newsmast.social,Humanities,humanities,false -canvasoul,newsmast.social,Music,music,false -DisabledWorld,newsmast.social,Engineering,engineering,false -canvasoul,newsmast.social,Philosophy,philosophy,false -canvasoul,newsmast.social,Space,space,false -canvasoul,newsmast.social,Photography,photography,true -DisabledWorld,newsmast.social,Humanities,humanities,false -DisabledWorld,newsmast.social,Poverty & Inequality,poverty_inequality,false -luked522,newsmast.social,Space,space,false -DisabledWorld,newsmast.social,Nature & Wildlife,nature_wildlife,false -DisabledWorld,newsmast.social,Physics,physics,false -luked522,newsmast.social,TV & Radio,tv_radio,false -luked522,newsmast.social,Social Sciences,social_sciences,true -TimBlack,newsmast.social,Social Media,social_media,false -BriannaABaker,newsmast.social,Social Sciences,social_sciences,false -BriannaABaker,newsmast.social,Women’s Voices,women_voices,false -BriannaABaker,newsmast.social,Black Voices,black_voices,true -Mihajlo,newsmast.social,AI,ai,false -Mihajlo,newsmast.social,Breaking News,breaking_news,false -Mihajlo,newsmast.social,Football,football,false -nowinaminute,newsmast.social,LGBTQ+,lgbtq,false -nowinaminute,newsmast.social,Mathematics,mathematics,false -nowinaminute,newsmast.social,Pets,pets,false -TimBlack,newsmast.social,TV & Radio,tv_radio,false -nowinaminute,newsmast.social,Science,science,false -Lessig,newsmast.social,AI,ai,false -nico,newsmast.social,AI,ai,false -nico,newsmast.social,Football,football,false -nico,newsmast.social,Government & Policy,government_policy,false -nico,newsmast.social,Mathematics,mathematics,false -nico,newsmast.social,Science,science,false -nico,newsmast.social,Sport,sport,false -nico,newsmast.social,Technology,technology,true -Lessig,newsmast.social,Government & Policy,government_policy,false -Lessig,newsmast.social,Science,science,false -Lessig,newsmast.social,Technology,technology,false -Lessig,newsmast.social,Ukraine Invasion,ukraine_invasion,false -Nadeem,newsmast.social,Breaking News,breaking_news,false -incnews,newsmast.social,Social Media,social_media,false -Nadeem,newsmast.social,Journalism & Comment,news_comment_data,false -Nadeem,newsmast.social,Weather,weather,false -Nadeem,newsmast.social,Politics,politics,true -Lessig,newsmast.social,Law & Justice,law_justice,true -nowinaminute,newsmast.social,Technology,technology,false -nowinaminute,newsmast.social,Women’s Voices,women_voices,false -nowinaminute,newsmast.social,Journalism & Comment,news_comment_data,true -incnews,newsmast.social,Ukraine Invasion,ukraine_invasion,false -incnews,newsmast.social,US Politics,us_politics,false -eve,newsmast.social,Energy & Pollution,energy_pollution,false -ftalk,newsmast.social,Travel,travel,false -mervecaldiran,newsmast.social,Humanities,humanities,false -mervecaldiran,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false -mervecaldiran,newsmast.social,Immigrants Rights,immigrants_rights,false -mervecaldiran,newsmast.social,Indigenous Peoples,indigenous_peoples,false -mervecaldiran,newsmast.social,Poverty & Inequality,poverty_inequality,false -ftalk,newsmast.social,US Sport,us_sport,false -mervecaldiran,newsmast.social,Law & Justice,law_justice,false -mervecaldiran,newsmast.social,LGBTQ+,lgbtq,false -mervecaldiran,newsmast.social,Movies,movies,false -seb_bw,newsmast.social,AI,ai,false -seb_bw,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false -seb_bw,newsmast.social,Climate change,climate_change,false -seb_bw,newsmast.social,Energy & Pollution,energy_pollution,false -seb_bw,newsmast.social,Environment,environment,false -enangha,newsmast.social,Philosophy,philosophy,false -mervecaldiran,newsmast.social,Music,music,false -James_Shield,newsmast.social,Politics,politics,false -ipsc48,newsmast.social,Indigenous Peoples,indigenous_peoples,false -James_Shield,newsmast.social,Social Sciences,social_sciences,false -James_Shield,newsmast.social,Sport,sport,false -James_Shield,newsmast.social,Football,football,true -gavinjmaguire,newsmast.social,Breaking News,breaking_news,false -gavinjmaguire,newsmast.social,Business,business,false -raachotrekkers,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false -raachotrekkers,newsmast.social,Energy & Pollution,energy_pollution,false -raachotrekkers,newsmast.social,Environment,environment,false -raachotrekkers,newsmast.social,Politics,politics,false -gavinjmaguire,newsmast.social,Climate change,climate_change,false -raachotrekkers,newsmast.social,Climate change,climate_change,true -raachotrekkers,newsmast.social,Travel,travel,false -raachotrekkers,newsmast.social,Nature & Wildlife,nature_wildlife,false -dadonthemoveph,newsmast.social,Environment,environment,false -dadonthemoveph,newsmast.social,Food & Drink,food_drink,false -dadonthemoveph,newsmast.social,Movies,movies,false -dadonthemoveph,newsmast.social,Journalism & Comment,news_comment_data,false -dadonthemoveph,newsmast.social,Science,science,false -gavinjmaguire,newsmast.social,Creative Arts,creative_arts,false -dadonthemoveph,newsmast.social,Travel,travel,true -DisabledWorld,newsmast.social,Science,science,false -DisabledWorld,newsmast.social,Social Sciences,social_sciences,false -DisabledWorld,newsmast.social,Space,space,false -DisabledWorld,newsmast.social,Technology,technology,false -chrisfrench,newsmast.social,Breaking News,breaking_news,false -chrisfrench,newsmast.social,Government & Policy,government_policy,false -chrisfrench,newsmast.social,Movies,movies,false -chrisfrench,newsmast.social,Journalism & Comment,news_comment_data,false -chrisfrench,newsmast.social,Performing Arts,performing_arts,false -chrisfrench,newsmast.social,Politics,politics,false -chrisfrench,newsmast.social,Science,science,false -chrisfrench,newsmast.social,Space,space,false -chrisfrench,newsmast.social,TV & Radio,tv_radio,false -davidwees,newsmast.social,Activism & Civil Rights,activism_civil_rights,false -davidwees,newsmast.social,Climate change,climate_change,false -davidwees,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -davidwees,newsmast.social,LGBTQ+,lgbtq,false -davidwees,newsmast.social,Journalism & Comment,news_comment_data,false -davidwees,newsmast.social,Space,space,false -davidwees,newsmast.social,Mathematics,mathematics,true -mervecaldiran,newsmast.social,Photography,photography,false -mervecaldiran,newsmast.social,Politics,politics,false -nayyaung9,newsmast.social,Physics,physics,false -mervecaldiran,newsmast.social,Social Sciences,social_sciences,false -mervecaldiran,newsmast.social,Sport,sport,false -mervecaldiran,newsmast.social,TV & Radio,tv_radio,false -mervecaldiran,newsmast.social,Ukraine Invasion,ukraine_invasion,false -mervecaldiran,newsmast.social,Visual Arts,visual_arts,false -mervecaldiran,newsmast.social,Women’s Voices,women_voices,false -mervecaldiran,newsmast.social,Workers Rights,workers_rights,false -jdp23,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -ajj65,newsmast.social,Activism & Civil Rights,activism_civil_rights,false -ajj65,newsmast.social,AI,ai,false -ajj65,newsmast.social,Architecture & Design,architecture_design,false -ajj65,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false -ajj65,newsmast.social,Biology,biology,false -ajj65,newsmast.social,Black Voices,black_voices,false -ajj65,newsmast.social,Business,business,false -ajj65,newsmast.social,Chemistry,chemistry,false -marianaa,newsmast.social,Markets & Finance,markets_finance,false -ajj65,newsmast.social,Climate change,climate_change,false -marianaa,newsmast.social,Women’s Voices,women_voices,false -ajj65,newsmast.social,Disabled Voices,disabled_voices,false -ajj65,newsmast.social,Energy & Pollution,energy_pollution,false -ajj65,newsmast.social,Engineering,engineering,false -dollarbureau,newsmast.social,AI,ai,false -timakimoff,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false -timakimoff,newsmast.social,Biology,biology,false -timakimoff,newsmast.social,Books & Literature,books_literature,false -timakimoff,newsmast.social,Climate change,climate_change,false -timakimoff,newsmast.social,Energy & Pollution,energy_pollution,false -timakimoff,newsmast.social,Environment,environment,false -timakimoff,newsmast.social,History,history,false -timakimoff,newsmast.social,Philosophy,philosophy,false -timakimoff,newsmast.social,Physics,physics,false -marianaa,newsmast.social,LGBTQ+,lgbtq,true -timakimoff,newsmast.social,Science,science,false -timakimoff,newsmast.social,Social Sciences,social_sciences,false -timakimoff,newsmast.social,Space,space,false -TimBlack,newsmast.social,Politics,politics,true -SithuBo,newsmast.social,Chemistry,chemistry,false -dollarbureau,newsmast.social,Breaking News,breaking_news,false -dollarbureau,newsmast.social,Business,business,false -ftalk,newsmast.social,AI,ai,false -dollarbureau,newsmast.social,Humour,humour,false -ftalk,newsmast.social,Creative Arts,creative_arts,false -dollarbureau,newsmast.social,Markets & Finance,markets_finance,false -dollarbureau,newsmast.social,Journalism & Comment,news_comment_data,false -ftalk,newsmast.social,Engineering,engineering,false -dollarbureau,newsmast.social,Technology,technology,false -dollarbureau,newsmast.social,Travel,travel,true -ajj65,newsmast.social,Environment,environment,false -Hayfa_Sdiri,newsmast.social,AI,ai,false -ftalk,newsmast.social,Food & Drink,food_drink,false -ftalk,newsmast.social,Football,football,false -Hayfa_Sdiri,newsmast.social,Indigenous Peoples,indigenous_peoples,false -ftalk,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false -ftalk,newsmast.social,Nature & Wildlife,nature_wildlife,false -ftalk,newsmast.social,Pets,pets,false -ftalk,newsmast.social,Programming,programming,false -ftalk,newsmast.social,Puzzles,puzzles,false -Hayfa_Sdiri,newsmast.social,Technology,technology,false -ftalk,newsmast.social,Sport,sport,false -saralimback,newsmast.social,Activism & Civil Rights,activism_civil_rights,false -saralimback,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false -saralimback,newsmast.social,Biology,biology,false -saralimback,newsmast.social,Black Voices,black_voices,false -saralimback,newsmast.social,Books & Literature,books_literature,false -saralimback,newsmast.social,Climate change,climate_change,false -saralimback,newsmast.social,Creative Arts,creative_arts,false -ftalk,newsmast.social,Technology,technology,false -saralimback,newsmast.social,Disabled Voices,disabled_voices,false -ftalk,newsmast.social,Travel,travel,false -saralimback,newsmast.social,Energy & Pollution,energy_pollution,false -saralimback,newsmast.social,Environment,environment,false -ftalk,newsmast.social,US Sport,us_sport,false -saralimback,newsmast.social,Food & Drink,food_drink,false -saralimback,newsmast.social,History,history,false -saralimback,newsmast.social,Humanities,humanities,false -saralimback,newsmast.social,Immigrants Rights,immigrants_rights,false -saralimback,newsmast.social,Indigenous Peoples,indigenous_peoples,false -karlienoon,newsmast.social,Climate change,climate_change,false -ftalk,newsmast.social,Humour,humour,true -karlienoon,newsmast.social,Energy & Pollution,energy_pollution,false -karlienoon,newsmast.social,Environment,environment,false -karlienoon,newsmast.social,Gaming,gaming,false -karlienoon,newsmast.social,Poverty & Inequality,poverty_inequality,false -karlienoon,newsmast.social,Law & Justice,law_justice,false -karlienoon,newsmast.social,Mathematics,mathematics,false -karlienoon,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false -karlienoon,newsmast.social,Physics,physics,false -DrMikeWatts,newsmast.social,Biology,biology,false -DrMikeWatts,newsmast.social,Climate change,climate_change,false -saralimback,newsmast.social,LGBTQ+,lgbtq,false -DrMikeWatts,newsmast.social,Programming,programming,false -incnews,newsmast.social,Weather,weather,false -karlienoon,newsmast.social,Science,science,false -karlienoon,newsmast.social,Space,space,true -jdp23,newsmast.social,Black Voices,black_voices,false -jasonreiduk,newsmast.social,Activism & Civil Rights,activism_civil_rights,false -jdp23,newsmast.social,Immigrants Rights,immigrants_rights,false -jdp23,newsmast.social,Indigenous Peoples,indigenous_peoples,false -ajj65,newsmast.social,Gaming,gaming,false -aung,newsmast.social,Breaking News,breaking_news,false -jdp23,newsmast.social,Law & Justice,law_justice,false -jdp23,newsmast.social,LGBTQ+,lgbtq,false -muzaffarab,newsmast.social,Poverty & Inequality,poverty_inequality,false -jdp23,newsmast.social,Philosophy,philosophy,false -muzaffarab,newsmast.social,Democracy & Human Rights,democracy_human_rights,true -jdp23,newsmast.social,Social Media,social_media,false -ajj65,newsmast.social,Immigrants Rights,immigrants_rights,false -jdp23,newsmast.social,Social Sciences,social_sciences,false -jdp23,newsmast.social,Technology,technology,false -jdp23,newsmast.social,US Politics,us_politics,false -jdp23,newsmast.social,Women’s Voices,women_voices,false -jdp23,newsmast.social,Activism & Civil Rights,activism_civil_rights,true -incnews,newsmast.social,Workers Rights,workers_rights,false -incnews,newsmast.social,Journalism & Comment,news_comment_data,true -SithuBo,newsmast.social,Football,football,false -SithuBo,newsmast.social,Mathematics,mathematics,false -chamkaurghag,newsmast.social,AI,ai,false -chamkaurghag,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false -chamkaurghag,newsmast.social,Biology,biology,false -chamkaurghag,newsmast.social,Chemistry,chemistry,false -chamkaurghag,newsmast.social,Climate change,climate_change,false -Laurens,newsmast.social,AI,ai,false -chamkaurghag,newsmast.social,Energy & Pollution,energy_pollution,false -chamkaurghag,newsmast.social,Engineering,engineering,false -chamkaurghag,newsmast.social,Environment,environment,false -chamkaurghag,newsmast.social,Mathematics,mathematics,false -Laurens,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false -chamkaurghag,newsmast.social,Science,science,false -chamkaurghag,newsmast.social,Space,space,false -chamkaurghag,newsmast.social,Physics,physics,true -Laurens,newsmast.social,Breaking News,breaking_news,false -Laurens,newsmast.social,Climate change,climate_change,false -Laurens,newsmast.social,Energy & Pollution,energy_pollution,false -Laurens,newsmast.social,Engineering,engineering,false -Laurens,newsmast.social,Environment,environment,false -Laurens,newsmast.social,History,history,false -Laurens,newsmast.social,Humanities,humanities,false -Kevin_Healey,newsmast.social,Disabled Voices,disabled_voices,false -Kevin_Healey,newsmast.social,Journalism & Comment,news_comment_data,false -Kevin_Healey,newsmast.social,Technology,technology,false -Shali,newsmast.social,Activism & Civil Rights,activism_civil_rights,false -Shali,newsmast.social,Breaking News,breaking_news,false -Shali,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -Shali,newsmast.social,Government & Policy,government_policy,false -Shali,newsmast.social,Poverty & Inequality,poverty_inequality,false -Shali,newsmast.social,Law & Justice,law_justice,false -Shali,newsmast.social,Journalism & Comment,news_comment_data,false -Shali,newsmast.social,Social Sciences,social_sciences,false -Shali,newsmast.social,Ukraine Invasion,ukraine_invasion,false -Shali,newsmast.social,Politics,politics,true -Kevin_Healey,newsmast.social,Breaking News,breaking_news,false -S33J,newsmast.social,Social Sciences,social_sciences,false -GraceReckers,newsmast.social,Activism & Civil Rights,activism_civil_rights,false -GraceReckers,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false -GraceReckers,newsmast.social,Black Voices,black_voices,false -GraceReckers,newsmast.social,Climate change,climate_change,false -GraceReckers,newsmast.social,Disabled Voices,disabled_voices,false -GraceReckers,newsmast.social,Environment,environment,false -GraceReckers,newsmast.social,Healthcare,healthcare,false -GraceReckers,newsmast.social,Immigrants Rights,immigrants_rights,false -GraceReckers,newsmast.social,Indigenous Peoples,indigenous_peoples,false -GraceReckers,newsmast.social,Law & Justice,law_justice,false -GraceReckers,newsmast.social,LGBTQ+,lgbtq,false -GraceReckers,newsmast.social,Music,music,false -GraceReckers,newsmast.social,Photography,photography,false -GraceReckers,newsmast.social,Social Sciences,social_sciences,false -GraceReckers,newsmast.social,TV & Radio,tv_radio,false -GraceReckers,newsmast.social,Women’s Voices,women_voices,false -GraceReckers,newsmast.social,Workers Rights,workers_rights,true -TerriGerstein,newsmast.social,Activism & Civil Rights,activism_civil_rights,false -TerriGerstein,newsmast.social,Government & Policy,government_policy,false -TerriGerstein,newsmast.social,Immigrants Rights,immigrants_rights,false -TerriGerstein,newsmast.social,Law & Justice,law_justice,false -TerriGerstein,newsmast.social,Women’s Voices,women_voices,false -TerriGerstein,newsmast.social,Workers Rights,workers_rights,true -catcafesandiego,newsmast.social,Business,business,false -catcafesandiego,newsmast.social,Journalism & Comment,news_comment_data,false -catcafesandiego,newsmast.social,Photography,photography,false -catcafesandiego,newsmast.social,Travel,travel,false -catcafesandiego,newsmast.social,Pets,pets,true -dgainz,newsmast.social,Government & Policy,government_policy,false -dgainz,newsmast.social,Journalism & Comment,news_comment_data,false -dgainz,newsmast.social,Physics,physics,false -dgainz,newsmast.social,Science,science,false -dgainz,newsmast.social,Space,space,false -dgainz,newsmast.social,Breaking News,breaking_news,true -Diamond1,newsmast.social,Biology,biology,false -Diamond1,newsmast.social,Chemistry,chemistry,false -Diamond1,newsmast.social,Football,football,false -Diamond1,newsmast.social,Science,science,false -Diamond1,newsmast.social,Physics,physics,true -sallyhawkins,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,true -Unwanted_Life,newsmast.social,Social Sciences,social_sciences,true -aung,newsmast.social,Politics,politics,false -aung,newsmast.social,Ukraine Invasion,ukraine_invasion,false -LaurelOld,newsmast.social,AI,ai,false -KenShirriff,newsmast.social,Architecture & Design,architecture_design,false -KenShirriff,newsmast.social,Biology,biology,false -KenShirriff,newsmast.social,Books & Literature,books_literature,false -KenShirriff,newsmast.social,Chemistry,chemistry,false -KenShirriff,newsmast.social,Engineering,engineering,false -KenShirriff,newsmast.social,History,history,false -KenShirriff,newsmast.social,Mathematics,mathematics,false -KenShirriff,newsmast.social,Physics,physics,false -KenShirriff,newsmast.social,Science,science,false -KenShirriff,newsmast.social,Space,space,false -KenShirriff,newsmast.social,Technology,technology,true -saralimback,newsmast.social,Music,music,false -saralimback,newsmast.social,Philosophy,philosophy,false -saralimback,newsmast.social,Photography,photography,false -LaurelOld,newsmast.social,Breaking News,breaking_news,false -saralimback,newsmast.social,Social Sciences,social_sciences,false -LaurelOld,newsmast.social,Chemistry,chemistry,false -saralimback,newsmast.social,Women’s Voices,women_voices,false -janerockhouse,newsmast.social,Activism & Civil Rights,activism_civil_rights,false -janerockhouse,newsmast.social,Breaking News,breaking_news,false -minkhantBL,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -minkhantBL,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false -minkhantBL,newsmast.social,Journalism & Comment,news_comment_data,false -janerockhouse,newsmast.social,Music,music,false -janerockhouse,newsmast.social,Photography,photography,false -janerockhouse,newsmast.social,Politics,politics,false -janerockhouse,newsmast.social,Women’s Voices,women_voices,false -janerockhouse,newsmast.social,Journalism & Comment,news_comment_data,true -saralimback,newsmast.social,Workers Rights,workers_rights,false -saralimback,newsmast.social,Nature & Wildlife,nature_wildlife,true -minkhantBL,newsmast.social,Poverty & Inequality,poverty_inequality,false -minkhantBL,newsmast.social,Social Media,social_media,false -minkhantBL,newsmast.social,Ukraine Invasion,ukraine_invasion,false -minkhantBL,newsmast.social,Weather,weather,false -minkhantBL,newsmast.social,Breaking News,breaking_news,true -sitothebo,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -ajj65,newsmast.social,Indigenous Peoples,indigenous_peoples,false -ajj65,newsmast.social,Poverty & Inequality,poverty_inequality,false -LaurelOld,newsmast.social,Engineering,engineering,false -ajj65,newsmast.social,Markets & Finance,markets_finance,false -ajj65,newsmast.social,Mathematics,mathematics,false -ajj65,newsmast.social,Music,music,false -TuesdayReviewAU,newsmast.social,Books & Literature,books_literature,false -ajj65,newsmast.social,Photography,photography,false -indianhistory,newsmast.social,Architecture & Design,architecture_design,false -indianhistory,newsmast.social,Books & Literature,books_literature,false -indianhistory,newsmast.social,Breaking News,breaking_news,false -TuesdayReviewAU,newsmast.social,Breaking News,breaking_news,false -indianhistory,newsmast.social,Gaming,gaming,false -indianhistory,newsmast.social,Humanities,humanities,false -indianhistory,newsmast.social,Movies,movies,false -indianhistory,newsmast.social,Music,music,false -indianhistory,newsmast.social,Performing Arts,performing_arts,false -indianhistory,newsmast.social,Photography,photography,false -indianhistory,newsmast.social,TV & Radio,tv_radio,false -indianhistory,newsmast.social,Visual Arts,visual_arts,false -indianhistory,newsmast.social,Weather,weather,false -indianhistory,newsmast.social,History,history,true -ajj65,newsmast.social,Physics,physics,false -TuesdayReviewAU,newsmast.social,Gaming,gaming,false -TuesdayReviewAU,newsmast.social,Humanities,humanities,false -TuesdayReviewAU,newsmast.social,Journalism & Comment,news_comment_data,false -TuesdayReviewAU,newsmast.social,Philosophy,philosophy,false -TuesdayReviewAU,newsmast.social,Social Media,social_media,false -TuesdayReviewAU,newsmast.social,Technology,technology,false -TuesdayReviewAU,newsmast.social,TV & Radio,tv_radio,false -TuesdayReviewAU,newsmast.social,Visual Arts,visual_arts,false -TuesdayReviewAU,newsmast.social,Movies,movies,true -LaurelOld,newsmast.social,Journalism & Comment,news_comment_data,false -LaurelOld,newsmast.social,Science,science,false -LaurelOld,newsmast.social,Biology,biology,true -DrMikeWatts,newsmast.social,Science,science,false -DrMikeWatts,newsmast.social,AI,ai,true -ThirdTime,newsmast.social,Journalism & Comment,news_comment_data,false -vegannutrition,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false -vegannutrition,newsmast.social,Biology,biology,false -vegannutrition,newsmast.social,Climate change,climate_change,false -vegannutrition,newsmast.social,Environment,environment,false -vegannutrition,newsmast.social,Food & Drink,food_drink,false -vegannutrition,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false -vegannutrition,newsmast.social,Poverty & Inequality,poverty_inequality,false -vegannutrition,newsmast.social,Nature & Wildlife,nature_wildlife,false -vegannutrition,newsmast.social,Science,science,false -Unwanted_Life,newsmast.social,Black Voices,black_voices,false -Unwanted_Life,newsmast.social,Disabled Voices,disabled_voices,false -DrCarpineti,newsmast.social,Activism & Civil Rights,activism_civil_rights,false -DrCarpineti,newsmast.social,Breaking News,breaking_news,false -DrCarpineti,newsmast.social,LGBTQ+,lgbtq,false -DrCarpineti,newsmast.social,Journalism & Comment,news_comment_data,false -DrCarpineti,newsmast.social,Physics,physics,false -DrCarpineti,newsmast.social,Science,science,false -DrCarpineti,newsmast.social,Technology,technology,false -DrCarpineti,newsmast.social,Space,space,true -sallyhawkins,newsmast.social,Environment,environment,false -sallyhawkins,newsmast.social,History,history,false -sallyhawkins,newsmast.social,Indigenous Peoples,indigenous_peoples,false -sallyhawkins,newsmast.social,Philosophy,philosophy,false -sallyhawkins,newsmast.social,Social Sciences,social_sciences,false -sallyhawkins,newsmast.social,Women’s Voices,women_voices,false -mati,moth.social,LGBTQ+,lgbtq,false -petenothing,newsmast.social,Humanities,humanities,false -SustMeme,newsmast.social,Environment,environment,true -Gymbag4u,newsmast.social,Breaking News,breaking_news,false -Gymbag4u,newsmast.social,Creative Arts,creative_arts,false -Gymbag4u,newsmast.social,Humour,humour,false -ajj65,newsmast.social,Science,science,false -ajj65,newsmast.social,Space,space,false -MattSaltmarsh,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -ajj65,newsmast.social,Technology,technology,false -MattSaltmarsh,newsmast.social,Government & Policy,government_policy,false -MattSaltmarsh,newsmast.social,Journalism & Comment,news_comment_data,false -ajj65,newsmast.social,Women’s Voices,women_voices,false -ajj65,newsmast.social,Workers Rights,workers_rights,false -MattSaltmarsh,newsmast.social,Politics,politics,false -MattSaltmarsh,newsmast.social,Breaking News,breaking_news,true -Gymbag4u,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false -Gymbag4u,newsmast.social,Nature & Wildlife,nature_wildlife,false -Gymbag4u,newsmast.social,Pets,pets,false -Gymbag4u,newsmast.social,Travel,travel,false -Gymbag4u,newsmast.social,Food & Drink,food_drink,true -SustMeme,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false -SustMeme,newsmast.social,Climate change,climate_change,false -SustMeme,newsmast.social,Energy & Pollution,energy_pollution,false -SustMeme,newsmast.social,Engineering,engineering,false -flipflop,newsmast.social,Humour,humour,false -ifonlycom,newsmast.social,Technology,technology,false -ifonlycom,newsmast.social,US Politics,us_politics,false -SustMeme,newsmast.social,Science,science,false -flipflop,newsmast.social,Mathematics,mathematics,false -flipflop,newsmast.social,Physics,physics,false -brasmus,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false -flipflop,newsmast.social,Science,science,false -flipflop,newsmast.social,Space,space,false -flipflop,newsmast.social,Technology,technology,false -flipflop,newsmast.social,TV & Radio,tv_radio,false -brasmus,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -flipflop,newsmast.social,Puzzles,puzzles,true -brasmus,newsmast.social,Environment,environment,false -RonCharles,newsmast.social,Journalism & Comment,news_comment_data,true -brasmus,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false -brasmus,newsmast.social,Journalism & Comment,news_comment_data,false -brasmus,newsmast.social,Physics,physics,false -brasmus,newsmast.social,Science,science,false -brasmus,newsmast.social,Weather,weather,false -If_This_Goes_On,newsmast.social,LGBTQ+,lgbtq,false -If_This_Goes_On,newsmast.social,Movies,movies,false -If_This_Goes_On,newsmast.social,Music,music,false -jperlow,newsmast.social,AI,ai,false -jperlow,newsmast.social,Biology,biology,false -Hurns,newsmast.social,AI,ai,false -Hurns,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false -Hurns,newsmast.social,Breaking News,breaking_news,false -Hurns,newsmast.social,Energy & Pollution,energy_pollution,false -Hurns,newsmast.social,Environment,environment,false -Hurns,newsmast.social,Climate change,climate_change,true -jperlow,newsmast.social,Breaking News,breaking_news,false -jperlow,newsmast.social,Chemistry,chemistry,false -jperlow,newsmast.social,Engineering,engineering,false -jperlow,newsmast.social,Mathematics,mathematics,false -If_This_Goes_On,newsmast.social,Performing Arts,performing_arts,false -jperlow,newsmast.social,Physics,physics,false -jperlow,newsmast.social,Programming,programming,false -If_This_Goes_On,newsmast.social,Philosophy,philosophy,false -If_This_Goes_On,newsmast.social,Photography,photography,false -fs0c131y,newsmast.social,Breaking News,breaking_news,false -fs0c131y,newsmast.social,Politics,politics,false -fs0c131y,newsmast.social,Technology,technology,false -fs0c131y,newsmast.social,Ukraine Invasion,ukraine_invasion,false -liharris30,newsmast.social,Business,business,false -liharris30,newsmast.social,Humanities,humanities,false -liharris30,newsmast.social,Technology,technology,false -Dolores,newsmast.social,Indigenous Peoples,indigenous_peoples,false -Dolores,newsmast.social,Women’s Voices,women_voices,false -VAVEL,newsmast.social,Breaking News,breaking_news,false -VAVEL,newsmast.social,Journalism & Comment,news_comment_data,false -VAVEL,newsmast.social,Sport,sport,false -VAVEL,newsmast.social,Football,football,true -HRWright,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -HRWright,newsmast.social,LGBTQ+,lgbtq,false -HRWright,newsmast.social,Journalism & Comment,news_comment_data,false -HRWright,newsmast.social,Travel,travel,false -HRWright,newsmast.social,Food & Drink,food_drink,true -Ann_Aguirre,newsmast.social,LGBTQ+,lgbtq,false -Ann_Aguirre,newsmast.social,Social Sciences,social_sciences,false -Ann_Aguirre,newsmast.social,Space,space,false -Ann_Aguirre,newsmast.social,Women’s Voices,women_voices,true -sitothebo,newsmast.social,Engineering,engineering,false -DanielGilbert,newsmast.social,Social Sciences,social_sciences,true -jrmartin,newsmast.social,Architecture & Design,architecture_design,false -jrmartin,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false -jrmartin,newsmast.social,Books & Literature,books_literature,false -Mihajlo,newsmast.social,Movies,movies,false -jrmartin,newsmast.social,Environment,environment,false -jrmartin,newsmast.social,History,history,false -jrmartin,newsmast.social,Photography,photography,false -mattskal,newsmast.social,Movies,movies,false -jrmartin,newsmast.social,Travel,travel,true -ajj65,newsmast.social,LGBTQ+,lgbtq,true -Dailyscandi,newsmast.social,Poverty & Inequality,poverty_inequality,false -lestermouse,newsmast.social,Breaking News,breaking_news,false -Mihajlo,newsmast.social,Music,music,false -lestermouse,newsmast.social,Politics,politics,false -lestermouse,newsmast.social,Ukraine Invasion,ukraine_invasion,false -lestermouse,newsmast.social,Weather,weather,false -lestermouse,newsmast.social,Journalism & Comment,news_comment_data,true -Mihajlo,newsmast.social,Social Media,social_media,false -Dailyscandi,newsmast.social,Democracy & Human Rights,democracy_human_rights,true -mattskal,newsmast.social,Performing Arts,performing_arts,false -petenothing,newsmast.social,Architecture & Design,architecture_design,false -newsmast,newsmast.social,Mathematics,mathematics,false -petenothing,newsmast.social,Creative Arts,creative_arts,false -Joshmcc_05,newsmast.social,Breaking News,breaking_news,false -Joshmcc_05,newsmast.social,Journalism & Comment,news_comment_data,false -Joshmcc_05,newsmast.social,Sport,sport,false -Joshmcc_05,newsmast.social,Football,football,true -Mihajlo,newsmast.social,Technology,technology,false -calebijioma,newsmast.social,Democracy & Human Rights,democracy_human_rights,true -drbradtucker,newsmast.social,AI,ai,false -drbradtucker,newsmast.social,Physics,physics,false -drbradtucker,newsmast.social,Science,science,false -drbradtucker,newsmast.social,Social Sciences,social_sciences,false -drbradtucker,newsmast.social,Space,space,true -DanielGilbert,newsmast.social,Science,science,false -Mihajlo,newsmast.social,TV & Radio,tv_radio,false -Mihajlo,newsmast.social,Weather,weather,false -Mihajlo,newsmast.social,Sport,sport,true -forgottenxi,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -JayFIO,newsmast.social,Breaking News,breaking_news,false -JayFIO,newsmast.social,Government & Policy,government_policy,false -JayFIO,newsmast.social,Law & Justice,law_justice,false -JayFIO,newsmast.social,LGBTQ+,lgbtq,false -JayFIO,newsmast.social,Journalism & Comment,news_comment_data,false -JayFIO,newsmast.social,Weather,weather,false -JayFIO,newsmast.social,Activism & Civil Rights,activism_civil_rights,true -S33J,newsmast.social,Journalism & Comment,news_comment_data,true -sai_myo_1993,newsmast.social,Programming,programming,true -PetsMag,newsmast.social,AI,ai,false -PetsMag,newsmast.social,Architecture & Design,architecture_design,false -PetsMag,newsmast.social,Biology,biology,false -PetsMag,newsmast.social,Books & Literature,books_literature,false -PetsMag,newsmast.social,Breaking News,breaking_news,false -PetsMag,newsmast.social,Chemistry,chemistry,false -PetsMag,newsmast.social,Creative Arts,creative_arts,false -PetsMag,newsmast.social,Engineering,engineering,false -PetsMag,newsmast.social,Food & Drink,food_drink,false -PetsMag,newsmast.social,Gaming,gaming,false -PetsMag,newsmast.social,Humour,humour,false -PetsMag,newsmast.social,Mathematics,mathematics,false -PetsMag,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false -PetsMag,newsmast.social,Movies,movies,false -PetsMag,newsmast.social,Music,music,false -PetsMag,newsmast.social,Nature & Wildlife,nature_wildlife,false -PetsMag,newsmast.social,Journalism & Comment,news_comment_data,false -PetsMag,newsmast.social,Performing Arts,performing_arts,false -PetsMag,newsmast.social,Photography,photography,false -PetsMag,newsmast.social,Pets,pets,true -calebijioma,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false -calebijioma,newsmast.social,Climate change,climate_change,false -calebijioma,newsmast.social,Energy & Pollution,energy_pollution,false -calebijioma,newsmast.social,Environment,environment,false -calebijioma,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false -calebijioma,newsmast.social,Poverty & Inequality,poverty_inequality,false -siji,newsmast.social,AI,ai,false -siji,newsmast.social,Books & Literature,books_literature,false -siji,newsmast.social,Creative Arts,creative_arts,false -siji,newsmast.social,Food & Drink,food_drink,false -siji,newsmast.social,History,history,false -siji,newsmast.social,Humanities,humanities,false -siji,newsmast.social,Humour,humour,false -siji,newsmast.social,Philosophy,philosophy,false -siji,newsmast.social,Puzzles,puzzles,false -siji,newsmast.social,Travel,travel,false -siji,newsmast.social,Technology,technology,true -OpsMatters,newsmast.social,AI,ai,false -OpsMatters,newsmast.social,Breaking News,breaking_news,false -OpsMatters,newsmast.social,Business,business,false -OpsMatters,newsmast.social,Engineering,engineering,false -OpsMatters,newsmast.social,Environment,environment,false -OpsMatters,newsmast.social,Technology,technology,true -JeffreyPeel,newsmast.social,Activism & Civil Rights,activism_civil_rights,false -JeffreyPeel,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -JeffreyPeel,newsmast.social,Government & Policy,government_policy,false -JeffreyPeel,newsmast.social,Healthcare,healthcare,false -JeffreyPeel,newsmast.social,Technology,technology,false -JeffreyPeel,newsmast.social,Politics,politics,true -faithbenson,newsmast.social,AI,ai,false -faithbenson,newsmast.social,Creative Arts,creative_arts,false -forgottenxi,newsmast.social,Football,football,false -forgottenxi,newsmast.social,Poverty & Inequality,poverty_inequality,false -JenniferLawson,newsmast.social,Humanities,humanities,true -AldridgePhoto,newsmast.social,Breaking News,breaking_news,false -AldridgePhoto,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,true -AldridgePhoto,newsmast.social,Climate change,climate_change,false -AldridgePhoto,newsmast.social,Energy & Pollution,energy_pollution,false -AldridgePhoto,newsmast.social,Environment,environment,false -AldridgePhoto,newsmast.social,Journalism & Comment,news_comment_data,false -Gymbag4u,newsmast.social,Markets & Finance,markets_finance,false -Laurens,newsmast.social,Journalism & Comment,news_comment_data,false -Laurens,newsmast.social,Philosophy,philosophy,false -sean,newsmast.social,Activism & Civil Rights,activism_civil_rights,false -mattskal,newsmast.social,Technology,technology,true -newsmast,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false -sean,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false -sean,newsmast.social,Biology,biology,false -sean,newsmast.social,Books & Literature,books_literature,false -sean,newsmast.social,Climate change,climate_change,false -sean,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -sean,newsmast.social,Energy & Pollution,energy_pollution,false -benwritesthings,newsmast.social,Architecture & Design,architecture_design,false -benwritesthings,newsmast.social,Books & Literature,books_literature,false -sean,newsmast.social,Environment,environment,false -benwritesthings,newsmast.social,History,history,false -benwritesthings,newsmast.social,Humanities,humanities,false -benwritesthings,newsmast.social,Performing Arts,performing_arts,false -benwritesthings,newsmast.social,Workers Rights,workers_rights,false -benwritesthings,newsmast.social,LGBTQ+,lgbtq,true -sean,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false -sean,newsmast.social,Indigenous Peoples,indigenous_peoples,false -sean,newsmast.social,LGBTQ+,lgbtq,false -sean,newsmast.social,Movies,movies,false -sean,newsmast.social,Music,music,false -sean,newsmast.social,Photography,photography,false -historian1914,newsmast.social,Books & Literature,books_literature,false -historian1914,newsmast.social,Business,business,false -sean,newsmast.social,Poverty & Inequality,poverty_inequality,false -historian1914,newsmast.social,Gaming,gaming,false -historian1914,newsmast.social,Government & Policy,government_policy,false -historian1914,newsmast.social,Humanities,humanities,false -historian1914,newsmast.social,Markets & Finance,markets_finance,false -historian1914,newsmast.social,Sport,sport,false -historian1914,newsmast.social,History,history,true -jasonreiduk,newsmast.social,Breaking News,breaking_news,false -sean,newsmast.social,Science,science,false -jasonreiduk,newsmast.social,Journalism & Comment,news_comment_data,false -jasonreiduk,newsmast.social,LGBTQ+,lgbtq,true -ProfTJCurry,newsmast.social,Healthcare,healthcare,false -ProfTJCurry,newsmast.social,Humanities,humanities,false -ProfTJCurry,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false -sean,newsmast.social,Space,space,false -ProfTJCurry,newsmast.social,Philosophy,philosophy,true -JenniferLawson,newsmast.social,Philosophy,philosophy,false -ksetiya,newsmast.social,Activism & Civil Rights,activism_civil_rights,false -ksetiya,newsmast.social,AI,ai,false -ksetiya,newsmast.social,Architecture & Design,architecture_design,false -simonerochembe,newsmast.social,AI,ai,false -simonerochembe,newsmast.social,Business,business,false -sean,newsmast.social,Technology,technology,false -Laurens,newsmast.social,Social Media,social_media,false -sean,newsmast.social,Sport,sport,false -simonerochembe,newsmast.social,Women’s Voices,women_voices,true -ksetiya,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false -ksetiya,newsmast.social,Biology,biology,false -ksetiya,newsmast.social,Black Voices,black_voices,false -ksetiya,newsmast.social,Books & Literature,books_literature,false -ksetiya,newsmast.social,Breaking News,breaking_news,false -ksetiya,newsmast.social,Business,business,false -Laurens,newsmast.social,Social Sciences,social_sciences,false -ksetiya,newsmast.social,Chemistry,chemistry,false -SWCWomen,newsmast.social,Black Voices,black_voices,false -SWCWomen,newsmast.social,Books & Literature,books_literature,false -SWCWomen,newsmast.social,Disabled Voices,disabled_voices,false -SWCWomen,newsmast.social,Government & Policy,government_policy,false -SWCWomen,newsmast.social,History,history,false -SWCWomen,newsmast.social,Humanities,humanities,false -SWCWomen,newsmast.social,Immigrants Rights,immigrants_rights,false -SWCWomen,newsmast.social,Law & Justice,law_justice,false -SWCWomen,newsmast.social,LGBTQ+,lgbtq,false -SWCWomen,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false -SWCWomen,newsmast.social,Journalism & Comment,news_comment_data,false -SWCWomen,newsmast.social,Philosophy,philosophy,false -SWCWomen,newsmast.social,Politics,politics,false -SWCWomen,newsmast.social,Social Sciences,social_sciences,false -SWCWomen,newsmast.social,Workers Rights,workers_rights,false -SWCWomen,newsmast.social,Women’s Voices,women_voices,true -eve,newsmast.social,Engineering,engineering,false -robotmaths,newsmast.social,Movies,movies,false -robotmaths,newsmast.social,Journalism & Comment,news_comment_data,false -robotmaths,newsmast.social,TV & Radio,tv_radio,false -robotmaths,newsmast.social,Mathematics,mathematics,true -savenues,newsmast.social,Breaking News,breaking_news,false -savenues,newsmast.social,Food & Drink,food_drink,false -savenues,newsmast.social,Humour,humour,false -savenues,newsmast.social,Nature & Wildlife,nature_wildlife,false -savenues,newsmast.social,Travel,travel,true -indiajade_68,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,true -indiajade_68,newsmast.social,Architecture & Design,architecture_design,false -indiajade_68,newsmast.social,Biology,biology,false -sitothebo,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false -indiajade_68,newsmast.social,Chemistry,chemistry,false -indiajade_68,newsmast.social,Climate change,climate_change,false -CakeBoy,newsmast.social,Breaking News,breaking_news,false -indiajade_68,newsmast.social,Energy & Pollution,energy_pollution,false -indiajade_68,newsmast.social,Environment,environment,false -CakeBoy,newsmast.social,Creative Arts,creative_arts,false -CakeBoy,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -indiajade_68,newsmast.social,Photography,photography,false -CakeBoy,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false -CakeBoy,newsmast.social,Nature & Wildlife,nature_wildlife,false -indiajade_68,newsmast.social,Science,science,false -CakeBoy,newsmast.social,Journalism & Comment,news_comment_data,false -indiajade_68,newsmast.social,Visual Arts,visual_arts,false -CakeBoy,newsmast.social,Poverty & Inequality,poverty_inequality,false -CakeBoy,newsmast.social,Social Media,social_media,false -CakeBoy,newsmast.social,Travel,travel,false -CakeBoy,newsmast.social,Weather,weather,false -CakeBoy,newsmast.social,Food & Drink,food_drink,true -vijaysingh,newsmast.social,Academia & Research,academia_research,false -vijaysingh,newsmast.social,Government & Policy,government_policy,false -vijaysingh,newsmast.social,Healthcare,healthcare,false -vijaysingh,newsmast.social,Law & Justice,law_justice,false -vijaysingh,newsmast.social,US Politics,us_politics,false -vijaysingh,newsmast.social,Politics,politics,true -Gymbag4u,newsmast.social,Business,business,false -gavinjmaguire,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -gavinjmaguire,newsmast.social,Food & Drink,food_drink,false -gavinjmaguire,newsmast.social,Football,football,false -gavinjmaguire,newsmast.social,Government & Policy,government_policy,false -gavinjmaguire,newsmast.social,Humour,humour,false -gavinjmaguire,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false -gavinjmaguire,newsmast.social,Markets & Finance,markets_finance,false -gavinjmaguire,newsmast.social,Nature & Wildlife,nature_wildlife,false -sarahhengel,newsmast.social,Chemistry,chemistry,false -sarahhengel,newsmast.social,Engineering,engineering,false -sarahhengel,newsmast.social,Mathematics,mathematics,false -sarahhengel,newsmast.social,Physics,physics,false -sarahhengel,newsmast.social,Science,science,false -sarahhengel,newsmast.social,Space,space,false -sarahhengel,newsmast.social,Biology,biology,true -CBhattacharji,newsmast.social,Business,business,false -CBhattacharji,newsmast.social,Climate change,climate_change,false -gavinjmaguire,newsmast.social,Poverty & Inequality,poverty_inequality,false -gavinjmaguire,newsmast.social,Travel,travel,false -AndreCMonteiro,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -gavinjmaguire,newsmast.social,US Politics,us_politics,false -AndreCMonteiro,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false -AndreCMonteiro,newsmast.social,Poverty & Inequality,poverty_inequality,false -gavinjmaguire,newsmast.social,Energy & Pollution,energy_pollution,true -sheckmo,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false -sheckmo,newsmast.social,Energy & Pollution,energy_pollution,false -sheckmo,newsmast.social,Environment,environment,false -sheckmo,newsmast.social,Science,science,false -CBhattacharji,newsmast.social,History,history,false -sheckmo,newsmast.social,US Politics,us_politics,false -CBhattacharji,newsmast.social,Science,science,false -sheckmo,newsmast.social,Climate change,climate_change,true -flipflop,newsmast.social,Breaking News,breaking_news,false -enangha,newsmast.social,Environment,environment,false -boroguide,newsmast.social,Music,music,false -boroguide,newsmast.social,Photography,photography,false -boroguide,newsmast.social,Sport,sport,false -boroguide,newsmast.social,Travel,travel,false -boroguide,newsmast.social,Football,football,true -ksetiya,newsmast.social,Climate change,climate_change,false -ksetiya,newsmast.social,Creative Arts,creative_arts,false -actualbenj,newsmast.social,Government & Policy,government_policy,false -actualbenj,newsmast.social,LGBTQ+,lgbtq,false -actualbenj,newsmast.social,Politics,politics,false -actualbenj,newsmast.social,Science,science,false -actualbenj,newsmast.social,Social Sciences,social_sciences,false -actualbenj,newsmast.social,Ukraine Invasion,ukraine_invasion,false -actualbenj,newsmast.social,Women’s Voices,women_voices,false -actualbenj,newsmast.social,Workers Rights,workers_rights,false -actualbenj,newsmast.social,Journalism & Comment,news_comment_data,true -ksetiya,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -ksetiya,newsmast.social,Disabled Voices,disabled_voices,false -PAAwarenessUK,newsmast.social,Poverty & Inequality,poverty_inequality,false -PAAwarenessUK,newsmast.social,Law & Justice,law_justice,false -PAAwarenessUK,newsmast.social,Politics,politics,false -Radwa,newsmast.social,Breaking News,breaking_news,false -Radwa,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -Radwa,newsmast.social,Politics,politics,false -Radwa,newsmast.social,Social Sciences,social_sciences,false -Radwa,newsmast.social,Technology,technology,false -Radwa,newsmast.social,Journalism & Comment,news_comment_data,false -S33J,newsmast.social,Creative Arts,creative_arts,false -S33J,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false -Destiny,newsmast.social,Food & Drink,food_drink,false -Destiny,newsmast.social,Football,football,false -Destiny,newsmast.social,Humour,humour,false -Destiny,newsmast.social,Mathematics,mathematics,false -Destiny,newsmast.social,Journalism & Comment,news_comment_data,false -Destiny,newsmast.social,Physics,physics,false -Destiny,newsmast.social,Sport,sport,false -Destiny,newsmast.social,Travel,travel,false -Destiny,newsmast.social,Space,space,true -jeremygodwin,newsmast.social,Social Sciences,social_sciences,true -faithbenson,newsmast.social,Science,science,false -faithbenson,newsmast.social,Technology,technology,false -JenniferLawson,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false -JenniferLawson,newsmast.social,Law & Justice,law_justice,false -JenniferLawson,newsmast.social,Climate change,climate_change,false -JenniferLawson,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -JenniferLawson,newsmast.social,Disabled Voices,disabled_voices,false -JenniferLawson,newsmast.social,Environment,environment,false -JenniferLawson,newsmast.social,Government & Policy,government_policy,false -JenniferLawson,newsmast.social,Healthcare,healthcare,false -JenniferLawson,newsmast.social,Immigrants Rights,immigrants_rights,false -JenniferLawson,newsmast.social,Indigenous Peoples,indigenous_peoples,false -JenniferLawson,newsmast.social,LGBTQ+,lgbtq,false -JenniferLawson,newsmast.social,Mathematics,mathematics,false -JenniferLawson,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false -JenniferLawson,newsmast.social,Journalism & Comment,news_comment_data,false -JenniferLawson,newsmast.social,Physics,physics,false -JenniferLawson,newsmast.social,Politics,politics,false -aadyrocker,newsmast.social,Football,football,false -aadyrocker,newsmast.social,Journalism & Comment,news_comment_data,false -JenniferLawson,newsmast.social,Science,science,false -JenniferLawson,newsmast.social,Social Sciences,social_sciences,false -aadyrocker,newsmast.social,Sport,sport,false -JenniferLawson,newsmast.social,Weather,weather,false -JenniferLawson,newsmast.social,Women’s Voices,women_voices,false -JenniferLawson,newsmast.social,Workers Rights,workers_rights,false -contessalouise,newsmast.social,Black Voices,black_voices,false -petenothing,newsmast.social,LGBTQ+,lgbtq,false -petenothing,newsmast.social,Music,music,false -petenothing,newsmast.social,Nature & Wildlife,nature_wildlife,false -petenothing,newsmast.social,Pets,pets,false -petenothing,newsmast.social,Puzzles,puzzles,false -aadyrocker,newsmast.social,US Sport,us_sport,false -petenothing,newsmast.social,Space,space,false -petenothing,newsmast.social,Travel,travel,false -petenothing,newsmast.social,TV & Radio,tv_radio,false -MarieGeneste,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false -aadyrocker,newsmast.social,Breaking News,breaking_news,true -MarieGeneste,newsmast.social,Energy & Pollution,energy_pollution,false -MarieGeneste,newsmast.social,Environment,environment,false -forgottenxi,newsmast.social,Ukraine Invasion,ukraine_invasion,false -forgottenxi,newsmast.social,Breaking News,breaking_news,true -paige_travels,newsmast.social,Books & Literature,books_literature,false -MarieGeneste,newsmast.social,Climate change,climate_change,true -markus,newsmast.social,Creative Arts,creative_arts,false -markus,newsmast.social,Engineering,engineering,false -markus,newsmast.social,Science,science,false -thelmzkitchen,newsmast.social,Music,music,false -thelmzkitchen,newsmast.social,Travel,travel,false -thelmzkitchen,newsmast.social,Women’s Voices,women_voices,false -thelmzkitchen,newsmast.social,Food & Drink,food_drink,true -Nancie,newsmast.social,Food & Drink,food_drink,false -markus,newsmast.social,Technology,technology,false -Nancie,newsmast.social,Humour,humour,false -Nancie,newsmast.social,Nature & Wildlife,nature_wildlife,false -Nancie,newsmast.social,Pets,pets,false -Nancie,newsmast.social,Puzzles,puzzles,false -Nancie,newsmast.social,Travel,travel,true -markus,newsmast.social,AI,ai,true -Darling,newsmast.social,AI,ai,false -petenothing,newsmast.social,Women’s Voices,women_voices,false -petenothing,newsmast.social,Workers Rights,workers_rights,false -petenothing,newsmast.social,Books & Literature,books_literature,true -contessalouise,newsmast.social,Disabled Voices,disabled_voices,false -contessalouise,newsmast.social,Environment,environment,false -contessalouise,newsmast.social,Food & Drink,food_drink,false -contessalouise,newsmast.social,Climate change,climate_change,true -Darling,newsmast.social,Biology,biology,false -jeremygodwin,newsmast.social,Science,science,false -Darling,newsmast.social,Chemistry,chemistry,false -Darling,newsmast.social,Engineering,engineering,false -Darling,newsmast.social,Mathematics,mathematics,false -Darling,newsmast.social,Physics,physics,false -Darling,newsmast.social,Programming,programming,false -Darling,newsmast.social,Science,science,false -Darling,newsmast.social,Space,space,false -Darling,newsmast.social,Sport,sport,false -Tarden7,newsmast.social,Puzzles,puzzles,false -Tarden7,newsmast.social,Travel,travel,false -Tarden7,newsmast.social,Ukraine Invasion,ukraine_invasion,false -Darling,newsmast.social,Technology,technology,false -Darling,newsmast.social,US Sport,us_sport,false -lawyer,newsmast.social,Creative Arts,creative_arts,false -Darling,newsmast.social,Football,football,true -lawyer,newsmast.social,Disabled Voices,disabled_voices,false -mitchell_ab,newsmast.social,Government & Policy,government_policy,false -mitchell_ab,newsmast.social,Journalism & Comment,news_comment_data,false -mitchell_ab,newsmast.social,Philosophy,philosophy,false -mitchell_ab,newsmast.social,Social Sciences,social_sciences,false -mitchell_ab,newsmast.social,Politics,politics,true -eve,newsmast.social,Music,music,false -eve,newsmast.social,Women’s Voices,women_voices,false -Themontyproject,newsmast.social,Books & Literature,books_literature,false -Themontyproject,newsmast.social,Humour,humour,false -Themontyproject,newsmast.social,Workers Rights,workers_rights,false -Themontyproject,newsmast.social,Pets,pets,true -newsmast,newsmast.social,Movies,movies,false -drvolts,newsmast.social,AI,ai,false -drvolts,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false -drvolts,newsmast.social,Biology,biology,false -drvolts,newsmast.social,Breaking News,breaking_news,false -drvolts,newsmast.social,Chemistry,chemistry,false -drvolts,newsmast.social,Climate change,climate_change,false -WilliamHolland,newsmast.social,Government & Policy,government_policy,true -jsit,newsmast.social,Social Media,social_media,false -jsit,newsmast.social,Ukraine Invasion,ukraine_invasion,false -drvolts,newsmast.social,Engineering,engineering,false -drvolts,newsmast.social,Environment,environment,false -paige_travels,newsmast.social,Food & Drink,food_drink,false -paige_travels,newsmast.social,Nature & Wildlife,nature_wildlife,false -paige_travels,newsmast.social,Photography,photography,false -drvolts,newsmast.social,Government & Policy,government_policy,false -drvolts,newsmast.social,Healthcare,healthcare,false -drvolts,newsmast.social,Law & Justice,law_justice,false -drvolts,newsmast.social,Mathematics,mathematics,false -drvolts,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false -drvolts,newsmast.social,Journalism & Comment,news_comment_data,false -drvolts,newsmast.social,Physics,physics,false -KyivIndependent,newsmast.social,Activism & Civil Rights,activism_civil_rights,false -KyivIndependent,newsmast.social,Black Voices,black_voices,false -KyivIndependent,newsmast.social,Breaking News,breaking_news,false -KyivIndependent,newsmast.social,Government & Policy,government_policy,true -paige_travels,newsmast.social,Travel,travel,true -IlCava,mastodon.uno,"Hunger, Disease & Water",hunger_disease_water,false -relaxedmale,newsmast.social,Breaking News,breaking_news,false -KyivIndependent,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -KyivIndependent,newsmast.social,Disabled Voices,disabled_voices,false -relaxedmale,newsmast.social,Food & Drink,food_drink,false -relaxedmale,newsmast.social,Gaming,gaming,false -KyivIndependent,newsmast.social,Healthcare,healthcare,false -relaxedmale,newsmast.social,Government & Policy,government_policy,false -KyivIndependent,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false -KyivIndependent,newsmast.social,Immigrants Rights,immigrants_rights,false -KyivIndependent,newsmast.social,Indigenous Peoples,indigenous_peoples,false -KyivIndependent,newsmast.social,Poverty & Inequality,poverty_inequality,false -LawyerSchiff,newsmast.social,Academia & Research,academia_research,false -LawyerSchiff,newsmast.social,Activism & Civil Rights,activism_civil_rights,false -KyivIndependent,newsmast.social,Law & Justice,law_justice,false -KyivIndependent,newsmast.social,LGBTQ+,lgbtq,false -KyivIndependent,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false -KyivIndependent,newsmast.social,Journalism & Comment,news_comment_data,false -KyivIndependent,newsmast.social,Politics,politics,false -LawyerSchiff,newsmast.social,Architecture & Design,architecture_design,false -LawyerSchiff,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false -LawyerSchiff,newsmast.social,Business,business,false -LawyerSchiff,newsmast.social,Climate change,climate_change,false -KyivIndependent,newsmast.social,Ukraine Invasion,ukraine_invasion,false -KyivIndependent,newsmast.social,Weather,weather,false -KyivIndependent,newsmast.social,Women’s Voices,women_voices,false -KyivIndependent,newsmast.social,Workers Rights,workers_rights,false -LawyerSchiff,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -drvolts,newsmast.social,Politics,politics,false -LawyerSchiff,newsmast.social,Environment,environment,false -LawyerSchiff,newsmast.social,Food & Drink,food_drink,false -LawyerSchiff,newsmast.social,Government & Policy,government_policy,false -drvolts,newsmast.social,Science,science,false -drvolts,newsmast.social,Space,space,false -drvolts,newsmast.social,Technology,technology,false -elliemroberts,newsmast.social,Breaking News,breaking_news,false -LawyerSchiff,newsmast.social,Healthcare,healthcare,false -elliemroberts,newsmast.social,Disabled Voices,disabled_voices,false -elliemroberts,newsmast.social,Humanities,humanities,false -elliemroberts,newsmast.social,Visual Arts,visual_arts,false -elliemroberts,newsmast.social,Women’s Voices,women_voices,false -elliemroberts,newsmast.social,History,history,true -drvolts,newsmast.social,Ukraine Invasion,ukraine_invasion,false -LawyerSchiff,newsmast.social,History,history,false -drvolts,newsmast.social,Weather,weather,false -LawyerSchiff,newsmast.social,Humour,humour,false -drvolts,newsmast.social,Energy & Pollution,energy_pollution,true -LawyerSchiff,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false -LawyerSchiff,newsmast.social,Markets & Finance,markets_finance,false -WilliamHolland,newsmast.social,Healthcare,healthcare,false -LawyerSchiff,newsmast.social,Nature & Wildlife,nature_wildlife,false -IlCava,mastodon.uno,Immigrants Rights,immigrants_rights,false -Sam,newsmast.social,AI,ai,false -Sam,newsmast.social,Architecture & Design,architecture_design,false -LawyerSchiff,newsmast.social,Journalism & Comment,news_comment_data,false -Sam,newsmast.social,LGBTQ+,lgbtq,false -Sam,newsmast.social,Politics,politics,false -orianavmatos,newsmast.social,Travel,travel,false -ChinHuaLu,newsmast.social,Activism & Civil Rights,activism_civil_rights,false -ChinHuaLu,newsmast.social,Books & Literature,books_literature,false -ChinHuaLu,newsmast.social,Creative Arts,creative_arts,false -LawyerSchiff,newsmast.social,Performing Arts,performing_arts,false -ChinHuaLu,newsmast.social,Food & Drink,food_drink,false -ChinHuaLu,newsmast.social,Gaming,gaming,false -LawyerSchiff,newsmast.social,Politics,politics,false -ChinHuaLu,newsmast.social,Humour,humour,false -ChinHuaLu,newsmast.social,Immigrants Rights,immigrants_rights,false -LawyerSchiff,newsmast.social,Poverty & Inequality,poverty_inequality,false -ChinHuaLu,newsmast.social,Movies,movies,false -ChinHuaLu,newsmast.social,Nature & Wildlife,nature_wildlife,false -ChinHuaLu,newsmast.social,Performing Arts,performing_arts,false -ChinHuaLu,newsmast.social,Pets,pets,false -WilliamHolland,newsmast.social,Law & Justice,law_justice,false -WilliamHolland,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false -LawyerSchiff,newsmast.social,Social Media,social_media,false -LawyerSchiff,newsmast.social,Law & Justice,law_justice,true -relaxedmale,newsmast.social,Humour,humour,false -relaxedmale,newsmast.social,Nature & Wildlife,nature_wildlife,false -jaclynasiegel,newsmast.social,Food & Drink,food_drink,false -guzz,newsmast.social,Books & Literature,books_literature,false -ChinHuaLu,newsmast.social,Science,science,false -ChinHuaLu,newsmast.social,Travel,travel,false -ChinHuaLu,newsmast.social,TV & Radio,tv_radio,false -IlCava,mastodon.uno,Healthcare,healthcare,false -ChinHuaLu,newsmast.social,Women’s Voices,women_voices,true -peter,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,true -jaclynasiegel,newsmast.social,Social Sciences,social_sciences,true -guzz,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -guzz,newsmast.social,Environment,environment,false -guzz,newsmast.social,Food & Drink,food_drink,false -guzz,newsmast.social,Government & Policy,government_policy,false -guzz,newsmast.social,History,history,false -guzz,newsmast.social,Humanities,humanities,false -guzz,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false -KamranSaeed,newsmast.social,AI,ai,false -KamranSaeed,newsmast.social,Breaking News,breaking_news,false -KamranSaeed,newsmast.social,Business,business,false -guzz,newsmast.social,Movies,movies,false -peter,newsmast.social,AI,ai,false -guzz,newsmast.social,Music,music,false -peter,newsmast.social,Climate change,climate_change,false -guzz,newsmast.social,Journalism & Comment,news_comment_data,false -peter,newsmast.social,Energy & Pollution,energy_pollution,false -peter,newsmast.social,Environment,environment,false -guzz,newsmast.social,Pets,pets,false -guzz,newsmast.social,Philosophy,philosophy,false -guzz,newsmast.social,Politics,politics,false -guzz,newsmast.social,Puzzles,puzzles,false -guzz,newsmast.social,Science,science,false -guzz,newsmast.social,Social Sciences,social_sciences,false -KamranSaeed,newsmast.social,Climate change,climate_change,false -guzz,newsmast.social,Space,space,false -guzz,newsmast.social,Technology,technology,false -KamranSaeed,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -guzz,newsmast.social,Travel,travel,false -KamranSaeed,newsmast.social,Energy & Pollution,energy_pollution,false -guzz,newsmast.social,Photography,photography,true -Alastair,mastodon.me.uk,Breaking News,breaking_news,false -KamranSaeed,newsmast.social,Football,football,false -KamranSaeed,newsmast.social,Government & Policy,government_policy,false -KamranSaeed,newsmast.social,Healthcare,healthcare,false -GJMPUBLISHER,newsmast.social,AI,ai,false -KamranSaeed,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false -GJMPUBLISHER,newsmast.social,Business,business,false -KamranSaeed,newsmast.social,Poverty & Inequality,poverty_inequality,false -GJMPUBLISHER,newsmast.social,Creative Arts,creative_arts,false -KamranSaeed,newsmast.social,Law & Justice,law_justice,false -KamranSaeed,newsmast.social,Markets & Finance,markets_finance,false -KamranSaeed,newsmast.social,Politics,politics,false -GJMPUBLISHER,newsmast.social,Food & Drink,food_drink,false -enriqueanarte,newsmast.social,Breaking News,breaking_news,false -KamranSaeed,newsmast.social,Sport,sport,false -enriqueanarte,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -KamranSaeed,newsmast.social,Technology,technology,false -KamranSaeed,newsmast.social,Ukraine Invasion,ukraine_invasion,false -KamranSaeed,newsmast.social,Weather,weather,false -KamranSaeed,newsmast.social,Journalism & Comment,news_comment_data,true -samf,newsmast.social,Pets,pets,false -samf,newsmast.social,Philosophy,philosophy,false -enriqueanarte,newsmast.social,Journalism & Comment,news_comment_data,false -ksetiya,newsmast.social,Energy & Pollution,energy_pollution,false -ksetiya,newsmast.social,Engineering,engineering,false -ksetiya,newsmast.social,Environment,environment,false -enriqueanarte,newsmast.social,Politics,politics,false -enriqueanarte,newsmast.social,LGBTQ+,lgbtq,true -GJMPUBLISHER,newsmast.social,Travel,travel,false -GJMPUBLISHER,newsmast.social,LGBTQ+,lgbtq,true -ksetiya,newsmast.social,Food & Drink,food_drink,false -davidadobbs,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false -ksetiya,newsmast.social,Football,football,false -ksetiya,newsmast.social,Gaming,gaming,false -ksetiya,newsmast.social,Government & Policy,government_policy,false -davidadobbs,newsmast.social,Climate change,climate_change,false -ksetiya,newsmast.social,Healthcare,healthcare,false -ksetiya,newsmast.social,History,history,false -davidadobbs,newsmast.social,Environment,environment,false -ksetiya,newsmast.social,Humanities,humanities,false -ksetiya,newsmast.social,Humour,humour,false -ksetiya,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false -ksetiya,newsmast.social,Immigrants Rights,immigrants_rights,false -davidadobbs,newsmast.social,History,history,false -ksetiya,newsmast.social,Indigenous Peoples,indigenous_peoples,false -ksetiya,newsmast.social,Poverty & Inequality,poverty_inequality,false -davidadobbs,newsmast.social,Humanities,humanities,false -ksetiya,newsmast.social,Law & Justice,law_justice,false -davidadobbs,newsmast.social,Science,science,true -ksetiya,newsmast.social,LGBTQ+,lgbtq,false -jsit,newsmast.social,Weather,weather,false -ksetiya,newsmast.social,Markets & Finance,markets_finance,false -ksetiya,newsmast.social,Mathematics,mathematics,false -ksetiya,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false -ksetiya,newsmast.social,Movies,movies,false -ksetiya,newsmast.social,Music,music,false -ksetiya,newsmast.social,Nature & Wildlife,nature_wildlife,false -ksetiya,newsmast.social,Journalism & Comment,news_comment_data,false -ksetiya,newsmast.social,Performing Arts,performing_arts,false -ksetiya,newsmast.social,Pets,pets,false -ksetiya,newsmast.social,Photography,photography,false -ksetiya,newsmast.social,Physics,physics,false -ksetiya,newsmast.social,Philosophy,philosophy,true -jaclynasiegel,newsmast.social,Humour,humour,false -jaclynasiegel,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false -jaclynasiegel,newsmast.social,Nature & Wildlife,nature_wildlife,false -jaclynasiegel,newsmast.social,Puzzles,puzzles,false -jaclynasiegel,newsmast.social,Space,space,false -ksetiya,newsmast.social,Politics,politics,false -seema,newsmast.social,Social Sciences,social_sciences,true -rewildingsam,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,true -FreddieJ,newsmast.social,Activism & Civil Rights,activism_civil_rights,false -ksetiya,newsmast.social,Puzzles,puzzles,false -ksetiya,newsmast.social,Science,science,false -ksetiya,newsmast.social,Social Sciences,social_sciences,false -ksetiya,newsmast.social,Space,space,false -ksetiya,newsmast.social,Sport,sport,false -ksetiya,newsmast.social,Technology,technology,false -ksetiya,newsmast.social,Travel,travel,false -ksetiya,newsmast.social,TV & Radio,tv_radio,false -ksetiya,newsmast.social,Ukraine Invasion,ukraine_invasion,false -ksetiya,newsmast.social,Visual Arts,visual_arts,false -ksetiya,newsmast.social,Weather,weather,false -ksetiya,newsmast.social,Women’s Voices,women_voices,false -ksetiya,newsmast.social,Workers Rights,workers_rights,false -matt_cary,newsmast.social,AI,ai,false -matt_cary,newsmast.social,Black Voices,black_voices,false -matt_cary,newsmast.social,Disabled Voices,disabled_voices,false -MKandHerBC,newsmast.social,Business,business,false -MKandHerBC,newsmast.social,Humour,humour,false -MKandHerBC,newsmast.social,Puzzles,puzzles,false -MKandHerBC,newsmast.social,Pets,pets,true -jaclynasiegel,newsmast.social,Travel,travel,false -Laurens,newsmast.social,Ukraine Invasion,ukraine_invasion,false -Laurens,newsmast.social,Weather,weather,false -Laurens,newsmast.social,Technology,technology,true -jperlow,newsmast.social,Science,science,false -PhilPlait,newsmast.social,Climate change,climate_change,false -PhilPlait,newsmast.social,Humour,humour,false -PhilPlait,newsmast.social,Physics,physics,false -PhilPlait,newsmast.social,Space,space,false -PhilPlait,newsmast.social,Science,science,true -jperlow,newsmast.social,Social Media,social_media,false -pot8um,newsmast.social,Gaming,gaming,false -pot8um,newsmast.social,LGBTQ+,lgbtq,false -pot8um,newsmast.social,Movies,movies,false -pot8um,newsmast.social,Music,music,false -pot8um,newsmast.social,Journalism & Comment,news_comment_data,false -jperlow,newsmast.social,Space,space,false -pot8um,newsmast.social,Science,science,false -pot8um,newsmast.social,Social Sciences,social_sciences,false -pot8um,newsmast.social,Space,space,false -pot8um,newsmast.social,Visual Arts,visual_arts,false -pot8um,newsmast.social,Women’s Voices,women_voices,false -pot8um,newsmast.social,Disabled Voices,disabled_voices,true -jperlow,newsmast.social,Technology,technology,false -jperlow,newsmast.social,Ukraine Invasion,ukraine_invasion,false -jperlow,newsmast.social,Weather,weather,false -jperlow,newsmast.social,Journalism & Comment,news_comment_data,true -adanvers,newsmast.social,Academia & Research,academia_research,false -adanvers,newsmast.social,Biology,biology,false -adanvers,newsmast.social,Breaking News,breaking_news,false -adanvers,newsmast.social,Climate change,climate_change,false -adanvers,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -adanvers,newsmast.social,Government & Policy,government_policy,false -rogerg44,newsmast.social,Architecture & Design,architecture_design,false -adanvers,newsmast.social,Healthcare,healthcare,false -rogerg44,newsmast.social,Music,music,false -rogerg44,newsmast.social,Performing Arts,performing_arts,false -rogerg44,newsmast.social,Photography,photography,false -rogerg44,newsmast.social,TV & Radio,tv_radio,false -rogerg44,newsmast.social,Visual Arts,visual_arts,false -rogerg44,newsmast.social,Movies,movies,true -adanvers,newsmast.social,History,history,false -adanvers,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false -lawyer,newsmast.social,Food & Drink,food_drink,false -lawyer,newsmast.social,Gaming,gaming,false -adanvers,newsmast.social,Law & Justice,law_justice,false -adanvers,newsmast.social,Journalism & Comment,news_comment_data,false -adanvers,newsmast.social,Philosophy,philosophy,false -adanvers,newsmast.social,Politics,politics,false -rewildingsam,newsmast.social,Climate change,climate_change,false -rewildingsam,newsmast.social,Environment,environment,false -rewildingsam,newsmast.social,Photography,photography,false -adanvers,newsmast.social,Poverty & Inequality,poverty_inequality,false -adanvers,newsmast.social,Science,science,false -adanvers,newsmast.social,Technology,technology,false -adanvers,newsmast.social,US Politics,us_politics,false -cate,newsmast.social,Activism & Civil Rights,activism_civil_rights,false -cate,newsmast.social,Books & Literature,books_literature,false -cate,newsmast.social,Humanities,humanities,false -cate,newsmast.social,Poverty & Inequality,poverty_inequality,false -cate,newsmast.social,Philosophy,philosophy,false -cate,newsmast.social,Women’s Voices,women_voices,true -candice_chirwa,newsmast.social,Activism & Civil Rights,activism_civil_rights,false -candice_chirwa,newsmast.social,Black Voices,black_voices,false -candice_chirwa,newsmast.social,Humanities,humanities,false -candice_chirwa,newsmast.social,LGBTQ+,lgbtq,false -candice_chirwa,newsmast.social,Women’s Voices,women_voices,false -seema,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false -seema,newsmast.social,Climate change,climate_change,false -seema,newsmast.social,Environment,environment,false -Crof,newsmast.social,AI,ai,false -Crof,newsmast.social,Biology,biology,false -Crof,newsmast.social,Climate change,climate_change,false -Crof,newsmast.social,Energy & Pollution,energy_pollution,false -Crof,newsmast.social,Healthcare,healthcare,false -Crof,newsmast.social,History,history,false -Crof,newsmast.social,Poverty & Inequality,poverty_inequality,false -Crof,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false -Crof,newsmast.social,Journalism & Comment,news_comment_data,false -Crof,newsmast.social,Politics,politics,false -tillathenun,newsmast.social,Technology,technology,true -guzz,newsmast.social,Ukraine Invasion,ukraine_invasion,false -Crof,newsmast.social,Social Sciences,social_sciences,false -Crof,newsmast.social,Ukraine Invasion,ukraine_invasion,false -guzz,newsmast.social,Social Media,social_media,false -LynnNanos,newsmast.social,Activism & Civil Rights,activism_civil_rights,false -guzz,newsmast.social,Poverty & Inequality,poverty_inequality,false -guzz,newsmast.social,Healthcare,healthcare,false -TheCultofCalcio,newsmast.social,Business,business,false -TheCultofCalcio,newsmast.social,Journalism & Comment,news_comment_data,false -TheCultofCalcio,newsmast.social,Sport,sport,false -guzz,newsmast.social,Business,business,false -guzz,newsmast.social,Workers Rights,workers_rights,false -LeslieTay,newsmast.social,Photography,photography,false -LeslieTay,newsmast.social,Science,science,false -guzz,newsmast.social,Engineering,engineering,false -LeslieTay,newsmast.social,Food & Drink,food_drink,true -TheCultofCalcio,newsmast.social,Football,football,true -guzz,newsmast.social,Chemistry,chemistry,false -guzz,newsmast.social,Gaming,gaming,false -brasmus,newsmast.social,Energy & Pollution,energy_pollution,false -brasmus,newsmast.social,Climate change,climate_change,true -guzz,newsmast.social,Visual Arts,visual_arts,false -guzz,newsmast.social,Creative Arts,creative_arts,false -MummyMatters,newsmast.social,Creative Arts,creative_arts,false -mariana_b,newsmast.social,AI,ai,false -awanderfulsole,newsmast.social,Architecture & Design,architecture_design,false -sean,newsmast.social,Visual Arts,visual_arts,false -awanderfulsole,newsmast.social,Gaming,gaming,false -awanderfulsole,newsmast.social,Movies,movies,false -awanderfulsole,newsmast.social,Music,music,false -awanderfulsole,newsmast.social,Performing Arts,performing_arts,false -awanderfulsole,newsmast.social,TV & Radio,tv_radio,false -awanderfulsole,newsmast.social,Visual Arts,visual_arts,false -awanderfulsole,newsmast.social,Photography,photography,true -ThirdTime,newsmast.social,Social Media,social_media,false -MummyMatters,newsmast.social,Nature & Wildlife,nature_wildlife,false -MummyMatters,newsmast.social,Pets,pets,false -MummyMatters,newsmast.social,Travel,travel,false -jsit,newsmast.social,Breaking News,breaking_news,true -ThirdTime,newsmast.social,Ukraine Invasion,ukraine_invasion,false -ThirdTime,newsmast.social,Weather,weather,false -lgsmsec,newsmast.social,Activism & Civil Rights,activism_civil_rights,false -lgsmsec,newsmast.social,Energy & Pollution,energy_pollution,false -ThirdTime,newsmast.social,Breaking News,breaking_news,true -lgsmsec,newsmast.social,Law & Justice,law_justice,false -lgsmsec,newsmast.social,Journalism & Comment,news_comment_data,false -lgsmsec,newsmast.social,Politics,politics,false -lgsmsec,newsmast.social,Workers Rights,workers_rights,false -lgsmsec,newsmast.social,LGBTQ+,lgbtq,true -vespula,newsmast.social,Science,science,false -orianavmatos,newsmast.social,Biology,biology,false -Anneliese,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false -Anneliese,newsmast.social,Climate change,climate_change,false -tillathenun,newsmast.social,Climate change,climate_change,false -sitothebo,newsmast.social,Journalism & Comment,news_comment_data,false -tillathenun,newsmast.social,Movies,movies,false -tillathenun,newsmast.social,Science,science,false -adanvers,newsmast.social,Social Sciences,social_sciences,true -Anneliese,newsmast.social,Energy & Pollution,energy_pollution,false -Anneliese,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false -Anneliese,newsmast.social,Journalism & Comment,news_comment_data,false -markrubbo,newsmast.social,Academia & Research,academia_research,false -RhondaAlbom,newsmast.social,Architecture & Design,architecture_design,false -RhondaAlbom,newsmast.social,Environment,environment,false -RhondaAlbom,newsmast.social,Humour,humour,false -RhondaAlbom,newsmast.social,Photography,photography,false -RhondaAlbom,newsmast.social,Visual Arts,visual_arts,false -RhondaAlbom,newsmast.social,Travel,travel,true -aliegilbert,newsmast.social,Environment,environment,false -aliegilbert,newsmast.social,LGBTQ+,lgbtq,false -aliegilbert,newsmast.social,Journalism & Comment,news_comment_data,false -aliegilbert,newsmast.social,Science,science,false -aliegilbert,newsmast.social,Women’s Voices,women_voices,false -tomy,newsmast.social,AI,ai,false -tomy,newsmast.social,Biology,biology,false -tomy,newsmast.social,Humanities,humanities,false -tomy,newsmast.social,Physics,physics,false -tomy,newsmast.social,Science,science,false -tomy,newsmast.social,Space,space,false -tomy,newsmast.social,Philosophy,philosophy,true -Anneliese,newsmast.social,Science,science,false -Anneliese,newsmast.social,Social Sciences,social_sciences,false -GiuliaTranchina,newsmast.social,Humanities,humanities,false -GiuliaTranchina,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false -GiuliaTranchina,newsmast.social,Law & Justice,law_justice,false -GiuliaTranchina,newsmast.social,Poverty & Inequality,poverty_inequality,false -Iyad_Abumoghli,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false -Iyad_Abumoghli,newsmast.social,Climate change,climate_change,false -Iyad_Abumoghli,newsmast.social,Law & Justice,law_justice,false -Iyad_Abumoghli,newsmast.social,Photography,photography,false -Iyad_Abumoghli,newsmast.social,Science,science,false -Iyad_Abumoghli,newsmast.social,Space,space,false -Iyad_Abumoghli,newsmast.social,Environment,environment,true -aliegilbert,newsmast.social,Breaking News,breaking_news,true -Tarden7,newsmast.social,Breaking News,breaking_news,false -Tarden7,newsmast.social,Humour,humour,false -Tarden7,newsmast.social,Movies,movies,false -Tarden7,newsmast.social,Music,music,false -Tarden7,newsmast.social,Nature & Wildlife,nature_wildlife,false -Tarden7,newsmast.social,Journalism & Comment,news_comment_data,false -Tarden7,newsmast.social,Photography,photography,false -Tarden7,newsmast.social,Football,football,true -LynnNanos,newsmast.social,Government & Policy,government_policy,false -ScharSchool,newsmast.social,Government & Policy,government_policy,true -LynnNanos,newsmast.social,Law & Justice,law_justice,false -LynnNanos,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false -WildCard,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,true -guzz,newsmast.social,Weather,weather,false -guzz,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false -guzz,newsmast.social,Academia & Research,academia_research,false -guzz,newsmast.social,Markets & Finance,markets_finance,false -guzz,newsmast.social,AI,ai,false -guzz,newsmast.social,Biology,biology,false -guzz,newsmast.social,Mathematics,mathematics,false -lawyer,newsmast.social,History,history,false -lawyer,newsmast.social,Humanities,humanities,false -lawyer,newsmast.social,Humour,humour,false -guzz,newsmast.social,Physics,physics,false -guzz,newsmast.social,Architecture & Design,architecture_design,false -guzz,newsmast.social,Performing Arts,performing_arts,false -Anneliese,newsmast.social,Environment,environment,true -lawyer,newsmast.social,Immigrants Rights,immigrants_rights,false -ScharSchool,newsmast.social,Activism & Civil Rights,activism_civil_rights,false -ScharSchool,newsmast.social,AI,ai,false -ScharSchool,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false -ScharSchool,newsmast.social,Biology,biology,false -ScharSchool,newsmast.social,Black Voices,black_voices,false -ScharSchool,newsmast.social,Breaking News,breaking_news,false -ScharSchool,newsmast.social,Business,business,false -guzz,newsmast.social,TV & Radio,tv_radio,false -ScharSchool,newsmast.social,Climate change,climate_change,false -guzz,newsmast.social,Sport,sport,false -guzz,newsmast.social,US Sport,us_sport,false -guzz,newsmast.social,Humour,humour,false -ScharSchool,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -ScharSchool,newsmast.social,Disabled Voices,disabled_voices,false -ScharSchool,newsmast.social,Energy & Pollution,energy_pollution,false -ScharSchool,newsmast.social,Engineering,engineering,false -ScharSchool,newsmast.social,Environment,environment,false -sean,newsmast.social,Journalism & Comment,news_comment_data,true -ScharSchool,newsmast.social,Healthcare,healthcare,false -ScharSchool,newsmast.social,Immigrants Rights,immigrants_rights,false -ScharSchool,newsmast.social,Indigenous Peoples,indigenous_peoples,false -ScharSchool,newsmast.social,Poverty & Inequality,poverty_inequality,false -jsit,newsmast.social,Journalism & Comment,news_comment_data,false -ScharSchool,newsmast.social,Law & Justice,law_justice,false -ScharSchool,newsmast.social,LGBTQ+,lgbtq,false -ScharSchool,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false -ScharSchool,newsmast.social,Journalism & Comment,news_comment_data,false -ScharSchool,newsmast.social,Politics,politics,false -markrubbo,newsmast.social,Healthcare,healthcare,false -eannac,newsmast.social,Government & Policy,government_policy,false -markrubbo,newsmast.social,Law & Justice,law_justice,false -Drizzleanddip,newsmast.social,Books & Literature,books_literature,false -Drizzleanddip,newsmast.social,Breaking News,breaking_news,false -Drizzleanddip,newsmast.social,Creative Arts,creative_arts,false -ScharSchool,newsmast.social,Science,science,false -ScharSchool,newsmast.social,Social Sciences,social_sciences,false -ScharSchool,newsmast.social,Space,space,false -ScharSchool,newsmast.social,Technology,technology,false -Drizzleanddip,newsmast.social,Environment,environment,false -ScharSchool,newsmast.social,Women’s Voices,women_voices,false -ScharSchool,newsmast.social,Workers Rights,workers_rights,false -Drizzleanddip,newsmast.social,Movies,movies,false -Drizzleanddip,newsmast.social,Photography,photography,false -lawyer,newsmast.social,Indigenous Peoples,indigenous_peoples,false -Drizzleanddip,newsmast.social,Travel,travel,false -Drizzleanddip,newsmast.social,Visual Arts,visual_arts,false -Drizzleanddip,newsmast.social,Food & Drink,food_drink,true -dawnie,newsmast.social,Breaking News,breaking_news,false -WildCard,newsmast.social,Climate change,climate_change,false -WildCard,newsmast.social,Environment,environment,false -dawnie,newsmast.social,Creative Arts,creative_arts,false -dawnie,newsmast.social,Food & Drink,food_drink,false -dawnie,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false -dawnie,newsmast.social,Pets,pets,false -dawnie,newsmast.social,Puzzles,puzzles,false -dawnie,newsmast.social,Nature & Wildlife,nature_wildlife,true -markrubbo,newsmast.social,Politics,politics,false -vespula,newsmast.social,Space,space,false -rebarkable,newsmast.social,Biology,biology,false -rebarkable,newsmast.social,Environment,environment,false -rebarkable,newsmast.social,Food & Drink,food_drink,false -rebarkable,newsmast.social,Science,science,false -rebarkable,newsmast.social,Pets,pets,true -ghutchis,newsmast.social,Climate change,climate_change,false -ghutchis,newsmast.social,Creative Arts,creative_arts,false -ghutchis,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -ghutchis,newsmast.social,Energy & Pollution,energy_pollution,false -johnhawks,newsmast.social,AI,ai,false -johnhawks,newsmast.social,Science,science,false -johnhawks,newsmast.social,Social Sciences,social_sciences,false -johnhawks,newsmast.social,Space,space,false -johnhawks,newsmast.social,Biology,biology,true -avalio77,newsmast.social,AI,ai,false -avalio77,newsmast.social,Books & Literature,books_literature,false -avalio77,newsmast.social,Climate change,climate_change,false -avalio77,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -avalio77,newsmast.social,Environment,environment,false -avalio77,newsmast.social,Government & Policy,government_policy,false -avalio77,newsmast.social,History,history,false -LynnNanos,newsmast.social,Social Sciences,social_sciences,true -avalio77,newsmast.social,Humanities,humanities,false -guzz,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false -avalio77,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false -avalio77,newsmast.social,Philosophy,philosophy,false -guzz,newsmast.social,Activism & Civil Rights,activism_civil_rights,false -guzz,newsmast.social,Disabled Voices,disabled_voices,false -avalio77,newsmast.social,Social Sciences,social_sciences,false -avalio77,newsmast.social,Technology,technology,false -avalio77,newsmast.social,Poverty & Inequality,poverty_inequality,true -LynnNanos,newsmast.social,Science,science,false -guzz,newsmast.social,Indigenous Peoples,indigenous_peoples,false -guzz,newsmast.social,Women’s Voices,women_voices,false -markrubbo,newsmast.social,US Politics,us_politics,false -andrzej1,newsmast.social,AI,ai,false -FemalesNFinance,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false -FemalesNFinance,newsmast.social,Journalism & Comment,news_comment_data,false -andrzej1,newsmast.social,Architecture & Design,architecture_design,false -andrzej1,newsmast.social,Books & Literature,books_literature,false -natashaklondon,newsmast.social,Nature & Wildlife,nature_wildlife,false -natashaklondon,newsmast.social,Travel,travel,false -andrzej1,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -andrzej1,newsmast.social,Humanities,humanities,false -FemalesNFinance,newsmast.social,Puzzles,puzzles,false -debgod,newsmast.social,Architecture & Design,architecture_design,false -debgod,newsmast.social,Black Voices,black_voices,false -andrzej1,newsmast.social,Science,science,false -andrzej1,newsmast.social,Social Sciences,social_sciences,false -andrzej1,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,true -debgod,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -markrubbo,newsmast.social,Government & Policy,government_policy,true -relaxedmale,newsmast.social,Journalism & Comment,news_comment_data,false -relaxedmale,newsmast.social,Philosophy,philosophy,false -relaxedmale,newsmast.social,Photography,photography,false -relaxedmale,newsmast.social,Poverty & Inequality,poverty_inequality,false -orianavmatos,newsmast.social,Physics,physics,false -relaxedmale,newsmast.social,Social Media,social_media,false -orianavmatos,newsmast.social,Workers Rights,workers_rights,false -debgod,newsmast.social,LGBTQ+,lgbtq,false -debgod,newsmast.social,Music,music,false -debgod,newsmast.social,Performing Arts,performing_arts,false -orianavmatos,newsmast.social,Humour,humour,false -debgod,newsmast.social,Social Sciences,social_sciences,false -debgod,newsmast.social,Activism & Civil Rights,activism_civil_rights,true -QasimRashid,newsmast.social,Breaking News,breaking_news,false -MetalAddicts,newsmast.social,Gaming,gaming,false -QasimRashid,newsmast.social,Government & Policy,government_policy,false -QasimRashid,newsmast.social,Journalism & Comment,news_comment_data,false -QasimRashid,newsmast.social,Politics,politics,true -MetalAddicts,newsmast.social,Movies,movies,false -MetalAddicts,newsmast.social,Performing Arts,performing_arts,false -MetalAddicts,newsmast.social,Visual Arts,visual_arts,false -MetalAddicts,newsmast.social,Music,music,true -ChrisB100,newsmast.social,Poverty & Inequality,poverty_inequality,false -ChrisB100,newsmast.social,Journalism & Comment,news_comment_data,false -relaxedmale,newsmast.social,Social Sciences,social_sciences,false -ChrisB100,newsmast.social,Weather,weather,false -ChrisB100,newsmast.social,Breaking News,breaking_news,true -relaxedmale,newsmast.social,US Politics,us_politics,false -relaxedmale,newsmast.social,Visual Arts,visual_arts,false -relaxedmale,newsmast.social,Weather,weather,false -relaxedmale,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,true -ghutchis,newsmast.social,Engineering,engineering,false -wjnewman,newsmast.social,AI,ai,false -wjnewman,newsmast.social,Climate change,climate_change,false -wjnewman,newsmast.social,Physics,physics,false -wjnewman,newsmast.social,Space,space,false -wjnewman,newsmast.social,Technology,technology,false -wjnewman,newsmast.social,Science,science,true -ghutchis,newsmast.social,Environment,environment,false -reubenwr,newsmast.social,Activism & Civil Rights,activism_civil_rights,false -reubenwr,newsmast.social,Books & Literature,books_literature,false -ghutchis,newsmast.social,Food & Drink,food_drink,false -reubenwr,newsmast.social,History,history,false -reubenwr,newsmast.social,Humanities,humanities,false -reubenwr,newsmast.social,Immigrants Rights,immigrants_rights,false -ghutchis,newsmast.social,Humour,humour,false -ghutchis,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false -ghutchis,newsmast.social,Poverty & Inequality,poverty_inequality,false -hopheim,newsmast.social,Breaking News,breaking_news,false -reubenwr,newsmast.social,Philosophy,philosophy,false -hopheim,newsmast.social,Food & Drink,food_drink,false -reubenwr,newsmast.social,Movies,movies,true -hopheim,newsmast.social,Movies,movies,false -hopheim,newsmast.social,Music,music,false -hopheim,newsmast.social,Travel,travel,false -hopheim,newsmast.social,TV & Radio,tv_radio,false -If_This_Goes_On,newsmast.social,Social Sciences,social_sciences,false -ghutchis,newsmast.social,Mathematics,mathematics,false -ghutchis,newsmast.social,Nature & Wildlife,nature_wildlife,false -ghutchis,newsmast.social,Pets,pets,false -ghutchis,newsmast.social,Physics,physics,false -ghutchis,newsmast.social,Puzzles,puzzles,false -ghutchis,newsmast.social,Science,science,false -ghutchis,newsmast.social,Space,space,false -CharityNews,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,true -CharityNews,newsmast.social,Architecture & Design,architecture_design,false -CharityNews,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false -CharityNews,newsmast.social,Books & Literature,books_literature,false -CharityNews,newsmast.social,Breaking News,breaking_news,false -guzz,newsmast.social,Climate change,climate_change,false -guzz,newsmast.social,Black Voices,black_voices,false -CharityNews,newsmast.social,Climate change,climate_change,false -CharityNews,newsmast.social,Creative Arts,creative_arts,false -eannac,newsmast.social,Politics,politics,false -guzz,newsmast.social,Immigrants Rights,immigrants_rights,false -CharityNews,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -CharityNews,newsmast.social,Energy & Pollution,energy_pollution,false -CharityNews,newsmast.social,Environment,environment,false -guzz,newsmast.social,LGBTQ+,lgbtq,false -CharityNews,newsmast.social,Food & Drink,food_drink,false -CharityNews,newsmast.social,Football,football,false -CharityNews,newsmast.social,Gaming,gaming,false -guzz,newsmast.social,Football,football,false -CharityNews,newsmast.social,History,history,false -eannac,newsmast.social,Technology,technology,false -CharityNews,newsmast.social,Humanities,humanities,false -CharityNews,newsmast.social,Humour,humour,false -CharityNews,newsmast.social,Poverty & Inequality,poverty_inequality,false -sitothebo,newsmast.social,Poverty & Inequality,poverty_inequality,false -game,newsmast.social,Breaking News,breaking_news,false -game,newsmast.social,Creative Arts,creative_arts,false -CharityNews,newsmast.social,Movies,movies,false -CharityNews,newsmast.social,Music,music,false -CharityNews,newsmast.social,Nature & Wildlife,nature_wildlife,false -CharityNews,newsmast.social,Journalism & Comment,news_comment_data,false -CharityNews,newsmast.social,Performing Arts,performing_arts,false -CharityNews,newsmast.social,Pets,pets,false -CharityNews,newsmast.social,Philosophy,philosophy,false -CharityNews,newsmast.social,Photography,photography,false -CharityNews,newsmast.social,Politics,politics,false -CharityNews,newsmast.social,Puzzles,puzzles,false -CharityNews,newsmast.social,Sport,sport,false -CharityNews,newsmast.social,Travel,travel,false -CharityNews,newsmast.social,TV & Radio,tv_radio,false -CharityNews,newsmast.social,Ukraine Invasion,ukraine_invasion,false -CharityNews,newsmast.social,Visual Arts,visual_arts,false -CharityNews,newsmast.social,Weather,weather,false -game,newsmast.social,Food & Drink,food_drink,false -dadonthemoveph,newsmast.social,Climate change,climate_change,false -Andy,newsmast.social,Ukraine Invasion,ukraine_invasion,false -game,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false -willwinter,newsmast.social,AI,ai,false -willwinter,newsmast.social,Business,business,false -game,newsmast.social,Nature & Wildlife,nature_wildlife,false -willwinter,newsmast.social,Government & Policy,government_policy,false -willwinter,newsmast.social,Technology,technology,true -Andy,newsmast.social,Journalism & Comment,news_comment_data,false -KieranRose,newsmast.social,Activism & Civil Rights,activism_civil_rights,false -KieranRose,newsmast.social,Black Voices,black_voices,false -game,newsmast.social,Journalism & Comment,news_comment_data,false -KieranRose,newsmast.social,Poverty & Inequality,poverty_inequality,false -KieranRose,newsmast.social,LGBTQ+,lgbtq,false -game,newsmast.social,Pets,pets,false -KieranRose,newsmast.social,Social Sciences,social_sciences,false -KieranRose,newsmast.social,Disabled Voices,disabled_voices,true -game,newsmast.social,Puzzles,puzzles,false -game,newsmast.social,Social Media,social_media,false -game,newsmast.social,Travel,travel,false -game,newsmast.social,Ukraine Invasion,ukraine_invasion,false -game,newsmast.social,Weather,weather,false -game,newsmast.social,Humour,humour,true -fpricejr,newsmast.social,Activism & Civil Rights,activism_civil_rights,false -fpricejr,newsmast.social,AI,ai,false -fpricejr,newsmast.social,Breaking News,breaking_news,false -eannac,newsmast.social,US Politics,us_politics,false -fpricejr,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -bobbymcd,newsmast.social,Breaking News,breaking_news,false -fpricejr,newsmast.social,Football,football,false -fpricejr,newsmast.social,Government & Policy,government_policy,false -fpricejr,newsmast.social,History,history,false -bobbymcd,newsmast.social,Climate change,climate_change,false -fpricejr,newsmast.social,Humanities,humanities,false -fpricejr,newsmast.social,Poverty & Inequality,poverty_inequality,false -bobbymcd,newsmast.social,Energy & Pollution,energy_pollution,false -fpricejr,newsmast.social,Law & Justice,law_justice,false -bobbymcd,newsmast.social,Mathematics,mathematics,false -fpricejr,newsmast.social,Music,music,false -fpricejr,newsmast.social,Politics,politics,false -fpricejr,newsmast.social,Social Sciences,social_sciences,false -fpricejr,newsmast.social,Sport,sport,false -fpricejr,newsmast.social,Technology,technology,false -fpricejr,newsmast.social,TV & Radio,tv_radio,false -fpricejr,newsmast.social,Journalism & Comment,news_comment_data,true -ghutchis,newsmast.social,AI,ai,false -ghutchis,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false -ghutchis,newsmast.social,Biology,biology,false -Lamech,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false -Lamech,newsmast.social,Climate change,climate_change,false -Lamech,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -Lamech,newsmast.social,Energy & Pollution,energy_pollution,false -Lamech,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false -Lamech,newsmast.social,Poverty & Inequality,poverty_inequality,false -eannac,newsmast.social,Weather,weather,false -davidrees5761,newsmast.social,Books & Literature,books_literature,false -BillSaysThis,newsmast.social,Breaking News,breaking_news,false -BillSaysThis,newsmast.social,Law & Justice,law_justice,false -BillSaysThis,newsmast.social,Politics,politics,false -BillSaysThis,newsmast.social,US Politics,us_politics,false -BillSaysThis,newsmast.social,Sport,sport,true -Lamech,newsmast.social,Environment,environment,true -mombian,newsmast.social,Activism & Civil Rights,activism_civil_rights,false -mombian,newsmast.social,Books & Literature,books_literature,false -mombian,newsmast.social,Food & Drink,food_drink,false -mweinbach,newsmast.social,AI,ai,false -mweinbach,newsmast.social,Breaking News,breaking_news,false -mweinbach,newsmast.social,Business,business,false -eannac,newsmast.social,Science,science,false -eannac,newsmast.social,Philosophy,philosophy,false -mweinbach,newsmast.social,Engineering,engineering,false -davidrees5761,newsmast.social,Music,music,false -PetsMag,newsmast.social,Science,science,false -ANT_LCFC,newsmast.social,Creative Arts,creative_arts,false -ANT_LCFC,newsmast.social,Food & Drink,food_drink,false -davidrees5761,newsmast.social,TV & Radio,tv_radio,false -ANT_LCFC,newsmast.social,Humour,humour,false -davidrees5761,newsmast.social,Visual Arts,visual_arts,false -ANT_LCFC,newsmast.social,Football,football,true -davidrees5761,newsmast.social,Movies,movies,true -mweinbach,newsmast.social,Government & Policy,government_policy,false -mweinbach,newsmast.social,Healthcare,healthcare,false -sitothebo,newsmast.social,Programming,programming,false -mweinbach,newsmast.social,Law & Justice,law_justice,false -mweinbach,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false -mweinbach,newsmast.social,Journalism & Comment,news_comment_data,false -desire2undrstnd,newsmast.social,AI,ai,false -mweinbach,newsmast.social,Physics,physics,false -mweinbach,newsmast.social,Politics,politics,false -desire2undrstnd,newsmast.social,Football,football,false -tderyugina,newsmast.social,Climate change,climate_change,false -desire2undrstnd,newsmast.social,Humour,humour,false -desire2undrstnd,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false -tderyugina,newsmast.social,Energy & Pollution,energy_pollution,false -tderyugina,newsmast.social,Environment,environment,false -desire2undrstnd,newsmast.social,US Sport,us_sport,false -desire2undrstnd,newsmast.social,Technology,technology,true -sitothebo,newsmast.social,Social Media,social_media,false -sitothebo,newsmast.social,Technology,technology,false -tderyugina,newsmast.social,Ukraine Invasion,ukraine_invasion,false -orianavmatos,newsmast.social,Puzzles,puzzles,false -mweinbach,newsmast.social,Science,science,false -mweinbach,newsmast.social,Social Sciences,social_sciences,false -mweinbach,newsmast.social,Space,space,false -mweinbach,newsmast.social,Weather,weather,false -mweinbach,newsmast.social,Technology,technology,true -mombian,newsmast.social,History,history,false -vespula,newsmast.social,Technology,technology,false -GiuliaTranchina,newsmast.social,Social Sciences,social_sciences,false -mombian,newsmast.social,Women’s Voices,women_voices,false -mombian,newsmast.social,LGBTQ+,lgbtq,true -GiuliaTranchina,newsmast.social,Democracy & Human Rights,democracy_human_rights,true -sas_test,newsmast.social,Breaking News,breaking_news,false -PetsMag,newsmast.social,Physics,physics,false -PetsMag,newsmast.social,Programming,programming,false -PetsMag,newsmast.social,Puzzles,puzzles,false -PlantInitiative,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false -ShaggyShepherd,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false -ShaggyShepherd,newsmast.social,Immigrants Rights,immigrants_rights,false -PetsMag,newsmast.social,Social Media,social_media,false -PetsMag,newsmast.social,Space,space,false -ShaggyShepherd,newsmast.social,Social Sciences,social_sciences,false -PetsMag,newsmast.social,Technology,technology,false -ShaggyShepherd,newsmast.social,Books & Literature,books_literature,true -PlantInitiative,newsmast.social,Climate change,climate_change,false -PlantInitiative,newsmast.social,Energy & Pollution,energy_pollution,false -PetsMag,newsmast.social,Travel,travel,false -PetsMag,newsmast.social,TV & Radio,tv_radio,false -PetsMag,newsmast.social,Ukraine Invasion,ukraine_invasion,false -PetsMag,newsmast.social,Visual Arts,visual_arts,false -ghutchis,newsmast.social,Technology,technology,false -ghutchis,newsmast.social,Travel,travel,false -PetsMag,newsmast.social,Weather,weather,false -vespula,newsmast.social,AI,ai,true -ghutchis,newsmast.social,Chemistry,chemistry,true -sas_test,newsmast.social,Social Media,social_media,false -sas_test,newsmast.social,Ukraine Invasion,ukraine_invasion,false -sas_test,newsmast.social,Weather,weather,false -PlantInitiative,newsmast.social,Environment,environment,true -lawyer,newsmast.social,LGBTQ+,lgbtq,false -lawyer,newsmast.social,Markets & Finance,markets_finance,false -lawyer,newsmast.social,Movies,movies,false -jeremygodwin,newsmast.social,Space,space,false -dadonthemoveph,newsmast.social,Indigenous Peoples,indigenous_peoples,false -dadonthemoveph,newsmast.social,Philosophy,philosophy,false -artek,newsmast.social,Biology,biology,false -artek,newsmast.social,Breaking News,breaking_news,false -artek,newsmast.social,Chemistry,chemistry,false -artek,newsmast.social,Engineering,engineering,false -artek,newsmast.social,Mathematics,mathematics,false -artek,newsmast.social,Physics,physics,false -artek,newsmast.social,Space,space,false -artek,newsmast.social,Science,science,true -zinmoe,newsmast.social,Breaking News,breaking_news,false -zinmoe,newsmast.social,Politics,politics,false -zinmoe,newsmast.social,Ukraine Invasion,ukraine_invasion,false -zinmoe,newsmast.social,Weather,weather,false -zinmoe,newsmast.social,Journalism & Comment,news_comment_data,true -newsmast,newsmast.social,Music,music,false -wdshow,newsmast.social,Breaking News,breaking_news,false -eannac,newsmast.social,Law & Justice,law_justice,false -eannac,newsmast.social,Business,business,true -LawyerSchiff,newsmast.social,Social Sciences,social_sciences,false -wdshow,newsmast.social,Government & Policy,government_policy,false -wdshow,newsmast.social,Healthcare,healthcare,false -wdshow,newsmast.social,Law & Justice,law_justice,false -wdshow,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false -Thiha,newsmast.social,Architecture & Design,architecture_design,false -newsmast,newsmast.social,Nature & Wildlife,nature_wildlife,false -Thiha,newsmast.social,Creative Arts,creative_arts,false -LawyerSchiff,newsmast.social,Space,space,false -Thiha,newsmast.social,Food & Drink,food_drink,false -Thiha,newsmast.social,Football,football,false -Thiha,newsmast.social,Gaming,gaming,false -Thiha,newsmast.social,Humour,humour,false -LawyerSchiff,newsmast.social,Travel,travel,false -Thiha,newsmast.social,Movies,movies,false -Thiha,newsmast.social,Music,music,false -Thiha,newsmast.social,Nature & Wildlife,nature_wildlife,false -Thiha,newsmast.social,Journalism & Comment,news_comment_data,false -Thiha,newsmast.social,Performing Arts,performing_arts,false -Thiha,newsmast.social,Pets,pets,false -Thiha,newsmast.social,Photography,photography,false -Thiha,newsmast.social,Politics,politics,false -Thiha,newsmast.social,Puzzles,puzzles,false -Thiha,newsmast.social,Social Sciences,social_sciences,false -Thiha,newsmast.social,Sport,sport,false -Thiha,newsmast.social,Travel,travel,false -Thiha,newsmast.social,TV & Radio,tv_radio,false -Thiha,newsmast.social,Ukraine Invasion,ukraine_invasion,false -Thiha,newsmast.social,Visual Arts,visual_arts,false -Thiha,newsmast.social,Weather,weather,false -wdshow,newsmast.social,Politics,politics,false -LawyerSchiff,newsmast.social,TV & Radio,tv_radio,false -wdshow,newsmast.social,Journalism & Comment,news_comment_data,true -ccgh,newsmast.social,Books & Literature,books_literature,false -LawyerSchiff,newsmast.social,US Politics,us_politics,false -ccgh,newsmast.social,Law & Justice,law_justice,false -ccgh,newsmast.social,Journalism & Comment,news_comment_data,false -ccgh,newsmast.social,Politics,politics,false -LawyerSchiff,newsmast.social,Visual Arts,visual_arts,false -ccgh,newsmast.social,Social Sciences,social_sciences,false -ccgh,newsmast.social,Immigrants Rights,immigrants_rights,true -LawyerSchiff,newsmast.social,Workers Rights,workers_rights,false -yangfengji,newsmast.social,Breaking News,breaking_news,false -yangfengji,newsmast.social,Humanities,humanities,false -dadonthemoveph,newsmast.social,Photography,photography,false -yangfengji,newsmast.social,Mathematics,mathematics,false -yangfengji,newsmast.social,Journalism & Comment,news_comment_data,false -yangfengji,newsmast.social,Philosophy,philosophy,false -yangfengji,newsmast.social,Programming,programming,false -yangfengji,newsmast.social,Science,science,false -yangfengji,newsmast.social,Social Sciences,social_sciences,false -yangfengji,newsmast.social,Technology,technology,false -yangfengji,newsmast.social,AI,ai,true -orianavmatos,newsmast.social,Technology,technology,false -orianavmatos,newsmast.social,Engineering,engineering,false -sitothebo,newsmast.social,Ukraine Invasion,ukraine_invasion,false -sitothebo,newsmast.social,Weather,weather,false -jayasax,newsmast.social,Activism & Civil Rights,activism_civil_rights,false -Kyaw,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false -Kyaw,newsmast.social,Breaking News,breaking_news,false -jayasax,newsmast.social,Architecture & Design,architecture_design,false -jayasax,newsmast.social,Black Voices,black_voices,false -Kyaw,newsmast.social,Climate change,climate_change,false -jayasax,newsmast.social,Books & Literature,books_literature,false -jayasax,newsmast.social,Creative Arts,creative_arts,false -Kyaw,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -Kyaw,newsmast.social,Energy & Pollution,energy_pollution,false -Kyaw,newsmast.social,Environment,environment,false -Kyaw,newsmast.social,Healthcare,healthcare,false -Kyaw,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false -Kyaw,newsmast.social,Poverty & Inequality,poverty_inequality,false -Kyaw,newsmast.social,Law & Justice,law_justice,false -Kyaw,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false -Kyaw,newsmast.social,Politics,politics,false -Kyaw,newsmast.social,AI,ai,true -Thiha,newsmast.social,AI,ai,false -Thiha,newsmast.social,Technology,technology,true -lawyer,newsmast.social,Music,music,false -lawyer,newsmast.social,Nature & Wildlife,nature_wildlife,false -lawyer,newsmast.social,Performing Arts,performing_arts,false -lawyer,newsmast.social,Pets,pets,false -lawyer,newsmast.social,Philosophy,philosophy,false -lawyer,newsmast.social,Photography,photography,false -lawyer,newsmast.social,Puzzles,puzzles,false -lawyer,newsmast.social,Travel,travel,false -lawyer,newsmast.social,TV & Radio,tv_radio,false -lawyer,newsmast.social,Visual Arts,visual_arts,false -lawyer,newsmast.social,Women’s Voices,women_voices,false -TasmanianTimes,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false -TasmanianTimes,newsmast.social,Climate change,climate_change,false -jayasax,newsmast.social,Disabled Voices,disabled_voices,false -IlCava,mastodon.uno,Humour,humour,false -jayasax,newsmast.social,Gaming,gaming,false -jayasax,newsmast.social,Humour,humour,false -jayasax,newsmast.social,Immigrants Rights,immigrants_rights,false -Kyaw,newsmast.social,Technology,technology,false -Kyaw,newsmast.social,Ukraine Invasion,ukraine_invasion,false -jayasax,newsmast.social,Indigenous Peoples,indigenous_peoples,false -Kyaw,newsmast.social,Weather,weather,false -IlCava,mastodon.uno,"Hunger, Disease & Water",hunger_disease_water,false -newsmast,newsmast.social,Performing Arts,performing_arts,false -orianavmatos,newsmast.social,AI,ai,false -Kyaw,newsmast.social,Journalism & Comment,news_comment_data,false -RossA,newsmast.social,AI,ai,false -newsmast,newsmast.social,Pets,pets,false -RossA,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false -RossA,newsmast.social,Books & Literature,books_literature,false -RossA,newsmast.social,Breaking News,breaking_news,false -akptest007,newsmast.social,Books & Literature,books_literature,false -RossA,newsmast.social,Gaming,gaming,false -RossA,newsmast.social,Humour,humour,false -OmarSakr,newsmast.social,Breaking News,breaking_news,false -RossA,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false -RossA,newsmast.social,Movies,movies,false -RossA,newsmast.social,Music,music,false -OmarSakr,newsmast.social,Movies,movies,false -OmarSakr,newsmast.social,Politics,politics,false -RossA,newsmast.social,Nature & Wildlife,nature_wildlife,false -RossA,newsmast.social,Journalism & Comment,news_comment_data,false -OmarSakr,newsmast.social,TV & Radio,tv_radio,false -ianwalker,newsmast.social,Climate change,climate_change,false -ianwalker,newsmast.social,Energy & Pollution,energy_pollution,false -RossA,newsmast.social,Performing Arts,performing_arts,false -RossA,newsmast.social,Philosophy,philosophy,false -ianwalker,newsmast.social,Science,science,false -ianwalker,newsmast.social,Social Sciences,social_sciences,false -ianwalker,newsmast.social,Space,space,false -ianwalker,newsmast.social,Environment,environment,true -OmarSakr,newsmast.social,Books & Literature,books_literature,true -RossA,newsmast.social,Photography,photography,false -RossA,newsmast.social,Puzzles,puzzles,false -Pghlesbian,newsmast.social,Environment,environment,false -RossA,newsmast.social,Science,science,false -RossA,newsmast.social,Social Media,social_media,false -RossA,newsmast.social,Social Sciences,social_sciences,false -RossA,newsmast.social,TV & Radio,tv_radio,false -RossA,newsmast.social,Weather,weather,false -S33J,newsmast.social,Books & Literature,books_literature,false -StephanHacker2,newsmast.social,Chemistry,chemistry,true -RossA,newsmast.social,Technology,technology,true -bobbymcd,newsmast.social,Weather,weather,true -orianavmatos,newsmast.social,Programming,programming,false -petroofrats,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false -joanathx,newsmast.social,Nature & Wildlife,nature_wildlife,false -petroofrats,newsmast.social,Environment,environment,false -joanathx,newsmast.social,Travel,travel,true -petroofrats,newsmast.social,Programming,programming,false -petroofrats,newsmast.social,Science,science,false -petroofrats,newsmast.social,Technology,technology,false -petroofrats,newsmast.social,Biology,biology,true -Sascha_Feldmann,newsmast.social,Chemistry,chemistry,false -Sascha_Feldmann,newsmast.social,Engineering,engineering,false -Sascha_Feldmann,newsmast.social,Physics,physics,false -Sascha_Feldmann,newsmast.social,Visual Arts,visual_arts,false -Sascha_Feldmann,newsmast.social,Science,science,true -LukaszSzulc,newsmast.social,AI,ai,false -LukaszSzulc,newsmast.social,Humanities,humanities,false -LukaszSzulc,newsmast.social,Immigrants Rights,immigrants_rights,false -LukaszSzulc,newsmast.social,Social Sciences,social_sciences,false -LukaszSzulc,newsmast.social,Technology,technology,false -LukaszSzulc,newsmast.social,Women’s Voices,women_voices,false -LukaszSzulc,newsmast.social,LGBTQ+,lgbtq,true -MotorcycleGuy,newsmast.social,Activism & Civil Rights,activism_civil_rights,false -MotorcycleGuy,newsmast.social,AI,ai,false -MotorcycleGuy,newsmast.social,Breaking News,breaking_news,false -MotorcycleGuy,newsmast.social,Business,business,false -MotorcycleGuy,newsmast.social,LGBTQ+,lgbtq,false -MotorcycleGuy,newsmast.social,Mathematics,mathematics,false -MotorcycleGuy,newsmast.social,Politics,politics,false -MotorcycleGuy,newsmast.social,Science,science,false -MotorcycleGuy,newsmast.social,Space,space,false -MotorcycleGuy,newsmast.social,Technology,technology,false -MotorcycleGuy,newsmast.social,Healthcare,healthcare,true -marianajeronimo,newsmast.social,Breaking News,breaking_news,false -marianajeronimo,newsmast.social,Environment,environment,false -marianajeronimo,newsmast.social,Journalism & Comment,news_comment_data,false -marianajeronimo,newsmast.social,Business,business,true -marianajeronimo,newsmast.social,Travel,travel,false -marianajeronimo,newsmast.social,Food & Drink,food_drink,false -marianajeronimo,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false -itdrc,newsmast.social,Business,business,false -itdrc,newsmast.social,Engineering,engineering,false -itdrc,newsmast.social,Government & Policy,government_policy,false -itdrc,newsmast.social,Humanities,humanities,false -itdrc,newsmast.social,Journalism & Comment,news_comment_data,false -itdrc,newsmast.social,Science,science,false -itdrc,newsmast.social,Technology,technology,false -itdrc,newsmast.social,Ukraine Invasion,ukraine_invasion,false -itdrc,newsmast.social,Weather,weather,false -itdrc,newsmast.social,Breaking News,breaking_news,true -pennywalker,newsmast.social,Environment,environment,true -jayasax,newsmast.social,LGBTQ+,lgbtq,false -jayasax,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false -sean,newsmast.social,Breaking News,breaking_news,false -pam_palmater,newsmast.social,Activism & Civil Rights,activism_civil_rights,false -pam_palmater,newsmast.social,Climate change,climate_change,false -pam_palmater,newsmast.social,Environment,environment,false -pam_palmater,newsmast.social,Government & Policy,government_policy,false -pam_palmater,newsmast.social,Journalism & Comment,news_comment_data,false -jayasax,newsmast.social,Movies,movies,false -Michael_E,newsmast.social,Environment,environment,false -pam_palmater,newsmast.social,Women’s Voices,women_voices,false -pam_palmater,newsmast.social,Indigenous Peoples,indigenous_peoples,true -Michael_E,newsmast.social,History,history,false -Michael_E,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false -Michael_E,newsmast.social,Philosophy,philosophy,false -Michael_E,newsmast.social,Poverty & Inequality,poverty_inequality,false -Michael_E,newsmast.social,Social Sciences,social_sciences,false -Michael_E,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,true -dltj,newsmast.social,AI,ai,false -dltj,newsmast.social,Breaking News,breaking_news,false -dltj,newsmast.social,Climate change,climate_change,false -jayasax,newsmast.social,Music,music,false -luisaropio,newsmast.social,Breaking News,breaking_news,false -jayasax,newsmast.social,Nature & Wildlife,nature_wildlife,false -jayasax,newsmast.social,Performing Arts,performing_arts,false -luisaropio,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -jayasax,newsmast.social,Pets,pets,false -luisaropio,newsmast.social,Energy & Pollution,energy_pollution,false -luisaropio,newsmast.social,Social Sciences,social_sciences,false -dltj,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -dltj,newsmast.social,Energy & Pollution,energy_pollution,false -dltj,newsmast.social,Environment,environment,false -dltj,newsmast.social,Journalism & Comment,news_comment_data,false -toyin,newsmast.social,Activism & Civil Rights,activism_civil_rights,false -dltj,newsmast.social,Science,science,false -dltj,newsmast.social,Technology,technology,true -Johnvink,newsmast.social,Climate change,climate_change,false -Johnvink,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -Johnvink,newsmast.social,Environment,environment,false -toyin,newsmast.social,Breaking News,breaking_news,false -Johnvink,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false -Johnvink,newsmast.social,Poverty & Inequality,poverty_inequality,false -Johnvink,newsmast.social,Journalism & Comment,news_comment_data,false -toyin,newsmast.social,Disabled Voices,disabled_voices,false -toyin,newsmast.social,History,history,false -Johnvink,newsmast.social,Photography,photography,true -jrmartin,newsmast.social,Creative Arts,creative_arts,false -jrmartin,newsmast.social,Social Sciences,social_sciences,false -toyin,newsmast.social,Humanities,humanities,false -NycciNellis,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -Pghlesbian,newsmast.social,Government & Policy,government_policy,false -Pghlesbian,newsmast.social,Healthcare,healthcare,false -NycciNellis,newsmast.social,Environment,environment,false -Pghlesbian,newsmast.social,Law & Justice,law_justice,false -Pghlesbian,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false -NycciNellis,newsmast.social,Government & Policy,government_policy,false -Pghlesbian,newsmast.social,Social Sciences,social_sciences,false -Pghlesbian,newsmast.social,Journalism & Comment,news_comment_data,true -lawyer,newsmast.social,Activism & Civil Rights,activism_civil_rights,false -lawyer,newsmast.social,Architecture & Design,architecture_design,false -lawyer,newsmast.social,Black Voices,black_voices,false -lawyer,newsmast.social,Books & Literature,books_literature,false -lawyer,newsmast.social,Business,business,false -NycciNellis,newsmast.social,Law & Justice,law_justice,false -NycciNellis,newsmast.social,Journalism & Comment,news_comment_data,false -NycciNellis,newsmast.social,Performing Arts,performing_arts,false -Ed_Rempel,newsmast.social,AI,ai,false -Ed_Rempel,newsmast.social,Breaking News,breaking_news,false -Ed_Rempel,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -NycciNellis,newsmast.social,Politics,politics,false -Ed_Rempel,newsmast.social,Food & Drink,food_drink,false -Ed_Rempel,newsmast.social,Government & Policy,government_policy,false -NycciNellis,newsmast.social,TV & Radio,tv_radio,false -Ed_Rempel,newsmast.social,Humour,humour,false -NycciNellis,newsmast.social,US Politics,us_politics,false -Ed_Rempel,newsmast.social,Markets & Finance,markets_finance,false -Ed_Rempel,newsmast.social,Journalism & Comment,news_comment_data,false -NycciNellis,newsmast.social,Breaking News,breaking_news,true -Ed_Rempel,newsmast.social,Politics,politics,false -toyin,newsmast.social,Immigrants Rights,immigrants_rights,false -toyin,newsmast.social,Indigenous Peoples,indigenous_peoples,false -Ed_Rempel,newsmast.social,Space,space,false -Ed_Rempel,newsmast.social,Technology,technology,false -Ed_Rempel,newsmast.social,Travel,travel,false -Ed_Rempel,newsmast.social,Business,business,true -toyin,newsmast.social,LGBTQ+,lgbtq,false -pennywalker,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false -pennywalker,newsmast.social,Books & Literature,books_literature,false -pennywalker,newsmast.social,Climate change,climate_change,false -pennywalker,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -pennywalker,newsmast.social,Energy & Pollution,energy_pollution,false -pennywalker,newsmast.social,Law & Justice,law_justice,false -pennywalker,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false -pennywalker,newsmast.social,Science,science,false -pennywalker,newsmast.social,Social Sciences,social_sciences,false -lawyer,newsmast.social,Workers Rights,workers_rights,false -rileyhBat,newsmast.social,Breaking News,breaking_news,false -newsmast,newsmast.social,Philosophy,philosophy,false -jeremygodwin,newsmast.social,Technology,technology,false -Kyaw,newsmast.social,Government & Policy,government_policy,false -rileyhBat,newsmast.social,Business,business,false -arlettecontrers,newsmast.social,AI,ai,false -arlettecontrers,newsmast.social,Journalism & Comment,news_comment_data,false -arlettecontrers,newsmast.social,Politics,politics,false -jayasax,newsmast.social,Photography,photography,false -Alastair,mastodon.me.uk,Engineering,engineering,false -fingolas,journa.host,Journalism & Comment,news_comment_data,false -deniseoberry,newsmast.social,AI,ai,false -deniseoberry,newsmast.social,Breaking News,breaking_news,false -deniseoberry,newsmast.social,Government & Policy,government_policy,false -deniseoberry,newsmast.social,Law & Justice,law_justice,false -deniseoberry,newsmast.social,Markets & Finance,markets_finance,false -deniseoberry,newsmast.social,Journalism & Comment,news_comment_data,false -sean,newsmast.social,Healthcare,healthcare,false -deniseoberry,newsmast.social,Politics,politics,false -sean,newsmast.social,Academia & Research,academia_research,false -deniseoberry,newsmast.social,Social Sciences,social_sciences,false -deniseoberry,newsmast.social,Technology,technology,false -deniseoberry,newsmast.social,Business,business,true -KevinWagar,newsmast.social,Space,space,false -KevinWagar,newsmast.social,Sport,sport,false -sean,newsmast.social,Workers Rights,workers_rights,false -KevinWagar,newsmast.social,Travel,travel,true -sean,newsmast.social,Food & Drink,food_drink,false -sean,newsmast.social,Humour,humour,false -sean,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false -sean,newsmast.social,Travel,travel,false -sean,newsmast.social,Creative Arts,creative_arts,false -rileyhBat,newsmast.social,Markets & Finance,markets_finance,false -rileyhBat,newsmast.social,Technology,technology,false -rileyhBat,newsmast.social,Engineering,engineering,true -eannac,newsmast.social,Journalism & Comment,news_comment_data,false -jayasax,newsmast.social,Puzzles,puzzles,false -jayasax,newsmast.social,Travel,travel,false -jayasax,newsmast.social,TV & Radio,tv_radio,false -sas_test,newsmast.social,Journalism & Comment,news_comment_data,true -sitothebo,newsmast.social,Breaking News,breaking_news,true -JohnnieJae,newsmast.social,Activism & Civil Rights,activism_civil_rights,false -JohnnieJae,newsmast.social,Breaking News,breaking_news,false -JohnnieJae,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -JohnnieJae,newsmast.social,Disabled Voices,disabled_voices,false -OFMagazine,newsmast.social,Breaking News,breaking_news,false -JohnnieJae,newsmast.social,Government & Policy,government_policy,false -JohnnieJae,newsmast.social,Healthcare,healthcare,false -OFMagazine,newsmast.social,History,history,false -JohnnieJae,newsmast.social,Law & Justice,law_justice,false -JohnnieJae,newsmast.social,LGBTQ+,lgbtq,false -JohnnieJae,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false -JohnnieJae,newsmast.social,Movies,movies,false -JohnnieJae,newsmast.social,Journalism & Comment,news_comment_data,false -JohnnieJae,newsmast.social,Politics,politics,false -OFMagazine,newsmast.social,Music,music,false -JohnnieJae,newsmast.social,TV & Radio,tv_radio,false -JohnnieJae,newsmast.social,Indigenous Peoples,indigenous_peoples,true -OFMagazine,newsmast.social,Social Media,social_media,false -OFMagazine,newsmast.social,Journalism & Comment,news_comment_data,true -If_This_Goes_On,newsmast.social,TV & Radio,tv_radio,false -RachelBranson,newsmast.social,Biology,biology,false -RachelBranson,newsmast.social,Business,business,false -RachelBranson,newsmast.social,Creative Arts,creative_arts,false -Fitwirr,newsmast.social,Business,business,false -Fitwirr,newsmast.social,Food & Drink,food_drink,false -Fitwirr,newsmast.social,Technology,technology,false -Fitwirr,newsmast.social,Travel,travel,false -RachelBranson,newsmast.social,Food & Drink,food_drink,false -RachelBranson,newsmast.social,Nature & Wildlife,nature_wildlife,false -KittyInTheMitty,newsmast.social,Disabled Voices,disabled_voices,false -KittyInTheMitty,newsmast.social,Humanities,humanities,false -KittyInTheMitty,newsmast.social,TV & Radio,tv_radio,false -KittyInTheMitty,newsmast.social,Pets,pets,false -RachelBranson,newsmast.social,Travel,travel,false -maketheswitchAU,newsmast.social,Politics,politics,false -maketheswitchAU,newsmast.social,Business,business,false -maketheswitchAU,newsmast.social,Photography,photography,false -maketheswitchAU,newsmast.social,Sport,sport,false -maketheswitchAU,newsmast.social,Creative Arts,creative_arts,false -chrysalismama,newsmast.social,Activism & Civil Rights,activism_civil_rights,false -chrysalismama,newsmast.social,Books & Literature,books_literature,false -chrysalismama,newsmast.social,Nature & Wildlife,nature_wildlife,false -chrysalismama,newsmast.social,Journalism & Comment,news_comment_data,false -chrysalismama,newsmast.social,Women’s Voices,women_voices,false -chrysalismama,newsmast.social,LGBTQ+,lgbtq,true -maketheswitchAU,newsmast.social,Food & Drink,food_drink,false -maketheswitchAU,newsmast.social,Pets,pets,false -maketheswitchAU,newsmast.social,Nature & Wildlife,nature_wildlife,false -maketheswitchAU,newsmast.social,Travel,travel,false -sustainabilityx,newsmast.social,AI,ai,false -sustainabilityx,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false -sustainabilityx,newsmast.social,Breaking News,breaking_news,false -sustainabilityx,newsmast.social,Business,business,false -Kyaw,newsmast.social,US Politics,us_politics,false -eannac,newsmast.social,History,history,false -eannac,newsmast.social,Energy & Pollution,energy_pollution,false -sean,newsmast.social,Law & Justice,law_justice,false -sustainabilityx,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -sustainabilityx,newsmast.social,Energy & Pollution,energy_pollution,false -sustainabilityx,newsmast.social,Environment,environment,false -eannac,newsmast.social,Social Media,social_media,false -jayasax,newsmast.social,Visual Arts,visual_arts,false -jayasax,newsmast.social,Women’s Voices,women_voices,false -jayasax,newsmast.social,Food & Drink,food_drink,true -sustainabilityx,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false -SithuBo,newsmast.social,Journalism & Comment,news_comment_data,false -sustainabilityx,newsmast.social,Poverty & Inequality,poverty_inequality,false -SithuBo,newsmast.social,Physics,physics,false -sustainabilityx,newsmast.social,Markets & Finance,markets_finance,false -sustainabilityx,newsmast.social,Journalism & Comment,news_comment_data,false -SithuBo,newsmast.social,Science,science,false -sustainabilityx,newsmast.social,Politics,politics,false -SithuBo,newsmast.social,Social Media,social_media,false -blurredbylines,newsmast.social,Activism & Civil Rights,activism_civil_rights,false -blurredbylines,newsmast.social,Black Voices,black_voices,false -blurredbylines,newsmast.social,Disabled Voices,disabled_voices,false -sustainabilityx,newsmast.social,Technology,technology,false -sustainabilityx,newsmast.social,Ukraine Invasion,ukraine_invasion,false -blurredbylines,newsmast.social,Government & Policy,government_policy,false -sustainabilityx,newsmast.social,Weather,weather,false -blurredbylines,newsmast.social,Humanities,humanities,false -sustainabilityx,newsmast.social,Climate change,climate_change,true -blurredbylines,newsmast.social,Immigrants Rights,immigrants_rights,false -blurredbylines,newsmast.social,Indigenous Peoples,indigenous_peoples,false -blurredbylines,newsmast.social,Law & Justice,law_justice,false -blurredbylines,newsmast.social,Journalism & Comment,news_comment_data,false -blurredbylines,newsmast.social,Politics,politics,false -brentnatzle,newsmast.social,TV & Radio,tv_radio,false -blurredbylines,newsmast.social,Social Sciences,social_sciences,false -blurredbylines,newsmast.social,Women’s Voices,women_voices,false -blurredbylines,newsmast.social,LGBTQ+,lgbtq,true -wytham_woods,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false -DrHannahBB,newsmast.social,Activism & Civil Rights,activism_civil_rights,false -DrHannahBB,newsmast.social,Government & Policy,government_policy,false -DrHannahBB,newsmast.social,Healthcare,healthcare,false -DrHannahBB,newsmast.social,LGBTQ+,lgbtq,false -DrHannahBB,newsmast.social,Music,music,false -DrHannahBB,newsmast.social,Journalism & Comment,news_comment_data,false -DrHannahBB,newsmast.social,Politics,politics,false -DrHannahBB,newsmast.social,Women’s Voices,women_voices,false -DrHannahBB,newsmast.social,Disabled Voices,disabled_voices,true -wytham_woods,newsmast.social,Biology,biology,false -wytham_woods,newsmast.social,Climate change,climate_change,false -wytham_woods,newsmast.social,Photography,photography,false -wytham_woods,newsmast.social,Science,science,false -wytham_woods,newsmast.social,Environment,environment,true -Paxivorian,newsmast.social,AI,ai,false -3arabawy,newsmast.social,Activism & Civil Rights,activism_civil_rights,false -3arabawy,newsmast.social,Books & Literature,books_literature,false -3arabawy,newsmast.social,Breaking News,breaking_news,false -3arabawy,newsmast.social,Government & Policy,government_policy,false -3arabawy,newsmast.social,History,history,false -3arabawy,newsmast.social,Humanities,humanities,false -3arabawy,newsmast.social,Immigrants Rights,immigrants_rights,false -3arabawy,newsmast.social,Philosophy,philosophy,false -3arabawy,newsmast.social,Politics,politics,false -Paxivorian,newsmast.social,Biology,biology,false -3arabawy,newsmast.social,Social Sciences,social_sciences,false -3arabawy,newsmast.social,Workers Rights,workers_rights,false -3arabawy,newsmast.social,Journalism & Comment,news_comment_data,true -Paxivorian,newsmast.social,Books & Literature,books_literature,false -Paxivorian,newsmast.social,Breaking News,breaking_news,false -Paxivorian,newsmast.social,Chemistry,chemistry,false -Paxivorian,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -Paxivorian,newsmast.social,Engineering,engineering,false -Paxivorian,newsmast.social,Gaming,gaming,false -Paxivorian,newsmast.social,History,history,false -Paxivorian,newsmast.social,Humanities,humanities,false -Paxivorian,newsmast.social,Mathematics,mathematics,false -ilovefilm,newsmast.social,Social Sciences,social_sciences,false -ilovefilm,newsmast.social,Space,space,false -Accessiology,newsmast.social,AI,ai,false -Accessiology,newsmast.social,Architecture & Design,architecture_design,false -Accessiology,newsmast.social,Nature & Wildlife,nature_wildlife,false -Accessiology,newsmast.social,Technology,technology,false -Accessiology,newsmast.social,Travel,travel,false -Accessiology,newsmast.social,Disabled Voices,disabled_voices,true -ilovefilm,newsmast.social,Technology,technology,false -ilovefilm,newsmast.social,TV & Radio,tv_radio,false -ilovefilm,newsmast.social,Women’s Voices,women_voices,false -S33J,newsmast.social,Humanities,humanities,false -Dhiraj,newsmast.social,Breaking News,breaking_news,false -PowellsParadigm,newsmast.social,Energy & Pollution,energy_pollution,false -Dhiraj,newsmast.social,Government & Policy,government_policy,false -Dhiraj,newsmast.social,Poverty & Inequality,poverty_inequality,false -Dhiraj,newsmast.social,Markets & Finance,markets_finance,false -Dhiraj,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false -Dhiraj,newsmast.social,Politics,politics,false -Dhiraj,newsmast.social,Weather,weather,false -Dhiraj,newsmast.social,Energy & Pollution,energy_pollution,true -Brian_J_Keane,newsmast.social,Activism & Civil Rights,activism_civil_rights,false -Brian_J_Keane,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false -Brian_J_Keane,newsmast.social,Climate change,climate_change,false -Brian_J_Keane,newsmast.social,Indigenous Peoples,indigenous_peoples,true -eannac,newsmast.social,Social Sciences,social_sciences,false -jessa,newsmast.social,Books & Literature,books_literature,false -arg02,newsmast.social,Biology,biology,false -arg02,newsmast.social,Breaking News,breaking_news,false -arg02,newsmast.social,Chemistry,chemistry,false -arg02,newsmast.social,Climate change,climate_change,false -eannac,newsmast.social,Climate change,climate_change,false -sean,newsmast.social,Philosophy,philosophy,false -arg02,newsmast.social,Engineering,engineering,false -arg02,newsmast.social,Environment,environment,false -sean,newsmast.social,History,history,false -arg02,newsmast.social,Journalism & Comment,news_comment_data,false -arg02,newsmast.social,Politics,politics,false -sean,newsmast.social,Social Sciences,social_sciences,false -sean,newsmast.social,Humanities,humanities,false -arg02,newsmast.social,Science,science,false -arg02,newsmast.social,Social Sciences,social_sciences,false -arg02,newsmast.social,Space,space,false -arg02,newsmast.social,Technology,technology,false -arg02,newsmast.social,Ukraine Invasion,ukraine_invasion,false -arg02,newsmast.social,Weather,weather,false -eannac,newsmast.social,Academia & Research,academia_research,false -CELSET,newsmast.social,Breaking News,breaking_news,false -jessa,newsmast.social,Chemistry,chemistry,false -jessa,newsmast.social,Creative Arts,creative_arts,false -jessa,newsmast.social,Disabled Voices,disabled_voices,false -chidreams,newsmast.social,Gaming,gaming,false -jessa,newsmast.social,Engineering,engineering,false -PriyankaJoshi,newsmast.social,Books & Literature,books_literature,false -PriyankaJoshi,newsmast.social,Business,business,false -PriyankaJoshi,newsmast.social,Philosophy,philosophy,false -CELSET,newsmast.social,Law & Justice,law_justice,false -toyin,newsmast.social,Journalism & Comment,news_comment_data,false -jessa,newsmast.social,Gaming,gaming,false -jessa,newsmast.social,History,history,false -jessa,newsmast.social,Humanities,humanities,false -jessa,newsmast.social,Humour,humour,false -jessa,newsmast.social,LGBTQ+,lgbtq,false -jessa,newsmast.social,Performing Arts,performing_arts,false -toyin,newsmast.social,Philosophy,philosophy,false -AlexShvartsman,newsmast.social,AI,ai,false -AlexShvartsman,newsmast.social,Breaking News,breaking_news,false -AlexShvartsman,newsmast.social,Humanities,humanities,false -AlexShvartsman,newsmast.social,Technology,technology,false -AlexShvartsman,newsmast.social,TV & Radio,tv_radio,false -AlexShvartsman,newsmast.social,Ukraine Invasion,ukraine_invasion,false -AlexShvartsman,newsmast.social,Books & Literature,books_literature,true -jessa,newsmast.social,Puzzles,puzzles,false -jessa,newsmast.social,Science,science,false -jessa,newsmast.social,Social Sciences,social_sciences,false -jessa,newsmast.social,Women’s Voices,women_voices,false -jessa,newsmast.social,Workers Rights,workers_rights,false -toyin,newsmast.social,Social Media,social_media,false -toyin,newsmast.social,Social Sciences,social_sciences,false -clairejuliaart,newsmast.social,Women’s Voices,women_voices,false -toyin,newsmast.social,Women’s Voices,women_voices,false -arlettecontrers,newsmast.social,Poverty & Inequality,poverty_inequality,true -toyin,newsmast.social,Black Voices,black_voices,true -erica,newsmast.social,Books & Literature,books_literature,false -erica,newsmast.social,Breaking News,breaking_news,false -erica,newsmast.social,Humanities,humanities,false -erica,newsmast.social,Music,music,false -erica,newsmast.social,Politics,politics,false -erica,newsmast.social,TV & Radio,tv_radio,false -erica,newsmast.social,Ukraine Invasion,ukraine_invasion,false -erica,newsmast.social,Weather,weather,false -erica,newsmast.social,Journalism & Comment,news_comment_data,true -dadonthemoveph,newsmast.social,Biology,biology,false -dadonthemoveph,newsmast.social,Visual Arts,visual_arts,false -brentnatzle,newsmast.social,Business,business,false -brentnatzle,newsmast.social,Government & Policy,government_policy,false -brentnatzle,newsmast.social,Movies,movies,false -brentnatzle,newsmast.social,Music,music,false -brentnatzle,newsmast.social,Journalism & Comment,news_comment_data,false -brentnatzle,newsmast.social,Politics,politics,false -brentnatzle,newsmast.social,Breaking News,breaking_news,true -CELSET,newsmast.social,Politics,politics,false -CELSET,newsmast.social,US Politics,us_politics,false -SJC,newsmast.social,Black Voices,black_voices,false -SJC,newsmast.social,Business,business,false -PowellsParadigm,newsmast.social,AI,ai,false -PowellsParadigm,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false -SJC,newsmast.social,Indigenous Peoples,indigenous_peoples,false -SJC,newsmast.social,Poverty & Inequality,poverty_inequality,false -SJC,newsmast.social,LGBTQ+,lgbtq,false -SJC,newsmast.social,Women’s Voices,women_voices,false -SJC,newsmast.social,Journalism & Comment,news_comment_data,true -PowellsParadigm,newsmast.social,Climate change,climate_change,false -PowellsParadigm,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -PowellsParadigm,newsmast.social,Environment,environment,false -PowellsParadigm,newsmast.social,History,history,false -ilovefilm,newsmast.social,AI,ai,false -ilovefilm,newsmast.social,Climate change,climate_change,false -ilovefilm,newsmast.social,Gaming,gaming,false -ilovefilm,newsmast.social,Healthcare,healthcare,false -ilovefilm,newsmast.social,History,history,false -ilovefilm,newsmast.social,LGBTQ+,lgbtq,false -ilovefilm,newsmast.social,Movies,movies,false -ilovefilm,newsmast.social,Music,music,false -ilovefilm,newsmast.social,Philosophy,philosophy,false -ilovefilm,newsmast.social,Photography,photography,false -ilovefilm,newsmast.social,Physics,physics,false -ilovefilm,newsmast.social,Science,science,false -ilovefilm,newsmast.social,Activism & Civil Rights,activism_civil_rights,true -newsmast,newsmast.social,Photography,photography,false -kalhan,newsmast.social,Law & Justice,law_justice,true -eannac,newsmast.social,Space,space,false -fingolas,journa.host,Physics,physics,false -SithuBo,newsmast.social,Space,space,false -LeanneKeddie,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false -LeanneKeddie,newsmast.social,Breaking News,breaking_news,false -LeanneKeddie,newsmast.social,Environment,environment,false -LeanneKeddie,newsmast.social,Social Sciences,social_sciences,false -LeanneKeddie,newsmast.social,Weather,weather,false -sean,newsmast.social,Nature & Wildlife,nature_wildlife,false -sean,newsmast.social,Pets,pets,false -LeanneKeddie,newsmast.social,Climate change,climate_change,true -SithuBo,newsmast.social,Sport,sport,false -travelpast50,newsmast.social,Books & Literature,books_literature,false -SithuBo,newsmast.social,Ukraine Invasion,ukraine_invasion,false -travelpast50,newsmast.social,History,history,false -travelpast50,newsmast.social,Journalism & Comment,news_comment_data,false -travelpast50,newsmast.social,Photography,photography,false -travelpast50,newsmast.social,Visual Arts,visual_arts,false -travelpast50,newsmast.social,Travel,travel,true -fingolas,journa.host,Politics,politics,false -askchefdennis,newsmast.social,AI,ai,false -askchefdennis,newsmast.social,Food & Drink,food_drink,false -Serious_Feather,newsmast.social,Science,science,false -Krusti,newsmast.social,AI,ai,false -Krusti,newsmast.social,Creative Arts,creative_arts,false -Krusti,newsmast.social,Engineering,engineering,false -kalhan,newsmast.social,Activism & Civil Rights,activism_civil_rights,false -kalhan,newsmast.social,AI,ai,false -kalhan,newsmast.social,Books & Literature,books_literature,false -Krusti,newsmast.social,Food & Drink,food_drink,false -kalhan,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -Krusti,newsmast.social,Humour,humour,false -kalhan,newsmast.social,Government & Policy,government_policy,false -kalhan,newsmast.social,History,history,false -Serious_Feather,newsmast.social,Space,space,false -kalhan,newsmast.social,Humanities,humanities,false -kalhan,newsmast.social,Immigrants Rights,immigrants_rights,false -Krusti,newsmast.social,Nature & Wildlife,nature_wildlife,false -kalhan,newsmast.social,Journalism & Comment,news_comment_data,false -kalhan,newsmast.social,Politics,politics,false -If_This_Goes_On,newsmast.social,Visual Arts,visual_arts,false -If_This_Goes_On,newsmast.social,Women’s Voices,women_voices,false -kalhan,newsmast.social,Social Sciences,social_sciences,false -kalhan,newsmast.social,Technology,technology,false -CELSET,newsmast.social,Ukraine Invasion,ukraine_invasion,false -CELSET,newsmast.social,Social Media,social_media,false -CELSET,newsmast.social,Weather,weather,false -Karia,newsmast.social,Pets,pets,false -Karia,newsmast.social,Philosophy,philosophy,false -jackiealpers,newsmast.social,Books & Literature,books_literature,false -jackiealpers,newsmast.social,History,history,false -jackiealpers,newsmast.social,Photography,photography,false -jackiealpers,newsmast.social,Visual Arts,visual_arts,false -jackiealpers,newsmast.social,Food & Drink,food_drink,true -maketheswitchAU,newsmast.social,Weather,weather,false -samlee,newsmast.social,Breaking News,breaking_news,false -samlee,newsmast.social,Gaming,gaming,false -samlee,newsmast.social,Movies,movies,false -samlee,newsmast.social,Music,music,false -samlee,newsmast.social,Sport,sport,false -samlee,newsmast.social,Football,football,true -maketheswitchAU,newsmast.social,Poverty & Inequality,poverty_inequality,false -maketheswitchAU,newsmast.social,Government & Policy,government_policy,false -maketheswitchAU,newsmast.social,Healthcare,healthcare,false -maketheswitchAU,newsmast.social,Law & Justice,law_justice,false -maketheswitchAU,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false -maketheswitchAU,newsmast.social,Environment,environment,false -Cam_Walker,newsmast.social,Activism & Civil Rights,activism_civil_rights,false -Cam_Walker,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false -Cam_Walker,newsmast.social,Breaking News,breaking_news,false -Cam_Walker,newsmast.social,Climate change,climate_change,false -Cam_Walker,newsmast.social,Energy & Pollution,energy_pollution,false -Cam_Walker,newsmast.social,Government & Policy,government_policy,false -Cam_Walker,newsmast.social,Indigenous Peoples,indigenous_peoples,false -Cam_Walker,newsmast.social,Science,science,false -Cam_Walker,newsmast.social,Ukraine Invasion,ukraine_invasion,false -Cam_Walker,newsmast.social,Workers Rights,workers_rights,false -Cam_Walker,newsmast.social,Environment,environment,true -maketheswitchAU,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false -maketheswitchAU,newsmast.social,Climate change,climate_change,false -maketheswitchAU,newsmast.social,Energy & Pollution,energy_pollution,false -SuperScienceGrl,newsmast.social,AI,ai,false -SuperScienceGrl,newsmast.social,Science,science,false -SuperScienceGrl,newsmast.social,Technology,technology,false -SuperScienceGrl,newsmast.social,Chemistry,chemistry,true -maketheswitchAU,newsmast.social,Technology,technology,false -maketheswitchAU,newsmast.social,Science,science,false -maketheswitchAU,newsmast.social,Biology,biology,false -maketheswitchAU,newsmast.social,Chemistry,chemistry,false -maketheswitchAU,newsmast.social,Engineering,engineering,false -maketheswitchAU,newsmast.social,Space,space,false -maketheswitchAU,newsmast.social,Books & Literature,books_literature,false -maketheswitchAU,newsmast.social,History,history,false -maketheswitchAU,newsmast.social,Architecture & Design,architecture_design,false -maketheswitchAU,newsmast.social,Gaming,gaming,false -maketheswitchAU,newsmast.social,Music,music,false -maketheswitchAU,newsmast.social,Performing Arts,performing_arts,false -newsmast,newsmast.social,Physics,physics,false -newsmast,newsmast.social,Politics,politics,false -eannac,newsmast.social,AI,ai,false -dadonthemoveph,newsmast.social,Space,space,false -SithuBo,newsmast.social,US Sport,us_sport,false -SithuBo,newsmast.social,Weather,weather,false -jmenka,newsmast.social,Creative Arts,creative_arts,false -jmenka,newsmast.social,Gaming,gaming,false -jmenka,newsmast.social,LGBTQ+,lgbtq,false -jmenka,newsmast.social,Movies,movies,false -jmenka,newsmast.social,Performing Arts,performing_arts,false -jmenka,newsmast.social,Photography,photography,false -jmenka,newsmast.social,Visual Arts,visual_arts,true -Emma_Samson,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false -Emma_Samson,newsmast.social,Business,business,false -TheBeeGuy,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false -TheBeeGuy,newsmast.social,Books & Literature,books_literature,false -TheBeeGuy,newsmast.social,Climate change,climate_change,false -TheBeeGuy,newsmast.social,Energy & Pollution,energy_pollution,false -TheBeeGuy,newsmast.social,Humanities,humanities,false -TheBeeGuy,newsmast.social,Music,music,false -benogeh,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false -benogeh,newsmast.social,Climate change,climate_change,false -benogeh,newsmast.social,Energy & Pollution,energy_pollution,false -TheBeeGuy,newsmast.social,Performing Arts,performing_arts,false -TheBeeGuy,newsmast.social,Philosophy,philosophy,false -Superpolitics,newsmast.social,Activism & Civil Rights,activism_civil_rights,false -Superpolitics,newsmast.social,Architecture & Design,architecture_design,false -TheBeeGuy,newsmast.social,Photography,photography,false -TheBeeGuy,newsmast.social,Environment,environment,true -Emma_Samson,newsmast.social,Climate change,climate_change,false -Superpolitics,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -Superpolitics,newsmast.social,Disabled Voices,disabled_voices,false -Emma_Samson,newsmast.social,Energy & Pollution,energy_pollution,false -Superpolitics,newsmast.social,Football,football,false -Superpolitics,newsmast.social,Gaming,gaming,false -Superpolitics,newsmast.social,Government & Policy,government_policy,false -Superpolitics,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false -Superpolitics,newsmast.social,Immigrants Rights,immigrants_rights,false -Superpolitics,newsmast.social,Indigenous Peoples,indigenous_peoples,false -Superpolitics,newsmast.social,Poverty & Inequality,poverty_inequality,false -Emma_Samson,newsmast.social,Government & Policy,government_policy,false -Emma_Samson,newsmast.social,Social Sciences,social_sciences,false -Superpolitics,newsmast.social,Law & Justice,law_justice,false -Superpolitics,newsmast.social,LGBTQ+,lgbtq,false -Superpolitics,newsmast.social,Movies,movies,false -Superpolitics,newsmast.social,Music,music,false -Superpolitics,newsmast.social,Performing Arts,performing_arts,false -Superpolitics,newsmast.social,Photography,photography,false -Emma_Samson,newsmast.social,Environment,environment,true -SithuBo,newsmast.social,Breaking News,breaking_news,true -Oma,newsmast.social,Activism & Civil Rights,activism_civil_rights,false -Superpolitics,newsmast.social,Sport,sport,false -Oma,newsmast.social,AI,ai,false -Superpolitics,newsmast.social,TV & Radio,tv_radio,false -Superpolitics,newsmast.social,Visual Arts,visual_arts,false -Superpolitics,newsmast.social,Women’s Voices,women_voices,false -Superpolitics,newsmast.social,Workers Rights,workers_rights,false -Superpolitics,newsmast.social,Black Voices,black_voices,true -Oma,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false -Oma,newsmast.social,Breaking News,breaking_news,false -benogeh,newsmast.social,Environment,environment,true -Oma,newsmast.social,Climate change,climate_change,false -Oma,newsmast.social,Government & Policy,government_policy,false -FrontSeatPhil,newsmast.social,AI,ai,false -Oma,newsmast.social,Indigenous Peoples,indigenous_peoples,false -Oma,newsmast.social,Journalism & Comment,news_comment_data,false -FrontSeatPhil,newsmast.social,Space,space,false -FrontSeatPhil,newsmast.social,Ukraine Invasion,ukraine_invasion,false -Oma,newsmast.social,Politics,politics,false -eve,newsmast.social,Humanities,humanities,false -eve,newsmast.social,Books & Literature,books_literature,false -eve,newsmast.social,History,history,false -eve,newsmast.social,LGBTQ+,lgbtq,false -Oma,newsmast.social,Poverty & Inequality,poverty_inequality,false -eve,newsmast.social,Food & Drink,food_drink,false -Oma,newsmast.social,Science,science,false -soccerhub,newsmast.social,Breaking News,breaking_news,false -soccerhub,newsmast.social,Journalism & Comment,news_comment_data,false -soccerhub,newsmast.social,Sport,sport,false -soccerhub,newsmast.social,Football,football,true -TasmanianTimes,newsmast.social,Journalism & Comment,news_comment_data,true -jenandreacchi,newsmast.social,Books & Literature,books_literature,false -jenandreacchi,newsmast.social,TV & Radio,tv_radio,false -jenandreacchi,newsmast.social,LGBTQ+,lgbtq,true -WilmotsWay,newsmast.social,Food & Drink,food_drink,false -WilmotsWay,newsmast.social,Humour,humour,false -WilmotsWay,newsmast.social,Movies,movies,false -WilmotsWay,newsmast.social,Music,music,false -thepetsnet,newsmast.social,Humour,humour,false -thepetsnet,newsmast.social,Nature & Wildlife,nature_wildlife,false -thepetsnet,newsmast.social,Travel,travel,false -thepetsnet,newsmast.social,Pets,pets,true -WilmotsWay,newsmast.social,Journalism & Comment,news_comment_data,false -WilmotsWay,newsmast.social,Puzzles,puzzles,false -PolGeoNow,newsmast.social,Biology,biology,false -PolGeoNow,newsmast.social,Breaking News,breaking_news,false -PolGeoNow,newsmast.social,Chemistry,chemistry,false -PolGeoNow,newsmast.social,Engineering,engineering,false -PolGeoNow,newsmast.social,Mathematics,mathematics,false -PolGeoNow,newsmast.social,Physics,physics,false -PolGeoNow,newsmast.social,Politics,politics,false -PolGeoNow,newsmast.social,Science,science,false -PolGeoNow,newsmast.social,Social Sciences,social_sciences,false -PolGeoNow,newsmast.social,Space,space,false -jessa,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false -newsmast,newsmast.social,Puzzles,puzzles,false -dadonthemoveph,newsmast.social,Social Sciences,social_sciences,false -dadonthemoveph,newsmast.social,Creative Arts,creative_arts,false -Abrikosoff,newsmast.social,Climate change,climate_change,false -newsmast,newsmast.social,Science,science,false -newsmast,newsmast.social,Social Sciences,social_sciences,false -newsmast,newsmast.social,Space,space,false -ipub,newsmast.social,Government & Policy,government_policy,true -nyeinygn,newsmast.social,Breaking News,breaking_news,false -nyeinygn,newsmast.social,Politics,politics,false -nyeinygn,newsmast.social,Ukraine Invasion,ukraine_invasion,false -nyeinygn,newsmast.social,Weather,weather,false -enangha,newsmast.social,Food & Drink,food_drink,false -WJAHOM,newsmast.social,Activism & Civil Rights,activism_civil_rights,false -WJAHOM,newsmast.social,Books & Literature,books_literature,false -WJAHOM,newsmast.social,Climate change,climate_change,false -WJAHOM,newsmast.social,Creative Arts,creative_arts,false -WJAHOM,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -WJAHOM,newsmast.social,Environment,environment,false -WJAHOM,newsmast.social,Food & Drink,food_drink,false -WJAHOM,newsmast.social,Football,football,false -WJAHOM,newsmast.social,History,history,false -WJAHOM,newsmast.social,LGBTQ+,lgbtq,false -WJAHOM,newsmast.social,Mathematics,mathematics,false -Krusti,newsmast.social,Pets,pets,false -Krusti,newsmast.social,Programming,programming,false -uthi,newsmast.social,Breaking News,breaking_news,false -uthi,newsmast.social,Creative Arts,creative_arts,false -Krusti,newsmast.social,Puzzles,puzzles,false -Krusti,newsmast.social,Technology,technology,false -uthi,newsmast.social,Food & Drink,food_drink,false -Krusti,newsmast.social,Travel,travel,false -uthi,newsmast.social,Humour,humour,false -Krusti,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,true -uthi,newsmast.social,Nature & Wildlife,nature_wildlife,false -uthi,newsmast.social,Pets,pets,false -uthi,newsmast.social,Politics,politics,false -uthi,newsmast.social,Puzzles,puzzles,false -uthi,newsmast.social,Travel,travel,false -uthi,newsmast.social,Ukraine Invasion,ukraine_invasion,false -uthi,newsmast.social,Weather,weather,false -uthi,newsmast.social,Journalism & Comment,news_comment_data,true -joanathx,newsmast.social,AI,ai,false -PowellsParadigm,newsmast.social,Humanities,humanities,false -PowellsParadigm,newsmast.social,Journalism & Comment,news_comment_data,false -JulieAtkinson,newsmast.social,Food & Drink,food_drink,false -JulieAtkinson,newsmast.social,Nature & Wildlife,nature_wildlife,false -JulieAtkinson,newsmast.social,Pets,pets,false -JulieAtkinson,newsmast.social,Travel,travel,false -mongabay,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false -mongabay,newsmast.social,Biology,biology,false -mongabay,newsmast.social,Climate change,climate_change,false -mongabay,newsmast.social,Environment,environment,false -mongabay,newsmast.social,Journalism & Comment,news_comment_data,true -ipub,newsmast.social,Markets & Finance,markets_finance,false -ipub,newsmast.social,Journalism & Comment,news_comment_data,false -ipub,newsmast.social,Politics,politics,false -ipub,newsmast.social,Technology,technology,false -billmckibben,newsmast.social,Activism & Civil Rights,activism_civil_rights,false -billmckibben,newsmast.social,Climate change,climate_change,false -billmckibben,newsmast.social,Energy & Pollution,energy_pollution,false -billmckibben,newsmast.social,Music,music,false -billmckibben,newsmast.social,Journalism & Comment,news_comment_data,false -billmckibben,newsmast.social,Science,science,false -billmckibben,newsmast.social,Sport,sport,false -billmckibben,newsmast.social,TV & Radio,tv_radio,false -billmckibben,newsmast.social,Ukraine Invasion,ukraine_invasion,false -billmckibben,newsmast.social,Weather,weather,false -billmckibben,newsmast.social,Breaking News,breaking_news,true -Destiny,newsmast.social,LGBTQ+,lgbtq,false -AnnaJ,newsmast.social,Food & Drink,food_drink,false -elisexavier,newsmast.social,Biology,biology,false -elisexavier,newsmast.social,Pets,pets,false -elisexavier,newsmast.social,Physics,physics,false -elisexavier,newsmast.social,Science,science,true -eve,newsmast.social,Indigenous Peoples,indigenous_peoples,false -eve,newsmast.social,Ukraine Invasion,ukraine_invasion,false -AnnaJ,newsmast.social,Visual Arts,visual_arts,false -han_smith,newsmast.social,Activism & Civil Rights,activism_civil_rights,false -han_smith,newsmast.social,Black Voices,black_voices,false -han_smith,newsmast.social,Breaking News,breaking_news,false -han_smith,newsmast.social,Climate change,climate_change,false -han_smith,newsmast.social,Disabled Voices,disabled_voices,false -han_smith,newsmast.social,Engineering,engineering,false -han_smith,newsmast.social,Environment,environment,false -han_smith,newsmast.social,Immigrants Rights,immigrants_rights,false -han_smith,newsmast.social,Indigenous Peoples,indigenous_peoples,false -han_smith,newsmast.social,Mathematics,mathematics,false -han_smith,newsmast.social,Journalism & Comment,news_comment_data,false -han_smith,newsmast.social,Physics,physics,false -Abrikosoff,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -Abrikosoff,newsmast.social,Energy & Pollution,energy_pollution,false -han_smith,newsmast.social,Science,science,false -han_smith,newsmast.social,Social Sciences,social_sciences,false -han_smith,newsmast.social,Space,space,false -han_smith,newsmast.social,Weather,weather,false -Abrikosoff,newsmast.social,Engineering,engineering,false -han_smith,newsmast.social,Women’s Voices,women_voices,false -han_smith,newsmast.social,Workers Rights,workers_rights,false -han_smith,newsmast.social,LGBTQ+,lgbtq,true -Abrikosoff,newsmast.social,Environment,environment,false -vijay,newsmast.social,Technology,technology,false -vijay,newsmast.social,Gaming,gaming,false -newsmast,newsmast.social,Sport,sport,false -vijay,newsmast.social,Movies,movies,false -RewildScotland,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,true -matt_cary,newsmast.social,Immigrants Rights,immigrants_rights,false -matt_cary,newsmast.social,LGBTQ+,lgbtq,false -matt_cary,newsmast.social,Politics,politics,false -Frank_Zafiro,newsmast.social,AI,ai,false -matt_cary,newsmast.social,Social Sciences,social_sciences,false -matt_cary,newsmast.social,Women’s Voices,women_voices,false -RewildScotland,newsmast.social,Philosophy,philosophy,false -IlCava,mastodon.uno,Indigenous Peoples,indigenous_peoples,false -oceanknigge,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,true -Frank_Zafiro,newsmast.social,Creative Arts,creative_arts,false -Frank_Zafiro,newsmast.social,History,history,false -matt_cary,newsmast.social,Workers Rights,workers_rights,false -matt_cary,newsmast.social,Law & Justice,law_justice,true -dadonthemoveph,newsmast.social,Books & Literature,books_literature,false -newsmast,newsmast.social,Technology,technology,false -Frank_Zafiro,newsmast.social,Humanities,humanities,false -Frank_Zafiro,newsmast.social,Humour,humour,false -oceanknigge,newsmast.social,Architecture & Design,architecture_design,false -oceanknigge,newsmast.social,Climate change,climate_change,false -oceanknigge,newsmast.social,Environment,environment,false -Frank_Zafiro,newsmast.social,LGBTQ+,lgbtq,false -Frank_Zafiro,newsmast.social,Movies,movies,false -AnnaJ,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false -Caughtlight,newsmast.social,Breaking News,breaking_news,false -Caughtlight,newsmast.social,Journalism & Comment,news_comment_data,false -Caughtlight,newsmast.social,Sport,sport,false -Caughtlight,newsmast.social,US Sport,us_sport,false -Caughtlight,newsmast.social,Football,football,true -Paxivorian,newsmast.social,Movies,movies,false -Paxivorian,newsmast.social,Music,music,false -Paxivorian,newsmast.social,Journalism & Comment,news_comment_data,false -Paxivorian,newsmast.social,Performing Arts,performing_arts,false -Paxivorian,newsmast.social,Philosophy,philosophy,false -Paxivorian,newsmast.social,Photography,photography,false -Paxivorian,newsmast.social,Physics,physics,false -Paxivorian,newsmast.social,Programming,programming,false -mikea,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false -IlCava,mastodon.uno,Law & Justice,law_justice,false -mikea,newsmast.social,Business,business,false -mikea,newsmast.social,Energy & Pollution,energy_pollution,false -mikea,newsmast.social,Environment,environment,false -mikea,newsmast.social,Politics,politics,false -mikea,newsmast.social,Technology,technology,false -Paxivorian,newsmast.social,Science,science,false -Paxivorian,newsmast.social,Social Sciences,social_sciences,false -Paxivorian,newsmast.social,Space,space,false -Paxivorian,newsmast.social,Technology,technology,false -Paxivorian,newsmast.social,TV & Radio,tv_radio,false -Frank_Zafiro,newsmast.social,Music,music,false -Frank_Zafiro,newsmast.social,Philosophy,philosophy,false -Hope,newsmast.social,Environment,environment,false -Hope,newsmast.social,Performing Arts,performing_arts,false -Hope,newsmast.social,TV & Radio,tv_radio,false -Hope,newsmast.social,Movies,movies,true -WilmotsWay,newsmast.social,Breaking News,breaking_news,false -gnasralla,newsmast.social,AI,ai,false -gnasralla,newsmast.social,Architecture & Design,architecture_design,false -gnasralla,newsmast.social,Climate change,climate_change,false -gnasralla,newsmast.social,Environment,environment,false -gnasralla,newsmast.social,History,history,false -gnasralla,newsmast.social,Humanities,humanities,false -gnasralla,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false -gnasralla,newsmast.social,Music,music,false -gnasralla,newsmast.social,Performing Arts,performing_arts,false -gnasralla,newsmast.social,Philosophy,philosophy,false -gnasralla,newsmast.social,Photography,photography,false -gnasralla,newsmast.social,Technology,technology,false -gnasralla,newsmast.social,Visual Arts,visual_arts,false -gnasralla,newsmast.social,Business,business,true -Aysegul,newsmast.social,Activism & Civil Rights,activism_civil_rights,false -Aysegul,newsmast.social,Architecture & Design,architecture_design,false -Aysegul,newsmast.social,Creative Arts,creative_arts,false -Aysegul,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -Aysegul,newsmast.social,Engineering,engineering,false -Aysegul,newsmast.social,Food & Drink,food_drink,false -Aysegul,newsmast.social,LGBTQ+,lgbtq,false -Aysegul,newsmast.social,Movies,movies,false -Aysegul,newsmast.social,Music,music,false -Aysegul,newsmast.social,Philosophy,philosophy,false -Aysegul,newsmast.social,Science,science,false -Aysegul,newsmast.social,Sport,sport,false -Aysegul,newsmast.social,TV & Radio,tv_radio,false -Aysegul,newsmast.social,Weather,weather,false -Aysegul,newsmast.social,Workers Rights,workers_rights,false -clairejuliaart,newsmast.social,Books & Literature,books_literature,false -clairejuliaart,newsmast.social,Creative Arts,creative_arts,false -Abrikosoff,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false -Oma,newsmast.social,Women’s Voices,women_voices,false -Oma,newsmast.social,Democracy & Human Rights,democracy_human_rights,true -clairejuliaart,newsmast.social,Humanities,humanities,false -alanwelch,newsmast.social,Breaking News,breaking_news,false -Abrikosoff,newsmast.social,Mathematics,mathematics,false -alanwelch,newsmast.social,Journalism & Comment,news_comment_data,false -alanwelch,newsmast.social,Politics,politics,false -alanwelch,newsmast.social,Ukraine Invasion,ukraine_invasion,false -alanwelch,newsmast.social,Weather,weather,true -clairejuliaart,newsmast.social,Humour,humour,false -fingolas,journa.host,Science,science,false -clairejuliaart,newsmast.social,Nature & Wildlife,nature_wildlife,false -clairejuliaart,newsmast.social,Philosophy,philosophy,false -Abrikosoff,newsmast.social,Science,science,false -clairejuliaart,newsmast.social,Social Sciences,social_sciences,false -clairejuliaart,newsmast.social,Travel,travel,false -Abrikosoff,newsmast.social,Space,space,false -steve116,newsmast.social,Architecture & Design,architecture_design,false -IlCava,mastodon.uno,Immigrants Rights,immigrants_rights,false -steve116,newsmast.social,Gaming,gaming,false -steve116,newsmast.social,Movies,movies,false -steve116,newsmast.social,Music,music,false -steve116,newsmast.social,Performing Arts,performing_arts,false -steve116,newsmast.social,Photography,photography,false -steve116,newsmast.social,TV & Radio,tv_radio,false -steve116,newsmast.social,Visual Arts,visual_arts,true -clairejuliaart,newsmast.social,Visual Arts,visual_arts,true -newsmast,newsmast.social,Travel,travel,false -Paxivorian,newsmast.social,Visual Arts,visual_arts,false -dadonthemoveph,newsmast.social,History,history,false -newsmast,newsmast.social,TV & Radio,tv_radio,false -newsmast,newsmast.social,Ukraine Invasion,ukraine_invasion,false -alawriedejesus,newsmast.social,Activism & Civil Rights,activism_civil_rights,false -alawriedejesus,newsmast.social,Music,music,false -alawriedejesus,newsmast.social,Politics,politics,false -Paxivorian,newsmast.social,Weather,weather,false -alawriedejesus,newsmast.social,LGBTQ+,lgbtq,true -devenperez,newsmast.social,AI,ai,false -chloeariellle,newsmast.social,Activism & Civil Rights,activism_civil_rights,false -chloeariellle,newsmast.social,AI,ai,false -chloeariellle,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false -chloeariellle,newsmast.social,Climate change,climate_change,false -Paxivorian,newsmast.social,Architecture & Design,architecture_design,true -chloeariellle,newsmast.social,Environment,environment,false -chloeariellle,newsmast.social,Food & Drink,food_drink,false -chloeariellle,newsmast.social,Journalism & Comment,news_comment_data,false -yarzar,newsmast.social,AI,ai,false -chloeariellle,newsmast.social,Science,science,false -chloeariellle,newsmast.social,Technology,technology,false -yarzar,newsmast.social,Biology,biology,false -yarzar,newsmast.social,Breaking News,breaking_news,false -devenperez,newsmast.social,Physics,physics,false -devenperez,newsmast.social,Space,space,false -devenperez,newsmast.social,Technology,technology,false -devenperez,newsmast.social,Engineering,engineering,true -TheQueerBookish,newsmast.social,Creative Arts,creative_arts,false -Andy,newsmast.social,Business,business,false -Andy,newsmast.social,Environment,environment,false -Andy,newsmast.social,Football,football,false -Andy,newsmast.social,Science,science,false -Andy,newsmast.social,Sport,sport,false -Andy,newsmast.social,Breaking News,breaking_news,true -TheQueerBookish,newsmast.social,Disabled Voices,disabled_voices,false -TheQueerBookish,newsmast.social,LGBTQ+,lgbtq,false -TheQueerBookish,newsmast.social,Women’s Voices,women_voices,false -TheQueerBookish,newsmast.social,Books & Literature,books_literature,true -newsmast,newsmast.social,Visual Arts,visual_arts,false -yarzar,newsmast.social,Chemistry,chemistry,false -yarzar,newsmast.social,Creative Arts,creative_arts,false -Origami,newsmast.social,Breaking News,breaking_news,false -Origami,newsmast.social,Business,business,false -yarzar,newsmast.social,Engineering,engineering,false -Origami,newsmast.social,Environment,environment,false -Origami,newsmast.social,Markets & Finance,markets_finance,false -Origami,newsmast.social,Journalism & Comment,news_comment_data,false -Origami,newsmast.social,Weather,weather,true -yarzar,newsmast.social,Food & Drink,food_drink,false -yarzar,newsmast.social,Humour,humour,false -TheEnglishLion,newsmast.social,Breaking News,breaking_news,false -TheEnglishLion,newsmast.social,Movies,movies,false -TheEnglishLion,newsmast.social,Journalism & Comment,news_comment_data,false -TheEnglishLion,newsmast.social,Sport,sport,false -TheEnglishLion,newsmast.social,Football,football,true -nancymangano,newsmast.social,Books & Literature,books_literature,false -CELSET,newsmast.social,Healthcare,healthcare,false -nancymangano,newsmast.social,Government & Policy,government_policy,false -nancymangano,newsmast.social,Movies,movies,false -nancymangano,newsmast.social,Journalism & Comment,news_comment_data,false -WilmotsWay,newsmast.social,Sport,sport,false -WilmotsWay,newsmast.social,Travel,travel,false -WilmotsWay,newsmast.social,TV & Radio,tv_radio,false -WilmotsWay,newsmast.social,Weather,weather,false -WilmotsWay,newsmast.social,Football,football,true -newsmast,newsmast.social,Weather,weather,false -yarzar,newsmast.social,Mathematics,mathematics,false -newsmast,newsmast.social,Women’s Voices,women_voices,false -newsmast,newsmast.social,Workers Rights,workers_rights,false -newsmast,newsmast.social,Journalism & Comment,news_comment_data,true -yarzar,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false -yarzar,newsmast.social,Nature & Wildlife,nature_wildlife,false -yarzar,newsmast.social,Journalism & Comment,news_comment_data,false -yarzar,newsmast.social,Pets,pets,false -yarzar,newsmast.social,Physics,physics,false -yarzar,newsmast.social,Programming,programming,false -yarzar,newsmast.social,Puzzles,puzzles,false -akptest007,newsmast.social,Technology,technology,false -akptest007,newsmast.social,Business,business,false -S33J,newsmast.social,Space,space,false -abchcz4p,newsmast.social,AI,ai,false -josebilingue,newsmast.social,Academia & Research,academia_research,false -josebilingue,newsmast.social,Activism & Civil Rights,activism_civil_rights,false -yarzar,newsmast.social,Science,science,false -yarzar,newsmast.social,Social Media,social_media,false -christina88,newsmast.social,Workers Rights,workers_rights,false -christina88,newsmast.social,Social Sciences,social_sciences,false -yarzar,newsmast.social,Space,space,false -yarzar,newsmast.social,Sport,sport,false -yarzar,newsmast.social,Technology,technology,false -dennisfparker,newsmast.social,Social Sciences,social_sciences,false -yarzar,newsmast.social,Travel,travel,false -dennisfparker,newsmast.social,Ukraine Invasion,ukraine_invasion,false -yarzar,newsmast.social,Ukraine Invasion,ukraine_invasion,false -dennisfparker,newsmast.social,Weather,weather,false -yarzar,newsmast.social,US Sport,us_sport,false -yarzar,newsmast.social,Weather,weather,false -abchcz4p,newsmast.social,Breaking News,breaking_news,false -mariana_b,newsmast.social,Climate change,climate_change,false -yarzar,newsmast.social,Football,football,true -luffy,newsmast.social,AI,ai,false -EdBowers101,newsmast.social,Business,business,false -EdBowers101,newsmast.social,Football,football,false -luffy,newsmast.social,Biology,biology,false -luffy,newsmast.social,Chemistry,chemistry,false -EdBowers101,newsmast.social,Sport,sport,true -Abrikosoff,newsmast.social,Technology,technology,false -Abrikosoff,newsmast.social,Physics,physics,true -luffy,newsmast.social,Engineering,engineering,false -fingolas,journa.host,Social Media,social_media,false -mariana_b,newsmast.social,Biology,biology,false -mariana_b,newsmast.social,Chemistry,chemistry,false -mariana_b,newsmast.social,Physics,physics,false -abchcz4p,newsmast.social,Football,football,false -luffy,newsmast.social,Football,football,false -luffy,newsmast.social,History,history,false -luffy,newsmast.social,Humanities,humanities,false -luffy,newsmast.social,Mathematics,mathematics,false -PolGeoNow,newsmast.social,Journalism & Comment,news_comment_data,true -abchcz4p,newsmast.social,Programming,programming,false -luffy,newsmast.social,Journalism & Comment,news_comment_data,false -luffy,newsmast.social,Breaking News,breaking_news,true -luffy,newsmast.social,Philosophy,philosophy,false -josebilingue,newsmast.social,Architecture & Design,architecture_design,false -luffy,newsmast.social,Physics,physics,false -abchcz4p,newsmast.social,Science,science,false -luffy,newsmast.social,Programming,programming,false -luffy,newsmast.social,Science,science,false -luffy,newsmast.social,Social Media,social_media,false -luffy,newsmast.social,Social Sciences,social_sciences,false -luffy,newsmast.social,Space,space,false -josebilingue,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false -luffy,newsmast.social,Sport,sport,false -winntendo,mstdn.social,Environment,environment,false -drshaunanderson,newsmast.social,Social Sciences,social_sciences,false -drshaunanderson,newsmast.social,Architecture & Design,architecture_design,false -drshaunanderson,newsmast.social,Business,business,false -abchcz4p,newsmast.social,Space,space,false -abchcz4p,newsmast.social,Sport,sport,false -abchcz4p,newsmast.social,Technology,technology,true -drshaunanderson,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -drshaunanderson,newsmast.social,Football,football,false -drshaunanderson,newsmast.social,Gaming,gaming,false -drshaunanderson,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false -drshaunanderson,newsmast.social,Poverty & Inequality,poverty_inequality,false -drshaunanderson,newsmast.social,Markets & Finance,markets_finance,false -drshaunanderson,newsmast.social,Movies,movies,false -drshaunanderson,newsmast.social,Music,music,false -drshaunanderson,newsmast.social,Performing Arts,performing_arts,false -drshaunanderson,newsmast.social,Photography,photography,false -kirukarki2,newsmast.social,AI,ai,true -infobl,newsmast.social,Journalism & Comment,news_comment_data,false -nico,newsmast.social,Journalism & Comment,news_comment_data,false -James_Shield,newsmast.social,Journalism & Comment,news_comment_data,false -aung,newsmast.social,Journalism & Comment,news_comment_data,true -fs0c131y,newsmast.social,Journalism & Comment,news_comment_data,true -Dolores,newsmast.social,Journalism & Comment,news_comment_data,false -OpsMatters,newsmast.social,Journalism & Comment,news_comment_data,false -CBhattacharji,newsmast.social,Journalism & Comment,news_comment_data,false -Sam,newsmast.social,Journalism & Comment,news_comment_data,false -johnhawks,newsmast.social,Journalism & Comment,news_comment_data,false -luisaropio,newsmast.social,Journalism & Comment,news_comment_data,false -FrontSeatPhil,newsmast.social,Journalism & Comment,news_comment_data,false -nyeinygn,newsmast.social,Journalism & Comment,news_comment_data,true -luffy,newsmast.social,Technology,technology,false -drshaunanderson,newsmast.social,TV & Radio,tv_radio,false -drshaunanderson,newsmast.social,Visual Arts,visual_arts,false -drshaunanderson,newsmast.social,Sport,sport,true -luffy,newsmast.social,Ukraine Invasion,ukraine_invasion,false -luffy,newsmast.social,US Sport,us_sport,false -winntendo,mstdn.social,Gaming,gaming,false -Frank_Zafiro,newsmast.social,Physics,physics,false -fxdpntthm,newsmast.social,Architecture & Design,architecture_design,false -fxdpntthm,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false -fxdpntthm,newsmast.social,Books & Literature,books_literature,false -fxdpntthm,newsmast.social,Breaking News,breaking_news,false -akptest007,newsmast.social,Government & Policy,government_policy,false -fxdpntthm,newsmast.social,Chemistry,chemistry,false -fxdpntthm,newsmast.social,Creative Arts,creative_arts,false -fxdpntthm,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -fxdpntthm,newsmast.social,Energy & Pollution,energy_pollution,false -fxdpntthm,newsmast.social,Engineering,engineering,false -fxdpntthm,newsmast.social,Humour,humour,false -fitinfounder,newsmast.social,Activism & Civil Rights,activism_civil_rights,false -fitinfounder,newsmast.social,Architecture & Design,architecture_design,false -fitinfounder,newsmast.social,Black Voices,black_voices,false -fitinfounder,newsmast.social,Business,business,false -fxdpntthm,newsmast.social,Markets & Finance,markets_finance,false -fxdpntthm,newsmast.social,Mathematics,mathematics,false -fitinfounder,newsmast.social,Disabled Voices,disabled_voices,false -fxdpntthm,newsmast.social,Movies,movies,false -fitinfounder,newsmast.social,Immigrants Rights,immigrants_rights,false -fxdpntthm,newsmast.social,Music,music,false -fitinfounder,newsmast.social,Indigenous Peoples,indigenous_peoples,false -fitinfounder,newsmast.social,Law & Justice,law_justice,false -fitinfounder,newsmast.social,LGBTQ+,lgbtq,false -fxdpntthm,newsmast.social,Nature & Wildlife,nature_wildlife,false -fxdpntthm,newsmast.social,Performing Arts,performing_arts,false -fitinfounder,newsmast.social,Women’s Voices,women_voices,true -fxdpntthm,newsmast.social,Photography,photography,false -fxdpntthm,newsmast.social,Physics,physics,false -fxdpntthm,newsmast.social,Poverty & Inequality,poverty_inequality,false -fxdpntthm,newsmast.social,Puzzles,puzzles,false -fxdpntthm,newsmast.social,Science,science,false -fxdpntthm,newsmast.social,Social Media,social_media,false -fxdpntthm,newsmast.social,Space,space,false -fxdpntthm,newsmast.social,Travel,travel,false -fxdpntthm,newsmast.social,Visual Arts,visual_arts,false -fxdpntthm,newsmast.social,Weather,weather,false -fxdpntthm,newsmast.social,Workers Rights,workers_rights,false -fxdpntthm,newsmast.social,Technology,technology,true -Frank_Zafiro,newsmast.social,Science,science,false -Frank_Zafiro,newsmast.social,Social Sciences,social_sciences,false -Frank_Zafiro,newsmast.social,Space,space,false -Frank_Zafiro,newsmast.social,Sport,sport,false -Frank_Zafiro,newsmast.social,Technology,technology,false -Frank_Zafiro,newsmast.social,TV & Radio,tv_radio,false -Frank_Zafiro,newsmast.social,US Sport,us_sport,false -Frank_Zafiro,newsmast.social,Women’s Voices,women_voices,false -Roamancing,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false -Roamancing,newsmast.social,Books & Literature,books_literature,false -Frank_Zafiro,newsmast.social,Books & Literature,books_literature,true -Roamancing,newsmast.social,Creative Arts,creative_arts,false -marcie,newsmast.social,Activism & Civil Rights,activism_civil_rights,false -Roamancing,newsmast.social,Environment,environment,false -Roamancing,newsmast.social,Food & Drink,food_drink,false -Roamancing,newsmast.social,History,history,false -marcie,newsmast.social,Breaking News,breaking_news,false -Roamancing,newsmast.social,Humanities,humanities,false -Roamancing,newsmast.social,Poverty & Inequality,poverty_inequality,false -Roamancing,newsmast.social,Music,music,false -Roamancing,newsmast.social,Nature & Wildlife,nature_wildlife,false -Roamancing,newsmast.social,Performing Arts,performing_arts,false -Roamancing,newsmast.social,Pets,pets,false -marcie,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -marcie,newsmast.social,Women’s Voices,women_voices,false -Roamancing,newsmast.social,Travel,travel,true -Roamancing,newsmast.social,Disabled Voices,disabled_voices,false -Roamancing,newsmast.social,Indigenous Peoples,indigenous_peoples,false -Roamancing,newsmast.social,Women’s Voices,women_voices,false -Roamancing,newsmast.social,Science,science,false -Roamancing,newsmast.social,Biology,biology,false -marcie,newsmast.social,Disabled Voices,disabled_voices,true -Roamancing,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false -jautero,indieweb.social,Biodiversity & Rewilding,biodiversity_rewilding,false -francisco_blaha,newsmast.social,Climate change,climate_change,false -francisco_blaha,newsmast.social,Poverty & Inequality,poverty_inequality,false -Freddie3,newsmast.social,Creative Arts,creative_arts,false -Freddie3,newsmast.social,Science,science,true -Freddie3,newsmast.social,LGBTQ+,lgbtq,false -Freddie3,newsmast.social,Philosophy,philosophy,false -jakeanders,newsmast.social,Breaking News,breaking_news,false -jakeanders,newsmast.social,Government & Policy,government_policy,false -jakeanders,newsmast.social,Journalism & Comment,news_comment_data,false -jakeanders,newsmast.social,Science,science,false -jakeanders,newsmast.social,Technology,technology,false -jakeanders,newsmast.social,Social Sciences,social_sciences,true -asausagehastwo,newsmast.social,Food & Drink,food_drink,true -asausagehastwo,newsmast.social,Travel,travel,false -asausagehastwo,newsmast.social,Climate change,climate_change,false -asausagehastwo,newsmast.social,Environment,environment,false -asausagehastwo,newsmast.social,Nature & Wildlife,nature_wildlife,false -asausagehastwo,newsmast.social,Journalism & Comment,news_comment_data,false -itsmarta101,newsmast.social,Activism & Civil Rights,activism_civil_rights,false -itsmarta101,newsmast.social,Breaking News,breaking_news,false -itsmarta101,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -itsmarta101,newsmast.social,Movies,movies,false -itsmarta101,newsmast.social,Music,music,false -itsmarta101,newsmast.social,Journalism & Comment,news_comment_data,false -itsmarta101,newsmast.social,TV & Radio,tv_radio,false -itsmarta101,newsmast.social,Women’s Voices,women_voices,false -itsmarta101,newsmast.social,LGBTQ+,lgbtq,true -josebilingue,newsmast.social,Biology,biology,false -josebilingue,newsmast.social,Black Voices,black_voices,false -CameronOrdSmith,newsmast.social,AI,ai,false -business,newsmast.social,Government & Policy,government_policy,false -business,newsmast.social,Journalism & Comment,news_comment_data,false -CameronOrdSmith,newsmast.social,Climate change,climate_change,false -business,newsmast.social,AI,ai,true -CameronOrdSmith,newsmast.social,Programming,programming,false -CameronOrdSmith,newsmast.social,Ukraine Invasion,ukraine_invasion,false -CameronOrdSmith,newsmast.social,Energy & Pollution,energy_pollution,true -josebilingue,newsmast.social,Books & Literature,books_literature,false -aliciahaydenart,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false -aliciahaydenart,newsmast.social,Biology,biology,false -aliciahaydenart,newsmast.social,Books & Literature,books_literature,false -aliciahaydenart,newsmast.social,Climate change,climate_change,false -aliciahaydenart,newsmast.social,Environment,environment,false -aliciahaydenart,newsmast.social,Photography,photography,false -josebilingue,newsmast.social,Breaking News,breaking_news,false -aliciahaydenart,newsmast.social,Science,science,false -aliciahaydenart,newsmast.social,Visual Arts,visual_arts,false -josebilingue,newsmast.social,Chemistry,chemistry,false -josebilingue,newsmast.social,Climate change,climate_change,false -josebilingue,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -josebilingue,newsmast.social,Disabled Voices,disabled_voices,false -josebilingue,newsmast.social,Energy & Pollution,energy_pollution,false -josebilingue,newsmast.social,Environment,environment,false -josebilingue,newsmast.social,Gaming,gaming,false -josebilingue,newsmast.social,Government & Policy,government_policy,false -josebilingue,newsmast.social,Healthcare,healthcare,false -josebilingue,newsmast.social,History,history,false -josebilingue,newsmast.social,Humanities,humanities,false -josebilingue,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false -josebilingue,newsmast.social,Immigrants Rights,immigrants_rights,false -josebilingue,newsmast.social,Indigenous Peoples,indigenous_peoples,false -Lambo,newsmast.social,AI,ai,false -Lambo,newsmast.social,History,history,false -Lambo,newsmast.social,Humanities,humanities,false -Lambo,newsmast.social,Workers Rights,workers_rights,false -Lambo,newsmast.social,Science,science,true -josebilingue,newsmast.social,Law & Justice,law_justice,false -josebilingue,newsmast.social,LGBTQ+,lgbtq,false -josebilingue,newsmast.social,Mathematics,mathematics,false -christina88,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,true -josebilingue,newsmast.social,Movies,movies,false -christina88,newsmast.social,TV & Radio,tv_radio,false -josebilingue,newsmast.social,Music,music,false -josebilingue,newsmast.social,Journalism & Comment,news_comment_data,false -josebilingue,newsmast.social,Performing Arts,performing_arts,false -josebilingue,newsmast.social,Philosophy,philosophy,false -josebilingue,newsmast.social,Photography,photography,false -josebilingue,newsmast.social,Physics,physics,false -josebilingue,newsmast.social,Politics,politics,false -CanWCC,newsmast.social,Activism & Civil Rights,activism_civil_rights,false -CanWCC,newsmast.social,Black Voices,black_voices,false -CanWCC,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -CanWCC,newsmast.social,Disabled Voices,disabled_voices,false -CanWCC,newsmast.social,Immigrants Rights,immigrants_rights,false -CanWCC,newsmast.social,Indigenous Peoples,indigenous_peoples,false -CanWCC,newsmast.social,Poverty & Inequality,poverty_inequality,false -CanWCC,newsmast.social,LGBTQ+,lgbtq,false -CanWCC,newsmast.social,Social Sciences,social_sciences,false -beck,newsmast.social,Activism & Civil Rights,activism_civil_rights,false -beck,newsmast.social,AI,ai,false -beck,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false -beck,newsmast.social,Biology,biology,false -beck,newsmast.social,Black Voices,black_voices,false -beck,newsmast.social,Breaking News,breaking_news,false -beck,newsmast.social,Chemistry,chemistry,false -beck,newsmast.social,Climate change,climate_change,false -beck,newsmast.social,Creative Arts,creative_arts,false -beck,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -beck,newsmast.social,Disabled Voices,disabled_voices,false -beck,newsmast.social,Energy & Pollution,energy_pollution,false -beck,newsmast.social,Engineering,engineering,false -beck,newsmast.social,Food & Drink,food_drink,false -beck,newsmast.social,Government & Policy,government_policy,false -beck,newsmast.social,Healthcare,healthcare,false -akp,newsmast.social,Environment,environment,false -minkhantkyaw35,newsmast.social,Environment,environment,false -SoeMyinHtel_dev,newsmast.social,Environment,environment,false -minkhantkyawygn,newsmast.social,Environment,environment,false -sithu_dev3,newsmast.social,Environment,environment,false -sabah,newsmast.social,Environment,environment,false -poverty,newsmast.social,Environment,environment,false -Lawrence,newsmast.social,Environment,environment,false -phylis,newsmast.social,Environment,environment,false -zhichangliu,newsmast.social,Environment,environment,false -jannus,newsmast.social,Environment,environment,false -Joan_Kem,newsmast.social,Environment,environment,false -Sebsb,newsmast.social,Environment,environment,false -samarpahwa,newsmast.social,Environment,environment,false -kazwan,newsmast.social,Environment,environment,false -liharris30,newsmast.social,Environment,environment,true -Dailyscandi,newsmast.social,Environment,environment,false -beck,newsmast.social,Environment,environment,true -beck,newsmast.social,Humour,humour,false -beck,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false -beck,newsmast.social,Immigrants Rights,immigrants_rights,false -beck,newsmast.social,Indigenous Peoples,indigenous_peoples,false -beck,newsmast.social,Poverty & Inequality,poverty_inequality,false -sport,newsmast.social,Breaking News,breaking_news,false -sport,newsmast.social,Football,football,false -beck,newsmast.social,Law & Justice,law_justice,false -beck,newsmast.social,LGBTQ+,lgbtq,false -beck,newsmast.social,Mathematics,mathematics,false -beck,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false -beck,newsmast.social,Nature & Wildlife,nature_wildlife,false -beck,newsmast.social,Journalism & Comment,news_comment_data,false -beck,newsmast.social,Pets,pets,false -beck,newsmast.social,Physics,physics,false -beck,newsmast.social,Politics,politics,false -sport,newsmast.social,TV & Radio,tv_radio,false -sport,newsmast.social,US Sport,us_sport,false -sport,newsmast.social,Sport,sport,true -beck,newsmast.social,Puzzles,puzzles,false -josebilingue,newsmast.social,Poverty & Inequality,poverty_inequality,false -beck,newsmast.social,Science,science,false -beck,newsmast.social,Space,space,false -josebilingue,newsmast.social,Science,science,false -beck,newsmast.social,Technology,technology,false -beck,newsmast.social,Travel,travel,false -beck,newsmast.social,Ukraine Invasion,ukraine_invasion,false -josebilingue,newsmast.social,Social Media,social_media,false -beck,newsmast.social,Weather,weather,false -ThomasSixt,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -beck,newsmast.social,Women’s Voices,women_voices,false -beck,newsmast.social,Workers Rights,workers_rights,false -Laurairby,newsmast.social,AI,ai,false -Laurairby,newsmast.social,Architecture & Design,architecture_design,false -Laurairby,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false -Laurairby,newsmast.social,Books & Literature,books_literature,false -Laurairby,newsmast.social,Climate change,climate_change,false -Laurairby,newsmast.social,Creative Arts,creative_arts,false -Laurairby,newsmast.social,Energy & Pollution,energy_pollution,false -Laurairby,newsmast.social,Engineering,engineering,false -Laurairby,newsmast.social,Environment,environment,false -Laurairby,newsmast.social,Food & Drink,food_drink,false -YuliaMHersey,newsmast.social,AI,ai,false -Laurairby,newsmast.social,Gaming,gaming,false -Laurairby,newsmast.social,Humour,humour,false -YuliaMHersey,newsmast.social,Food & Drink,food_drink,false -Laurairby,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false -Laurairby,newsmast.social,Movies,movies,false -YuliaMHersey,newsmast.social,Humanities,humanities,false -YuliaMHersey,newsmast.social,Journalism & Comment,news_comment_data,false -YuliaMHersey,newsmast.social,Performing Arts,performing_arts,false -YuliaMHersey,newsmast.social,Philosophy,philosophy,false -YuliaMHersey,newsmast.social,Ukraine Invasion,ukraine_invasion,false -YuliaMHersey,newsmast.social,Books & Literature,books_literature,true -DrGCrisp,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false -DrGCrisp,newsmast.social,Biology,biology,false -Laurairby,newsmast.social,Music,music,false -Laurairby,newsmast.social,Nature & Wildlife,nature_wildlife,false -DrGCrisp,newsmast.social,Energy & Pollution,energy_pollution,false -DrGCrisp,newsmast.social,Environment,environment,false -Laurairby,newsmast.social,Journalism & Comment,news_comment_data,false -Aysha,newsmast.social,Movies,movies,false -Aysha,newsmast.social,Performing Arts,performing_arts,false -Aysha,newsmast.social,Photography,photography,false -Aysha,newsmast.social,Space,space,false -Aysha,newsmast.social,Books & Literature,books_literature,true -Laurairby,newsmast.social,Performing Arts,performing_arts,false -Laurairby,newsmast.social,Pets,pets,false -Laurairby,newsmast.social,Photography,photography,false -Laurairby,newsmast.social,Programming,programming,false -Laurairby,newsmast.social,Puzzles,puzzles,false -Laurairby,newsmast.social,Social Media,social_media,false -Laurairby,newsmast.social,Technology,technology,false -Laurairby,newsmast.social,Travel,travel,false -Laurairby,newsmast.social,TV & Radio,tv_radio,false -Laurairby,newsmast.social,Ukraine Invasion,ukraine_invasion,false -Laurairby,newsmast.social,Visual Arts,visual_arts,false -siji,newsmast.social,Environment,environment,false -AndreCMonteiro,newsmast.social,Environment,environment,true -Radwa,newsmast.social,Environment,environment,true -faithbenson,newsmast.social,Environment,environment,false -KyivIndependent,newsmast.social,Environment,environment,false -KamranSaeed,newsmast.social,Environment,environment,false -candice_chirwa,newsmast.social,Environment,environment,false -TheCultofCalcio,newsmast.social,Environment,environment,false -LeslieTay,newsmast.social,Environment,environment,false -ChrisB100,newsmast.social,Environment,environment,false -fpricejr,newsmast.social,Environment,environment,false -DrGCrisp,newsmast.social,Humanities,humanities,false -DrGCrisp,newsmast.social,Poverty & Inequality,poverty_inequality,false -Laurairby,newsmast.social,Weather,weather,false -DrGCrisp,newsmast.social,Climate change,climate_change,true -OmarSakr,newsmast.social,Environment,environment,false -Laurairby,newsmast.social,Breaking News,breaking_news,true -SummerS,newsmast.social,Breaking News,breaking_news,false -SummerS,newsmast.social,Creative Arts,creative_arts,false -SummerS,newsmast.social,Photography,photography,false -SummerS,newsmast.social,Social Media,social_media,false -SummerS,newsmast.social,Pets,pets,true -josebilingue,newsmast.social,Space,space,false -josebilingue,newsmast.social,TV & Radio,tv_radio,false -akptest007,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false -josebilingue,newsmast.social,Ukraine Invasion,ukraine_invasion,false -josebilingue,newsmast.social,US Politics,us_politics,false -akptest007,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -akptest007,newsmast.social,Energy & Pollution,energy_pollution,false -akptest007,newsmast.social,Environment,environment,false -bryantout,newsmast.social,Books & Literature,books_literature,false -akptest007,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false -akptest007,newsmast.social,Poverty & Inequality,poverty_inequality,false -bryantout,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false -LolaBea19,newsmast.social,Creative Arts,creative_arts,false -bryantout,newsmast.social,Puzzles,puzzles,false -bryantout,newsmast.social,Technology,technology,false -bryantout,newsmast.social,Breaking News,breaking_news,true -josebilingue,newsmast.social,Visual Arts,visual_arts,false -akptest007,newsmast.social,Climate change,climate_change,true -josebilingue,newsmast.social,Weather,weather,false -LolaBea19,newsmast.social,LGBTQ+,lgbtq,false -fingolas,journa.host,Space,space,false -fingolas,journa.host,Technology,technology,false -luisaropio,newsmast.social,Environment,environment,true -KevinWagar,newsmast.social,Environment,environment,false -Randee,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false -Randee,newsmast.social,Breaking News,breaking_news,false -Randee,newsmast.social,Creative Arts,creative_arts,false -Randee,newsmast.social,Environment,environment,false -Randee,newsmast.social,Food & Drink,food_drink,false -Randee,newsmast.social,Humanities,humanities,false -Randee,newsmast.social,Humour,humour,false -Randee,newsmast.social,Movies,movies,false -Randee,newsmast.social,Music,music,false -Randee,newsmast.social,Nature & Wildlife,nature_wildlife,false -Randee,newsmast.social,Journalism & Comment,news_comment_data,false -Randee,newsmast.social,Performing Arts,performing_arts,false -Randee,newsmast.social,Pets,pets,false -Randee,newsmast.social,Photography,photography,false -Randee,newsmast.social,Puzzles,puzzles,false -Randee,newsmast.social,Social Sciences,social_sciences,false -Randee,newsmast.social,Travel,travel,false -Randee,newsmast.social,TV & Radio,tv_radio,false -Randee,newsmast.social,Books & Literature,books_literature,true -josebilingue,newsmast.social,Women’s Voices,women_voices,false -fingolas,journa.host,Ukraine Invasion,ukraine_invasion,false -fingolas,journa.host,US Politics,us_politics,false -fingolas,journa.host,Breaking News,breaking_news,true -Crates,mastodon.social,Climate change,climate_change,false -Crates,mastodon.social,Football,football,false -Brian_J_Keane,newsmast.social,Environment,environment,false -PriyankaJoshi,newsmast.social,Environment,environment,false -Superpolitics,newsmast.social,Environment,environment,false -AFalcon,newsmast.social,Business,business,false -AFalcon,newsmast.social,Football,football,false -AFalcon,newsmast.social,Politics,politics,false -AFalcon,newsmast.social,Sport,sport,false -AFalcon,newsmast.social,Creative Arts,creative_arts,true -DrGCrisp,newsmast.social,Science,science,false -DrGCrisp,newsmast.social,Social Sciences,social_sciences,false -DrGCrisp,newsmast.social,Space,space,false -jenandreacchi,newsmast.social,Environment,environment,false -RewildScotland,newsmast.social,Environment,environment,false -drshaunanderson,newsmast.social,Environment,environment,false -christina88,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false -christina88,newsmast.social,Humanities,humanities,false -christina88,newsmast.social,Music,music,false -fitinfounder,newsmast.social,Environment,environment,false -francisco_blaha,newsmast.social,Environment,environment,false -business,newsmast.social,Environment,environment,false -CanWCC,newsmast.social,Environment,environment,false -IZMartinez86,newsmast.social,Environment,environment,false -O_makanjuola,newsmast.social,Environment,environment,false -womens_voices,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false -Lawrence,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false -DeliSaavedra,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false -lorenaflag,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false -Headfort,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,true -Academistry,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false -DisabledWorld,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,true -CanWCC,newsmast.social,Workers Rights,workers_rights,false -CanWCC,newsmast.social,Women’s Voices,women_voices,true -saskia,newsmast.social,Nature & Wildlife,nature_wildlife,false -seb_bw,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false -mariana_b,newsmast.social,Business,business,false -mariana_b,newsmast.social,Black Voices,black_voices,false -mariana_b,newsmast.social,Ukraine Invasion,ukraine_invasion,false -testmeme,newsmast.social,Breaking News,breaking_news,false -josebilingue,newsmast.social,Social Sciences,social_sciences,true -testmeme,newsmast.social,Politics,politics,false -testmeme,newsmast.social,Social Media,social_media,false -testmeme,newsmast.social,Ukraine Invasion,ukraine_invasion,false -testmeme,newsmast.social,US Politics,us_politics,false -testmeme,newsmast.social,Weather,weather,false -ThomasSixt,newsmast.social,Journalism & Comment,news_comment_data,false -ThomasSixt,newsmast.social,Social Media,social_media,false -ThomasSixt,newsmast.social,Travel,travel,false -ThomasSixt,newsmast.social,Food & Drink,food_drink,true -weatherandradar,newsmast.social,Breaking News,breaking_news,false -WJAHOM,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false -WJAHOM,newsmast.social,Movies,movies,false -WJAHOM,newsmast.social,Nature & Wildlife,nature_wildlife,false -WJAHOM,newsmast.social,Journalism & Comment,news_comment_data,false -WJAHOM,newsmast.social,Performing Arts,performing_arts,false -WJAHOM,newsmast.social,Pets,pets,false -WJAHOM,newsmast.social,Philosophy,philosophy,false -WJAHOM,newsmast.social,Politics,politics,false -WJAHOM,newsmast.social,Puzzles,puzzles,false -WJAHOM,newsmast.social,Science,science,false -WJAHOM,newsmast.social,Social Media,social_media,false -WJAHOM,newsmast.social,TV & Radio,tv_radio,false -WJAHOM,newsmast.social,Women’s Voices,women_voices,false -testmeme,newsmast.social,Journalism & Comment,news_comment_data,true -WJAHOM,newsmast.social,Workers Rights,workers_rights,false -WJAHOM,newsmast.social,Music,music,true -christina88,newsmast.social,Visual Arts,visual_arts,false -christina88,newsmast.social,Pets,pets,false -weatherandradar,newsmast.social,Climate change,climate_change,false -weatherandradar,newsmast.social,Environment,environment,false -nayyaung9,newsmast.social,Breaking News,breaking_news,false -weatherandradar,newsmast.social,Journalism & Comment,news_comment_data,false -mariana_b,newsmast.social,Technology,technology,false -Crates,mastodon.social,Mathematics,mathematics,false -Crates,mastodon.social,Space,space,false -Crates,mastodon.social,Programming,programming,true -Alastair,mastodon.me.uk,Science,science,false -Alastair,mastodon.me.uk,Technology,technology,false -Alastair,mastodon.me.uk,Weather,weather,false -Alastair,mastodon.me.uk,Programming,programming,true -mariana_b,newsmast.social,Women’s Voices,women_voices,false -PowellsParadigm,newsmast.social,Philosophy,philosophy,false -PowellsParadigm,newsmast.social,Programming,programming,false -PowellsParadigm,newsmast.social,Science,science,false -PowellsParadigm,newsmast.social,Social Sciences,social_sciences,false -PowellsParadigm,newsmast.social,Space,space,false -JURISTnews,newsmast.social,Breaking News,breaking_news,false -PowellsParadigm,newsmast.social,Technology,technology,false -JURISTnews,newsmast.social,Climate change,climate_change,false -PowellsParadigm,newsmast.social,Ukraine Invasion,ukraine_invasion,false -JURISTnews,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -PowellsParadigm,newsmast.social,Breaking News,breaking_news,true -JURISTnews,newsmast.social,Environment,environment,false -JURISTnews,newsmast.social,Government & Policy,government_policy,false -JURISTnews,newsmast.social,Poverty & Inequality,poverty_inequality,false -sttanner,newsmast.social,Technology,technology,true -JURISTnews,newsmast.social,Journalism & Comment,news_comment_data,false -JURISTnews,newsmast.social,Politics,politics,false -JURISTnews,newsmast.social,Ukraine Invasion,ukraine_invasion,false -JURISTnews,newsmast.social,Law & Justice,law_justice,true -megs,newsmast.social,Activism & Civil Rights,activism_civil_rights,false -megs,newsmast.social,AI,ai,false -megs,newsmast.social,Architecture & Design,architecture_design,false -megs,newsmast.social,Engineering,engineering,false -megs,newsmast.social,Gaming,gaming,false -megs,newsmast.social,LGBTQ+,lgbtq,false -megs,newsmast.social,Space,space,false -megs,newsmast.social,Technology,technology,false -megs,newsmast.social,Physics,physics,true -shubhambutola,newsmast.social,AI,ai,false -shubhambutola,newsmast.social,Architecture & Design,architecture_design,false -shubhambutola,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false -shubhambutola,newsmast.social,Creative Arts,creative_arts,false -shubhambutola,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -shubhambutola,newsmast.social,Energy & Pollution,energy_pollution,false -shubhambutola,newsmast.social,Environment,environment,false -shubhambutola,newsmast.social,Food & Drink,food_drink,false -shubhambutola,newsmast.social,Gaming,gaming,false -shubhambutola,newsmast.social,Humour,humour,false -shubhambutola,newsmast.social,Climate change,climate_change,true -JayAySevenTwo,newsmast.social,Academia & Research,academia_research,false -JayAySevenTwo,newsmast.social,Activism & Civil Rights,activism_civil_rights,false -JayAySevenTwo,newsmast.social,AI,ai,false -JayAySevenTwo,newsmast.social,Black Voices,black_voices,false -JayAySevenTwo,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -JayAySevenTwo,newsmast.social,Disabled Voices,disabled_voices,false -JayAySevenTwo,newsmast.social,Government & Policy,government_policy,false -JayAySevenTwo,newsmast.social,History,history,false -JayAySevenTwo,newsmast.social,Humanities,humanities,false -JayAySevenTwo,newsmast.social,Indigenous Peoples,indigenous_peoples,false -JayAySevenTwo,newsmast.social,Mathematics,mathematics,false -JayAySevenTwo,newsmast.social,Journalism & Comment,news_comment_data,false -JayAySevenTwo,newsmast.social,Philosophy,philosophy,false -JayAySevenTwo,newsmast.social,Poverty & Inequality,poverty_inequality,false -JayAySevenTwo,newsmast.social,Science,science,false -JayAySevenTwo,newsmast.social,Social Sciences,social_sciences,false -JayAySevenTwo,newsmast.social,Space,space,false -JayAySevenTwo,newsmast.social,Technology,technology,false -JayAySevenTwo,newsmast.social,Breaking News,breaking_news,true -metilli,newsmast.social,AI,ai,false -metilli,newsmast.social,Architecture & Design,architecture_design,false -ipsc48,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false -ajj65,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false -Kevin_Healey,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,true -faithbenson,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false -AldridgePhoto,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false -indiajade_68,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false -PAAwarenessUK,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false -Radwa,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false -JenniferLawson,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false -samf,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,true -rewildingsam,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false -monicareinagel,newsmast.social,AI,ai,false -monicareinagel,newsmast.social,Biology,biology,false -monicareinagel,newsmast.social,Books & Literature,books_literature,false -monicareinagel,newsmast.social,Food & Drink,food_drink,false -vpatel,newsmast.social,Academia & Research,academia_research,false -monicareinagel,newsmast.social,Humour,humour,false -monicareinagel,newsmast.social,Philosophy,philosophy,false -vpatel,newsmast.social,US Politics,us_politics,false -monicareinagel,newsmast.social,Science,science,false -monicareinagel,newsmast.social,Social Sciences,social_sciences,false -monicareinagel,newsmast.social,Technology,technology,false -candice_chirwa,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false -LeslieTay,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false -ScharSchool,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false -debgod,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false -keithramsey,newsmast.social,Books & Literature,books_literature,false -keithramsey,newsmast.social,Climate change,climate_change,false -keithramsey,newsmast.social,Energy & Pollution,energy_pollution,false -keithramsey,newsmast.social,Humanities,humanities,false -keithramsey,newsmast.social,Photography,photography,false -keithramsey,newsmast.social,Science,science,false -keithramsey,newsmast.social,History,history,true -Reuben,newsmast.social,Football,football,false -Reuben,newsmast.social,Government & Policy,government_policy,false -Reuben,newsmast.social,Healthcare,healthcare,false -Reuben,newsmast.social,Sport,sport,false -Reuben,newsmast.social,Journalism & Comment,news_comment_data,true -christina88,newsmast.social,Philosophy,philosophy,false -christina88,newsmast.social,Creative Arts,creative_arts,false -dennisfparker,newsmast.social,Activism & Civil Rights,activism_civil_rights,false -dennisfparker,newsmast.social,Breaking News,breaking_news,false -MichelleA,newsmast.social,Academia & Research,academia_research,false -FionaDobsonCD,newsmast.social,LGBTQ+,lgbtq,true -dennisfparker,newsmast.social,Climate change,climate_change,false -MichelleA,newsmast.social,Biology,biology,false -dennisfparker,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -dennisfparker,newsmast.social,Energy & Pollution,energy_pollution,false -dennisfparker,newsmast.social,Environment,environment,false -MichelleA,newsmast.social,Breaking News,breaking_news,false -dennisfparker,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false -dennisfparker,newsmast.social,Poverty & Inequality,poverty_inequality,false -MichelleA,newsmast.social,Business,business,false -dennisfparker,newsmast.social,Journalism & Comment,news_comment_data,false -dennisfparker,newsmast.social,Politics,politics,false -FionaDobsonCD,newsmast.social,History,history,false -FionaDobsonCD,newsmast.social,Humour,humour,false -dennisfparker,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,true -FionaDobsonCD,newsmast.social,Nature & Wildlife,nature_wildlife,false -FionaDobsonCD,newsmast.social,Philosophy,philosophy,false -FionaDobsonCD,newsmast.social,Travel,travel,false -MichelleA,newsmast.social,Chemistry,chemistry,false -MichelleA,newsmast.social,Government & Policy,government_policy,false -MichelleA,newsmast.social,Law & Justice,law_justice,false -MichelleA,newsmast.social,Markets & Finance,markets_finance,false -MichelleA,newsmast.social,Mathematics,mathematics,false -MichelleA,newsmast.social,Journalism & Comment,news_comment_data,false -MichelleA,newsmast.social,Physics,physics,false -MichelleA,newsmast.social,Politics,politics,false -MichelleA,newsmast.social,Science,science,false -MichelleA,newsmast.social,Social Media,social_media,false -MichelleA,newsmast.social,Space,space,false -MichelleA,newsmast.social,Ukraine Invasion,ukraine_invasion,false -MichelleA,newsmast.social,US Politics,us_politics,false -MichelleA,newsmast.social,Weather,weather,false -MichelleA,newsmast.social,Workers Rights,workers_rights,false -MichelleA,newsmast.social,Healthcare,healthcare,true -shubhambutola,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false -shubhambutola,newsmast.social,Poverty & Inequality,poverty_inequality,false -saskia,newsmast.social,Science,science,false -railrecipe,newsmast.social,Business,business,false -shubhambutola,newsmast.social,Movies,movies,false -shubhambutola,newsmast.social,Music,music,false -shubhambutola,newsmast.social,Nature & Wildlife,nature_wildlife,false -shubhambutola,newsmast.social,Performing Arts,performing_arts,false -shubhambutola,newsmast.social,Pets,pets,false -shubhambutola,newsmast.social,Photography,photography,false -railrecipe,newsmast.social,Journalism & Comment,news_comment_data,false -shubhambutola,newsmast.social,Puzzles,puzzles,false -navayan,newsmast.social,Journalism & Comment,news_comment_data,false -navayan,newsmast.social,Social Media,social_media,false -shubhambutola,newsmast.social,Technology,technology,false -shubhambutola,newsmast.social,Travel,travel,false -shubhambutola,newsmast.social,TV & Radio,tv_radio,false -shubhambutola,newsmast.social,Visual Arts,visual_arts,false -navayan,newsmast.social,Ukraine Invasion,ukraine_invasion,false -navayan,newsmast.social,Weather,weather,false -navayan,newsmast.social,Breaking News,breaking_news,true -railrecipe,newsmast.social,Travel,travel,false -railrecipe,newsmast.social,Weather,weather,false -luisaropio,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false -pennywalker,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false -crazyjane125,newsmast.social,Biology,biology,false -crazyjane125,newsmast.social,Disabled Voices,disabled_voices,false -crazyjane125,newsmast.social,Food & Drink,food_drink,false -crazyjane125,newsmast.social,Nature & Wildlife,nature_wildlife,false -crazyjane125,newsmast.social,Science,science,true -KittyInTheMitty,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,true -wytham_woods,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false -Brian_J_Keane,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false -ilovefilm,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false -Iyad_Abumoghli,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false -Cam_Walker,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false -Roamancing,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false -CanWCC,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false -DrGCrisp,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false -JURISTnews,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false -Bell,newsmast.social,AI,ai,false -Bell,newsmast.social,Business,business,false -railrecipe,newsmast.social,Food & Drink,food_drink,true -Bell,newsmast.social,Engineering,engineering,false -Bell,newsmast.social,Environment,environment,false -HarveyJKaye,newsmast.social,Breaking News,breaking_news,false -Bell,newsmast.social,Mathematics,mathematics,false -Bell,newsmast.social,Physics,physics,false -Bell,newsmast.social,Technology,technology,false -Bell,newsmast.social,Science,science,true -EdBowers101,newsmast.social,Books & Literature,books_literature,false -mariana_b,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false -christina88,newsmast.social,LGBTQ+,lgbtq,false -mariana_b,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false -HarveyJKaye,newsmast.social,Government & Policy,government_policy,false -HarveyJKaye,newsmast.social,History,history,false -Childdotorg,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false -O_makanjuola,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false -dianashurman,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false -HarveyJKaye,newsmast.social,Humanities,humanities,false -maketheswitchAU,newsmast.social,Breaking News,breaking_news,false -maketheswitchAU,newsmast.social,Visual Arts,visual_arts,false -stephieduffy,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false -Dailyscandi,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false -OmarSakr,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false -Aysegul,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false -enangha,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -emilyjd,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -zainabismail,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -Kayleigh,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -dadonthemoveph,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -Pyae,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -DeliSaavedra,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -JulieSpray,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -kazwan,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -DisabledWorld,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -ipsc48,newsmast.social,Democracy & Human Rights,democracy_human_rights,true -chrisfrench,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -karlienoon,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -ajj65,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -vegannutrition,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -DrCarpineti,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -siji,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -indiajade_68,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -PAAwarenessUK,newsmast.social,Democracy & Human Rights,democracy_human_rights,true -candice_chirwa,newsmast.social,Democracy & Human Rights,democracy_human_rights,true -HarveyJKaye,newsmast.social,Social Sciences,social_sciences,false -HarveyJKaye,newsmast.social,Ukraine Invasion,ukraine_invasion,false -HarveyJKaye,newsmast.social,US Politics,us_politics,false -HarveyJKaye,newsmast.social,Journalism & Comment,news_comment_data,true -metilli,newsmast.social,Biology,biology,false -Serious_Feather,newsmast.social,Architecture & Design,architecture_design,false -metilli,newsmast.social,Books & Literature,books_literature,false -metilli,newsmast.social,Breaking News,breaking_news,false -TheBeeGuy,newsmast.social,Science,science,false -IZMartinez86,newsmast.social,Poverty & Inequality,poverty_inequality,true -IZMartinez86,newsmast.social,Biology,biology,false -IZMartinez86,newsmast.social,Chemistry,chemistry,false -IZMartinez86,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -IZMartinez86,newsmast.social,Engineering,engineering,false -IZMartinez86,newsmast.social,Healthcare,healthcare,false -IZMartinez86,newsmast.social,History,history,false -IZMartinez86,newsmast.social,Mathematics,mathematics,false -IZMartinez86,newsmast.social,Physics,physics,false -IZMartinez86,newsmast.social,Politics,politics,false -lgsmsec,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -RhondaAlbom,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -aliegilbert,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -LynnNanos,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -KieranRose,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -tderyugina,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -mombian,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -ccgh,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -OmarSakr,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -marianajeronimo,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -chrysalismama,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -Dhiraj,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -Brian_J_Keane,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -SJC,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -ilovefilm,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -maketheswitchAU,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -gnasralla,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -Roamancing,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -DrGCrisp,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -Childdotorg,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -O_makanjuola,newsmast.social,Democracy & Human Rights,democracy_human_rights,true -jacklscanlan,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false -EasternBorder,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false -JulieSpray,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false -macroliter,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,true -siji,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false -Crof,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,true -wjnewman,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false -EasternBorder,newsmast.social,Poverty & Inequality,poverty_inequality,false -Headfort,newsmast.social,Poverty & Inequality,poverty_inequality,false -indiajade_68,newsmast.social,Poverty & Inequality,poverty_inequality,false -faithbenson,newsmast.social,Poverty & Inequality,poverty_inequality,false -JenniferLawson,newsmast.social,Poverty & Inequality,poverty_inequality,false -Ed_Rempel,newsmast.social,Poverty & Inequality,poverty_inequality,false -KittyInTheMitty,newsmast.social,Poverty & Inequality,poverty_inequality,false -gnasralla,newsmast.social,Poverty & Inequality,poverty_inequality,false -christina88,newsmast.social,Poverty & Inequality,poverty_inequality,false -zerotwo,newsmast.social,Immigrants Rights,immigrants_rights,false -enangha,newsmast.social,Immigrants Rights,immigrants_rights,false -lucygreenwold,newsmast.social,Immigrants Rights,immigrants_rights,false -dannyweller,newsmast.social,Immigrants Rights,immigrants_rights,false -saskia,newsmast.social,Immigrants Rights,immigrants_rights,false -minkhantkyaw35,newsmast.social,Immigrants Rights,immigrants_rights,false -akp,newsmast.social,Immigrants Rights,immigrants_rights,false -SoeMyinHtel_dev,newsmast.social,Immigrants Rights,immigrants_rights,false -minkhantkyawygn,newsmast.social,Immigrants Rights,immigrants_rights,false -sithu_dev3,newsmast.social,Immigrants Rights,immigrants_rights,false -refugeescommunityupdate,newsmast.social,Immigrants Rights,immigrants_rights,true -phylis,newsmast.social,Immigrants Rights,immigrants_rights,false -Sushmitapanda,newsmast.social,Immigrants Rights,immigrants_rights,false -DerrickEMugisha,newsmast.social,Immigrants Rights,immigrants_rights,false -Sebsb,newsmast.social,Immigrants Rights,immigrants_rights,false -samarpahwa,newsmast.social,Immigrants Rights,immigrants_rights,false -MichaelMarshall,newsmast.social,Immigrants Rights,immigrants_rights,false -ipsc48,newsmast.social,Immigrants Rights,immigrants_rights,false -Hayfa_Sdiri,newsmast.social,Immigrants Rights,immigrants_rights,false -calebijioma,newsmast.social,Immigrants Rights,immigrants_rights,false -AndreCMonteiro,newsmast.social,Immigrants Rights,immigrants_rights,false -Radwa,newsmast.social,Immigrants Rights,immigrants_rights,false -KamranSaeed,newsmast.social,Immigrants Rights,immigrants_rights,false -Crof,newsmast.social,Immigrants Rights,immigrants_rights,false -avalio77,newsmast.social,Immigrants Rights,immigrants_rights,false -ghutchis,newsmast.social,Immigrants Rights,immigrants_rights,false -CharityNews,newsmast.social,Immigrants Rights,immigrants_rights,false -Lamech,newsmast.social,Immigrants Rights,immigrants_rights,false -tderyugina,newsmast.social,Immigrants Rights,immigrants_rights,false -Kyaw,newsmast.social,Immigrants Rights,immigrants_rights,false -OmarSakr,newsmast.social,Immigrants Rights,immigrants_rights,false -Johnvink,newsmast.social,Immigrants Rights,immigrants_rights,false -pennywalker,newsmast.social,Immigrants Rights,immigrants_rights,false -sustainabilityx,newsmast.social,Immigrants Rights,immigrants_rights,false -PolGeoNow,newsmast.social,Immigrants Rights,immigrants_rights,false -eve,newsmast.social,Immigrants Rights,immigrants_rights,false -gnasralla,newsmast.social,Immigrants Rights,immigrants_rights,false -drshaunanderson,newsmast.social,Immigrants Rights,immigrants_rights,false -akptest007,newsmast.social,Immigrants Rights,immigrants_rights,false -JURISTnews,newsmast.social,Immigrants Rights,immigrants_rights,false -megs,newsmast.social,Immigrants Rights,immigrants_rights,false -dennisfparker,newsmast.social,Immigrants Rights,immigrants_rights,false -shubhambutola,newsmast.social,Immigrants Rights,immigrants_rights,false -IZMartinez86,newsmast.social,Immigrants Rights,immigrants_rights,false -sofiahvillar,newsmast.social,Markets & Finance,markets_finance,false -sofiahvillar,newsmast.social,Philosophy,philosophy,false -sofiahvillar,newsmast.social,Politics,politics,false -sofiahvillar,newsmast.social,Social Sciences,social_sciences,false -sofiahvillar,newsmast.social,History,history,true -healthylifetips,newsmast.social,Energy & Pollution,energy_pollution,false -param_21,newsmast.social,Academia & Research,academia_research,false -param_21,newsmast.social,Breaking News,breaking_news,false -param_21,newsmast.social,Business,business,false -param_21,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -param_21,newsmast.social,Football,football,false -param_21,newsmast.social,Government & Policy,government_policy,false -param_21,newsmast.social,Humour,humour,false -param_21,newsmast.social,Law & Justice,law_justice,false -param_21,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false -param_21,newsmast.social,Pets,pets,false -param_21,newsmast.social,Philosophy,philosophy,false -param_21,newsmast.social,Puzzles,puzzles,false -param_21,newsmast.social,Markets & Finance,markets_finance,true -weatherandradar,newsmast.social,Weather,weather,true -TheBeeGuy,newsmast.social,Breaking News,breaking_news,false -IlCava,mastodon.uno,Indigenous Peoples,indigenous_peoples,false -IZMartinez86,newsmast.social,Science,science,false -IZMartinez86,newsmast.social,Social Sciences,social_sciences,false -IZMartinez86,newsmast.social,Space,space,false -kxgmdkvkg,newsmast.social,AI,ai,false -kxgmdkvkg,newsmast.social,Biology,biology,false -kxgmdkvkg,newsmast.social,Chemistry,chemistry,false -healthylifetips,newsmast.social,Creative Arts,creative_arts,false -healthylifetips,newsmast.social,Environment,environment,false -healthylifetips,newsmast.social,Food & Drink,food_drink,false -healthylifetips,newsmast.social,Humour,humour,false -healthylifetips,newsmast.social,Indigenous Peoples,indigenous_peoples,false -thosgood,newsmast.social,Books & Literature,books_literature,false -thosgood,newsmast.social,History,history,false -thosgood,newsmast.social,Humanities,humanities,false -thosgood,newsmast.social,Philosophy,philosophy,false -thosgood,newsmast.social,Mathematics,mathematics,true -healthylifetips,newsmast.social,Nature & Wildlife,nature_wildlife,false -healthylifetips,newsmast.social,Pets,pets,false -healthylifetips,newsmast.social,Puzzles,puzzles,false -healthylifetips,newsmast.social,Travel,travel,false -healthylifetips,newsmast.social,Women’s Voices,women_voices,false -healthylifetips,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,true -kxgmdkvkg,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -kxgmdkvkg,newsmast.social,Engineering,engineering,false -kxgmdkvkg,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false -kxgmdkvkg,newsmast.social,Mathematics,mathematics,false -kxgmdkvkg,newsmast.social,Journalism & Comment,news_comment_data,false -kxgmdkvkg,newsmast.social,Physics,physics,false -kxgmdkvkg,newsmast.social,Poverty & Inequality,poverty_inequality,false -kxgmdkvkg,newsmast.social,Programming,programming,false -kxgmdkvkg,newsmast.social,Science,science,false -kxgmdkvkg,newsmast.social,Social Media,social_media,false -kxgmdkvkg,newsmast.social,Space,space,false -kxgmdkvkg,newsmast.social,Technology,technology,false -Calmsage,newsmast.social,Pets,pets,false -Calmsage,newsmast.social,Puzzles,puzzles,false -kxgmdkvkg,newsmast.social,Ukraine Invasion,ukraine_invasion,false -dannyweller,newsmast.social,Politics,politics,false -dannyweller,newsmast.social,Food & Drink,food_drink,false -steve116,newsmast.social,Law & Justice,law_justice,false -kxgmdkvkg,newsmast.social,Weather,weather,false -kxgmdkvkg,newsmast.social,Breaking News,breaking_news,true -Dr_Finbar,newsmast.social,AI,ai,false -Dr_Finbar,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false -Dr_Finbar,newsmast.social,Energy & Pollution,energy_pollution,false -Dr_Finbar,newsmast.social,Environment,environment,false -SithuBo,newsmast.social,AI,ai,false -Serious_Feather,newsmast.social,Law & Justice,law_justice,false -Dr_Finbar,newsmast.social,Markets & Finance,markets_finance,true -mariana_b,newsmast.social,Football,football,false -saskia,newsmast.social,Food & Drink,food_drink,false -fitinfounder,newsmast.social,Workers Rights,workers_rights,false -mariana_b,newsmast.social,Food & Drink,food_drink,false -Serious_Feather,newsmast.social,Photography,photography,false -Childdotorg,newsmast.social,Black Voices,black_voices,false -Childdotorg,newsmast.social,Breaking News,breaking_news,false -Childdotorg,newsmast.social,Poverty & Inequality,poverty_inequality,false -Childdotorg,newsmast.social,Journalism & Comment,news_comment_data,false -Childdotorg,newsmast.social,Photography,photography,false -Childdotorg,newsmast.social,Women’s Voices,women_voices,true -Freddie3,newsmast.social,Books & Literature,books_literature,false -anujahooja,newsmast.social,AI,ai,false -anujahooja,newsmast.social,Breaking News,breaking_news,false -anujahooja,newsmast.social,Business,business,false -anujahooja,newsmast.social,Engineering,engineering,false -anujahooja,newsmast.social,Gaming,gaming,false -anujahooja,newsmast.social,Markets & Finance,markets_finance,false -anujahooja,newsmast.social,Programming,programming,false -O_makanjuola,newsmast.social,Activism & Civil Rights,activism_civil_rights,false -O_makanjuola,newsmast.social,Breaking News,breaking_news,false -O_makanjuola,newsmast.social,Creative Arts,creative_arts,false -O_makanjuola,newsmast.social,Food & Drink,food_drink,false -O_makanjuola,newsmast.social,Poverty & Inequality,poverty_inequality,false -O_makanjuola,newsmast.social,LGBTQ+,lgbtq,false -O_makanjuola,newsmast.social,Movies,movies,false -O_makanjuola,newsmast.social,Music,music,false -O_makanjuola,newsmast.social,Nature & Wildlife,nature_wildlife,false -O_makanjuola,newsmast.social,Journalism & Comment,news_comment_data,false -O_makanjuola,newsmast.social,Politics,politics,false -O_makanjuola,newsmast.social,Travel,travel,false -O_makanjuola,newsmast.social,Visual Arts,visual_arts,false -O_makanjuola,newsmast.social,Women’s Voices,women_voices,false -saskia,newsmast.social,TV & Radio,tv_radio,false -mariana_b,newsmast.social,Space,space,false -WestWeather,newsmast.social,Weather,weather,true -vpatel,newsmast.social,Weather,weather,false -WestWeather,newsmast.social,Environment,environment,false -WestWeather,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false -WestWeather,newsmast.social,Climate change,climate_change,false -WestWeather,newsmast.social,Energy & Pollution,energy_pollution,false -mariana_b,newsmast.social,Healthcare,healthcare,false -vpatel,newsmast.social,Breaking News,breaking_news,false -vpatel,newsmast.social,Politics,politics,false -vpatel,newsmast.social,Ukraine Invasion,ukraine_invasion,false -vpatel,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -vpatel,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false -vpatel,newsmast.social,Poverty & Inequality,poverty_inequality,false -vpatel,newsmast.social,Government & Policy,government_policy,false -vpatel,newsmast.social,Healthcare,healthcare,false -vpatel,newsmast.social,Law & Justice,law_justice,false -vpatel,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false -Grinch,newsmast.social,Black Voices,black_voices,false -vpatel,newsmast.social,Environment,environment,false -vpatel,newsmast.social,Climate change,climate_change,false -Grinch,newsmast.social,Government & Policy,government_policy,false -vpatel,newsmast.social,Black Voices,black_voices,false -vpatel,newsmast.social,Immigrants Rights,immigrants_rights,false -vpatel,newsmast.social,Workers Rights,workers_rights,false -Grinch,newsmast.social,Social Media,social_media,false -Grinch,newsmast.social,Ukraine Invasion,ukraine_invasion,false -vpatel,newsmast.social,Technology,technology,false -Grinch,newsmast.social,US Politics,us_politics,false -vpatel,newsmast.social,Biology,biology,false -vpatel,newsmast.social,Engineering,engineering,false -vpatel,newsmast.social,Physics,physics,false -Grinch,newsmast.social,Weather,weather,false -vpatel,newsmast.social,Humanities,humanities,false -vpatel,newsmast.social,History,history,false -vpatel,newsmast.social,Gaming,gaming,false -vpatel,newsmast.social,Music,music,false -vpatel,newsmast.social,Photography,photography,false -vpatel,newsmast.social,Visual Arts,visual_arts,false -vpatel,newsmast.social,Sport,sport,false -Grinch,newsmast.social,Politics,politics,true -Sylkeweb,newsmast.social,Environment,environment,false -surya,newsmast.social,AI,ai,false -surya,newsmast.social,Social Media,social_media,false -surya,newsmast.social,Sport,sport,false -surya,newsmast.social,Technology,technology,false -surya,newsmast.social,Football,football,true -Travelwisesr,newsmast.social,Business,business,false -Travelwisesr,newsmast.social,Music,music,false -Travelwisesr,newsmast.social,Photography,photography,false -Travelwisesr,newsmast.social,Visual Arts,visual_arts,false -Travelwisesr,newsmast.social,AI,ai,true -jeffreyguard,newsmast.social,Architecture & Design,architecture_design,false -jeffreyguard,newsmast.social,Books & Literature,books_literature,false -jeffreyguard,newsmast.social,History,history,false -jeffreyguard,newsmast.social,Movies,movies,false -jeffreyguard,newsmast.social,Music,music,false -jeffreyguard,newsmast.social,Performing Arts,performing_arts,false -jeffreyguard,newsmast.social,Philosophy,philosophy,false -jeffreyguard,newsmast.social,Photography,photography,false -jeffreyguard,newsmast.social,Social Sciences,social_sciences,false -jeffreyguard,newsmast.social,TV & Radio,tv_radio,false -jeffreyguard,newsmast.social,Visual Arts,visual_arts,false -jeffreyguard,newsmast.social,LGBTQ+,lgbtq,true -Sylkeweb,newsmast.social,Nature & Wildlife,nature_wildlife,false -Sylkeweb,newsmast.social,Science,science,false -Sylkeweb,newsmast.social,Social Sciences,social_sciences,false -Sylkeweb,newsmast.social,Food & Drink,food_drink,true -smartphonology,newsmast.social,Academia & Research,academia_research,false -smartphonology,newsmast.social,AI,ai,false -smartphonology,newsmast.social,Engineering,engineering,false -smartphonology,newsmast.social,Government & Policy,government_policy,false -smartphonology,newsmast.social,Healthcare,healthcare,false -smartphonology,newsmast.social,Law & Justice,law_justice,false -smartphonology,newsmast.social,Journalism & Comment,news_comment_data,false -smartphonology,newsmast.social,Politics,politics,false -smartphonology,newsmast.social,Programming,programming,false -smartphonology,newsmast.social,Social Media,social_media,false -smartphonology,newsmast.social,Technology,technology,false -smartphonology,newsmast.social,Ukraine Invasion,ukraine_invasion,false -smartphonology,newsmast.social,US Politics,us_politics,false -smartphonology,newsmast.social,Weather,weather,false -smartphonology,newsmast.social,Breaking News,breaking_news,true -Serious_Feather,newsmast.social,Poverty & Inequality,poverty_inequality,false -denn,newsmast.social,Activism & Civil Rights,activism_civil_rights,false -DFLS,newsmast.social,Architecture & Design,architecture_design,false -DFLS,newsmast.social,Books & Literature,books_literature,false -DFLS,newsmast.social,Breaking News,breaking_news,false -DFLS,newsmast.social,Creative Arts,creative_arts,false -DFLS,newsmast.social,Food & Drink,food_drink,false -DFLS,newsmast.social,Gaming,gaming,false -DFLS,newsmast.social,Humour,humour,false -DFLS,newsmast.social,Markets & Finance,markets_finance,false -DFLS,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false -DFLS,newsmast.social,Movies,movies,false -DFLS,newsmast.social,Music,music,false -DFLS,newsmast.social,Nature & Wildlife,nature_wildlife,false -DFLS,newsmast.social,Journalism & Comment,news_comment_data,false -DFLS,newsmast.social,Performing Arts,performing_arts,false -DFLS,newsmast.social,Pets,pets,false -DFLS,newsmast.social,Photography,photography,false -DFLS,newsmast.social,Puzzles,puzzles,false -DFLS,newsmast.social,Social Media,social_media,false -DFLS,newsmast.social,Travel,travel,false -DFLS,newsmast.social,TV & Radio,tv_radio,false -DFLS,newsmast.social,Ukraine Invasion,ukraine_invasion,false -DFLS,newsmast.social,Visual Arts,visual_arts,false -DFLS,newsmast.social,Weather,weather,false -DFLS,newsmast.social,Workers Rights,workers_rights,false -DFLS,newsmast.social,Business,business,true -LolaBea19,newsmast.social,TV & Radio,tv_radio,false -denn,newsmast.social,AI,ai,false -denn,newsmast.social,Biology,biology,false -denn,newsmast.social,Black Voices,black_voices,false -Serious_Feather,newsmast.social,Politics,politics,true -seasonssuppers,newsmast.social,Breaking News,breaking_news,false -seasonssuppers,newsmast.social,Creative Arts,creative_arts,false -seasonssuppers,newsmast.social,History,history,false -seasonssuppers,newsmast.social,Humanities,humanities,false -seasonssuppers,newsmast.social,Humour,humour,false -seasonssuppers,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false -seasonssuppers,newsmast.social,Nature & Wildlife,nature_wildlife,false -seasonssuppers,newsmast.social,Journalism & Comment,news_comment_data,false -vpatel,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false -vpatel,newsmast.social,Energy & Pollution,energy_pollution,false -minkhantkyaw,newsmast.social,Journalism & Comment,news_comment_data,false -vpatel,newsmast.social,Activism & Civil Rights,activism_civil_rights,false -vpatel,newsmast.social,Disabled Voices,disabled_voices,false -vpatel,newsmast.social,Indigenous Peoples,indigenous_peoples,false -vpatel,newsmast.social,Women’s Voices,women_voices,false -rach_garr,newsmast.social,Academia & Research,academia_research,false -vpatel,newsmast.social,Markets & Finance,markets_finance,false -vpatel,newsmast.social,AI,ai,false -vpatel,newsmast.social,Science,science,false -vpatel,newsmast.social,Chemistry,chemistry,false -vpatel,newsmast.social,Mathematics,mathematics,false -vpatel,newsmast.social,Space,space,false -vpatel,newsmast.social,Books & Literature,books_literature,false -rach_garr,newsmast.social,Climate change,climate_change,false -rach_garr,newsmast.social,Environment,environment,false -rach_garr,newsmast.social,Government & Policy,government_policy,false -RafiqulMontu,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false -RafiqulMontu,newsmast.social,Energy & Pollution,energy_pollution,false -RafiqulMontu,newsmast.social,Environment,environment,false -RafiqulMontu,newsmast.social,Physics,physics,false -RafiqulMontu,newsmast.social,Space,space,false -RafiqulMontu,newsmast.social,Climate change,climate_change,true -rach_garr,newsmast.social,Politics,politics,false -rach_garr,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,true -heathercarlson,newsmast.social,Activism & Civil Rights,activism_civil_rights,false -heathercarlson,newsmast.social,Breaking News,breaking_news,false -heathercarlson,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -heathercarlson,newsmast.social,Food & Drink,food_drink,false -heathercarlson,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false -RevRobinDB,newsmast.social,Activism & Civil Rights,activism_civil_rights,false -RevRobinDB,newsmast.social,Black Voices,black_voices,false -RevRobinDB,newsmast.social,Books & Literature,books_literature,false -RevRobinDB,newsmast.social,Breaking News,breaking_news,false -RevRobinDB,newsmast.social,Climate change,climate_change,false -brettmirl,newsmast.social,Activism & Civil Rights,activism_civil_rights,false -brettmirl,newsmast.social,AI,ai,false -brettmirl,newsmast.social,Black Voices,black_voices,false -brettmirl,newsmast.social,Breaking News,breaking_news,false -brettmirl,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -brettmirl,newsmast.social,Disabled Voices,disabled_voices,false -brettmirl,newsmast.social,Government & Policy,government_policy,false -brettmirl,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false -brettmirl,newsmast.social,Immigrants Rights,immigrants_rights,false -brettmirl,newsmast.social,Indigenous Peoples,indigenous_peoples,false -brettmirl,newsmast.social,Movies,movies,false -brettmirl,newsmast.social,Music,music,false -brettmirl,newsmast.social,Journalism & Comment,news_comment_data,false -brettmirl,newsmast.social,Politics,politics,false -brettmirl,newsmast.social,Poverty & Inequality,poverty_inequality,false -brettmirl,newsmast.social,Technology,technology,false -brettmirl,newsmast.social,TV & Radio,tv_radio,false -brettmirl,newsmast.social,Weather,weather,false -brettmirl,newsmast.social,Women’s Voices,women_voices,false -brettmirl,newsmast.social,LGBTQ+,lgbtq,true -RevRobinDB,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -heathercarlson,newsmast.social,Pets,pets,false -heathercarlson,newsmast.social,Poverty & Inequality,poverty_inequality,false -RevRobinDB,newsmast.social,Government & Policy,government_policy,false -RevRobinDB,newsmast.social,History,history,false -RevRobinDB,newsmast.social,Immigrants Rights,immigrants_rights,false -RevRobinDB,newsmast.social,Indigenous Peoples,indigenous_peoples,false -heathercarlson,newsmast.social,Women’s Voices,women_voices,false -RevRobinDB,newsmast.social,Journalism & Comment,news_comment_data,false -RevRobinDB,newsmast.social,Philosophy,philosophy,false -RevRobinDB,newsmast.social,Politics,politics,false -RevRobinDB,newsmast.social,Poverty & Inequality,poverty_inequality,false -heathercarlson,newsmast.social,Travel,travel,true -RevRobinDB,newsmast.social,Women’s Voices,women_voices,false -RevRobinDB,newsmast.social,LGBTQ+,lgbtq,true -metilli,newsmast.social,Chemistry,chemistry,false -saskia,newsmast.social,Social Media,social_media,false -denn,newsmast.social,Chemistry,chemistry,false -denn,newsmast.social,Disabled Voices,disabled_voices,false -denn,newsmast.social,Engineering,engineering,false -TheTravelBunny,newsmast.social,Architecture & Design,architecture_design,false -TheTravelBunny,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false -TheTravelBunny,newsmast.social,Books & Literature,books_literature,false -TheTravelBunny,newsmast.social,Environment,environment,false -TheTravelBunny,newsmast.social,Food & Drink,food_drink,false -TheTravelBunny,newsmast.social,Nature & Wildlife,nature_wildlife,false -TheTravelBunny,newsmast.social,Photography,photography,false -TheTravelBunny,newsmast.social,Travel,travel,true -denn,newsmast.social,History,history,false -denn,newsmast.social,Humanities,humanities,false -Karia,newsmast.social,Academia & Research,academia_research,false -Karia,newsmast.social,AI,ai,false -Karia,newsmast.social,Creative Arts,creative_arts,false -Karia,newsmast.social,Engineering,engineering,false -Karia,newsmast.social,Government & Policy,government_policy,false -Karia,newsmast.social,Healthcare,healthcare,false -Karia,newsmast.social,History,history,false -Karia,newsmast.social,Humanities,humanities,false -Karia,newsmast.social,Humour,humour,false -Karia,newsmast.social,Law & Justice,law_justice,false -Karia,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false -Karia,newsmast.social,Nature & Wildlife,nature_wildlife,false -Karia,newsmast.social,Food & Drink,food_drink,true -jonbreeze,newsmast.social,Climate change,climate_change,false -jonbreeze,newsmast.social,Energy & Pollution,energy_pollution,false -jonbreeze,newsmast.social,Science,science,false -jonbreeze,newsmast.social,Space,space,false -jonbreeze,newsmast.social,Technology,technology,false -jonbreeze,newsmast.social,Physics,physics,true -vpatel,newsmast.social,LGBTQ+,lgbtq,false -vpatel,newsmast.social,Social Sciences,social_sciences,false -vpatel,newsmast.social,Architecture & Design,architecture_design,false -vpatel,newsmast.social,Movies,movies,false -vpatel,newsmast.social,Performing Arts,performing_arts,false -vpatel,newsmast.social,TV & Radio,tv_radio,false -vpatel,newsmast.social,Football,football,false -denn,newsmast.social,Immigrants Rights,immigrants_rights,false -vpatel,newsmast.social,Creative Arts,creative_arts,false -seasonssuppers,newsmast.social,Pets,pets,false -vpatel,newsmast.social,Food & Drink,food_drink,false -seasonssuppers,newsmast.social,Philosophy,philosophy,false -vpatel,newsmast.social,Humour,humour,false -vpatel,newsmast.social,Nature & Wildlife,nature_wildlife,false -vpatel,newsmast.social,Pets,pets,false -vpatel,newsmast.social,Puzzles,puzzles,false -vpatel,newsmast.social,Travel,travel,false -seasonssuppers,newsmast.social,Puzzles,puzzles,false -seasonssuppers,newsmast.social,Social Media,social_media,false -FreddieJ,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false -dpopa25,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false -dpopa25,newsmast.social,Books & Literature,books_literature,false -dpopa25,newsmast.social,Creative Arts,creative_arts,false -dpopa25,newsmast.social,Environment,environment,false -dpopa25,newsmast.social,Food & Drink,food_drink,false -dpopa25,newsmast.social,History,history,false -dpopa25,newsmast.social,Humanities,humanities,false -FreddieJ,newsmast.social,Government & Policy,government_policy,false -dpopa25,newsmast.social,Science,science,false -dpopa25,newsmast.social,Social Sciences,social_sciences,false -dpopa25,newsmast.social,Visual Arts,visual_arts,false -dpopa25,newsmast.social,Humour,humour,true -seasonssuppers,newsmast.social,Social Sciences,social_sciences,false -FreddieJ,newsmast.social,Energy & Pollution,energy_pollution,false -FreddieJ,newsmast.social,Black Voices,black_voices,false -FreddieJ,newsmast.social,Women’s Voices,women_voices,false -kijekijikokwe,newsmast.social,Academia & Research,academia_research,false -kijekijikokwe,newsmast.social,Activism & Civil Rights,activism_civil_rights,false -kijekijikokwe,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -kijekijikokwe,newsmast.social,Disabled Voices,disabled_voices,false -kijekijikokwe,newsmast.social,Healthcare,healthcare,false -kijekijikokwe,newsmast.social,Law & Justice,law_justice,false -kijekijikokwe,newsmast.social,LGBTQ+,lgbtq,false -kijekijikokwe,newsmast.social,Indigenous Peoples,indigenous_peoples,true -seasonssuppers,newsmast.social,Travel,travel,false -ModernArtifice,newsmast.social,AI,ai,false -ModernArtifice,newsmast.social,Books & Literature,books_literature,false -ModernArtifice,newsmast.social,Movies,movies,false -ModernArtifice,newsmast.social,Science,science,false -ModernArtifice,newsmast.social,Technology,technology,false -ModernArtifice,newsmast.social,Gaming,gaming,true -glecko,newsmast.social,AI,ai,false -FreddieJ,newsmast.social,Social Sciences,social_sciences,false -glecko,newsmast.social,Biology,biology,false -glecko,newsmast.social,Business,business,false -glecko,newsmast.social,Climate change,climate_change,false -glecko,newsmast.social,Energy & Pollution,energy_pollution,false -dleifohcs,newsmast.social,AI,ai,false -dleifohcs,newsmast.social,Science,science,false -dleifohcs,newsmast.social,Space,space,false -dleifohcs,newsmast.social,Technology,technology,false -dleifohcs,newsmast.social,Physics,physics,true -glecko,newsmast.social,Environment,environment,false -glecko,newsmast.social,Gaming,gaming,false -glecko,newsmast.social,Humanities,humanities,false -glecko,newsmast.social,Markets & Finance,markets_finance,false -glecko,newsmast.social,Science,science,false -glecko,newsmast.social,Space,space,false -glecko,newsmast.social,Technology,technology,false -glecko,newsmast.social,US Sport,us_sport,false -glecko,newsmast.social,Workers Rights,workers_rights,false -glecko,newsmast.social,Football,football,true -seasonssuppers,newsmast.social,Ukraine Invasion,ukraine_invasion,false -seasonssuppers,newsmast.social,Weather,weather,false -seasonssuppers,newsmast.social,Food & Drink,food_drink,true -denn,newsmast.social,Indigenous Peoples,indigenous_peoples,false -kess111,newsmast.social,Journalism & Comment,news_comment_data,false -kess111,newsmast.social,Social Media,social_media,false -kess111,newsmast.social,Ukraine Invasion,ukraine_invasion,false -kess111,newsmast.social,Weather,weather,false -kess111,newsmast.social,Breaking News,breaking_news,true -PB51,newsmast.social,Climate change,climate_change,false -PB51,newsmast.social,Environment,environment,false -metilli,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -PB51,newsmast.social,US Politics,us_politics,false -PB51,newsmast.social,US Sport,us_sport,false -PB51,newsmast.social,Books & Literature,books_literature,true -denn,newsmast.social,Mathematics,mathematics,false -magbeat,newsmast.social,AI,ai,false -magbeat,newsmast.social,Breaking News,breaking_news,false -If_This_Goes_On,newsmast.social,Activism & Civil Rights,activism_civil_rights,false -If_This_Goes_On,newsmast.social,Architecture & Design,architecture_design,false -If_This_Goes_On,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false -If_This_Goes_On,newsmast.social,Black Voices,black_voices,false -If_This_Goes_On,newsmast.social,Climate change,climate_change,false -If_This_Goes_On,newsmast.social,Disabled Voices,disabled_voices,false -If_This_Goes_On,newsmast.social,Energy & Pollution,energy_pollution,false -If_This_Goes_On,newsmast.social,Environment,environment,false -If_This_Goes_On,newsmast.social,Gaming,gaming,false -If_This_Goes_On,newsmast.social,History,history,false -If_This_Goes_On,newsmast.social,Humanities,humanities,false -If_This_Goes_On,newsmast.social,Immigrants Rights,immigrants_rights,false -If_This_Goes_On,newsmast.social,Indigenous Peoples,indigenous_peoples,false -If_This_Goes_On,newsmast.social,Books & Literature,books_literature,true -magbeat,newsmast.social,Journalism & Comment,news_comment_data,false -magbeat,newsmast.social,Programming,programming,false -hermitary,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -hermitary,newsmast.social,Government & Policy,government_policy,false -hermitary,newsmast.social,Journalism & Comment,news_comment_data,false -hermitary,newsmast.social,Politics,politics,false -hermitary,newsmast.social,Breaking News,breaking_news,true -denn,newsmast.social,Philosophy,philosophy,false -denn,newsmast.social,Physics,physics,false -denn,newsmast.social,Programming,programming,false -catherinerhyde,newsmast.social,Energy & Pollution,energy_pollution,false -catherinerhyde,newsmast.social,Physics,physics,false -catherinerhyde,newsmast.social,Science,science,false -ifonlycom,newsmast.social,Academia & Research,academia_research,false -ifonlycom,newsmast.social,AI,ai,false -ifonlycom,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false -ifonlycom,newsmast.social,Biology,biology,false -ifonlycom,newsmast.social,Chemistry,chemistry,false -ifonlycom,newsmast.social,Climate change,climate_change,false -ifonlycom,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -ifonlycom,newsmast.social,Energy & Pollution,energy_pollution,false -ifonlycom,newsmast.social,Engineering,engineering,false -ifonlycom,newsmast.social,Environment,environment,false -ifonlycom,newsmast.social,Healthcare,healthcare,false -ifonlycom,newsmast.social,History,history,false -ifonlycom,newsmast.social,Humanities,humanities,false -ifonlycom,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false -finserving,newsmast.social,Academia & Research,academia_research,false -finserving,newsmast.social,AI,ai,false -finserving,newsmast.social,Business,business,false -finserving,newsmast.social,Engineering,engineering,false -ifonlycom,newsmast.social,Law & Justice,law_justice,false -finserving,newsmast.social,Government & Policy,government_policy,false -ifonlycom,newsmast.social,Mathematics,mathematics,false -ifonlycom,newsmast.social,Philosophy,philosophy,false -ifonlycom,newsmast.social,Physics,physics,false -ifonlycom,newsmast.social,Politics,politics,false -ifonlycom,newsmast.social,Poverty & Inequality,poverty_inequality,false -ifonlycom,newsmast.social,Programming,programming,false -finserving,newsmast.social,Healthcare,healthcare,false -ifonlycom,newsmast.social,Science,science,false -ifonlycom,newsmast.social,Social Sciences,social_sciences,false -ifonlycom,newsmast.social,Space,space,false -finserving,newsmast.social,Law & Justice,law_justice,false -ifonlycom,newsmast.social,Government & Policy,government_policy,true -catherinerhyde,newsmast.social,Technology,technology,false -catherinerhyde,newsmast.social,Space,space,true -metilli,newsmast.social,Engineering,engineering,false -finserving,newsmast.social,Politics,politics,false -denn,newsmast.social,Science,science,false -finserving,newsmast.social,Programming,programming,false -denn,newsmast.social,Social Sciences,social_sciences,false -finserving,newsmast.social,Technology,technology,false -finserving,newsmast.social,US Politics,us_politics,false -finserving,newsmast.social,Workers Rights,workers_rights,false -finserving,newsmast.social,Markets & Finance,markets_finance,true -magbeat,newsmast.social,Social Media,social_media,false -magbeat,newsmast.social,Engineering,engineering,true -denn,newsmast.social,Space,space,false -bryantout,newsmast.social,Movies,movies,false -denn,newsmast.social,Technology,technology,false -kenweber,mastodon.social,US Sport,us_sport,false -theblogofdimi,newsmast.social,US Politics,us_politics,false -theblogofdimi,newsmast.social,Weather,weather,false -theblogofdimi,newsmast.social,History,history,true -boribori,newsmast.social,AI,ai,false -boribori,newsmast.social,Breaking News,breaking_news,false -boribori,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -boribori,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false -boribori,newsmast.social,Physics,physics,false -boribori,newsmast.social,Poverty & Inequality,poverty_inequality,false -boribori,newsmast.social,Science,science,false -boribori,newsmast.social,Space,space,false -boribori,newsmast.social,Technology,technology,false -boribori,newsmast.social,Ukraine Invasion,ukraine_invasion,true -davidnaylorww,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false -Karia,newsmast.social,Politics,politics,false -Karia,newsmast.social,Programming,programming,false -Karia,newsmast.social,Puzzles,puzzles,false -Karia,newsmast.social,Social Sciences,social_sciences,false -Karia,newsmast.social,Technology,technology,false -Karia,newsmast.social,Travel,travel,false -Karia,newsmast.social,US Politics,us_politics,false -davidnaylorww,newsmast.social,Chemistry,chemistry,false -davidnaylorww,newsmast.social,Climate change,climate_change,false -davidnaylorww,newsmast.social,Energy & Pollution,energy_pollution,false -davidnaylorww,newsmast.social,Engineering,engineering,false -davidnaylorww,newsmast.social,Environment,environment,false -davidnaylorww,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false -davidnaylorww,newsmast.social,Mathematics,mathematics,false -davidnaylorww,newsmast.social,Physics,physics,false -davidnaylorww,newsmast.social,Science,science,false -davidnaylorww,newsmast.social,Technology,technology,false -davidnaylorww,newsmast.social,Biology,biology,true -dko10440,newsmast.social,AI,ai,false -dko10440,newsmast.social,Architecture & Design,architecture_design,false -dko10440,newsmast.social,Breaking News,breaking_news,false -dko10440,newsmast.social,Creative Arts,creative_arts,false -dko10440,newsmast.social,Food & Drink,food_drink,false -dko10440,newsmast.social,Humour,humour,false -dko10440,newsmast.social,Movies,movies,false -dko10440,newsmast.social,Music,music,false -dko10440,newsmast.social,Nature & Wildlife,nature_wildlife,false -dko10440,newsmast.social,Journalism & Comment,news_comment_data,false -dko10440,newsmast.social,Physics,physics,false -dko10440,newsmast.social,Science,science,false -dko10440,newsmast.social,Space,space,false -dko10440,newsmast.social,Technology,technology,false -dko10440,newsmast.social,Travel,travel,false -dko10440,newsmast.social,TV & Radio,tv_radio,false -dko10440,newsmast.social,Ukraine Invasion,ukraine_invasion,false -dko10440,newsmast.social,Photography,photography,true -denn,newsmast.social,Women’s Voices,women_voices,false -denn,newsmast.social,LGBTQ+,lgbtq,true -WhiteMode,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false -WhiteMode,newsmast.social,Climate change,climate_change,false -parben,newsmast.social,Journalism & Comment,news_comment_data,false -parben,newsmast.social,Social Media,social_media,false -parben,newsmast.social,Ukraine Invasion,ukraine_invasion,false -parben,newsmast.social,Weather,weather,false -parben,newsmast.social,Breaking News,breaking_news,true -WhiteMode,newsmast.social,Energy & Pollution,energy_pollution,false -WhiteMode,newsmast.social,Environment,environment,false -TechFinancials,newsmast.social,AI,ai,false -TechFinancials,newsmast.social,Journalism & Comment,news_comment_data,false -TechFinancials,newsmast.social,Social Media,social_media,false -TechFinancials,newsmast.social,Technology,technology,false -TechFinancials,newsmast.social,Breaking News,breaking_news,true -sharonk,newsmast.social,Markets & Finance,markets_finance,true -isobelwalster,newsmast.social,Books & Literature,books_literature,false -isobelwalster,newsmast.social,Breaking News,breaking_news,false -isobelwalster,newsmast.social,Humour,humour,false -isobelwalster,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false -isobelwalster,newsmast.social,Movies,movies,false -isobelwalster,newsmast.social,Journalism & Comment,news_comment_data,false -isobelwalster,newsmast.social,Pets,pets,false -isobelwalster,newsmast.social,Puzzles,puzzles,false -isobelwalster,newsmast.social,Social Media,social_media,false -isobelwalster,newsmast.social,Travel,travel,true -theblogofdimi,newsmast.social,AI,ai,false -theblogofdimi,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false -theblogofdimi,newsmast.social,Biology,biology,false -theblogofdimi,newsmast.social,Books & Literature,books_literature,false -theblogofdimi,newsmast.social,Breaking News,breaking_news,false -bilerico,newsmast.social,Breaking News,breaking_news,false -bilerico,newsmast.social,Food & Drink,food_drink,false -bilerico,newsmast.social,Humour,humour,false -bilerico,newsmast.social,US Politics,us_politics,false -bilerico,newsmast.social,LGBTQ+,lgbtq,true -theblogofdimi,newsmast.social,Business,business,false -theblogofdimi,newsmast.social,Chemistry,chemistry,false -theblogofdimi,newsmast.social,Climate change,climate_change,false -theblogofdimi,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -theblogofdimi,newsmast.social,Energy & Pollution,energy_pollution,false -theblogofdimi,newsmast.social,Engineering,engineering,false -theblogofdimi,newsmast.social,Environment,environment,false -theblogofdimi,newsmast.social,Government & Policy,government_policy,false -theblogofdimi,newsmast.social,Humanities,humanities,false -theblogofdimi,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false -theblogofdimi,newsmast.social,Law & Justice,law_justice,false -theblogofdimi,newsmast.social,Markets & Finance,markets_finance,false -theblogofdimi,newsmast.social,Mathematics,mathematics,false -theblogofdimi,newsmast.social,Music,music,false -theblogofdimi,newsmast.social,Journalism & Comment,news_comment_data,false -theblogofdimi,newsmast.social,Philosophy,philosophy,false -theblogofdimi,newsmast.social,Photography,photography,false -theblogofdimi,newsmast.social,Physics,physics,false -theblogofdimi,newsmast.social,Politics,politics,false -theblogofdimi,newsmast.social,Poverty & Inequality,poverty_inequality,false -theblogofdimi,newsmast.social,Science,science,false -theblogofdimi,newsmast.social,Social Media,social_media,false -theblogofdimi,newsmast.social,Social Sciences,social_sciences,false -theblogofdimi,newsmast.social,Space,space,false -theblogofdimi,newsmast.social,Technology,technology,false -theblogofdimi,newsmast.social,Ukraine Invasion,ukraine_invasion,false -bryancollins,newsmast.social,Markets & Finance,markets_finance,false -bryancollins,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false -bryancollins,newsmast.social,Movies,movies,false -bryancollins,newsmast.social,Music,music,false -bryancollins,newsmast.social,Nature & Wildlife,nature_wildlife,false -bryancollins,newsmast.social,Performing Arts,performing_arts,false -bryancollins,newsmast.social,Pets,pets,false -bryancollins,newsmast.social,Architecture & Design,architecture_design,false -bryancollins,newsmast.social,Photography,photography,false -bryancollins,newsmast.social,Puzzles,puzzles,false -bryancollins,newsmast.social,Travel,travel,false -bryancollins,newsmast.social,Business,business,false -bryancollins,newsmast.social,TV & Radio,tv_radio,false -bryancollins,newsmast.social,Creative Arts,creative_arts,false -bryancollins,newsmast.social,Visual Arts,visual_arts,false -bryancollins,newsmast.social,Workers Rights,workers_rights,false -bryancollins,newsmast.social,Food & Drink,food_drink,false -bryancollins,newsmast.social,Books & Literature,books_literature,true -bryancollins,newsmast.social,Gaming,gaming,false -bryancollins,newsmast.social,Humour,humour,false -bryancollins,newsmast.social,Markets & Finance,markets_finance,false -bryancollins,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false -bryancollins,newsmast.social,Movies,movies,false -bryancollins,newsmast.social,Music,music,false -bryancollins,newsmast.social,Nature & Wildlife,nature_wildlife,false -bryancollins,newsmast.social,Performing Arts,performing_arts,false -bryancollins,newsmast.social,Pets,pets,false -bryancollins,newsmast.social,Photography,photography,false -bryancollins,newsmast.social,Puzzles,puzzles,false -bryancollins,newsmast.social,Travel,travel,false -bryancollins,newsmast.social,TV & Radio,tv_radio,false -bryancollins,newsmast.social,Visual Arts,visual_arts,false -bryancollins,newsmast.social,Workers Rights,workers_rights,false -BostonAbrams,newsmast.social,Space,space,false -WhiteMode,newsmast.social,Government & Policy,government_policy,false -salads4lunch,newsmast.social,Breaking News,breaking_news,false -salads4lunch,newsmast.social,Creative Arts,creative_arts,false -JeffreyStreeter,newsmast.social,History,history,false -JeffreyStreeter,newsmast.social,Movies,movies,false -JeffreyStreeter,newsmast.social,Physics,physics,false -JeffreyStreeter,newsmast.social,Science,science,false -JeffreyStreeter,newsmast.social,Social Sciences,social_sciences,false -JeffreyStreeter,newsmast.social,Space,space,false -JeffreyStreeter,newsmast.social,Visual Arts,visual_arts,false -JeffreyStreeter,newsmast.social,Books & Literature,books_literature,true -salads4lunch,newsmast.social,Humour,humour,false -salads4lunch,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false -salads4lunch,newsmast.social,Nature & Wildlife,nature_wildlife,false -salads4lunch,newsmast.social,Pets,pets,false -salads4lunch,newsmast.social,Puzzles,puzzles,false -salads4lunch,newsmast.social,Social Media,social_media,false -salads4lunch,newsmast.social,Travel,travel,false -salads4lunch,newsmast.social,Food & Drink,food_drink,true -sharonk,newsmast.social,Activism & Civil Rights,activism_civil_rights,false -sharonk,newsmast.social,Black Voices,black_voices,false -sharonk,newsmast.social,Disabled Voices,disabled_voices,false -sharonk,newsmast.social,Immigrants Rights,immigrants_rights,false -sharonk,newsmast.social,Indigenous Peoples,indigenous_peoples,false -sharonk,newsmast.social,LGBTQ+,lgbtq,false -sharonk,newsmast.social,Women’s Voices,women_voices,false -herstoryseapod,newsmast.social,Academia & Research,academia_research,false -herstoryseapod,newsmast.social,Architecture & Design,architecture_design,false -herstoryseapod,newsmast.social,Books & Literature,books_literature,false -herstoryseapod,newsmast.social,Gaming,gaming,false -herstoryseapod,newsmast.social,Government & Policy,government_policy,false -herstoryseapod,newsmast.social,Humanities,humanities,false -herstoryseapod,newsmast.social,Law & Justice,law_justice,false -herstoryseapod,newsmast.social,Movies,movies,false -herstoryseapod,newsmast.social,Music,music,false -herstoryseapod,newsmast.social,Performing Arts,performing_arts,false -herstoryseapod,newsmast.social,Philosophy,philosophy,false -herstoryseapod,newsmast.social,Photography,photography,false -herstoryseapod,newsmast.social,Politics,politics,false -herstoryseapod,newsmast.social,Social Sciences,social_sciences,false -herstoryseapod,newsmast.social,TV & Radio,tv_radio,false -herstoryseapod,newsmast.social,Visual Arts,visual_arts,false -herstoryseapod,newsmast.social,History,history,true -liamchase,newsmast.social,Creative Arts,creative_arts,false -liamchase,newsmast.social,Nature & Wildlife,nature_wildlife,false -liamchase,newsmast.social,Pets,pets,false -liamchase,newsmast.social,Sport,sport,false -liamchase,newsmast.social,Travel,travel,false -liamchase,newsmast.social,LGBTQ+,lgbtq,true -vpotter,newsmast.social,AI,ai,false -vpotter,newsmast.social,Breaking News,breaking_news,false -vpotter,newsmast.social,Business,business,false -vpotter,newsmast.social,Climate change,climate_change,false -vpotter,newsmast.social,Environment,environment,false -vpotter,newsmast.social,Government & Policy,government_policy,false -vpotter,newsmast.social,Healthcare,healthcare,false -vpotter,newsmast.social,Law & Justice,law_justice,false -vpotter,newsmast.social,Journalism & Comment,news_comment_data,false -vpotter,newsmast.social,Workers Rights,workers_rights,false -vpotter,newsmast.social,Technology,technology,true -Serious_Feather,newsmast.social,US Politics,us_politics,false -Serious_Feather,newsmast.social,Gaming,gaming,false -Serious_Feather,newsmast.social,Visual Arts,visual_arts,false -transfers,newsmast.social,Football,football,true -Catwisdom,newsmast.social,Food & Drink,food_drink,false -Catwisdom,newsmast.social,Humour,humour,false -Catwisdom,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false -Catwisdom,newsmast.social,Nature & Wildlife,nature_wildlife,false -Catwisdom,newsmast.social,Pets,pets,false -Catwisdom,newsmast.social,Travel,travel,false -Catwisdom,newsmast.social,Creative Arts,creative_arts,true -transfers,newsmast.social,Breaking News,breaking_news,false -transfers,newsmast.social,Journalism & Comment,news_comment_data,false -transfers,newsmast.social,Social Media,social_media,false -transfers,newsmast.social,Sport,sport,false -Rachael,newsmast.social,Creative Arts,creative_arts,false -Rachael,newsmast.social,Music,music,false -Rachael,newsmast.social,Nature & Wildlife,nature_wildlife,false -Rachael,newsmast.social,Travel,travel,false -Rachael,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,true -Dragonfly,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false -Dragonfly,newsmast.social,Biology,biology,false -Dragonfly,newsmast.social,Chemistry,chemistry,false -Dragonfly,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -Dragonfly,newsmast.social,Energy & Pollution,energy_pollution,false -Dragonfly,newsmast.social,Environment,environment,false -Dragonfly,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false -Dragonfly,newsmast.social,Poverty & Inequality,poverty_inequality,false -Dragonfly,newsmast.social,Space,space,false -Dragonfly,newsmast.social,Climate change,climate_change,true -mariabelfort,newsmast.social,Architecture & Design,architecture_design,false -mariabelfort,newsmast.social,Creative Arts,creative_arts,false -mariabelfort,newsmast.social,Food & Drink,food_drink,false -mariabelfort,newsmast.social,Photography,photography,false -mariabelfort,newsmast.social,Puzzles,puzzles,false -mariabelfort,newsmast.social,Visual Arts,visual_arts,false -mariabelfort,newsmast.social,Travel,travel,true -saskia,newsmast.social,Energy & Pollution,energy_pollution,false -saskia,newsmast.social,Environment,environment,false -giff,newsmast.social,Biology,biology,false -giff,newsmast.social,Chemistry,chemistry,false -giff,newsmast.social,Government & Policy,government_policy,false -giff,newsmast.social,Healthcare,healthcare,false -giff,newsmast.social,History,history,false -giff,newsmast.social,Mathematics,mathematics,false -giff,newsmast.social,Journalism & Comment,news_comment_data,false -giff,newsmast.social,Physics,physics,false -giff,newsmast.social,Politics,politics,false -giff,newsmast.social,Science,science,false -giff,newsmast.social,Social Media,social_media,false -giff,newsmast.social,Social Sciences,social_sciences,false -giff,newsmast.social,Space,space,false -giff,newsmast.social,Technology,technology,false -giff,newsmast.social,US Sport,us_sport,false -giff,newsmast.social,Breaking News,breaking_news,true -BostonAbrams,newsmast.social,Science,science,false -WhiteMode,newsmast.social,Healthcare,healthcare,false -metilli,newsmast.social,Gaming,gaming,false -Serious_Feather,newsmast.social,Technology,technology,false -Serious_Feather,newsmast.social,Social Media,social_media,false -Serious_Feather,newsmast.social,Workers Rights,workers_rights,false -kenweber,mastodon.social,Programming,programming,true -mati,moth.social,Activism & Civil Rights,activism_civil_rights,false -mati,moth.social,Business,business,false -sharonk,newsmast.social,Business,business,false -sharonk,newsmast.social,AI,ai,false -shadsiddiqui,newsmast.social,AI,ai,false -shadsiddiqui,newsmast.social,Business,business,false -shadsiddiqui,newsmast.social,Football,football,false -shadsiddiqui,newsmast.social,Technology,technology,false -shadsiddiqui,newsmast.social,Travel,travel,true -stuckiniceland,newsmast.social,Business,business,false -stuckiniceland,newsmast.social,Creative Arts,creative_arts,false -stuckiniceland,newsmast.social,Food & Drink,food_drink,false -stuckiniceland,newsmast.social,Humour,humour,false -stuckiniceland,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false -stuckiniceland,newsmast.social,Nature & Wildlife,nature_wildlife,false -stuckiniceland,newsmast.social,Pets,pets,false -stuckiniceland,newsmast.social,Photography,photography,false -stuckiniceland,newsmast.social,Puzzles,puzzles,false -stuckiniceland,newsmast.social,Travel,travel,true -CenTxHank,newsmast.social,Humanities,humanities,false -CenTxHank,newsmast.social,Philosophy,philosophy,false -CenTxHank,newsmast.social,Physics,physics,false -CenTxHank,newsmast.social,Space,space,false -CenTxHank,newsmast.social,History,history,true -GastroMedia,newsmast.social,AI,ai,false -GastroMedia,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false -GastroMedia,newsmast.social,Climate change,climate_change,false -GastroMedia,newsmast.social,Environment,environment,false -GastroMedia,newsmast.social,Humanities,humanities,false -GastroMedia,newsmast.social,Performing Arts,performing_arts,false -GastroMedia,newsmast.social,Photography,photography,false -GastroMedia,newsmast.social,Social Media,social_media,false -GastroMedia,newsmast.social,Social Sciences,social_sciences,false -GastroMedia,newsmast.social,Travel,travel,false -GastroMedia,newsmast.social,Visual Arts,visual_arts,false -GastroMedia,newsmast.social,Food & Drink,food_drink,true -Kyn,newsmast.social,AI,ai,false -Kyn,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false -Kyn,newsmast.social,Biology,biology,false -scottcaneat,newsmast.social,Architecture & Design,architecture_design,false -scottcaneat,newsmast.social,Creative Arts,creative_arts,false -scottcaneat,newsmast.social,Nature & Wildlife,nature_wildlife,false -scottcaneat,newsmast.social,Travel,travel,false -scottcaneat,newsmast.social,Food & Drink,food_drink,true -Kyn,newsmast.social,Breaking News,breaking_news,false -Kyn,newsmast.social,Chemistry,chemistry,false -Kyn,newsmast.social,Climate change,climate_change,false -Kyn,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -Kyn,newsmast.social,Energy & Pollution,energy_pollution,false -Kyn,newsmast.social,Engineering,engineering,false -Kyn,newsmast.social,Environment,environment,false -Kyn,newsmast.social,Government & Policy,government_policy,false -Kyn,newsmast.social,Healthcare,healthcare,false -Kyn,newsmast.social,History,history,false -Kyn,newsmast.social,Humanities,humanities,false -Kyn,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false -Kyn,newsmast.social,Law & Justice,law_justice,false -Kyn,newsmast.social,Mathematics,mathematics,false -Kyn,newsmast.social,Journalism & Comment,news_comment_data,false -Capt_Canadia,newsmast.social,AI,ai,false -Capt_Canadia,newsmast.social,Biology,biology,false -Capt_Canadia,newsmast.social,Breaking News,breaking_news,false -Capt_Canadia,newsmast.social,Chemistry,chemistry,false -Capt_Canadia,newsmast.social,Engineering,engineering,false -Capt_Canadia,newsmast.social,Mathematics,mathematics,false -Capt_Canadia,newsmast.social,Journalism & Comment,news_comment_data,false -Capt_Canadia,newsmast.social,Physics,physics,false -Capt_Canadia,newsmast.social,Programming,programming,false -Capt_Canadia,newsmast.social,Science,science,false -Capt_Canadia,newsmast.social,Social Media,social_media,false -Capt_Canadia,newsmast.social,Space,space,false -Capt_Canadia,newsmast.social,Ukraine Invasion,ukraine_invasion,false -Capt_Canadia,newsmast.social,Weather,weather,false -Capt_Canadia,newsmast.social,Technology,technology,true -Kyn,newsmast.social,Philosophy,philosophy,false -Kyn,newsmast.social,Physics,physics,false -Kyn,newsmast.social,Politics,politics,false -Kyn,newsmast.social,Academia & Research,academia_research,true -LolaBea19,newsmast.social,Women’s Voices,women_voices,false -LolaBea19,newsmast.social,Performing Arts,performing_arts,true -TechRaptor,newsmast.social,Breaking News,breaking_news,false -willis,newsmast.social,Architecture & Design,architecture_design,false -TechRaptor,newsmast.social,Journalism & Comment,news_comment_data,false -TechRaptor,newsmast.social,Technology,technology,false -TechRaptor,newsmast.social,Gaming,gaming,true -Serious_Feather,newsmast.social,Markets & Finance,markets_finance,false -Serious_Feather,newsmast.social,Business,business,false -bryantout,newsmast.social,Government & Policy,government_policy,false -sharonk,newsmast.social,Workers Rights,workers_rights,false -willis,newsmast.social,Movies,movies,false -willis,newsmast.social,Music,music,false -Dineshvd,newsmast.social,Food & Drink,food_drink,false -Dineshvd,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false -Dineshvd,newsmast.social,Puzzles,puzzles,false -Dineshvd,newsmast.social,Sport,sport,false -Dineshvd,newsmast.social,US Sport,us_sport,false -Dineshvd,newsmast.social,Football,football,true -willis,newsmast.social,Journalism & Comment,news_comment_data,false -willis,newsmast.social,Books & Literature,books_literature,true -sillygwailinks,mastodon.social,History,history,false -TimelinesStatus,newsmast.social,Poverty & Inequality,poverty_inequality,false -TimelinesStatus,newsmast.social,Programming,programming,false -TimelinesStatus,newsmast.social,Puzzles,puzzles,false -TimelinesStatus,newsmast.social,Science,science,false -TimelinesStatus,newsmast.social,Social Media,social_media,false -TimelinesStatus,newsmast.social,Social Sciences,social_sciences,false -TimelinesStatus,newsmast.social,Space,space,false -TimelinesStatus,newsmast.social,Sport,sport,false -TimelinesStatus,newsmast.social,Technology,technology,false -TimelinesStatus,newsmast.social,Travel,travel,false -TimelinesStatus,newsmast.social,TV & Radio,tv_radio,false -TimelinesStatus,newsmast.social,Ukraine Invasion,ukraine_invasion,false -TimelinesStatus,newsmast.social,US Politics,us_politics,false -TimelinesStatus,newsmast.social,US Sport,us_sport,false -TimelinesStatus,newsmast.social,Visual Arts,visual_arts,false -TimelinesStatus,newsmast.social,Weather,weather,false -TimelinesStatus,newsmast.social,Women’s Voices,women_voices,false -Kyn,newsmast.social,Poverty & Inequality,poverty_inequality,false -Kyn,newsmast.social,Programming,programming,false -Kyn,newsmast.social,Science,science,false -Kyn,newsmast.social,Social Media,social_media,false -Kyn,newsmast.social,Social Sciences,social_sciences,false -Kyn,newsmast.social,Space,space,false -Kyn,newsmast.social,Technology,technology,false -Kyn,newsmast.social,Ukraine Invasion,ukraine_invasion,false -Kyn,newsmast.social,US Politics,us_politics,false -Kyn,newsmast.social,Weather,weather,false -AnnaScott,newsmast.social,Books & Literature,books_literature,false -AnnaScott,newsmast.social,Movies,movies,false -AnnaScott,newsmast.social,Performing Arts,performing_arts,false -AnnaScott,newsmast.social,Photography,photography,false -AnnaScott,newsmast.social,TV & Radio,tv_radio,false -AnnaScott,newsmast.social,Music,music,true -fictaddict,newsmast.social,Creative Arts,creative_arts,false -fictaddict,newsmast.social,Gaming,gaming,false -fictaddict,newsmast.social,Books & Literature,books_literature,true -fictaddict,newsmast.social,Pets,pets,false -soundofamoped,newsmast.social,Academia & Research,academia_research,false -soundofamoped,newsmast.social,Architecture & Design,architecture_design,false -soundofamoped,newsmast.social,Biology,biology,false -soundofamoped,newsmast.social,Books & Literature,books_literature,false -soundofamoped,newsmast.social,Chemistry,chemistry,false -soundofamoped,newsmast.social,Creative Arts,creative_arts,false -soundofamoped,newsmast.social,Food & Drink,food_drink,false -soundofamoped,newsmast.social,Government & Policy,government_policy,false -soundofamoped,newsmast.social,Mathematics,mathematics,false -soundofamoped,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false -soundofamoped,newsmast.social,Music,music,false -soundofamoped,newsmast.social,Nature & Wildlife,nature_wildlife,false -soundofamoped,newsmast.social,Photography,photography,false -soundofamoped,newsmast.social,Physics,physics,false -soundofamoped,newsmast.social,Space,space,false -soundofamoped,newsmast.social,Visual Arts,visual_arts,false -soundofamoped,newsmast.social,Science,science,true -metalman,newsmast.social,Breaking News,breaking_news,false -metalman,newsmast.social,Journalism & Comment,news_comment_data,false -metalman,newsmast.social,Social Media,social_media,false -metalman,newsmast.social,Ukraine Invasion,ukraine_invasion,false -metalman,newsmast.social,Weather,weather,true -DforDog,newsmast.social,Creative Arts,creative_arts,false -DforDog,newsmast.social,Humour,humour,false -DforDog,newsmast.social,Philosophy,philosophy,false -DforDog,newsmast.social,Puzzles,puzzles,false -DforDog,newsmast.social,TV & Radio,tv_radio,false -DforDog,newsmast.social,Pets,pets,true -TimelinesStatus,newsmast.social,Workers Rights,workers_rights,false -TimelinesStatus,newsmast.social,Academia & Research,academia_research,false -TimelinesStatus,newsmast.social,Activism & Civil Rights,activism_civil_rights,false -TimelinesStatus,newsmast.social,AI,ai,false -TimelinesStatus,newsmast.social,Architecture & Design,architecture_design,false -TimelinesStatus,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false -TimelinesStatus,newsmast.social,Biology,biology,false -TimelinesStatus,newsmast.social,Black Voices,black_voices,false -TimelinesStatus,newsmast.social,Books & Literature,books_literature,false -TimelinesStatus,newsmast.social,Breaking News,breaking_news,false -TimelinesStatus,newsmast.social,Business,business,false -TimelinesStatus,newsmast.social,Chemistry,chemistry,false -TimelinesStatus,newsmast.social,Climate change,climate_change,false -TimelinesStatus,newsmast.social,Creative Arts,creative_arts,false -TimelinesStatus,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -TimelinesStatus,newsmast.social,Disabled Voices,disabled_voices,false -TimelinesStatus,newsmast.social,Energy & Pollution,energy_pollution,false -TimelinesStatus,newsmast.social,Engineering,engineering,false -TimelinesStatus,newsmast.social,Environment,environment,false -TimelinesStatus,newsmast.social,Food & Drink,food_drink,false -TimelinesStatus,newsmast.social,Football,football,false -TimelinesStatus,newsmast.social,Gaming,gaming,false -TimelinesStatus,newsmast.social,Government & Policy,government_policy,false -TimelinesStatus,newsmast.social,Healthcare,healthcare,false -TimelinesStatus,newsmast.social,History,history,false -TimelinesStatus,newsmast.social,Humanities,humanities,false -TimelinesStatus,newsmast.social,Humour,humour,false -TimelinesStatus,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false -TimelinesStatus,newsmast.social,Immigrants Rights,immigrants_rights,false -TimelinesStatus,newsmast.social,Indigenous Peoples,indigenous_peoples,false -TimelinesStatus,newsmast.social,Law & Justice,law_justice,false -TimelinesStatus,newsmast.social,LGBTQ+,lgbtq,false -TimelinesStatus,newsmast.social,Markets & Finance,markets_finance,false -TimelinesStatus,newsmast.social,Mathematics,mathematics,false -TimelinesStatus,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false -TimelinesStatus,newsmast.social,Movies,movies,false -TimelinesStatus,newsmast.social,Music,music,false -TimelinesStatus,newsmast.social,Nature & Wildlife,nature_wildlife,false -TimelinesStatus,newsmast.social,Performing Arts,performing_arts,false -TimelinesStatus,newsmast.social,Pets,pets,false -TimelinesStatus,newsmast.social,Philosophy,philosophy,false -TimelinesStatus,newsmast.social,Photography,photography,false -TimelinesStatus,newsmast.social,Physics,physics,false -TimelinesStatus,newsmast.social,Politics,politics,false -TimelinesStatus,newsmast.social,Poverty & Inequality,poverty_inequality,false -TimelinesStatus,newsmast.social,Programming,programming,false -TimelinesStatus,newsmast.social,Puzzles,puzzles,false -TimelinesStatus,newsmast.social,Science,science,false -TimelinesStatus,newsmast.social,Social Media,social_media,false -TimelinesStatus,newsmast.social,Social Sciences,social_sciences,false -TimelinesStatus,newsmast.social,Space,space,false -TimelinesStatus,newsmast.social,Sport,sport,false -TimelinesStatus,newsmast.social,Technology,technology,false -TimelinesStatus,newsmast.social,Travel,travel,false -TimelinesStatus,newsmast.social,TV & Radio,tv_radio,false -TimelinesStatus,newsmast.social,Ukraine Invasion,ukraine_invasion,false -TimelinesStatus,newsmast.social,US Politics,us_politics,false -TimelinesStatus,newsmast.social,US Sport,us_sport,false -TimelinesStatus,newsmast.social,Visual Arts,visual_arts,false -TimelinesStatus,newsmast.social,Weather,weather,false -TimelinesStatus,newsmast.social,Women’s Voices,women_voices,false -TimelinesStatus,newsmast.social,Workers Rights,workers_rights,false -TimelinesStatus,newsmast.social,Journalism & Comment,news_comment_data,true -metilli,newsmast.social,Government & Policy,government_policy,false -WhiteMode,newsmast.social,Law & Justice,law_justice,false -WhiteMode,newsmast.social,Politics,politics,false -WhiteMode,newsmast.social,US Politics,us_politics,false -WhiteMode,newsmast.social,Academia & Research,academia_research,true -metilli,newsmast.social,Healthcare,healthcare,false -metilli,newsmast.social,History,history,false -WorldTravelFam,newsmast.social,Food & Drink,food_drink,false -WorldTravelFam,newsmast.social,Humour,humour,false -WorldTravelFam,newsmast.social,Nature & Wildlife,nature_wildlife,false -WorldTravelFam,newsmast.social,Pets,pets,false -WorldTravelFam,newsmast.social,Travel,travel,true -smikwily,newsmast.social,Humour,humour,false -smikwily,newsmast.social,Pets,pets,false -smikwily,newsmast.social,Puzzles,puzzles,false -smikwily,newsmast.social,Social Media,social_media,false -smikwily,newsmast.social,Breaking News,breaking_news,true -bryantout,newsmast.social,Politics,politics,false -bryantout,newsmast.social,US Politics,us_politics,false -sharonk,newsmast.social,Technology,technology,false -metilli,newsmast.social,Humanities,humanities,false -sillygwailinks,mastodon.social,Humanities,humanities,false -metilli,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false -metilli,newsmast.social,Law & Justice,law_justice,false -metilli,newsmast.social,Mathematics,mathematics,false -metilli,newsmast.social,Movies,movies,false -metilli,newsmast.social,Music,music,false -Gadget_Ry,newsmast.social,AI,ai,false -Gadget_Ry,newsmast.social,Breaking News,breaking_news,false -metilli,newsmast.social,Journalism & Comment,news_comment_data,false -Gadget_Ry,newsmast.social,Politics,politics,false -Gadget_Ry,newsmast.social,Technology,technology,true -CELSET,newsmast.social,Workers Rights,workers_rights,false -CELSET,newsmast.social,Social Sciences,social_sciences,false -CELSET,newsmast.social,Movies,movies,false -CELSET,newsmast.social,Music,music,false -CELSET,newsmast.social,Performing Arts,performing_arts,false -CELSET,newsmast.social,TV & Radio,tv_radio,false -CELSET,newsmast.social,Pets,pets,false -metilli,newsmast.social,Performing Arts,performing_arts,false -CELSET,newsmast.social,Creative Arts,creative_arts,false -CELSET,newsmast.social,Puzzles,puzzles,false -CELSET,newsmast.social,Nature & Wildlife,nature_wildlife,false -CELSET,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false -CELSET,newsmast.social,Humour,humour,false -mariana_b,newsmast.social,Academia & Research,academia_research,false -orianavmatos,newsmast.social,Gaming,gaming,false -metilli,newsmast.social,Philosophy,philosophy,false -elliottrichmond,newsmast.social,AI,ai,false -elliottrichmond,newsmast.social,Biology,biology,false -elliottrichmond,newsmast.social,Business,business,false -elliottrichmond,newsmast.social,Chemistry,chemistry,false -Nyein,mastodon.social,Journalism & Comment,news_comment_data,false -Nyein,mastodon.social,Social Media,social_media,false -Nyein,mastodon.social,Ukraine Invasion,ukraine_invasion,false -Nyein,mastodon.social,Weather,weather,false -Nyein,mastodon.social,Breaking News,breaking_news,true -elliottrichmond,newsmast.social,Engineering,engineering,false -elliottrichmond,newsmast.social,Markets & Finance,markets_finance,false -elliottrichmond,newsmast.social,Mathematics,mathematics,false -elliottrichmond,newsmast.social,Physics,physics,false -elliottrichmond,newsmast.social,Science,science,false -elliottrichmond,newsmast.social,Space,space,false -elliottrichmond,newsmast.social,Technology,technology,false -elliottrichmond,newsmast.social,Workers Rights,workers_rights,false -elliottrichmond,newsmast.social,Programming,programming,true -metilli,newsmast.social,Photography,photography,false -metilli,newsmast.social,Physics,physics,false -metilli,newsmast.social,Politics,politics,false -metilli,newsmast.social,Poverty & Inequality,poverty_inequality,false -metilli,newsmast.social,Programming,programming,false -metilli,newsmast.social,Science,science,false -sillygwailinks,mastodon.social,Philosophy,philosophy,false -winntendo,mstdn.social,Space,space,false -mati,moth.social,Markets & Finance,markets_finance,false -beautycaters,newsmast.social,Food & Drink,food_drink,false -beautycaters,newsmast.social,Humour,humour,false -beautycaters,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false -beautycaters,newsmast.social,Nature & Wildlife,nature_wildlife,false -beautycaters,newsmast.social,Pets,pets,false -beautycaters,newsmast.social,Puzzles,puzzles,false -beautycaters,newsmast.social,Travel,travel,true -thefluffy007,newsmast.social,Engineering,engineering,false -thefluffy007,newsmast.social,Government & Policy,government_policy,false -thefluffy007,newsmast.social,Healthcare,healthcare,false -thefluffy007,newsmast.social,Law & Justice,law_justice,false -thefluffy007,newsmast.social,Academia & Research,academia_research,true -wingyingchow,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false -wingyingchow,newsmast.social,Biology,biology,false -wingyingchow,newsmast.social,Chemistry,chemistry,false -wingyingchow,newsmast.social,Science,science,false -anujahooja,newsmast.social,Social Media,social_media,false -wingyingchow,newsmast.social,Physics,physics,false -wingyingchow,newsmast.social,Academia & Research,academia_research,true -anujahooja,newsmast.social,Workers Rights,workers_rights,false -anujahooja,newsmast.social,Technology,technology,true -CELSET,newsmast.social,Journalism & Comment,news_comment_data,false -CELSET,newsmast.social,History,history,false -psthisrocks,newsmast.social,Academia & Research,academia_research,false -psthisrocks,newsmast.social,AI,ai,false -psthisrocks,newsmast.social,Books & Literature,books_literature,false -psthisrocks,newsmast.social,Breaking News,breaking_news,false -psthisrocks,newsmast.social,Business,business,false -psthisrocks,newsmast.social,Creative Arts,creative_arts,false -psthisrocks,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -psthisrocks,newsmast.social,Engineering,engineering,false -psthisrocks,newsmast.social,Food & Drink,food_drink,false -psthisrocks,newsmast.social,Gaming,gaming,false -psthisrocks,newsmast.social,Government & Policy,government_policy,false -psthisrocks,newsmast.social,Healthcare,healthcare,false -psthisrocks,newsmast.social,History,history,false -psthisrocks,newsmast.social,Humanities,humanities,false -psthisrocks,newsmast.social,Humour,humour,false -psthisrocks,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false -psthisrocks,newsmast.social,Law & Justice,law_justice,false -psthisrocks,newsmast.social,Markets & Finance,markets_finance,false -psthisrocks,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false -psthisrocks,newsmast.social,Movies,movies,false -psthisrocks,newsmast.social,Music,music,false -psthisrocks,newsmast.social,Nature & Wildlife,nature_wildlife,false -psthisrocks,newsmast.social,Journalism & Comment,news_comment_data,false -psthisrocks,newsmast.social,Performing Arts,performing_arts,false -psthisrocks,newsmast.social,Pets,pets,false -psthisrocks,newsmast.social,Philosophy,philosophy,false -psthisrocks,newsmast.social,Photography,photography,false -psthisrocks,newsmast.social,Politics,politics,false -psthisrocks,newsmast.social,Poverty & Inequality,poverty_inequality,false -psthisrocks,newsmast.social,Programming,programming,false -psthisrocks,newsmast.social,Puzzles,puzzles,false -psthisrocks,newsmast.social,Social Media,social_media,false -psthisrocks,newsmast.social,Social Sciences,social_sciences,false -psthisrocks,newsmast.social,Technology,technology,false -psthisrocks,newsmast.social,Travel,travel,false -psthisrocks,newsmast.social,TV & Radio,tv_radio,false -psthisrocks,newsmast.social,Ukraine Invasion,ukraine_invasion,false -psthisrocks,newsmast.social,US Politics,us_politics,false -psthisrocks,newsmast.social,Visual Arts,visual_arts,false -psthisrocks,newsmast.social,Weather,weather,false -psthisrocks,newsmast.social,Workers Rights,workers_rights,false -psthisrocks,newsmast.social,Architecture & Design,architecture_design,true -metilli,newsmast.social,Social Media,social_media,false -metilli,newsmast.social,Social Sciences,social_sciences,false -metilli,newsmast.social,Space,space,false -metilli,newsmast.social,Technology,technology,false -Cappuccinogirl,newsmast.social,Activism & Civil Rights,activism_civil_rights,false -Cappuccinogirl,newsmast.social,Architecture & Design,architecture_design,false -Cappuccinogirl,newsmast.social,Books & Literature,books_literature,false -Cappuccinogirl,newsmast.social,Humanities,humanities,false -Cappuccinogirl,newsmast.social,Philosophy,philosophy,false -Cappuccinogirl,newsmast.social,Photography,photography,false -Cappuccinogirl,newsmast.social,Politics,politics,false -Cappuccinogirl,newsmast.social,Social Sciences,social_sciences,false -Cappuccinogirl,newsmast.social,Women’s Voices,women_voices,false -Cappuccinogirl,newsmast.social,Workers Rights,workers_rights,false -Cappuccinogirl,newsmast.social,History,history,true -Rich134,newsmast.social,Gaming,gaming,false -Rich134,newsmast.social,Photography,photography,false -Rich134,newsmast.social,TV & Radio,tv_radio,false -Rich134,newsmast.social,Visual Arts,visual_arts,false -Rich134,newsmast.social,Movies,movies,true -Cappuccinogirl,newsmast.social,Music,music,false -Cappuccinogirl,newsmast.social,Travel,travel,false -Cappuccinogirl,newsmast.social,Academia & Research,academia_research,false -chatter,newsmast.social,Breaking News,breaking_news,false -chatter,newsmast.social,Journalism & Comment,news_comment_data,false -chatter,newsmast.social,Social Media,social_media,false -chatter,newsmast.social,Weather,weather,false -chatter,newsmast.social,Ukraine Invasion,ukraine_invasion,true -robhoy,newsmast.social,AI,ai,false -robhoy,newsmast.social,Books & Literature,books_literature,false -robhoy,newsmast.social,Breaking News,breaking_news,false -robhoy,newsmast.social,Engineering,engineering,false -robhoy,newsmast.social,Gaming,gaming,false -luciaGerry444,newsmast.social,AI,ai,false -luciaGerry444,newsmast.social,Breaking News,breaking_news,false -luciaGerry444,newsmast.social,Engineering,engineering,false -luciaGerry444,newsmast.social,Programming,programming,false -luciaGerry444,newsmast.social,Technology,technology,false -luciaGerry444,newsmast.social,Ukraine Invasion,ukraine_invasion,false -luciaGerry444,newsmast.social,Weather,weather,false -luciaGerry444,newsmast.social,Social Media,social_media,true -pikarl13,newsmast.social,Academia & Research,academia_research,false -pikarl13,newsmast.social,AI,ai,false -pikarl13,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false -pikarl13,newsmast.social,Biology,biology,false -pikarl13,newsmast.social,Chemistry,chemistry,false -pikarl13,newsmast.social,Climate change,climate_change,false -pikarl13,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -pikarl13,newsmast.social,Energy & Pollution,energy_pollution,false -pikarl13,newsmast.social,Engineering,engineering,false -pikarl13,newsmast.social,Environment,environment,false -pikarl13,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false -pikarl13,newsmast.social,Mathematics,mathematics,false -pikarl13,newsmast.social,Journalism & Comment,news_comment_data,false -pikarl13,newsmast.social,Physics,physics,false -pikarl13,newsmast.social,Politics,politics,false -pikarl13,newsmast.social,Poverty & Inequality,poverty_inequality,false -pikarl13,newsmast.social,Programming,programming,false -pikarl13,newsmast.social,Science,science,false -pikarl13,newsmast.social,Technology,technology,false -pikarl13,newsmast.social,Space,space,true -metilli,newsmast.social,TV & Radio,tv_radio,false -metilli,newsmast.social,Ukraine Invasion,ukraine_invasion,false -saskia,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false -metilli,newsmast.social,US Politics,us_politics,false -metilli,newsmast.social,Visual Arts,visual_arts,false -metilli,newsmast.social,Weather,weather,false -metilli,newsmast.social,Academia & Research,academia_research,true -Migis4991,newsmast.social,Academia & Research,academia_research,false -Migis4991,newsmast.social,AI,ai,false -Migis4991,newsmast.social,Government & Policy,government_policy,false -Migis4991,newsmast.social,History,history,false -Migis4991,newsmast.social,Politics,politics,false -Migis4991,newsmast.social,Programming,programming,false -Migis4991,newsmast.social,Science,science,false -Migis4991,newsmast.social,Technology,technology,false -Migis4991,newsmast.social,Social Sciences,social_sciences,true -newsmast_public,newsmast.social,Academia & Research,academia_research,false -newsmast_public,newsmast.social,Biology,biology,false -Sas99,newsmast.social,Football,football,false -Sas99,newsmast.social,Journalism & Comment,news_comment_data,false -Sas99,newsmast.social,Social Media,social_media,false -Sas99,newsmast.social,Sport,sport,false -Sas99,newsmast.social,Space,space,true -robhoy,newsmast.social,Programming,programming,false -robhoy,newsmast.social,Social Media,social_media,false -robhoy,newsmast.social,Technology,technology,false -robhoy,newsmast.social,TV & Radio,tv_radio,false -robhoy,newsmast.social,Visual Arts,visual_arts,false -robhoy,newsmast.social,Weather,weather,false -robhoy,newsmast.social,Movies,movies,true -nclm,newsmast.social,Activism & Civil Rights,activism_civil_rights,false -nclm,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false -nclm,newsmast.social,Biology,biology,false -nclm,newsmast.social,Books & Literature,books_literature,false -nclm,newsmast.social,Climate change,climate_change,false -nclm,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -nclm,newsmast.social,Disabled Voices,disabled_voices,false -nclm,newsmast.social,Environment,environment,false -nclm,newsmast.social,Gaming,gaming,false -Rinn,newsmast.social,AI,ai,false -Rinn,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false -Rinn,newsmast.social,Biology,biology,false -Rinn,newsmast.social,Business,business,false -Rinn,newsmast.social,Chemistry,chemistry,false -Rinn,newsmast.social,Climate change,climate_change,false -Rinn,newsmast.social,Creative Arts,creative_arts,false -Rinn,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -Rinn,newsmast.social,Energy & Pollution,energy_pollution,false -Rinn,newsmast.social,Engineering,engineering,false -Rinn,newsmast.social,Environment,environment,false -Rinn,newsmast.social,Food & Drink,food_drink,false -Rinn,newsmast.social,History,history,false -Rinn,newsmast.social,Humanities,humanities,false -Rinn,newsmast.social,Humour,humour,false -Rinn,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false -Rinn,newsmast.social,Markets & Finance,markets_finance,false -Rinn,newsmast.social,Mathematics,mathematics,false -Rinn,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false -Rinn,newsmast.social,Nature & Wildlife,nature_wildlife,false -Rinn,newsmast.social,Pets,pets,false -Rinn,newsmast.social,Philosophy,philosophy,false -Rinn,newsmast.social,Physics,physics,false -Rinn,newsmast.social,Poverty & Inequality,poverty_inequality,false -Rinn,newsmast.social,Programming,programming,false -Rinn,newsmast.social,Puzzles,puzzles,false -Rinn,newsmast.social,Science,science,false -Rinn,newsmast.social,Social Sciences,social_sciences,false -Rinn,newsmast.social,Space,space,false -Rinn,newsmast.social,Travel,travel,false -Rinn,newsmast.social,Workers Rights,workers_rights,false -Rinn,newsmast.social,Technology,technology,true -nclm,newsmast.social,History,history,false -nclm,newsmast.social,Humanities,humanities,false -nclm,newsmast.social,Immigrants Rights,immigrants_rights,false -nclm,newsmast.social,Indigenous Peoples,indigenous_peoples,false -nclm,newsmast.social,Architecture & Design,architecture_design,true -Douglas_1,newsmast.social,Breaking News,breaking_news,false -Douglas_1,newsmast.social,Nature & Wildlife,nature_wildlife,false -Douglas_1,newsmast.social,Travel,travel,false -Douglas_1,newsmast.social,Weather,weather,false -Douglas_1,newsmast.social,Pets,pets,true -nisemikol,newsmast.social,Activism & Civil Rights,activism_civil_rights,false -nisemikol,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false -nisemikol,newsmast.social,Biology,biology,false -nisemikol,newsmast.social,Chemistry,chemistry,false -nisemikol,newsmast.social,Climate change,climate_change,false -nisemikol,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -nisemikol,newsmast.social,Energy & Pollution,energy_pollution,false -nisemikol,newsmast.social,Environment,environment,false -nisemikol,newsmast.social,Government & Policy,government_policy,false -nisemikol,newsmast.social,History,history,false -nisemikol,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false -nisemikol,newsmast.social,Indigenous Peoples,indigenous_peoples,false -nisemikol,newsmast.social,Law & Justice,law_justice,false -nisemikol,newsmast.social,LGBTQ+,lgbtq,false -nisemikol,newsmast.social,Physics,physics,false -nisemikol,newsmast.social,Politics,politics,false -nisemikol,newsmast.social,Poverty & Inequality,poverty_inequality,false -nisemikol,newsmast.social,Science,science,false -nisemikol,newsmast.social,Breaking News,breaking_news,true -nisemikol,newsmast.social,Social Sciences,social_sciences,false -nisemikol,newsmast.social,Space,space,false -nisemikol,newsmast.social,Technology,technology,false -nisemikol,newsmast.social,US Politics,us_politics,false -nisemikol,newsmast.social,Women’s Voices,women_voices,false -feuerkugel,newsmast.social,Physics,physics,false -feuerkugel,newsmast.social,Science,science,false -feuerkugel,newsmast.social,Space,space,false -feuerkugel,newsmast.social,Technology,technology,false -feuerkugel,newsmast.social,Weather,weather,false -feuerkugel,newsmast.social,Breaking News,breaking_news,true -newsmast_public,newsmast.social,Books & Literature,books_literature,false -SithuBoo,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -SithuBoo,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false -SithuBoo,newsmast.social,Journalism & Comment,news_comment_data,false -SithuBoo,newsmast.social,Poverty & Inequality,poverty_inequality,false -SithuBoo,newsmast.social,Social Media,social_media,false -SithuBoo,newsmast.social,Ukraine Invasion,ukraine_invasion,false -SithuBoo,newsmast.social,Weather,weather,false -SithuBoo,newsmast.social,Breaking News,breaking_news,true -winntendo,mstdn.social,Technology,technology,false -Binary_MinKhant,newsmast.social,Social Media,social_media,false -Binary_MinKhant,newsmast.social,Ukraine Invasion,ukraine_invasion,false -Binary_MinKhant,newsmast.social,Weather,weather,false -Binary_MinKhant,newsmast.social,Journalism & Comment,news_comment_data,true -sciencefeed,newsmast.social,Biology,biology,false -sciencefeed,newsmast.social,Chemistry,chemistry,false -sciencefeed,newsmast.social,Mathematics,mathematics,false -sciencefeed,newsmast.social,Physics,physics,false -sciencefeed,newsmast.social,Space,space,false -sciencefeed,newsmast.social,Science,science,true -environmentfeed,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false -environmentfeed,newsmast.social,Climate change,climate_change,false -environmentfeed,newsmast.social,Energy & Pollution,energy_pollution,false -environmentfeed,newsmast.social,Poverty & Inequality,poverty_inequality,false -environmentfeed,newsmast.social,Environment,environment,true -Manjunatha,newsmast.social,AI,ai,false -Manjunatha,newsmast.social,Biology,biology,false -Manjunatha,newsmast.social,Humour,humour,false -Manjunatha,newsmast.social,Science,science,true -Linguasia,newsmast.social,Architecture & Design,architecture_design,false -Linguasia,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false -Linguasia,newsmast.social,Books & Literature,books_literature,false -Linguasia,newsmast.social,Business,business,false -Linguasia,newsmast.social,Climate change,climate_change,false -Linguasia,newsmast.social,Creative Arts,creative_arts,false -Linguasia,newsmast.social,Energy & Pollution,energy_pollution,false -Linguasia,newsmast.social,Environment,environment,false -Linguasia,newsmast.social,Food & Drink,food_drink,false -Linguasia,newsmast.social,Gaming,gaming,false -Linguasia,newsmast.social,Humour,humour,false -Linguasia,newsmast.social,Markets & Finance,markets_finance,false -Linguasia,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false -Linguasia,newsmast.social,Movies,movies,false -Linguasia,newsmast.social,Music,music,false -Linguasia,newsmast.social,Nature & Wildlife,nature_wildlife,false -Linguasia,newsmast.social,Performing Arts,performing_arts,false -Linguasia,newsmast.social,Pets,pets,false -Linguasia,newsmast.social,Photography,photography,false -Linguasia,newsmast.social,Puzzles,puzzles,false -Linguasia,newsmast.social,TV & Radio,tv_radio,false -Linguasia,newsmast.social,Visual Arts,visual_arts,false -Linguasia,newsmast.social,Workers Rights,workers_rights,false -Linguasia,newsmast.social,Travel,travel,true -sahanakulur,newsmast.social,Academia & Research,academia_research,false -sahanakulur,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false -sahanakulur,newsmast.social,Books & Literature,books_literature,false -sahanakulur,newsmast.social,Creative Arts,creative_arts,false -sahanakulur,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -sahanakulur,newsmast.social,Environment,environment,false -sahanakulur,newsmast.social,Food & Drink,food_drink,false -sahanakulur,newsmast.social,Gaming,gaming,false -sahanakulur,newsmast.social,Movies,movies,false -sahanakulur,newsmast.social,Nature & Wildlife,nature_wildlife,false -sahanakulur,newsmast.social,Performing Arts,performing_arts,false -sahanakulur,newsmast.social,Pets,pets,false -sahanakulur,newsmast.social,Photography,photography,false -sahanakulur,newsmast.social,TV & Radio,tv_radio,false -sahanakulur,newsmast.social,Visual Arts,visual_arts,false -sahanakulur,newsmast.social,Architecture & Design,architecture_design,true -tom_webler,newsmast.social,Academia & Research,academia_research,false -tom_webler,newsmast.social,AI,ai,false -tom_webler,newsmast.social,Climate change,climate_change,false -tom_webler,newsmast.social,Energy & Pollution,energy_pollution,false -tom_webler,newsmast.social,US Politics,us_politics,false -tom_webler,newsmast.social,Government & Policy,government_policy,true -Binary_MinKhant,newsmast.social,Breaking News,breaking_news,false -Binary_MinKhant,newsmast.social,Climate change,climate_change,false -Binary_MinKhant,newsmast.social,Energy & Pollution,energy_pollution,false -Binary_MinKhant,newsmast.social,Environment,environment,false -Binary_MinKhant,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false -Binary_MinKhant,newsmast.social,Indigenous Peoples,indigenous_peoples,false -Binary_MinKhant,newsmast.social,Disabled Voices,disabled_voices,false -Binary_MinKhant,newsmast.social,LGBTQ+,lgbtq,false -Binary_MinKhant,newsmast.social,Immigrants Rights,immigrants_rights,false -Binary_MinKhant,newsmast.social,Activism & Civil Rights,activism_civil_rights,false -Binary_MinKhant,newsmast.social,Black Voices,black_voices,false -Binary_MinKhant,newsmast.social,Women’s Voices,women_voices,false -Binary_MinKhant,newsmast.social,Markets & Finance,markets_finance,false -Binary_MinKhant,newsmast.social,Business,business,false -Binary_MinKhant,newsmast.social,Workers Rights,workers_rights,false -Binary_MinKhant,newsmast.social,Engineering,engineering,false -Binary_MinKhant,newsmast.social,Technology,technology,false -Binary_MinKhant,newsmast.social,AI,ai,false -Binary_MinKhant,newsmast.social,Programming,programming,false -Binary_MinKhant,newsmast.social,Chemistry,chemistry,false -Binary_MinKhant,newsmast.social,Science,science,false -Binary_MinKhant,newsmast.social,Space,space,false -Binary_MinKhant,newsmast.social,Biology,biology,false -Binary_MinKhant,newsmast.social,Mathematics,mathematics,false -Binary_MinKhant,newsmast.social,Physics,physics,false -Binary_MinKhant,newsmast.social,History,history,false -Binary_MinKhant,newsmast.social,Humanities,humanities,false -Binary_MinKhant,newsmast.social,Social Sciences,social_sciences,false -Binary_MinKhant,newsmast.social,Philosophy,philosophy,false -Binary_MinKhant,newsmast.social,Sport,sport,false -Binary_MinKhant,newsmast.social,Football,football,false -Binary_MinKhant,newsmast.social,US Sport,us_sport,false -Binary_MinKhant,newsmast.social,Creative Arts,creative_arts,false -Binary_MinKhant,newsmast.social,Humour,humour,false -Binary_MinKhant,newsmast.social,Pets,pets,false -Binary_MinKhant,newsmast.social,Nature & Wildlife,nature_wildlife,false -Binary_MinKhant,newsmast.social,Food & Drink,food_drink,false -Binary_MinKhant,newsmast.social,Puzzles,puzzles,false -Binary_MinKhant,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false -Binary_MinKhant,newsmast.social,Travel,travel,false -Binary_MinKhant,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -Binary_MinKhant,newsmast.social,Poverty & Inequality,poverty_inequality,false -Binary_MinKhant,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false -Binary_MinKhant,newsmast.social,US Politics,us_politics,false -Binary_MinKhant,newsmast.social,Politics,politics,false -Binary_MinKhant,newsmast.social,Law & Justice,law_justice,false -Binary_MinKhant,newsmast.social,Healthcare,healthcare,false -Binary_MinKhant,newsmast.social,Academia & Research,academia_research,false -Binary_MinKhant,newsmast.social,Government & Policy,government_policy,false -Binary_MinKhant,newsmast.social,Visual Arts,visual_arts,false -Binary_MinKhant,newsmast.social,TV & Radio,tv_radio,false -Binary_MinKhant,newsmast.social,Photography,photography,false -Binary_MinKhant,newsmast.social,Performing Arts,performing_arts,false -Binary_MinKhant,newsmast.social,Music,music,false -Binary_MinKhant,newsmast.social,Movies,movies,false -Binary_MinKhant,newsmast.social,Gaming,gaming,false -Binary_MinKhant,newsmast.social,Books & Literature,books_literature,false -Binary_MinKhant,newsmast.social,Architecture & Design,architecture_design,false -sillygwailinks,mastodon.social,US Sport,us_sport,false -saskia,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false -Cappuccinogirl,newsmast.social,Visual Arts,visual_arts,false -sillygwailinks,mastodon.social,Social Sciences,social_sciences,true -Andi,newsmast.social,AI,ai,false -Andi,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false -Andi,newsmast.social,Biology,biology,false -Andi,newsmast.social,Chemistry,chemistry,false -LetsAnimePod,newsmast.social,Books & Literature,books_literature,false -LetsAnimePod,newsmast.social,Gaming,gaming,false -LetsAnimePod,newsmast.social,Humour,humour,false -LetsAnimePod,newsmast.social,Movies,movies,false -LetsAnimePod,newsmast.social,TV & Radio,tv_radio,true -minkhantkyaw,newsmast.social,Poverty & Inequality,poverty_inequality,false -minkhantkyaw,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -Andi,newsmast.social,Climate change,climate_change,false -Andi,newsmast.social,Energy & Pollution,energy_pollution,false -Andi,newsmast.social,Engineering,engineering,false -Andi,newsmast.social,Environment,environment,false -Andi,newsmast.social,Mathematics,mathematics,false -igs,newsmast.social,Breaking News,breaking_news,false -igs,newsmast.social,Engineering,engineering,false -igs,newsmast.social,Mathematics,mathematics,false -igs,newsmast.social,Space,space,false -igs,newsmast.social,Puzzles,puzzles,true -Andi,newsmast.social,Physics,physics,false -Andi,newsmast.social,Programming,programming,false -Andi,newsmast.social,Space,space,false -Andi,newsmast.social,Technology,technology,false -Andi,newsmast.social,Science,science,true -tthcreation,newsmast.social,Breaking News,breaking_news,false -tthcreation,newsmast.social,Business,business,false -tthcreation,newsmast.social,Markets & Finance,markets_finance,false -tthcreation,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false -tthcreation,newsmast.social,Photography,photography,false -tthcreation,newsmast.social,Women’s Voices,women_voices,false -tthcreation,newsmast.social,Travel,travel,true -Dade_Murphy,newsmast.social,Technology,technology,true -nclm,newsmast.social,LGBTQ+,lgbtq,false -nclm,newsmast.social,Movies,movies,false -nclm,newsmast.social,Music,music,false -nclm,newsmast.social,Performing Arts,performing_arts,false -nclm,newsmast.social,Photography,photography,false -nclm,newsmast.social,Physics,physics,false -nclm,newsmast.social,Science,science,false -nclm,newsmast.social,Social Sciences,social_sciences,false -nclm,newsmast.social,Visual Arts,visual_arts,false -nclm,newsmast.social,Women’s Voices,women_voices,false -ahnay,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false -ahnay,newsmast.social,Business,business,false -ahnay,newsmast.social,Climate change,climate_change,false -newsmast_public,newsmast.social,Breaking News,breaking_news,false -Nyein,newsmast.social,Journalism & Comment,news_comment_data,false -newsmast_public,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -sandos,newsmast.social,Biology,biology,false -sandos,newsmast.social,Books & Literature,books_literature,false -sandos,newsmast.social,Breaking News,breaking_news,false -sandos,newsmast.social,Environment,environment,false -sandos,newsmast.social,Food & Drink,food_drink,false -sandos,newsmast.social,Gaming,gaming,false -sandos,newsmast.social,Humour,humour,false -sandos,newsmast.social,Mathematics,mathematics,false -sandos,newsmast.social,Movies,movies,false -sandos,newsmast.social,Music,music,false -sandos,newsmast.social,Philosophy,philosophy,false -sandos,newsmast.social,Photography,photography,false -sandos,newsmast.social,Physics,physics,false -sandos,newsmast.social,Programming,programming,false -sandos,newsmast.social,Puzzles,puzzles,false -sandos,newsmast.social,Space,space,false -sandos,newsmast.social,Technology,technology,false -sandos,newsmast.social,Travel,travel,false -sandos,newsmast.social,TV & Radio,tv_radio,false -sandos,newsmast.social,AI,ai,true -newsmast_public,newsmast.social,Engineering,engineering,false -newsmast_public,newsmast.social,Environment,environment,false -hardindr,newsmast.social,Biology,biology,false -hardindr,newsmast.social,Breaking News,breaking_news,false -hardindr,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -hardindr,newsmast.social,Government & Policy,government_policy,false -hardindr,newsmast.social,History,history,false -hardindr,newsmast.social,Humanities,humanities,false -hardindr,newsmast.social,Law & Justice,law_justice,false -hardindr,newsmast.social,Mathematics,mathematics,false -hardindr,newsmast.social,Philosophy,philosophy,false -hardindr,newsmast.social,Physics,physics,false -hardindr,newsmast.social,Poverty & Inequality,poverty_inequality,false -hardindr,newsmast.social,Social Sciences,social_sciences,false -hardindr,newsmast.social,US Politics,us_politics,false -hardindr,newsmast.social,Chemistry,chemistry,true -Dade_Murphy,newsmast.social,Breaking News,breaking_news,false -newsmast_public,newsmast.social,Gaming,gaming,false -newsmast_public,newsmast.social,Government & Policy,government_policy,false -newsmast_public,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false -newsmast_public,newsmast.social,Movies,movies,false -newsmast_public,newsmast.social,Music,music,false -newsmast_public,newsmast.social,Journalism & Comment,news_comment_data,false -newsmast_public,newsmast.social,Photography,photography,false -newsmast_public,newsmast.social,Physics,physics,false -winntendo,mstdn.social,Visual Arts,visual_arts,false -winntendo,mstdn.social,Science,science,true -IlCava,mastodon.uno,LGBTQ+,lgbtq,false -IlCava,mastodon.uno,Mathematics,mathematics,false -IlCava,mastodon.uno,Mental Health & Wellbeing,mental_health_wellbeing,false -ilwtm,newsmast.social,AI,ai,false -ilwtm,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false -ilwtm,newsmast.social,Breaking News,breaking_news,false -ilwtm,newsmast.social,Creative Arts,creative_arts,false -ilwtm,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -ilwtm,newsmast.social,Environment,environment,false -ilwtm,newsmast.social,Photography,photography,false -ilwtm,newsmast.social,Poverty & Inequality,poverty_inequality,false -ilwtm,newsmast.social,Technology,technology,false -ilwtm,newsmast.social,Visual Arts,visual_arts,false -ilwtm,newsmast.social,Travel,travel,true -IlCava,mastodon.uno,Movies,movies,false -roggim,newsmast.social,Football,football,false -roggim,newsmast.social,Humour,humour,false -roggim,newsmast.social,Social Media,social_media,false -roggim,newsmast.social,Travel,travel,false -roggim,newsmast.social,Breaking News,breaking_news,true -HariTulsidas,newsmast.social,AI,ai,false -HariTulsidas,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false -HariTulsidas,newsmast.social,Chemistry,chemistry,false -HariTulsidas,newsmast.social,Climate change,climate_change,false -HariTulsidas,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -HariTulsidas,newsmast.social,Energy & Pollution,energy_pollution,false -HariTulsidas,newsmast.social,Engineering,engineering,false -HariTulsidas,newsmast.social,Environment,environment,false -HariTulsidas,newsmast.social,History,history,false -HariTulsidas,newsmast.social,Humanities,humanities,false -HariTulsidas,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false -HariTulsidas,newsmast.social,Mathematics,mathematics,false -HariTulsidas,newsmast.social,Physics,physics,false -HariTulsidas,newsmast.social,Poverty & Inequality,poverty_inequality,false -HariTulsidas,newsmast.social,Programming,programming,false -HariTulsidas,newsmast.social,Social Sciences,social_sciences,false -HariTulsidas,newsmast.social,Space,space,false -HariTulsidas,newsmast.social,Technology,technology,false -HariTulsidas,newsmast.social,Science,science,true -CELSET,newsmast.social,Books & Literature,books_literature,false -Nido,newsmast.social,Academia & Research,academia_research,false -Nido,newsmast.social,AI,ai,false -Nido,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false -Nido,newsmast.social,Biology,biology,false -Nido,newsmast.social,Books & Literature,books_literature,false -Nido,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -Nido,newsmast.social,Engineering,engineering,false -Nido,newsmast.social,Environment,environment,false -newsmast_public,newsmast.social,Politics,politics,false -violiver,newsmast.social,Activism & Civil Rights,activism_civil_rights,false -violiver,newsmast.social,Music,music,false -violiver,newsmast.social,Performing Arts,performing_arts,false -violiver,newsmast.social,Science,science,false -violiver,newsmast.social,LGBTQ+,lgbtq,true -newsmast_public,newsmast.social,Poverty & Inequality,poverty_inequality,false -newsmast_public,newsmast.social,Programming,programming,false -newsmast_public,newsmast.social,Science,science,false -newsmast_public,newsmast.social,Social Media,social_media,false -newsmast_public,newsmast.social,Social Sciences,social_sciences,false -newsmast_public,newsmast.social,Space,space,false -newsmast_public,newsmast.social,TV & Radio,tv_radio,false -bothuthesi,newsmast.social,AI,ai,false -bothuthesi,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false -newsmast_public,newsmast.social,Visual Arts,visual_arts,false -newsmast_public,newsmast.social,Technology,technology,true -babygirl,newsmast.social,Food & Drink,food_drink,false -babygirl,newsmast.social,Football,football,false -babygirl,newsmast.social,Humour,humour,false -babygirl,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false -babygirl,newsmast.social,Nature & Wildlife,nature_wildlife,false -lunabase,newsmast.social,Breaking News,breaking_news,false -lunabase,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -lunabase,newsmast.social,Engineering,engineering,false -lunabase,newsmast.social,Programming,programming,false -lunabase,newsmast.social,Science,science,false -lunabase,newsmast.social,Space,space,false -lunabase,newsmast.social,Technology,technology,false -lunabase,newsmast.social,Ukraine Invasion,ukraine_invasion,false -lunabase,newsmast.social,AI,ai,true -BostonAbrams,newsmast.social,Books & Literature,books_literature,false -CELSET,newsmast.social,Black Voices,black_voices,false -daniel,newsmast.social,Breaking News,breaking_news,false -daniel,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -daniel,newsmast.social,Engineering,engineering,false -daniel,newsmast.social,Journalism & Comment,news_comment_data,false -daniel,newsmast.social,Programming,programming,false -daniel,newsmast.social,Science,science,false -daniel,newsmast.social,Space,space,false -daniel,newsmast.social,Technology,technology,true -soundofamoped,newsmast.social,Humour,humour,false -soundofamoped,newsmast.social,Puzzles,puzzles,false -soundofamoped,newsmast.social,Pets,pets,false -Nido,newsmast.social,History,history,false -Nido,newsmast.social,Humanities,humanities,false -Nido,newsmast.social,Mathematics,mathematics,false -Nido,newsmast.social,Movies,movies,false -Nido,newsmast.social,Music,music,false -Nido,newsmast.social,Journalism & Comment,news_comment_data,false -Nido,newsmast.social,Performing Arts,performing_arts,false -Nido,newsmast.social,Philosophy,philosophy,false -Nido,newsmast.social,Photography,photography,false -Nido,newsmast.social,Physics,physics,false -Nido,newsmast.social,Politics,politics,false -Nido,newsmast.social,Programming,programming,false -Nido,newsmast.social,Science,science,false -HC_History,newsmast.social,Activism & Civil Rights,activism_civil_rights,false -HC_History,newsmast.social,Black Voices,black_voices,false -HC_History,newsmast.social,Humanities,humanities,false -HC_History,newsmast.social,Philosophy,philosophy,false -HC_History,newsmast.social,Social Sciences,social_sciences,false -HC_History,newsmast.social,Women’s Voices,women_voices,false -HC_History,newsmast.social,History,history,true -minkhantkyaw,newsmast.social,Environment,environment,false -shortstay,newsmast.social,Books & Literature,books_literature,false -shortstay,newsmast.social,Breaking News,breaking_news,false -shortstay,newsmast.social,Climate change,climate_change,false -shortstay,newsmast.social,Philosophy,philosophy,false -shortstay,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,true -kirukarki2,newsmast.social,Technology,technology,false -nayyaung,mastodon.social,Breaking News,breaking_news,false -nayyaung,mastodon.social,Social Media,social_media,false -nayyaung,mastodon.social,Ukraine Invasion,ukraine_invasion,false -nayyaung,mastodon.social,Weather,weather,false -nayyaung,mastodon.social,Journalism & Comment,news_comment_data,true -HotCoffee,newsmast.social,Physics,physics,false -HotCoffee,newsmast.social,Food & Drink,food_drink,false -HotCoffee,newsmast.social,Humour,humour,false -HotCoffee,newsmast.social,Pets,pets,false -HotCoffee,newsmast.social,Nature & Wildlife,nature_wildlife,false -beergeek,newsmast.social,Energy & Pollution,energy_pollution,false -beergeek,newsmast.social,Programming,programming,false -beergeek,newsmast.social,Technology,technology,false -beergeek,newsmast.social,Workers Rights,workers_rights,false -beergeek,newsmast.social,AI,ai,true -NextGen,newsmast.social,Architecture & Design,architecture_design,false -NextGen,newsmast.social,Books & Literature,books_literature,false -NextGen,newsmast.social,Climate change,climate_change,false -NextGen,newsmast.social,Energy & Pollution,energy_pollution,false -NextGen,newsmast.social,Environment,environment,false -NextGen,newsmast.social,History,history,false -NextGen,newsmast.social,Physics,physics,false -NextGen,newsmast.social,Science,science,false -NextGen,newsmast.social,Travel,travel,false -NextGen,newsmast.social,Food & Drink,food_drink,true -kirukarki2,newsmast.social,Programming,programming,false -justinw,newsmast.social,Academia & Research,academia_research,false -justinw,newsmast.social,Activism & Civil Rights,activism_civil_rights,false -justinw,newsmast.social,AI,ai,false -justinw,newsmast.social,Black Voices,black_voices,false -justinw,newsmast.social,Books & Literature,books_literature,false -justinw,newsmast.social,Breaking News,breaking_news,false -justinw,newsmast.social,Climate change,climate_change,false -justinw,newsmast.social,Creative Arts,creative_arts,false -justinw,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -justinw,newsmast.social,Disabled Voices,disabled_voices,false -justinw,newsmast.social,Energy & Pollution,energy_pollution,false -justinw,newsmast.social,Environment,environment,false -justinw,newsmast.social,Food & Drink,food_drink,false -justinw,newsmast.social,Government & Policy,government_policy,false -justinw,newsmast.social,Healthcare,healthcare,false -justinw,newsmast.social,History,history,false -justinw,newsmast.social,Humanities,humanities,false -justinw,newsmast.social,Humour,humour,false -justinw,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false -justinw,newsmast.social,Immigrants Rights,immigrants_rights,false -justinw,newsmast.social,Indigenous Peoples,indigenous_peoples,false -justinw,newsmast.social,Law & Justice,law_justice,false -justinw,newsmast.social,LGBTQ+,lgbtq,false -justinw,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false -justinw,newsmast.social,Music,music,false -justinw,newsmast.social,Journalism & Comment,news_comment_data,false -justinw,newsmast.social,Performing Arts,performing_arts,false -justinw,newsmast.social,Pets,pets,false -justinw,newsmast.social,Philosophy,philosophy,false -justinw,newsmast.social,Photography,photography,false -justinw,newsmast.social,Politics,politics,false -BostonAbrams,newsmast.social,Food & Drink,food_drink,false -CELSET,newsmast.social,Immigrants Rights,immigrants_rights,false -justinw,newsmast.social,Poverty & Inequality,poverty_inequality,false -justinw,newsmast.social,Social Sciences,social_sciences,false -justinw,newsmast.social,Technology,technology,false -justinw,newsmast.social,Travel,travel,false -justinw,newsmast.social,TV & Radio,tv_radio,false -justinw,newsmast.social,US Politics,us_politics,false -justinw,newsmast.social,Visual Arts,visual_arts,false -justinw,newsmast.social,Weather,weather,false -justinw,newsmast.social,Women’s Voices,women_voices,false -justinw,newsmast.social,Movies,movies,true -Nido,newsmast.social,Social Media,social_media,false -Nido,newsmast.social,Social Sciences,social_sciences,false -Nido,newsmast.social,Technology,technology,false -Nido,newsmast.social,TV & Radio,tv_radio,false -Nido,newsmast.social,Visual Arts,visual_arts,false -Nido,newsmast.social,Activism & Civil Rights,activism_civil_rights,true -sks1084,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false -sks1084,newsmast.social,Breaking News,breaking_news,false -sks1084,newsmast.social,Climate change,climate_change,false -sks1084,newsmast.social,Energy & Pollution,energy_pollution,false -sks1084,newsmast.social,Environment,environment,false -sks1084,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false -sks1084,newsmast.social,Social Media,social_media,false -sks1084,newsmast.social,Ukraine Invasion,ukraine_invasion,false -sks1084,newsmast.social,Weather,weather,true -tayndua,newsmast.social,Social Sciences,social_sciences,false -tayndua,newsmast.social,Technology,technology,false -tayndua,newsmast.social,TV & Radio,tv_radio,false -tayndua,newsmast.social,US Politics,us_politics,false -tayndua,newsmast.social,Women’s Voices,women_voices,false -tayndua,newsmast.social,Workers Rights,workers_rights,false -tayndua,newsmast.social,Activism & Civil Rights,activism_civil_rights,true -akamar87,newsmast.social,Breaking News,breaking_news,false -akamar87,newsmast.social,History,history,false -akamar87,newsmast.social,Mathematics,mathematics,false -akamar87,newsmast.social,Philosophy,philosophy,false -akamar87,newsmast.social,Technology,technology,false -akamar87,newsmast.social,Programming,programming,true -JessJ,newsmast.social,Activism & Civil Rights,activism_civil_rights,false -JessJ,newsmast.social,Programming,programming,false -JessJ,newsmast.social,Space,space,false -soundofamoped,newsmast.social,Travel,travel,false -JessJ,newsmast.social,LGBTQ+,lgbtq,true -jimchapman,newsmast.social,Academia & Research,academia_research,false -jimchapman,newsmast.social,Activism & Civil Rights,activism_civil_rights,false -jimchapman,newsmast.social,AI,ai,false -jimchapman,newsmast.social,Architecture & Design,architecture_design,false -jimchapman,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false -jimchapman,newsmast.social,Biology,biology,false -jimchapman,newsmast.social,Black Voices,black_voices,false -jimchapman,newsmast.social,Books & Literature,books_literature,false -jimchapman,newsmast.social,Breaking News,breaking_news,false -jimchapman,newsmast.social,Business,business,false -jimchapman,newsmast.social,Chemistry,chemistry,false -jimchapman,newsmast.social,Climate change,climate_change,false -jimchapman,newsmast.social,Disabled Voices,disabled_voices,false -jimchapman,newsmast.social,Energy & Pollution,energy_pollution,false -jimchapman,newsmast.social,Engineering,engineering,false -jimchapman,newsmast.social,Environment,environment,false -jimchapman,newsmast.social,Football,football,false -jimchapman,newsmast.social,Gaming,gaming,false -jimchapman,newsmast.social,Government & Policy,government_policy,false -jimchapman,newsmast.social,Healthcare,healthcare,false -jimchapman,newsmast.social,History,history,false -jimchapman,newsmast.social,Humanities,humanities,false -jimchapman,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false -jimchapman,newsmast.social,Immigrants Rights,immigrants_rights,false -jimchapman,newsmast.social,Indigenous Peoples,indigenous_peoples,false -jimchapman,newsmast.social,Law & Justice,law_justice,false -jimchapman,newsmast.social,LGBTQ+,lgbtq,false -jimchapman,newsmast.social,Markets & Finance,markets_finance,false -jimchapman,newsmast.social,Mathematics,mathematics,false -jimchapman,newsmast.social,Movies,movies,false -jimchapman,newsmast.social,Music,music,false -jimchapman,newsmast.social,Journalism & Comment,news_comment_data,false -jimchapman,newsmast.social,Performing Arts,performing_arts,false -jimchapman,newsmast.social,Philosophy,philosophy,false -jimchapman,newsmast.social,Photography,photography,false -jimchapman,newsmast.social,Physics,physics,false -jimchapman,newsmast.social,Politics,politics,false -jimchapman,newsmast.social,Poverty & Inequality,poverty_inequality,false -jimchapman,newsmast.social,Programming,programming,false -jimchapman,newsmast.social,Science,science,false -jimchapman,newsmast.social,Social Media,social_media,false -jimchapman,newsmast.social,Social Sciences,social_sciences,false -jimchapman,newsmast.social,Space,space,false -jimchapman,newsmast.social,Sport,sport,false -jimchapman,newsmast.social,Technology,technology,false -jimchapman,newsmast.social,TV & Radio,tv_radio,false -jimchapman,newsmast.social,Ukraine Invasion,ukraine_invasion,false -jimchapman,newsmast.social,US Politics,us_politics,false -jimchapman,newsmast.social,Visual Arts,visual_arts,false -jimchapman,newsmast.social,Weather,weather,false -jimchapman,newsmast.social,Women’s Voices,women_voices,false -jimchapman,newsmast.social,Workers Rights,workers_rights,false -jimchapman,newsmast.social,Democracy & Human Rights,democracy_human_rights,true -kevinbugati,newsmast.social,Academia & Research,academia_research,false -kevinbugati,newsmast.social,Biology,biology,false -kevinbugati,newsmast.social,Chemistry,chemistry,false -kevinbugati,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -kevinbugati,newsmast.social,Government & Policy,government_policy,false -kevinbugati,newsmast.social,Healthcare,healthcare,false -kevinbugati,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false -kevinbugati,newsmast.social,Law & Justice,law_justice,false -kevinbugati,newsmast.social,Mathematics,mathematics,false -kevinbugati,newsmast.social,Journalism & Comment,news_comment_data,false -kevinbugati,newsmast.social,Physics,physics,false -kevinbugati,newsmast.social,Politics,politics,false -kevinbugati,newsmast.social,Poverty & Inequality,poverty_inequality,false -kevinbugati,newsmast.social,Science,science,false -kevinbugati,newsmast.social,Social Media,social_media,false -kevinbugati,newsmast.social,Space,space,false -kevinbugati,newsmast.social,Ukraine Invasion,ukraine_invasion,false -kevinbugati,newsmast.social,US Politics,us_politics,false -kevinbugati,newsmast.social,Weather,weather,false -kevinbugati,newsmast.social,Breaking News,breaking_news,true -niroran,newsmast.social,AI,ai,false -niroran,newsmast.social,Business,business,false -niroran,newsmast.social,Climate change,climate_change,false -niroran,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -niroran,newsmast.social,Environment,environment,false -niroran,newsmast.social,Government & Policy,government_policy,false -niroran,newsmast.social,Markets & Finance,markets_finance,false -niroran,newsmast.social,Movies,movies,false -niroran,newsmast.social,Music,music,false -niroran,newsmast.social,Journalism & Comment,news_comment_data,false -niroran,newsmast.social,Politics,politics,false -niroran,newsmast.social,Science,science,false -niroran,newsmast.social,Social Media,social_media,false -niroran,newsmast.social,Space,space,false -niroran,newsmast.social,Technology,technology,false -niroran,newsmast.social,TV & Radio,tv_radio,false -niroran,newsmast.social,US Politics,us_politics,false -niroran,newsmast.social,Breaking News,breaking_news,true -bothuthesi,newsmast.social,Biology,biology,false -Eklektikos,newsmast.social,Academia & Research,academia_research,false -Eklektikos,newsmast.social,AI,ai,false -Eklektikos,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false -Eklektikos,newsmast.social,Biology,biology,false -Eklektikos,newsmast.social,Books & Literature,books_literature,false -Eklektikos,newsmast.social,Business,business,false -Eklektikos,newsmast.social,Chemistry,chemistry,false -Eklektikos,newsmast.social,Climate change,climate_change,false -Eklektikos,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -Eklektikos,newsmast.social,Energy & Pollution,energy_pollution,false -Eklektikos,newsmast.social,Engineering,engineering,false -Eklektikos,newsmast.social,Environment,environment,false -Eklektikos,newsmast.social,Government & Policy,government_policy,false -Eklektikos,newsmast.social,Healthcare,healthcare,false -Eklektikos,newsmast.social,History,history,false -Eklektikos,newsmast.social,Humanities,humanities,false -Eklektikos,newsmast.social,Humour,humour,false -Eklektikos,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false -Eklektikos,newsmast.social,Law & Justice,law_justice,false -Eklektikos,newsmast.social,Markets & Finance,markets_finance,false -Eklektikos,newsmast.social,Mathematics,mathematics,false -Eklektikos,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false -Eklektikos,newsmast.social,Movies,movies,false -Eklektikos,newsmast.social,Nature & Wildlife,nature_wildlife,false -Eklektikos,newsmast.social,Journalism & Comment,news_comment_data,false -Eklektikos,newsmast.social,Philosophy,philosophy,false -Eklektikos,newsmast.social,Physics,physics,false -Eklektikos,newsmast.social,Politics,politics,false -Eklektikos,newsmast.social,Poverty & Inequality,poverty_inequality,false -Eklektikos,newsmast.social,Programming,programming,false -Eklektikos,newsmast.social,Puzzles,puzzles,false -Eklektikos,newsmast.social,Science,science,false -Eklektikos,newsmast.social,Social Media,social_media,false -Eklektikos,newsmast.social,Social Sciences,social_sciences,false -Eklektikos,newsmast.social,Space,space,false -Eklektikos,newsmast.social,Sport,sport,false -Eklektikos,newsmast.social,Technology,technology,false -Eklektikos,newsmast.social,TV & Radio,tv_radio,false -Eklektikos,newsmast.social,US Politics,us_politics,false -Eklektikos,newsmast.social,Workers Rights,workers_rights,false -Eklektikos,newsmast.social,Breaking News,breaking_news,true -bothuthesi,newsmast.social,Breaking News,breaking_news,false -JessJ,newsmast.social,Women’s Voices,women_voices,false -ahnay,newsmast.social,Energy & Pollution,energy_pollution,false -ahnay,newsmast.social,Environment,environment,false -ahnay,newsmast.social,Markets & Finance,markets_finance,false -ahnay,newsmast.social,Workers Rights,workers_rights,true -bothuthesi,newsmast.social,Chemistry,chemistry,false -bothuthesi,newsmast.social,Climate change,climate_change,false -bothuthesi,newsmast.social,Energy & Pollution,energy_pollution,false -bothuthesi,newsmast.social,Engineering,engineering,false -bothuthesi,newsmast.social,Environment,environment,false -bothuthesi,newsmast.social,Mathematics,mathematics,false -alternative,newsmast.social,Architecture & Design,architecture_design,false -alternative,newsmast.social,Engineering,engineering,false -alternative,newsmast.social,Movies,movies,false -BostonAbrams,newsmast.social,Puzzles,puzzles,false -CELSET,newsmast.social,Indigenous Peoples,indigenous_peoples,false -alternative,newsmast.social,Music,music,false -alternative,newsmast.social,Programming,programming,false -alternative,newsmast.social,Social Sciences,social_sciences,false -Nusm,newsmast.social,Breaking News,breaking_news,false -Nusm,newsmast.social,Football,football,false -Nusm,newsmast.social,Government & Policy,government_policy,false -Nusm,newsmast.social,Humour,humour,false -Nusm,newsmast.social,Puzzles,puzzles,false -Nusm,newsmast.social,Technology,technology,false -Nusm,newsmast.social,US Politics,us_politics,false -Nusm,newsmast.social,US Sport,us_sport,false -Nusm,newsmast.social,Weather,weather,false -Nusm,newsmast.social,Politics,politics,true -alternative,newsmast.social,TV & Radio,tv_radio,false -alternative,newsmast.social,Technology,technology,true -tayndua,newsmast.social,AI,ai,false -tayndua,newsmast.social,Black Voices,black_voices,false -tayndua,newsmast.social,Books & Literature,books_literature,false -tayndua,newsmast.social,Business,business,false -tayndua,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -tayndua,newsmast.social,Disabled Voices,disabled_voices,false -tayndua,newsmast.social,Government & Policy,government_policy,false -tayndua,newsmast.social,Humanities,humanities,false -tayndua,newsmast.social,LGBTQ+,lgbtq,false -tayndua,newsmast.social,Markets & Finance,markets_finance,false -tayndua,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false -tayndua,newsmast.social,Movies,movies,false -tayndua,newsmast.social,Performing Arts,performing_arts,false -tayndua,newsmast.social,Pets,pets,false -tayndua,newsmast.social,Philosophy,philosophy,false -tayndua,newsmast.social,Politics,politics,false -tayndua,newsmast.social,Poverty & Inequality,poverty_inequality,false -tayndua,newsmast.social,Social Media,social_media,false -bothuthesi,newsmast.social,Journalism & Comment,news_comment_data,false -bothuthesi,newsmast.social,Physics,physics,false -bothuthesi,newsmast.social,Science,science,false -bothuthesi,newsmast.social,Social Media,social_media,false -JHBernstein,newsmast.social,Academia & Research,academia_research,false -JHBernstein,newsmast.social,Biology,biology,false -JHBernstein,newsmast.social,Books & Literature,books_literature,false -JHBernstein,newsmast.social,Chemistry,chemistry,false -JHBernstein,newsmast.social,Climate change,climate_change,false -JHBernstein,newsmast.social,Environment,environment,false -JHBernstein,newsmast.social,Gaming,gaming,false -JHBernstein,newsmast.social,History,history,false -JHBernstein,newsmast.social,Humanities,humanities,false -JHBernstein,newsmast.social,Law & Justice,law_justice,false -JHBernstein,newsmast.social,Mathematics,mathematics,false -JHBernstein,newsmast.social,Movies,movies,false -JHBernstein,newsmast.social,Music,music,false -JHBernstein,newsmast.social,Performing Arts,performing_arts,false -JHBernstein,newsmast.social,Philosophy,philosophy,false -JHBernstein,newsmast.social,Photography,photography,false -JHBernstein,newsmast.social,Physics,physics,false -JHBernstein,newsmast.social,Politics,politics,false -JHBernstein,newsmast.social,Science,science,false -JHBernstein,newsmast.social,Social Sciences,social_sciences,false -JHBernstein,newsmast.social,Space,space,false -JHBernstein,newsmast.social,TV & Radio,tv_radio,false -JHBernstein,newsmast.social,US Politics,us_politics,false -gayatravel,newsmast.social,Food & Drink,food_drink,false -gayatravel,newsmast.social,Nature & Wildlife,nature_wildlife,false -gayatravel,newsmast.social,Photography,photography,false -gayatravel,newsmast.social,Social Media,social_media,false -gayatravel,newsmast.social,Travel,travel,true -JHBernstein,newsmast.social,Visual Arts,visual_arts,false -JHBernstein,newsmast.social,Architecture & Design,architecture_design,true -ghiachan,newsmast.social,Architecture & Design,architecture_design,false -ghiachan,newsmast.social,Books & Literature,books_literature,false -ghiachan,newsmast.social,Business,business,false -ghiachan,newsmast.social,Creative Arts,creative_arts,false -SilverRainbow,newsmast.social,History,history,false -SilverRainbow,newsmast.social,Programming,programming,false -SilverRainbow,newsmast.social,Space,space,false -SilverRainbow,newsmast.social,Technology,technology,false -SilverRainbow,newsmast.social,Science,science,true -ghiachan,newsmast.social,Food & Drink,food_drink,false -ghiachan,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false -ghiachan,newsmast.social,Nature & Wildlife,nature_wildlife,false -ghiachan,newsmast.social,Photography,photography,false -ghiachan,newsmast.social,Visual Arts,visual_arts,false -ghiachan,newsmast.social,Travel,travel,true -bothuthesi,newsmast.social,Space,space,false -bothuthesi,newsmast.social,Technology,technology,false -Tom,newsmast.social,Books & Literature,books_literature,false -IlCava,mastodon.uno,Law & Justice,law_justice,false -Tom,newsmast.social,Environment,environment,false -Tom,newsmast.social,Movies,movies,false -Tom,newsmast.social,Music,music,false -Tom,newsmast.social,Journalism & Comment,news_comment_data,false -Tom,newsmast.social,Social Media,social_media,false -Tom,newsmast.social,Ukraine Invasion,ukraine_invasion,false -Tom,newsmast.social,Weather,weather,false -axonrg,newsmast.social,Gaming,gaming,false -axonrg,newsmast.social,Movies,movies,false -axonrg,newsmast.social,Politics,politics,false -axonrg,newsmast.social,Programming,programming,false -axonrg,newsmast.social,Science,science,false -Tom,newsmast.social,Breaking News,breaking_news,true -rogergraf,newsmast.social,AI,ai,false -rogergraf,newsmast.social,History,history,false -rogergraf,newsmast.social,Humanities,humanities,false -rogergraf,newsmast.social,Philosophy,philosophy,false -rogergraf,newsmast.social,Science,science,false -rogergraf,newsmast.social,Social Sciences,social_sciences,false -rogergraf,newsmast.social,Technology,technology,false -rogergraf,newsmast.social,Breaking News,breaking_news,true -rogergraf,newsmast.social,Books & Literature,books_literature,false -rogergraf,newsmast.social,Movies,movies,false -rogergraf,newsmast.social,Music,music,false -rogergraf,newsmast.social,TV & Radio,tv_radio,false -rogergraf,newsmast.social,Visual Arts,visual_arts,false -rogergraf,newsmast.social,Sport,sport,false -rogergraf,newsmast.social,Football,football,false -rogergraf,newsmast.social,Creative Arts,creative_arts,false -rogergraf,newsmast.social,Food & Drink,food_drink,false -rogergraf,newsmast.social,Humour,humour,false -rogergraf,newsmast.social,Nature & Wildlife,nature_wildlife,false -rogergraf,newsmast.social,Pets,pets,false -rogergraf,newsmast.social,Puzzles,puzzles,false -rogergraf,newsmast.social,Travel,travel,false -bothuthesi,newsmast.social,Ukraine Invasion,ukraine_invasion,false -bothuthesi,newsmast.social,Weather,weather,false -bothuthesi,newsmast.social,Programming,programming,true -babygirl,newsmast.social,Pets,pets,false -newsmast,newsmast.social,Social Media,social_media,false -callum,newsmast.social,Books & Literature,books_literature,false -callum,newsmast.social,Gaming,gaming,false -callum,newsmast.social,Performing Arts,performing_arts,false -callum,newsmast.social,TV & Radio,tv_radio,false -callum,newsmast.social,Visual Arts,visual_arts,false -callum,newsmast.social,Movies,movies,true -IlCava,mastodon.uno,LGBTQ+,lgbtq,false -lwinmoepaing,newsmast.social,AI,ai,false -lwinmoepaing,newsmast.social,Engineering,engineering,false -lwinmoepaing,newsmast.social,Football,football,false -lwinmoepaing,newsmast.social,Programming,programming,false -lwinmoepaing,newsmast.social,Technology,technology,true -atm_machine,mas.to,Movies,movies,false -artbol,newsmast.social,Architecture & Design,architecture_design,false -artbol,newsmast.social,Energy & Pollution,energy_pollution,false -artbol,newsmast.social,Environment,environment,false -artbol,newsmast.social,Gaming,gaming,false -artbol,newsmast.social,Movies,movies,false -artbol,newsmast.social,Music,music,false -artbol,newsmast.social,Programming,programming,false -artbol,newsmast.social,Science,science,false -artbol,newsmast.social,Space,space,false -artbol,newsmast.social,Technology,technology,false -artbol,newsmast.social,TV & Radio,tv_radio,false -artbol,newsmast.social,Breaking News,breaking_news,true -kaunglay,newsmast.social,Engineering,engineering,true -foong,newsmast.social,Architecture & Design,architecture_design,false -foong,newsmast.social,Biology,biology,false -foong,newsmast.social,Books & Literature,books_literature,false -foong,newsmast.social,Business,business,false -foong,newsmast.social,Chemistry,chemistry,false -foong,newsmast.social,Creative Arts,creative_arts,false -foong,newsmast.social,Engineering,engineering,false -foong,newsmast.social,Food & Drink,food_drink,false -foong,newsmast.social,Gaming,gaming,false -foong,newsmast.social,History,history,false -foong,newsmast.social,Humanities,humanities,false -foong,newsmast.social,Humour,humour,false -foong,newsmast.social,Markets & Finance,markets_finance,false -foong,newsmast.social,Mathematics,mathematics,false -foong,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false -foong,newsmast.social,Movies,movies,false -foong,newsmast.social,Music,music,false -foong,newsmast.social,Nature & Wildlife,nature_wildlife,false -foong,newsmast.social,Performing Arts,performing_arts,false -foong,newsmast.social,Pets,pets,false -foong,newsmast.social,Philosophy,philosophy,false -foong,newsmast.social,Photography,photography,false -foong,newsmast.social,Physics,physics,false -foong,newsmast.social,Programming,programming,false -foong,newsmast.social,Puzzles,puzzles,false -foong,newsmast.social,Science,science,false -foong,newsmast.social,Social Sciences,social_sciences,false -foong,newsmast.social,Space,space,false -foong,newsmast.social,Technology,technology,false -foong,newsmast.social,Travel,travel,false -foong,newsmast.social,TV & Radio,tv_radio,false -foong,newsmast.social,Visual Arts,visual_arts,false -foong,newsmast.social,Workers Rights,workers_rights,false -foong,newsmast.social,AI,ai,true -newsmast,newsmast.social,Programming,programming,false -HotCoffee,newsmast.social,Biology,biology,false -HotCoffee,newsmast.social,Chemistry,chemistry,false -HotCoffee,newsmast.social,Science,science,false -HotCoffee,newsmast.social,Social Media,social_media,false -HotCoffee,newsmast.social,Space,space,false -HotCoffee,newsmast.social,Technology,technology,false -HotCoffee,newsmast.social,Ukraine Invasion,ukraine_invasion,false -HotCoffee,newsmast.social,Breaking News,breaking_news,true -axonrg,newsmast.social,Technology,technology,false -axonrg,newsmast.social,TV & Radio,tv_radio,false -axonrg,newsmast.social,US Politics,us_politics,false -IlCava,mastodon.uno,Mathematics,mathematics,false -axonrg,newsmast.social,Breaking News,breaking_news,true -HC_History,newsmast.social,Books & Literature,books_literature,false -WeCanFlipTS,newsmast.social,Activism & Civil Rights,activism_civil_rights,false -WeCanFlipTS,newsmast.social,AI,ai,false -WeCanFlipTS,newsmast.social,Business,business,false -WeCanFlipTS,newsmast.social,Government & Policy,government_policy,false -WeCanFlipTS,newsmast.social,Humanities,humanities,false -WeCanFlipTS,newsmast.social,Law & Justice,law_justice,false -WeCanFlipTS,newsmast.social,Markets & Finance,markets_finance,false -WeCanFlipTS,newsmast.social,Politics,politics,false -WeCanFlipTS,newsmast.social,Social Sciences,social_sciences,false -WeCanFlipTS,newsmast.social,Technology,technology,false -WeCanFlipTS,newsmast.social,Workers Rights,workers_rights,false -WeCanFlipTS,newsmast.social,Women’s Voices,women_voices,true -MinMaungHein,newsmast.social,Puzzles,puzzles,false -MinMaungHein,newsmast.social,Nature & Wildlife,nature_wildlife,false -MinMaungHein,newsmast.social,Humour,humour,false -MinMaungHein,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false -MinMaungHein,newsmast.social,Creative Arts,creative_arts,false -MinMaungHein,newsmast.social,Food & Drink,food_drink,false -MinMaungHein,newsmast.social,Travel,travel,false -MinMaungHein,newsmast.social,Pets,pets,false -HotCoffee,newsmast.social,Movies,movies,false -HotCoffee,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false -IlCava,mastodon.uno,Mental Health & Wellbeing,mental_health_wellbeing,false -saskia,newsmast.social,Climate change,climate_change,false -babygirl,newsmast.social,Puzzles,puzzles,false -babygirl,newsmast.social,Sport,sport,false -WhiteMode,newsmast.social,Biology,biology,false -WhiteMode,newsmast.social,Journalism & Comment,news_comment_data,false -babygirl,newsmast.social,Travel,travel,false -babygirl,newsmast.social,US Sport,us_sport,false -babygirl,newsmast.social,Creative Arts,creative_arts,true -true,newsmast.social,AI,ai,false -michaelleib,newsmast.social,AI,ai,false -michaelleib,newsmast.social,Business,business,false -michaelleib,newsmast.social,Engineering,engineering,false -michaelleib,newsmast.social,Government & Policy,government_policy,false -michaelleib,newsmast.social,Markets & Finance,markets_finance,false -michaelleib,newsmast.social,Politics,politics,false -michaelleib,newsmast.social,Programming,programming,false -michaelleib,newsmast.social,Science,science,false -michaelleib,newsmast.social,Technology,technology,false -michaelleib,newsmast.social,US Politics,us_politics,false -michaelleib,newsmast.social,Ukraine Invasion,ukraine_invasion,true -true,newsmast.social,Biology,biology,false -true,newsmast.social,Humour,humour,false -true,newsmast.social,Programming,programming,false -true,newsmast.social,Science,science,false -Toex,newsmast.social,Breaking News,breaking_news,false -Toex,newsmast.social,Social Media,social_media,false -Toex,newsmast.social,Space,space,false -Toex,newsmast.social,Weather,weather,false -Toex,newsmast.social,Science,science,true -true,newsmast.social,Space,space,false -HariTulsidas,newsmast.social,Philosophy,philosophy,false -IlCava,mastodon.uno,Movies,movies,false -true,newsmast.social,Travel,travel,false -true,newsmast.social,Technology,technology,true -FifiSch,mastodon.social,Activism & Civil Rights,activism_civil_rights,false -FifiSch,mastodon.social,Democracy & Human Rights,democracy_human_rights,false -Mercedes,newsmast.social,TV & Radio,tv_radio,false -Mercedes,newsmast.social,Visual Arts,visual_arts,false -bartfaitamas,newsmast.social,AI,ai,false -bartfaitamas,newsmast.social,Biology,biology,false -bartfaitamas,newsmast.social,Chemistry,chemistry,false -bartfaitamas,newsmast.social,Climate change,climate_change,false -bartfaitamas,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -bartfaitamas,newsmast.social,Engineering,engineering,false -bartfaitamas,newsmast.social,Environment,environment,false -bartfaitamas,newsmast.social,Government & Policy,government_policy,false -bartfaitamas,newsmast.social,Mathematics,mathematics,false -bartfaitamas,newsmast.social,Physics,physics,false -bartfaitamas,newsmast.social,Politics,politics,false -bartfaitamas,newsmast.social,Poverty & Inequality,poverty_inequality,false -bartfaitamas,newsmast.social,Science,science,false -bartfaitamas,newsmast.social,Space,space,false -bartfaitamas,newsmast.social,Technology,technology,false -bartfaitamas,newsmast.social,Programming,programming,true -Kschroeder,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false -Kschroeder,newsmast.social,Climate change,climate_change,false -Kschroeder,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -Kschroeder,newsmast.social,Technology,technology,false -Kschroeder,newsmast.social,Space,space,true -Nil253259,newsmast.social,Business,business,false -Nil253259,newsmast.social,Climate change,climate_change,false -Nil253259,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -Nil253259,newsmast.social,Environment,environment,false -Nil253259,newsmast.social,Science,science,false -Nil253259,newsmast.social,Space,space,false -Nil253259,newsmast.social,Technology,technology,false -Nil253259,newsmast.social,AI,ai,true -Taga,techhub.social,Creative Arts,creative_arts,false -HC_History,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false -HC_History,newsmast.social,Travel,travel,false -stb,newsmast.social,Academia & Research,academia_research,false -stb,newsmast.social,Activism & Civil Rights,activism_civil_rights,false -stb,newsmast.social,AI,ai,false -stb,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false -stb,newsmast.social,Biology,biology,false -stb,newsmast.social,Black Voices,black_voices,false -stb,newsmast.social,Chemistry,chemistry,false -stb,newsmast.social,Climate change,climate_change,false -stb,newsmast.social,Creative Arts,creative_arts,false -stb,newsmast.social,Disabled Voices,disabled_voices,false -stb,newsmast.social,Energy & Pollution,energy_pollution,false -stb,newsmast.social,Engineering,engineering,false -stb,newsmast.social,Environment,environment,false -lasp,newsmast.social,Academia & Research,academia_research,false -lasp,newsmast.social,AI,ai,false -lasp,newsmast.social,Architecture & Design,architecture_design,false -lasp,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false -lasp,newsmast.social,Books & Literature,books_literature,false -lasp,newsmast.social,Breaking News,breaking_news,false -lasp,newsmast.social,Climate change,climate_change,false -lasp,newsmast.social,Creative Arts,creative_arts,false -lasp,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -lasp,newsmast.social,Environment,environment,false -lasp,newsmast.social,Humanities,humanities,false -lasp,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false -lasp,newsmast.social,Movies,movies,false -lasp,newsmast.social,Music,music,false -lasp,newsmast.social,Philosophy,philosophy,false -lasp,newsmast.social,Social Sciences,social_sciences,false -lasp,newsmast.social,Visual Arts,visual_arts,false -lasp,newsmast.social,Journalism & Comment,news_comment_data,true -Taga,techhub.social,Engineering,engineering,false -mati,moth.social,Workers Rights,workers_rights,false -Taga,techhub.social,Programming,programming,false -Taga,techhub.social,Social Media,social_media,false -Taga,techhub.social,Technology,technology,false -Scotty,newsmast.social,AI,ai,false -Scotty,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false -Scotty,newsmast.social,Science,science,false -Scotty,newsmast.social,Space,space,false -Scotty,newsmast.social,Pets,pets,true -WhiteMode,newsmast.social,Nature & Wildlife,nature_wildlife,false -WhiteMode,newsmast.social,Photography,photography,false -Taga,techhub.social,AI,ai,true -IlCava,mastodon.uno,Music,music,false -peterthepainter,newsmast.social,Activism & Civil Rights,activism_civil_rights,false -anca,mastodon.xyz,AI,ai,false -anca,mastodon.xyz,Biodiversity & Rewilding,biodiversity_rewilding,false -anca,mastodon.xyz,Biology,biology,false -peterthepainter,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -minkhantkyaw,newsmast.social,AI,ai,false -minkhantkyaw,newsmast.social,Technology,technology,true -yemyatthu_cs,newsmast.social,AI,ai,false -yemyatthu_cs,newsmast.social,Engineering,engineering,false -Chourouk,newsmast.social,Activism & Civil Rights,activism_civil_rights,false -Chourouk,newsmast.social,Black Voices,black_voices,false -Leslie_Jones,newsmast.social,Academia & Research,academia_research,false -Leslie_Jones,newsmast.social,Activism & Civil Rights,activism_civil_rights,false -Leslie_Jones,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false -Leslie_Jones,newsmast.social,Books & Literature,books_literature,false -Leslie_Jones,newsmast.social,Breaking News,breaking_news,false -Leslie_Jones,newsmast.social,Business,business,false -Leslie_Jones,newsmast.social,Climate change,climate_change,false -Leslie_Jones,newsmast.social,Creative Arts,creative_arts,false -Leslie_Jones,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -Leslie_Jones,newsmast.social,Energy & Pollution,energy_pollution,false -Leslie_Jones,newsmast.social,Environment,environment,false -Leslie_Jones,newsmast.social,Food & Drink,food_drink,false -Leslie_Jones,newsmast.social,Football,football,false -Leslie_Jones,newsmast.social,Government & Policy,government_policy,false -Leslie_Jones,newsmast.social,Healthcare,healthcare,false -Leslie_Jones,newsmast.social,History,history,false -Leslie_Jones,newsmast.social,Humanities,humanities,false -Leslie_Jones,newsmast.social,Humour,humour,false -Leslie_Jones,newsmast.social,Markets & Finance,markets_finance,false -Leslie_Jones,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false -Leslie_Jones,newsmast.social,Law & Justice,law_justice,true -stb,newsmast.social,Breaking News,breaking_news,true -Chourouk,newsmast.social,Books & Literature,books_literature,false -Chourouk,newsmast.social,Climate change,climate_change,false -yemyatthu_cs,newsmast.social,Programming,programming,false -Chourouk,newsmast.social,Disabled Voices,disabled_voices,false -Chourouk,newsmast.social,Energy & Pollution,energy_pollution,false -Chourouk,newsmast.social,Environment,environment,false -Chourouk,newsmast.social,Humanities,humanities,false -Chourouk,newsmast.social,Immigrants Rights,immigrants_rights,false -Chourouk,newsmast.social,Indigenous Peoples,indigenous_peoples,false -Chourouk,newsmast.social,LGBTQ+,lgbtq,false -Chourouk,newsmast.social,Movies,movies,false -yemyatthu_cs,newsmast.social,Sport,sport,false -yemyatthu_cs,newsmast.social,Technology,technology,false -yemyatthu_cs,newsmast.social,US Sport,us_sport,false -yemyatthu_cs,newsmast.social,Football,football,true -Leslie_Jones,newsmast.social,Nature & Wildlife,nature_wildlife,false -Leslie_Jones,newsmast.social,Pets,pets,false -Leslie_Jones,newsmast.social,Philosophy,philosophy,false -Leslie_Jones,newsmast.social,Photography,photography,false -Leslie_Jones,newsmast.social,Politics,politics,false -Leslie_Jones,newsmast.social,Puzzles,puzzles,false -Leslie_Jones,newsmast.social,Science,science,false -Leslie_Jones,newsmast.social,Social Sciences,social_sciences,false -Leslie_Jones,newsmast.social,Sport,sport,false -Leslie_Jones,newsmast.social,Technology,technology,false -Leslie_Jones,newsmast.social,Travel,travel,false -Leslie_Jones,newsmast.social,Ukraine Invasion,ukraine_invasion,false -Leslie_Jones,newsmast.social,US Politics,us_politics,false -Leslie_Jones,newsmast.social,US Sport,us_sport,false -Leslie_Jones,newsmast.social,Weather,weather,false -Leslie_Jones,newsmast.social,Women’s Voices,women_voices,false -Leslie_Jones,newsmast.social,Workers Rights,workers_rights,false -sillygwailo,mastodon.social,History,history,false -Harriett,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false -Harriett,newsmast.social,Biology,biology,false -Harriett,newsmast.social,Breaking News,breaking_news,false -Harriett,newsmast.social,Climate change,climate_change,false -Harriett,newsmast.social,Energy & Pollution,energy_pollution,false -Harriett,newsmast.social,Environment,environment,false -Harriett,newsmast.social,Government & Policy,government_policy,false -Harriett,newsmast.social,Healthcare,healthcare,false -Harriett,newsmast.social,Humanities,humanities,false -Harriett,newsmast.social,Law & Justice,law_justice,false -MarciaHHendrick,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false -MarciaHHendrick,newsmast.social,Breaking News,breaking_news,false -MarciaHHendrick,newsmast.social,Climate change,climate_change,false -MarciaHHendrick,newsmast.social,Energy & Pollution,energy_pollution,false -MarciaHHendrick,newsmast.social,Environment,environment,false -MarciaHHendrick,newsmast.social,Government & Policy,government_policy,false -MarciaHHendrick,newsmast.social,Law & Justice,law_justice,false -MarciaHHendrick,newsmast.social,Poverty & Inequality,poverty_inequality,false -MarciaHHendrick,newsmast.social,Ukraine Invasion,ukraine_invasion,false -MarciaHHendrick,newsmast.social,US Politics,us_politics,false -MarciaHHendrick,newsmast.social,Democracy & Human Rights,democracy_human_rights,true -Harriett,newsmast.social,Journalism & Comment,news_comment_data,false -Harriett,newsmast.social,Science,science,false -Harriett,newsmast.social,Social Media,social_media,false -Harriett,newsmast.social,Social Sciences,social_sciences,false -Harriett,newsmast.social,Ukraine Invasion,ukraine_invasion,false -Harriett,newsmast.social,Weather,weather,false -Harriett,newsmast.social,Politics,politics,true -Chourouk,newsmast.social,Music,music,false -Chourouk,newsmast.social,Performing Arts,performing_arts,false -Chourouk,newsmast.social,Politics,politics,false -spanini,newsmast.social,Books & Literature,books_literature,false -spanini,newsmast.social,History,history,false -spanini,newsmast.social,Markets & Finance,markets_finance,false -spanini,newsmast.social,Philosophy,philosophy,false -spanini,newsmast.social,Workers Rights,workers_rights,false -spanini,newsmast.social,Business,business,true -Chourouk,newsmast.social,Poverty & Inequality,poverty_inequality,false -Chourouk,newsmast.social,TV & Radio,tv_radio,false -Chourouk,newsmast.social,US Politics,us_politics,false -Chourouk,newsmast.social,Visual Arts,visual_arts,false -Chourouk,newsmast.social,Women’s Voices,women_voices,false -Chourouk,newsmast.social,Democracy & Human Rights,democracy_human_rights,true -yemyatthu,mastodon.social,Government & Policy,government_policy,false -yemyatthu,mastodon.social,Healthcare,healthcare,false -yemyatthu,mastodon.social,Law & Justice,law_justice,false -ThatRandomJew,tech.lgbt,AI,ai,false -ThatRandomJew,tech.lgbt,Architecture & Design,architecture_design,false -ppt556_365,newsmast.social,Activism & Civil Rights,activism_civil_rights,false -ppt556_365,newsmast.social,Black Voices,black_voices,false -yemyatthu,mastodon.social,Politics,politics,false -vmatt,newsmast.social,Activism & Civil Rights,activism_civil_rights,false -vmatt,newsmast.social,AI,ai,false -magnor,newsmast.social,Academia & Research,academia_research,false -magnor,newsmast.social,Activism & Civil Rights,activism_civil_rights,false -magnor,newsmast.social,AI,ai,false -magnor,newsmast.social,Breaking News,breaking_news,false -magnor,newsmast.social,Climate change,climate_change,false -magnor,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -magnor,newsmast.social,Energy & Pollution,energy_pollution,false -magnor,newsmast.social,Engineering,engineering,false -magnor,newsmast.social,Environment,environment,false -magnor,newsmast.social,Government & Policy,government_policy,false -magnor,newsmast.social,History,history,false -magnor,newsmast.social,LGBTQ+,lgbtq,false -magnor,newsmast.social,Mathematics,mathematics,false -magnor,newsmast.social,Journalism & Comment,news_comment_data,false -magnor,newsmast.social,Physics,physics,false -magnor,newsmast.social,Politics,politics,false -magnor,newsmast.social,Poverty & Inequality,poverty_inequality,false -magnor,newsmast.social,Programming,programming,false -vmatt,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -magnor,newsmast.social,Social Media,social_media,false -magnor,newsmast.social,Space,space,false -magnor,newsmast.social,Technology,technology,false -magnor,newsmast.social,US Politics,us_politics,false -magnor,newsmast.social,Women’s Voices,women_voices,false -vmatt,newsmast.social,Engineering,engineering,false -vmatt,newsmast.social,Football,football,false -vmatt,newsmast.social,Humanities,humanities,false -vmatt,newsmast.social,LGBTQ+,lgbtq,false -vmatt,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false -vmatt,newsmast.social,Movies,movies,false -vmatt,newsmast.social,Music,music,false -vmatt,newsmast.social,Journalism & Comment,news_comment_data,false -vmatt,newsmast.social,Philosophy,philosophy,false -vmatt,newsmast.social,Programming,programming,false -vmatt,newsmast.social,Puzzles,puzzles,false -magnor,newsmast.social,Workers Rights,workers_rights,false -magnor,newsmast.social,Science,science,true -ppt556_365,newsmast.social,Breaking News,breaking_news,false -ppt556_365,newsmast.social,Disabled Voices,disabled_voices,false -chriskenshin,newsmast.social,Business,business,false -chriskenshin,newsmast.social,Government & Policy,government_policy,false -chriskenshin,newsmast.social,Law & Justice,law_justice,false -chriskenshin,newsmast.social,Science,science,false -chriskenshin,newsmast.social,Technology,technology,false -chriskenshin,newsmast.social,Workers Rights,workers_rights,false -chriskenshin,newsmast.social,Biology,biology,true -ppt556_365,newsmast.social,Immigrants Rights,immigrants_rights,false -ppt556_365,newsmast.social,Indigenous Peoples,indigenous_peoples,false -HC_History,newsmast.social,Markets & Finance,markets_finance,false -HC_History,newsmast.social,Business,business,false -stb,newsmast.social,Food & Drink,food_drink,false -stb,newsmast.social,Football,football,false -stb,newsmast.social,Government & Policy,government_policy,false -stb,newsmast.social,Healthcare,healthcare,false -stb,newsmast.social,History,history,false -stb,newsmast.social,Humanities,humanities,false -stb,newsmast.social,Humour,humour,false -stb,newsmast.social,Immigrants Rights,immigrants_rights,false -stb,newsmast.social,Indigenous Peoples,indigenous_peoples,false -stb,newsmast.social,Law & Justice,law_justice,false -stb,newsmast.social,LGBTQ+,lgbtq,false -stb,newsmast.social,Mathematics,mathematics,false -stb,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false -stb,newsmast.social,Nature & Wildlife,nature_wildlife,false -stb,newsmast.social,Journalism & Comment,news_comment_data,false -stb,newsmast.social,Pets,pets,false -stb,newsmast.social,Philosophy,philosophy,false -stb,newsmast.social,Physics,physics,false -stb,newsmast.social,Politics,politics,false -stb,newsmast.social,Programming,programming,false -stb,newsmast.social,Puzzles,puzzles,false -stb,newsmast.social,Science,science,false -stb,newsmast.social,Social Media,social_media,false -stb,newsmast.social,Social Sciences,social_sciences,false -stb,newsmast.social,Space,space,false -stb,newsmast.social,Sport,sport,false -stb,newsmast.social,Technology,technology,false -stb,newsmast.social,Travel,travel,false -stb,newsmast.social,Ukraine Invasion,ukraine_invasion,false -stb,newsmast.social,US Politics,us_politics,false -stb,newsmast.social,US Sport,us_sport,false -stb,newsmast.social,Weather,weather,false -stb,newsmast.social,Women’s Voices,women_voices,false -research,newsmast.social,AI,ai,false -research,newsmast.social,Biology,biology,false -research,newsmast.social,Chemistry,chemistry,false -research,newsmast.social,Engineering,engineering,false -Mercedes,newsmast.social,Architecture & Design,architecture_design,false -Mercedes,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false -Mercedes,newsmast.social,Books & Literature,books_literature,false -Mercedes,newsmast.social,Climate change,climate_change,false -Mercedes,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -Mercedes,newsmast.social,Energy & Pollution,energy_pollution,false -Mercedes,newsmast.social,Environment,environment,false -Mercedes,newsmast.social,Gaming,gaming,false -Mercedes,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false -Mercedes,newsmast.social,Movies,movies,false -Mercedes,newsmast.social,Performing Arts,performing_arts,false -Mercedes,newsmast.social,Photography,photography,false -Mercedes,newsmast.social,Poverty & Inequality,poverty_inequality,false -Mercedes,newsmast.social,TV & Radio,tv_radio,false -Mercedes,newsmast.social,Visual Arts,visual_arts,false -Mercedes,newsmast.social,Music,music,true -jt1p5,newsmast.social,Government & Policy,government_policy,false -jt1p5,newsmast.social,Law & Justice,law_justice,false -jt1p5,newsmast.social,Politics,politics,false -jt1p5,newsmast.social,US Politics,us_politics,false -jt1p5,newsmast.social,Democracy & Human Rights,democracy_human_rights,true -bobo,newsmast.social,Activism & Civil Rights,activism_civil_rights,false -bobo,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false -bobo,newsmast.social,Biology,biology,false -bobo,newsmast.social,Black Voices,black_voices,false -bobo,newsmast.social,Business,business,false -bobo,newsmast.social,Chemistry,chemistry,false -bobo,newsmast.social,Climate change,climate_change,false -bobo,newsmast.social,Creative Arts,creative_arts,false -bobo,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -bobo,newsmast.social,Disabled Voices,disabled_voices,false -bobo,newsmast.social,Energy & Pollution,energy_pollution,false -bobo,newsmast.social,Environment,environment,false -bobo,newsmast.social,Food & Drink,food_drink,false -bobo,newsmast.social,Football,football,false -bobo,newsmast.social,History,history,false -bobo,newsmast.social,Humanities,humanities,false -bobo,newsmast.social,Humour,humour,false -bobo,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false -bobo,newsmast.social,Immigrants Rights,immigrants_rights,false -bobo,newsmast.social,Indigenous Peoples,indigenous_peoples,false -bobo,newsmast.social,LGBTQ+,lgbtq,false -bobo,newsmast.social,Markets & Finance,markets_finance,false -bobo,newsmast.social,Mathematics,mathematics,false -bobo,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false -bobo,newsmast.social,Nature & Wildlife,nature_wildlife,false -bobo,newsmast.social,Journalism & Comment,news_comment_data,false -bobo,newsmast.social,Pets,pets,false -bobo,newsmast.social,Philosophy,philosophy,false -bobo,newsmast.social,Physics,physics,false -bobo,newsmast.social,Poverty & Inequality,poverty_inequality,false -bobo,newsmast.social,Puzzles,puzzles,false -bobo,newsmast.social,Breaking News,breaking_news,true -ppt556_365,newsmast.social,LGBTQ+,lgbtq,false -ppt556_365,newsmast.social,Journalism & Comment,news_comment_data,false -hannaka,newsmast.social,Nature & Wildlife,nature_wildlife,false -hannaka,newsmast.social,Pets,pets,false -hannaka,newsmast.social,Sport,sport,false -hannaka,newsmast.social,Weather,weather,false -hannaka,newsmast.social,Travel,travel,true -research,newsmast.social,Journalism & Comment,news_comment_data,false -research,newsmast.social,Physics,physics,false -research,newsmast.social,Space,space,false -research,newsmast.social,Technology,technology,false -research,newsmast.social,Science,science,true -ppt556_365,newsmast.social,Ukraine Invasion,ukraine_invasion,false -ppt556_365,newsmast.social,Weather,weather,false -ppt556_365,newsmast.social,Women’s Voices,women_voices,false -ppt556_365,newsmast.social,Social Media,social_media,true -yemyatthu,mastodon.social,Poverty & Inequality,poverty_inequality,false -yemyatthu,mastodon.social,US Politics,us_politics,false -sillygwailo,mastodon.social,Humanities,humanities,false -sillygwailo,mastodon.social,Philosophy,philosophy,false -IlCava,mastodon.uno,Nature & Wildlife,nature_wildlife,false -IlCava,mastodon.uno,Journalism & Comment,news_comment_data,false -evil_k,newsmast.social,History,history,false -ppt556,newsmast.social,AI,ai,false -ppt556,newsmast.social,Breaking News,breaking_news,false -ppt556,newsmast.social,Engineering,engineering,false -srijit,newsmast.social,Academia & Research,academia_research,false -srijit,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false -srijit,newsmast.social,Biology,biology,false -srijit,newsmast.social,Breaking News,breaking_news,false -srijit,newsmast.social,Chemistry,chemistry,false -srijit,newsmast.social,Climate change,climate_change,false -srijit,newsmast.social,Energy & Pollution,energy_pollution,false -srijit,newsmast.social,Government & Policy,government_policy,false -srijit,newsmast.social,Healthcare,healthcare,false -srijit,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false -srijit,newsmast.social,Law & Justice,law_justice,false -srijit,newsmast.social,Mathematics,mathematics,false -srijit,newsmast.social,Journalism & Comment,news_comment_data,false -srijit,newsmast.social,Physics,physics,false -srijit,newsmast.social,Politics,politics,false -srijit,newsmast.social,Poverty & Inequality,poverty_inequality,false -srijit,newsmast.social,Science,science,false -srijit,newsmast.social,Social Media,social_media,false -srijit,newsmast.social,Space,space,false -srijit,newsmast.social,Ukraine Invasion,ukraine_invasion,false -srijit,newsmast.social,US Politics,us_politics,false -srijit,newsmast.social,Weather,weather,false -srijit,newsmast.social,Democracy & Human Rights,democracy_human_rights,true -ppt556,newsmast.social,Journalism & Comment,news_comment_data,false -ppt556,newsmast.social,Programming,programming,false -ppt556,newsmast.social,Social Media,social_media,false -ppt556,newsmast.social,Technology,technology,false -Nyein,newsmast.social,Performing Arts,performing_arts,false -Nyein,newsmast.social,TV & Radio,tv_radio,false -Nyein,newsmast.social,Music,music,false -Nyein,newsmast.social,Movies,movies,false -Nyein,newsmast.social,Visual Arts,visual_arts,false -Nyein,newsmast.social,History,history,false -Nyein,newsmast.social,Humanities,humanities,false -Nyein,newsmast.social,Social Sciences,social_sciences,false -Nyein,newsmast.social,Philosophy,philosophy,false -ppt556,newsmast.social,Ukraine Invasion,ukraine_invasion,false -ppt556,newsmast.social,US Sport,us_sport,false -ppt556,newsmast.social,Weather,weather,false -ppt556,newsmast.social,Football,football,true -drmuthanna,me.dm,AI,ai,false -drmuthanna,me.dm,Gaming,gaming,false -drmuthanna,me.dm,LGBTQ+,lgbtq,false -drmuthanna,me.dm,Pets,pets,false -Nyein,newsmast.social,Programming,programming,false -drmuthanna,me.dm,Business,business,true -yethiha,newsmast.social,AI,ai,false -yethiha,newsmast.social,Biology,biology,false -yethiha,newsmast.social,Chemistry,chemistry,false -yethiha,newsmast.social,Mathematics,mathematics,false -yethiha,newsmast.social,Physics,physics,false -yethiha,newsmast.social,Programming,programming,false -yethiha,newsmast.social,Science,science,false -yethiha,newsmast.social,Space,space,false -yethiha,newsmast.social,Technology,technology,false -yethiha,newsmast.social,Engineering,engineering,true -yemyatthu,mastodon.social,Academia & Research,academia_research,true -qurquma,newsmast.social,Movies,movies,false -qurquma,newsmast.social,Science,science,false -qurquma,newsmast.social,Sport,sport,false -JohnJVaccaro,newsmast.social,AI,ai,false -JohnJVaccaro,newsmast.social,Biology,biology,false -JohnJVaccaro,newsmast.social,Business,business,false -JohnJVaccaro,newsmast.social,Chemistry,chemistry,false -JohnJVaccaro,newsmast.social,Climate change,climate_change,false -JohnJVaccaro,newsmast.social,Energy & Pollution,energy_pollution,false -JohnJVaccaro,newsmast.social,Engineering,engineering,false -JohnJVaccaro,newsmast.social,Mathematics,mathematics,false -JohnJVaccaro,newsmast.social,Physics,physics,false -JohnJVaccaro,newsmast.social,Programming,programming,false -JohnJVaccaro,newsmast.social,Space,space,false -JohnJVaccaro,newsmast.social,Technology,technology,false -JohnJVaccaro,newsmast.social,Science,science,true -sintrenton,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -sintrenton,newsmast.social,Government & Policy,government_policy,false -sintrenton,newsmast.social,Humanities,humanities,false -sintrenton,newsmast.social,Law & Justice,law_justice,false -sintrenton,newsmast.social,Politics,politics,false -sintrenton,newsmast.social,Social Sciences,social_sciences,false -sintrenton,newsmast.social,Technology,technology,false -sintrenton,newsmast.social,Breaking News,breaking_news,true -VaniaG,newsmast.social,Government & Policy,government_policy,false -VaniaG,newsmast.social,Healthcare,healthcare,false -VaniaG,newsmast.social,Science,science,false -VaniaG,newsmast.social,Ukraine Invasion,ukraine_invasion,false -VaniaG,newsmast.social,Breaking News,breaking_news,true -HC_History,newsmast.social,Climate change,climate_change,false -FamilyFunTravel,newsmast.social,Football,football,false -FamilyFunTravel,newsmast.social,Immigrants Rights,immigrants_rights,false -FamilyFunTravel,newsmast.social,Sport,sport,false -FamilyFunTravel,newsmast.social,US Sport,us_sport,false -FamilyFunTravel,newsmast.social,Women’s Voices,women_voices,true -gabbab1,newsmast.social,Academia & Research,academia_research,false -gabbab1,newsmast.social,Activism & Civil Rights,activism_civil_rights,false -gabbab1,newsmast.social,AI,ai,false -gabbab1,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false -gabbab1,newsmast.social,Black Voices,black_voices,false -gabbab1,newsmast.social,Breaking News,breaking_news,false -gabbab1,newsmast.social,Business,business,false -gabbab1,newsmast.social,Climate change,climate_change,false -gabbab1,newsmast.social,Disabled Voices,disabled_voices,false -gabbab1,newsmast.social,Energy & Pollution,energy_pollution,false -gabbab1,newsmast.social,Engineering,engineering,false -gabbab1,newsmast.social,Environment,environment,false -gabbab1,newsmast.social,Government & Policy,government_policy,false -gabbab1,newsmast.social,Healthcare,healthcare,false -gabbab1,newsmast.social,History,history,false -gabbab1,newsmast.social,Humanities,humanities,false -gabbab1,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false -gabbab1,newsmast.social,Immigrants Rights,immigrants_rights,false -gabbab1,newsmast.social,Indigenous Peoples,indigenous_peoples,false -gabbab1,newsmast.social,Law & Justice,law_justice,false -gabbab1,newsmast.social,LGBTQ+,lgbtq,false -gabbab1,newsmast.social,Markets & Finance,markets_finance,false -gabbab1,newsmast.social,Journalism & Comment,news_comment_data,false -gabbab1,newsmast.social,Philosophy,philosophy,false -gabbab1,newsmast.social,Politics,politics,false -gabbab1,newsmast.social,Poverty & Inequality,poverty_inequality,false -gabbab1,newsmast.social,Programming,programming,false -gabbab1,newsmast.social,Social Media,social_media,false -gabbab1,newsmast.social,Social Sciences,social_sciences,false -gabbab1,newsmast.social,Technology,technology,false -gabbab1,newsmast.social,Ukraine Invasion,ukraine_invasion,false -gabbab1,newsmast.social,US Politics,us_politics,false -gabbab1,newsmast.social,Weather,weather,false -gabbab1,newsmast.social,Women’s Voices,women_voices,false -gabbab1,newsmast.social,Workers Rights,workers_rights,false -gabbab1,newsmast.social,Democracy & Human Rights,democracy_human_rights,true -bobo,newsmast.social,Science,science,false -bobo,newsmast.social,Social Media,social_media,false -bobo,newsmast.social,Social Sciences,social_sciences,false -bobo,newsmast.social,Space,space,false -bobo,newsmast.social,Sport,sport,false -bobo,newsmast.social,Travel,travel,false -bobo,newsmast.social,Ukraine Invasion,ukraine_invasion,false -bobo,newsmast.social,US Sport,us_sport,false -bobo,newsmast.social,Weather,weather,false -bobo,newsmast.social,Women’s Voices,women_voices,false -bobo,newsmast.social,Workers Rights,workers_rights,false -breaking_news_admin_3,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false -breaking_news_admin_3,newsmast.social,Energy & Pollution,energy_pollution,false -breaking_news_admin_3,newsmast.social,Environment,environment,false -breaking_news_admin_3,newsmast.social,Climate change,climate_change,true -breaking_news_admin_3,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false -vmatt,newsmast.social,Social Sciences,social_sciences,false -vmatt,newsmast.social,Technology,technology,false -vmatt,newsmast.social,Travel,travel,false -vmatt,newsmast.social,TV & Radio,tv_radio,false -vmatt,newsmast.social,Visual Arts,visual_arts,false -vmatt,newsmast.social,Books & Literature,books_literature,true -qurquma,newsmast.social,US Sport,us_sport,false -qurquma,newsmast.social,Football,football,true -atm_machine,mas.to,Music,music,false -atm_machine,mas.to,Photography,photography,false -aethervision,pnw.zone,Breaking News,breaking_news,false -BobGatty,newsmast.social,Academia & Research,academia_research,false -BobGatty,newsmast.social,AI,ai,false -minusgefuel,newsmast.social,AI,ai,false -minusgefuel,newsmast.social,Engineering,engineering,false -minusgefuel,newsmast.social,Humour,humour,false -minusgefuel,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false -minusgefuel,newsmast.social,Pets,pets,false -minusgefuel,newsmast.social,Programming,programming,false -minusgefuel,newsmast.social,Social Media,social_media,false -minusgefuel,newsmast.social,Technology,technology,true -BobGatty,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false -BobGatty,newsmast.social,Breaking News,breaking_news,false -BobGatty,newsmast.social,Business,business,false -teeheehee,newsmast.social,AI,ai,false -teeheehee,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false -teeheehee,newsmast.social,Biology,biology,false -teeheehee,newsmast.social,Breaking News,breaking_news,false -teeheehee,newsmast.social,Chemistry,chemistry,false -teeheehee,newsmast.social,Climate change,climate_change,false -teeheehee,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -teeheehee,newsmast.social,Engineering,engineering,false -teeheehee,newsmast.social,Environment,environment,false -teeheehee,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false -teeheehee,newsmast.social,Mathematics,mathematics,false -teeheehee,newsmast.social,Physics,physics,false -teeheehee,newsmast.social,Poverty & Inequality,poverty_inequality,false -teeheehee,newsmast.social,Programming,programming,false -teeheehee,newsmast.social,Science,science,false -teeheehee,newsmast.social,Space,space,false -teeheehee,newsmast.social,Technology,technology,false -teeheehee,newsmast.social,Ukraine Invasion,ukraine_invasion,false -teeheehee,newsmast.social,Energy & Pollution,energy_pollution,true -BobGatty,newsmast.social,Climate change,climate_change,false -BobGatty,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -nifta,newsmast.social,Activism & Civil Rights,activism_civil_rights,false -BobGatty,newsmast.social,Energy & Pollution,energy_pollution,false -nifta,newsmast.social,Architecture & Design,architecture_design,false -nifta,newsmast.social,Biology,biology,false -nifta,newsmast.social,Black Voices,black_voices,false -nifta,newsmast.social,Books & Literature,books_literature,false -nifta,newsmast.social,Breaking News,breaking_news,false -nifta,newsmast.social,Chemistry,chemistry,false -nifta,newsmast.social,Creative Arts,creative_arts,false -nifta,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -nifta,newsmast.social,Disabled Voices,disabled_voices,false -nifta,newsmast.social,Engineering,engineering,false -nifta,newsmast.social,Food & Drink,food_drink,false -nifta,newsmast.social,Football,football,false -nifta,newsmast.social,Gaming,gaming,false -nifta,newsmast.social,History,history,false -nifta,newsmast.social,Humanities,humanities,false -nifta,newsmast.social,Humour,humour,false -nifta,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false -nifta,newsmast.social,Immigrants Rights,immigrants_rights,false -nifta,newsmast.social,Indigenous Peoples,indigenous_peoples,false -nifta,newsmast.social,LGBTQ+,lgbtq,false -nifta,newsmast.social,Mathematics,mathematics,false -nifta,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false -nifta,newsmast.social,Movies,movies,false -nifta,newsmast.social,Music,music,false -nifta,newsmast.social,Nature & Wildlife,nature_wildlife,false -nifta,newsmast.social,Journalism & Comment,news_comment_data,false -nifta,newsmast.social,Performing Arts,performing_arts,false -nifta,newsmast.social,Pets,pets,false -nifta,newsmast.social,Philosophy,philosophy,false -nifta,newsmast.social,Photography,photography,false -nifta,newsmast.social,Physics,physics,false -nifta,newsmast.social,Poverty & Inequality,poverty_inequality,false -nifta,newsmast.social,Programming,programming,false -nifta,newsmast.social,Puzzles,puzzles,false -nifta,newsmast.social,Science,science,false -nifta,newsmast.social,Social Media,social_media,false -nifta,newsmast.social,Social Sciences,social_sciences,false -nifta,newsmast.social,Space,space,false -nifta,newsmast.social,Sport,sport,false -nifta,newsmast.social,Travel,travel,false -nifta,newsmast.social,TV & Radio,tv_radio,false -nifta,newsmast.social,Ukraine Invasion,ukraine_invasion,false -nifta,newsmast.social,US Sport,us_sport,false -nifta,newsmast.social,Visual Arts,visual_arts,false -nifta,newsmast.social,Weather,weather,false -nifta,newsmast.social,Women’s Voices,women_voices,false -nifta,newsmast.social,Technology,technology,true -WhiteMode,newsmast.social,Science,science,false -chidreams,newsmast.social,AI,ai,false -chidreams,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -chidreams,newsmast.social,Engineering,engineering,false -chidreams,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false -chidreams,newsmast.social,Poverty & Inequality,poverty_inequality,false -chidreams,newsmast.social,Programming,programming,false -chidreams,newsmast.social,Technology,technology,true -atm_machine,mas.to,Visual Arts,visual_arts,false -atm_machine,mas.to,Gaming,gaming,true -evil_k,newsmast.social,Philosophy,philosophy,false -BobGatty,newsmast.social,Engineering,engineering,false -BobGatty,newsmast.social,Environment,environment,false -BobGatty,newsmast.social,Football,football,false -BobGatty,newsmast.social,Government & Policy,government_policy,false -BobGatty,newsmast.social,Healthcare,healthcare,false -BobGatty,newsmast.social,History,history,false -BobGatty,newsmast.social,Humanities,humanities,false -BobGatty,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false -BobGatty,newsmast.social,Law & Justice,law_justice,false -BobGatty,newsmast.social,Markets & Finance,markets_finance,false -BobGatty,newsmast.social,Journalism & Comment,news_comment_data,false -BobGatty,newsmast.social,Philosophy,philosophy,false -BobGatty,newsmast.social,Poverty & Inequality,poverty_inequality,false -BobGatty,newsmast.social,Programming,programming,false -BobGatty,newsmast.social,Social Media,social_media,false -BobGatty,newsmast.social,Social Sciences,social_sciences,false -BobGatty,newsmast.social,Sport,sport,false -BobGatty,newsmast.social,Technology,technology,false -BobGatty,newsmast.social,Ukraine Invasion,ukraine_invasion,false -BobGatty,newsmast.social,US Politics,us_politics,false -BobGatty,newsmast.social,US Sport,us_sport,false -BobGatty,newsmast.social,Weather,weather,false -BobGatty,newsmast.social,Workers Rights,workers_rights,false -BobGatty,newsmast.social,Politics,politics,true -FamilyLawExpert,newsmast.social,Breaking News,breaking_news,false -FamilyLawExpert,newsmast.social,Humanities,humanities,false -FamilyLawExpert,newsmast.social,Poverty & Inequality,poverty_inequality,false -FamilyLawExpert,newsmast.social,Social Media,social_media,false -FamilyLawExpert,newsmast.social,Social Sciences,social_sciences,false -FamilyLawExpert,newsmast.social,Democracy & Human Rights,democracy_human_rights,true -mstepich,newsmast.social,Academia & Research,academia_research,false -mstepich,newsmast.social,AI,ai,false -mstepich,newsmast.social,Business,business,false -mstepich,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -mstepich,newsmast.social,Energy & Pollution,energy_pollution,false -mstepich,newsmast.social,Engineering,engineering,false -mstepich,newsmast.social,Environment,environment,false -mstepich,newsmast.social,Government & Policy,government_policy,false -mstepich,newsmast.social,Healthcare,healthcare,false -mstepich,newsmast.social,History,history,false -mstepich,newsmast.social,Humanities,humanities,false -mstepich,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false -mstepich,newsmast.social,Law & Justice,law_justice,false -mstepich,newsmast.social,Philosophy,philosophy,false -mstepich,newsmast.social,Politics,politics,false -mstepich,newsmast.social,Science,science,false -mstepich,newsmast.social,Social Sciences,social_sciences,false -mstepich,newsmast.social,Space,space,false -mstepich,newsmast.social,Technology,technology,false -mstepich,newsmast.social,Ukraine Invasion,ukraine_invasion,false -mstepich,newsmast.social,US Politics,us_politics,false -mstepich,newsmast.social,Journalism & Comment,news_comment_data,true -Hayleyk1970,newsmast.social,Architecture & Design,architecture_design,false -Hayleyk1970,newsmast.social,Books & Literature,books_literature,false -j_zim,mastodon.uno,AI,ai,false -j_zim,mastodon.uno,Business,business,false -j_zim,mastodon.uno,Chemistry,chemistry,false -j_zim,mastodon.uno,Democracy & Human Rights,democracy_human_rights,false -j_zim,mastodon.uno,Government & Policy,government_policy,false -j_zim,mastodon.uno,Journalism & Comment,news_comment_data,false -j_zim,mastodon.uno,Politics,politics,false -j_zim,mastodon.uno,Science,science,false -evil_k,newsmast.social,Physics,physics,false -aethervision,pnw.zone,Democracy & Human Rights,democracy_human_rights,false -aethervision,pnw.zone,Engineering,engineering,false -aethervision,pnw.zone,"Hunger, Disease & Water",hunger_disease_water,false -sillygwailo,mastodon.social,US Sport,us_sport,false -aethervision,pnw.zone,Poverty & Inequality,poverty_inequality,false -aethervision,pnw.zone,Technology,technology,false -MAD_Democracy,newsmast.social,Healthcare,healthcare,false -MAD_Democracy,newsmast.social,Politics,politics,false -MAD_Democracy,newsmast.social,Social Media,social_media,false -MAD_Democracy,newsmast.social,US Politics,us_politics,false -MAD_Democracy,newsmast.social,Journalism & Comment,news_comment_data,true -mati,moth.social,Visual Arts,visual_arts,false -YOUME25,newsmast.social,Academia & Research,academia_research,false -YOUME25,newsmast.social,Activism & Civil Rights,activism_civil_rights,false -YOUME25,newsmast.social,Architecture & Design,architecture_design,false -YOUME25,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false -YOUME25,newsmast.social,Biology,biology,false -YOUME25,newsmast.social,Black Voices,black_voices,false -YOUME25,newsmast.social,Books & Literature,books_literature,false -YOUME25,newsmast.social,Breaking News,breaking_news,false -YOUME25,newsmast.social,Business,business,false -YOUME25,newsmast.social,Chemistry,chemistry,false -YOUME25,newsmast.social,Climate change,climate_change,false -YOUME25,newsmast.social,Creative Arts,creative_arts,false -YOUME25,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -YOUME25,newsmast.social,Disabled Voices,disabled_voices,false -YOUME25,newsmast.social,Energy & Pollution,energy_pollution,false -YOUME25,newsmast.social,Engineering,engineering,false -YOUME25,newsmast.social,Environment,environment,false -YOUME25,newsmast.social,Food & Drink,food_drink,false -YOUME25,newsmast.social,Football,football,false -YOUME25,newsmast.social,Gaming,gaming,false -YOUME25,newsmast.social,Government & Policy,government_policy,false -YOUME25,newsmast.social,Healthcare,healthcare,false -YOUME25,newsmast.social,History,history,false -YOUME25,newsmast.social,Humanities,humanities,false -YOUME25,newsmast.social,Humour,humour,false -YOUME25,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false -YOUME25,newsmast.social,Immigrants Rights,immigrants_rights,false -YOUME25,newsmast.social,Indigenous Peoples,indigenous_peoples,false -YOUME25,newsmast.social,Law & Justice,law_justice,false -YOUME25,newsmast.social,LGBTQ+,lgbtq,false -YOUME25,newsmast.social,Markets & Finance,markets_finance,false -YOUME25,newsmast.social,Mathematics,mathematics,false -YOUME25,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false -YOUME25,newsmast.social,Movies,movies,false -YOUME25,newsmast.social,Music,music,false -YOUME25,newsmast.social,Nature & Wildlife,nature_wildlife,false -YOUME25,newsmast.social,Journalism & Comment,news_comment_data,false -YOUME25,newsmast.social,Performing Arts,performing_arts,false -YOUME25,newsmast.social,Pets,pets,false -YOUME25,newsmast.social,Philosophy,philosophy,false -YOUME25,newsmast.social,Photography,photography,false -YOUME25,newsmast.social,Physics,physics,false -YOUME25,newsmast.social,Politics,politics,false -YOUME25,newsmast.social,Poverty & Inequality,poverty_inequality,false -YOUME25,newsmast.social,Programming,programming,false -YOUME25,newsmast.social,Puzzles,puzzles,false -YOUME25,newsmast.social,Science,science,false -YOUME25,newsmast.social,Social Media,social_media,false -YOUME25,newsmast.social,Social Sciences,social_sciences,false -YOUME25,newsmast.social,Space,space,false -YOUME25,newsmast.social,Sport,sport,false -YOUME25,newsmast.social,Technology,technology,false -YOUME25,newsmast.social,Travel,travel,false -YOUME25,newsmast.social,TV & Radio,tv_radio,false -YOUME25,newsmast.social,Ukraine Invasion,ukraine_invasion,false -YOUME25,newsmast.social,US Politics,us_politics,false -YOUME25,newsmast.social,US Sport,us_sport,false -YOUME25,newsmast.social,Visual Arts,visual_arts,false -YOUME25,newsmast.social,Weather,weather,false -YOUME25,newsmast.social,Women’s Voices,women_voices,false -YOUME25,newsmast.social,Workers Rights,workers_rights,false -YOUME25,newsmast.social,AI,ai,true -jncomas,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -jncomas,newsmast.social,Humanities,humanities,false -jncomas,newsmast.social,Law & Justice,law_justice,false -jncomas,newsmast.social,Journalism & Comment,news_comment_data,false -jncomas,newsmast.social,Philosophy,philosophy,false -jncomas,newsmast.social,Ukraine Invasion,ukraine_invasion,false -jncomas,newsmast.social,US Politics,us_politics,false -jncomas,newsmast.social,Breaking News,breaking_news,true -saskia,newsmast.social,Journalism & Comment,news_comment_data,false -emenikeng,newsmast.social,AI,ai,false -emenikeng,newsmast.social,Business,business,false -emenikeng,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -emenikeng,newsmast.social,Engineering,engineering,false -emenikeng,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false -emenikeng,newsmast.social,Poverty & Inequality,poverty_inequality,false -emenikeng,newsmast.social,Programming,programming,false -emenikeng,newsmast.social,Technology,technology,false -emenikeng,newsmast.social,Workers Rights,workers_rights,false -emenikeng,newsmast.social,Markets & Finance,markets_finance,true -OhnMyint,newsmast.social,Academia & Research,academia_research,false -OhnMyint,newsmast.social,Breaking News,breaking_news,false -OhnMyint,newsmast.social,Government & Policy,government_policy,false -FifiSch,mastodon.social,History,history,false -MinMaungHein,newsmast.social,Physics,physics,false -MinMaungHein,newsmast.social,Science,science,true -FifiSch,mastodon.social,LGBTQ+,lgbtq,false -basil,sarcasm.stream,Breaking News,breaking_news,false -basil,sarcasm.stream,Energy & Pollution,energy_pollution,false -basil,sarcasm.stream,Football,football,false -basil,sarcasm.stream,Government & Policy,government_policy,false -basil,sarcasm.stream,Law & Justice,law_justice,false -cjapsmith,newsmast.social,Climate change,climate_change,false -cjapsmith,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -cjapsmith,newsmast.social,Environment,environment,false -cjapsmith,newsmast.social,Humanities,humanities,false -cjapsmith,newsmast.social,Poverty & Inequality,poverty_inequality,false -cjapsmith,newsmast.social,Philosophy,philosophy,true -MinMaungHein,newsmast.social,Humanities,humanities,false -basil,sarcasm.stream,Mathematics,mathematics,false -silly_hamster,newsmast.social,AI,ai,false -silly_hamster,newsmast.social,Breaking News,breaking_news,false -silly_hamster,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -silly_hamster,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false -silly_hamster,newsmast.social,Journalism & Comment,news_comment_data,false -silly_hamster,newsmast.social,Physics,physics,false -silly_hamster,newsmast.social,Poverty & Inequality,poverty_inequality,false -silly_hamster,newsmast.social,Science,science,false -silly_hamster,newsmast.social,Social Media,social_media,false -tbutler,newsmast.social,AI,ai,false -tbutler,newsmast.social,History,history,false -tbutler,newsmast.social,Humanities,humanities,false -tbutler,newsmast.social,Philosophy,philosophy,false -tbutler,newsmast.social,Politics,politics,false -tbutler,newsmast.social,Programming,programming,false -tbutler,newsmast.social,Social Media,social_media,false -tbutler,newsmast.social,Social Sciences,social_sciences,false -tbutler,newsmast.social,Technology,technology,false -tbutler,newsmast.social,Ukraine Invasion,ukraine_invasion,false -tbutler,newsmast.social,US Politics,us_politics,false -tbutler,newsmast.social,Journalism & Comment,news_comment_data,true -basil,sarcasm.stream,Programming,programming,true -FifiSch,mastodon.social,Social Sciences,social_sciences,false -FifiSch,mastodon.social,Humanities,humanities,true -aethervision,pnw.zone,Weather,weather,false -aethervision,pnw.zone,Journalism & Comment,news_comment_data,true -mati,moth.social,Humour,humour,false -mati,moth.social,Creative Arts,creative_arts,false -DaMontayyer,newsmast.social,Academia & Research,academia_research,false -DaMontayyer,newsmast.social,Architecture & Design,architecture_design,false -DaMontayyer,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false -DaMontayyer,newsmast.social,Climate change,climate_change,false -DaMontayyer,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -DaMontayyer,newsmast.social,Disabled Voices,disabled_voices,false -DaMontayyer,newsmast.social,Energy & Pollution,energy_pollution,false -DaMontayyer,newsmast.social,Environment,environment,false -DaMontayyer,newsmast.social,Gaming,gaming,false -DaMontayyer,newsmast.social,Government & Policy,government_policy,false -DaMontayyer,newsmast.social,Healthcare,healthcare,false -DaMontayyer,newsmast.social,History,history,false -DaMontayyer,newsmast.social,Immigrants Rights,immigrants_rights,false -DaMontayyer,newsmast.social,LGBTQ+,lgbtq,false -DaMontayyer,newsmast.social,Movies,movies,false -DaMontayyer,newsmast.social,Music,music,false -DaMontayyer,newsmast.social,Politics,politics,false -DaMontayyer,newsmast.social,Programming,programming,false -DaMontayyer,newsmast.social,Sport,sport,false -DaMontayyer,newsmast.social,Technology,technology,false -DaMontayyer,newsmast.social,TV & Radio,tv_radio,false -DaMontayyer,newsmast.social,US Politics,us_politics,false -DaMontayyer,newsmast.social,Football,football,true -mati,moth.social,Mental Health & Wellbeing,mental_health_wellbeing,false -diamondlewis,newsmast.social,Breaking News,breaking_news,false -diamondlewis,newsmast.social,Journalism & Comment,news_comment_data,false -plus,newsmast.social,Academia & Research,academia_research,false -plus,newsmast.social,Activism & Civil Rights,activism_civil_rights,false -plus,newsmast.social,AI,ai,false -plus,newsmast.social,Architecture & Design,architecture_design,false -plus,newsmast.social,Black Voices,black_voices,false -plus,newsmast.social,Books & Literature,books_literature,false -plus,newsmast.social,Business,business,false -plus,newsmast.social,Creative Arts,creative_arts,false -plus,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -plus,newsmast.social,Disabled Voices,disabled_voices,false -plus,newsmast.social,Engineering,engineering,false -plus,newsmast.social,Food & Drink,food_drink,false -plus,newsmast.social,Gaming,gaming,false -plus,newsmast.social,Breaking News,breaking_news,true -silly_hamster,newsmast.social,Space,space,false -silly_hamster,newsmast.social,Technology,technology,false -silly_hamster,newsmast.social,Biology,biology,true -prabhakar,newsmast.social,Journalism & Comment,news_comment_data,false -guchengsnakee,newsmast.social,Markets & Finance,markets_finance,false -guchengsnakee,newsmast.social,Mathematics,mathematics,false -guchengsnakee,newsmast.social,Programming,programming,false -guchengsnakee,newsmast.social,Science,science,false -guchengsnakee,newsmast.social,Technology,technology,false -guchengsnakee,newsmast.social,AI,ai,true -OhnMyint,newsmast.social,Law & Justice,law_justice,false -OhnMyint,newsmast.social,Politics,politics,false -OhnMyint,newsmast.social,US Politics,us_politics,false -OhnMyint,newsmast.social,Healthcare,healthcare,true -paulcrosby,newsmast.social,Markets & Finance,markets_finance,false -paulcrosby,newsmast.social,Space,space,false -paulcrosby,newsmast.social,Technology,technology,false -paulcrosby,newsmast.social,Ukraine Invasion,ukraine_invasion,false -plus,newsmast.social,Government & Policy,government_policy,false -plus,newsmast.social,Healthcare,healthcare,false -plus,newsmast.social,History,history,false -plus,newsmast.social,Humanities,humanities,false -plus,newsmast.social,Humour,humour,false -plus,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false -plus,newsmast.social,Immigrants Rights,immigrants_rights,false -plus,newsmast.social,Indigenous Peoples,indigenous_peoples,false -plus,newsmast.social,Law & Justice,law_justice,false -plus,newsmast.social,LGBTQ+,lgbtq,false -plus,newsmast.social,Markets & Finance,markets_finance,false -plus,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false -plus,newsmast.social,Movies,movies,false -plus,newsmast.social,Music,music,false -plus,newsmast.social,Nature & Wildlife,nature_wildlife,false -plus,newsmast.social,Journalism & Comment,news_comment_data,false -plus,newsmast.social,Performing Arts,performing_arts,false -plus,newsmast.social,Pets,pets,false -plus,newsmast.social,Philosophy,philosophy,false -plus,newsmast.social,Photography,photography,false -plus,newsmast.social,Politics,politics,false -plus,newsmast.social,Poverty & Inequality,poverty_inequality,false -plus,newsmast.social,Programming,programming,false -plus,newsmast.social,Puzzles,puzzles,false -plus,newsmast.social,Social Media,social_media,false -plus,newsmast.social,Social Sciences,social_sciences,false -plus,newsmast.social,Technology,technology,false -plus,newsmast.social,Travel,travel,false -plus,newsmast.social,TV & Radio,tv_radio,false -plus,newsmast.social,Ukraine Invasion,ukraine_invasion,false -plus,newsmast.social,US Politics,us_politics,false -plus,newsmast.social,Visual Arts,visual_arts,false -plus,newsmast.social,Weather,weather,false -plus,newsmast.social,Women’s Voices,women_voices,false -plus,newsmast.social,Workers Rights,workers_rights,false -anca,mastodon.xyz,Energy & Pollution,energy_pollution,false -anca,mastodon.xyz,Programming,programming,false -noisediver,newsmast.social,AI,ai,false -MilitaryAfrica,newsmast.social,Academia & Research,academia_research,false -MilitaryAfrica,newsmast.social,Breaking News,breaking_news,false -MilitaryAfrica,newsmast.social,Business,business,false -MilitaryAfrica,newsmast.social,Healthcare,healthcare,false -MilitaryAfrica,newsmast.social,Law & Justice,law_justice,false -MilitaryAfrica,newsmast.social,Markets & Finance,markets_finance,false -MilitaryAfrica,newsmast.social,Journalism & Comment,news_comment_data,false -MilitaryAfrica,newsmast.social,Politics,politics,false -MilitaryAfrica,newsmast.social,Social Media,social_media,false -MilitaryAfrica,newsmast.social,Ukraine Invasion,ukraine_invasion,false -MilitaryAfrica,newsmast.social,US Politics,us_politics,false -MilitaryAfrica,newsmast.social,Weather,weather,false -MilitaryAfrica,newsmast.social,Workers Rights,workers_rights,false -MilitaryAfrica,newsmast.social,Government & Policy,government_policy,true -noisediver,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false -noisediver,newsmast.social,Biology,biology,false -noisediver,newsmast.social,Chemistry,chemistry,false -noisediver,newsmast.social,Climate change,climate_change,false -uobadam,newsmast.social,Academia & Research,academia_research,false -uobadam,newsmast.social,AI,ai,false -uobadam,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false -uobadam,newsmast.social,Biology,biology,false -uobadam,newsmast.social,Business,business,false -uobadam,newsmast.social,Chemistry,chemistry,false -uobadam,newsmast.social,Climate change,climate_change,false -uobadam,newsmast.social,Creative Arts,creative_arts,false -uobadam,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -uobadam,newsmast.social,Energy & Pollution,energy_pollution,false -uobadam,newsmast.social,Engineering,engineering,false -uobadam,newsmast.social,Environment,environment,false -uobadam,newsmast.social,Food & Drink,food_drink,false -uobadam,newsmast.social,Government & Policy,government_policy,false -uobadam,newsmast.social,Healthcare,healthcare,false -uobadam,newsmast.social,Humour,humour,false -uobadam,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false -uobadam,newsmast.social,Law & Justice,law_justice,false -uobadam,newsmast.social,Markets & Finance,markets_finance,false -uobadam,newsmast.social,Mathematics,mathematics,false -uobadam,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false -uobadam,newsmast.social,Nature & Wildlife,nature_wildlife,false -uobadam,newsmast.social,Journalism & Comment,news_comment_data,false -uobadam,newsmast.social,Pets,pets,false -uobadam,newsmast.social,Physics,physics,false -uobadam,newsmast.social,Politics,politics,false -uobadam,newsmast.social,Poverty & Inequality,poverty_inequality,false -uobadam,newsmast.social,Programming,programming,false -uobadam,newsmast.social,Puzzles,puzzles,false -uobadam,newsmast.social,Science,science,false -uobadam,newsmast.social,Social Media,social_media,false -uobadam,newsmast.social,Space,space,false -uobadam,newsmast.social,Technology,technology,false -uobadam,newsmast.social,Travel,travel,false -uobadam,newsmast.social,Ukraine Invasion,ukraine_invasion,false -uobadam,newsmast.social,US Politics,us_politics,false -uobadam,newsmast.social,Weather,weather,false -uobadam,newsmast.social,Workers Rights,workers_rights,false -uobadam,newsmast.social,Breaking News,breaking_news,true -noisediver,newsmast.social,Energy & Pollution,energy_pollution,false -noisediver,newsmast.social,Engineering,engineering,false -noisediver,newsmast.social,Environment,environment,false -noisediver,newsmast.social,Mathematics,mathematics,false -noisediver,newsmast.social,Physics,physics,false -noisediver,newsmast.social,Programming,programming,false -noisediver,newsmast.social,Space,space,false -noisediver,newsmast.social,Technology,technology,false -noisediver,newsmast.social,Science,science,true -anca,mastodon.xyz,Science,science,false -jmcastagnetto,mastodon.social,AI,ai,false -jmcastagnetto,mastodon.social,Biology,biology,false -jmcastagnetto,mastodon.social,Books & Literature,books_literature,false -jmcastagnetto,mastodon.social,Chemistry,chemistry,false -ExpertPlus,newsmast.social,Activism & Civil Rights,activism_civil_rights,false -ExpertPlus,newsmast.social,AI,ai,false -ExpertPlus,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false -ExpertPlus,newsmast.social,Black Voices,black_voices,false -ExpertPlus,newsmast.social,Climate change,climate_change,false -ExpertPlus,newsmast.social,Creative Arts,creative_arts,false -ExpertPlus,newsmast.social,Disabled Voices,disabled_voices,false -ExpertPlus,newsmast.social,Energy & Pollution,energy_pollution,false -ExpertPlus,newsmast.social,Engineering,engineering,false -ExpertPlus,newsmast.social,Environment,environment,false -ExpertPlus,newsmast.social,Food & Drink,food_drink,false -ExpertPlus,newsmast.social,Immigrants Rights,immigrants_rights,false -ExpertPlus,newsmast.social,Indigenous Peoples,indigenous_peoples,false -ExpertPlus,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false -ExpertPlus,newsmast.social,Nature & Wildlife,nature_wildlife,false -ExpertPlus,newsmast.social,Pets,pets,false -ExpertPlus,newsmast.social,Programming,programming,false -ExpertPlus,newsmast.social,Puzzles,puzzles,false -ExpertPlus,newsmast.social,Technology,technology,false -ExpertPlus,newsmast.social,Travel,travel,false -ExpertPlus,newsmast.social,Women’s Voices,women_voices,false -ExpertPlus,newsmast.social,Humour,humour,true -LiveMessy2024,newsmast.social,AI,ai,false -noisediver,newsmast.social,Ukraine Invasion,ukraine_invasion,false -noisediver,newsmast.social,Philosophy,philosophy,false -LiveMessy2024,newsmast.social,Breaking News,breaking_news,false -LiveMessy2024,newsmast.social,Business,business,false -LiveMessy2024,newsmast.social,Creative Arts,creative_arts,false -LiveMessy2024,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -LiveMessy2024,newsmast.social,History,history,false -LiveMessy2024,newsmast.social,Humanities,humanities,false -LiveMessy2024,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false -userlau,newsmast.social,Breaking News,breaking_news,false -userlau,newsmast.social,Journalism & Comment,news_comment_data,false -userlau,newsmast.social,Social Media,social_media,false -userlau,newsmast.social,Ukraine Invasion,ukraine_invasion,false -userlau,newsmast.social,Weather,weather,true -LiveMessy2024,newsmast.social,LGBTQ+,lgbtq,false -LiveMessy2024,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false -LiveMessy2024,newsmast.social,Nature & Wildlife,nature_wildlife,false -LiveMessy2024,newsmast.social,Philosophy,philosophy,false -LiveMessy2024,newsmast.social,Poverty & Inequality,poverty_inequality,false -macelynne919,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false -macelynne919,newsmast.social,Business,business,false -macelynne919,newsmast.social,Climate change,climate_change,false -macelynne919,newsmast.social,Creative Arts,creative_arts,false -macelynne919,newsmast.social,Energy & Pollution,energy_pollution,false -macelynne919,newsmast.social,Environment,environment,false -macelynne919,newsmast.social,Food & Drink,food_drink,false -Birdiana_Jonez,newsmast.social,AI,ai,false -Birdiana_Jonez,newsmast.social,Architecture & Design,architecture_design,false -Birdiana_Jonez,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false -Birdiana_Jonez,newsmast.social,Biology,biology,false -Birdiana_Jonez,newsmast.social,Books & Literature,books_literature,false -Birdiana_Jonez,newsmast.social,Chemistry,chemistry,false -Birdiana_Jonez,newsmast.social,Climate change,climate_change,false -Birdiana_Jonez,newsmast.social,Creative Arts,creative_arts,false -Birdiana_Jonez,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -Birdiana_Jonez,newsmast.social,Engineering,engineering,false -Birdiana_Jonez,newsmast.social,Environment,environment,false -Birdiana_Jonez,newsmast.social,Food & Drink,food_drink,false -Birdiana_Jonez,newsmast.social,Government & Policy,government_policy,false -Birdiana_Jonez,newsmast.social,Healthcare,healthcare,false -Birdiana_Jonez,newsmast.social,History,history,false -Birdiana_Jonez,newsmast.social,Humanities,humanities,false -Birdiana_Jonez,newsmast.social,Humour,humour,false -Birdiana_Jonez,newsmast.social,Law & Justice,law_justice,false -Birdiana_Jonez,newsmast.social,Markets & Finance,markets_finance,false -Birdiana_Jonez,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false -Birdiana_Jonez,newsmast.social,Movies,movies,false -Birdiana_Jonez,newsmast.social,Music,music,false -Birdiana_Jonez,newsmast.social,Nature & Wildlife,nature_wildlife,false -Birdiana_Jonez,newsmast.social,Journalism & Comment,news_comment_data,false -Birdiana_Jonez,newsmast.social,Pets,pets,false -Birdiana_Jonez,newsmast.social,Philosophy,philosophy,false -Birdiana_Jonez,newsmast.social,Photography,photography,false -Birdiana_Jonez,newsmast.social,Physics,physics,false -Birdiana_Jonez,newsmast.social,Politics,politics,false -Birdiana_Jonez,newsmast.social,Science,science,false -macelynne919,newsmast.social,Humour,humour,false -Birdiana_Jonez,newsmast.social,Breaking News,breaking_news,true -macelynne919,newsmast.social,Markets & Finance,markets_finance,false -macelynne919,newsmast.social,Nature & Wildlife,nature_wildlife,false -macelynne919,newsmast.social,Pets,pets,false -macelynne919,newsmast.social,Puzzles,puzzles,false -macelynne919,newsmast.social,Travel,travel,false -macelynne919,newsmast.social,Workers Rights,workers_rights,false -macelynne919,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,true -PPT536,newsmast.social,Journalism & Comment,news_comment_data,false -PPT536,newsmast.social,Social Media,social_media,false -PPT536,newsmast.social,Ukraine Invasion,ukraine_invasion,false -PPT536,newsmast.social,Weather,weather,false -PPT536,newsmast.social,Breaking News,breaking_news,true -minkhantkyaw350,newsmast.social,AI,ai,false -Birdiana_Jonez,newsmast.social,Social Sciences,social_sciences,false -Birdiana_Jonez,newsmast.social,Space,space,false -Birdiana_Jonez,newsmast.social,Technology,technology,false -Birdiana_Jonez,newsmast.social,Travel,travel,false -Birdiana_Jonez,newsmast.social,Ukraine Invasion,ukraine_invasion,false -Birdiana_Jonez,newsmast.social,Visual Arts,visual_arts,false -Birdiana_Jonez,newsmast.social,Workers Rights,workers_rights,false -noisediver,newsmast.social,Academia & Research,academia_research,false -DaMontayyer,newsmast.social,US Sport,us_sport,false -DaMontayyer,newsmast.social,Visual Arts,visual_arts,false -DaMontayyer,newsmast.social,Women’s Voices,women_voices,false -Hayleyk1970,newsmast.social,Breaking News,breaking_news,false -Hayleyk1970,newsmast.social,Creative Arts,creative_arts,false -Hayleyk1970,newsmast.social,Food & Drink,food_drink,false -Hayleyk1970,newsmast.social,Gaming,gaming,false -Hayleyk1970,newsmast.social,Humour,humour,false -Hayleyk1970,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false -Hayleyk1970,newsmast.social,Movies,movies,false -Hayleyk1970,newsmast.social,Music,music,false -Hayleyk1970,newsmast.social,Nature & Wildlife,nature_wildlife,false -Hayleyk1970,newsmast.social,Performing Arts,performing_arts,false -Hayleyk1970,newsmast.social,Pets,pets,false -Hayleyk1970,newsmast.social,Photography,photography,false -Hayleyk1970,newsmast.social,Puzzles,puzzles,false -Hayleyk1970,newsmast.social,Social Media,social_media,false -Hayleyk1970,newsmast.social,Travel,travel,false -Hayleyk1970,newsmast.social,TV & Radio,tv_radio,false -Hayleyk1970,newsmast.social,Visual Arts,visual_arts,false -Hayleyk1970,newsmast.social,Women’s Voices,women_voices,false -Hayleyk1970,newsmast.social,Weather,weather,true -noisediver,newsmast.social,Social Sciences,social_sciences,false -noisediver,newsmast.social,Poverty & Inequality,poverty_inequality,false -ThatRandomJew,tech.lgbt,Books & Literature,books_literature,false -ThatRandomJew,tech.lgbt,Breaking News,breaking_news,false -ThatRandomJew,tech.lgbt,Climate change,climate_change,false -ThatRandomJew,tech.lgbt,Creative Arts,creative_arts,false -ThatRandomJew,tech.lgbt,Engineering,engineering,false -maique,newsmast.social,Activism & Civil Rights,activism_civil_rights,false -maique,newsmast.social,AI,ai,false -maique,newsmast.social,Architecture & Design,architecture_design,false -maique,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false -maique,newsmast.social,Books & Literature,books_literature,false -maique,newsmast.social,Climate change,climate_change,false -maique,newsmast.social,Creative Arts,creative_arts,false -maique,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -maique,newsmast.social,Energy & Pollution,energy_pollution,false -maique,newsmast.social,Engineering,engineering,false -maique,newsmast.social,Environment,environment,false -maique,newsmast.social,Food & Drink,food_drink,false -maique,newsmast.social,Gaming,gaming,false -maique,newsmast.social,History,history,false -maique,newsmast.social,Humanities,humanities,false -maique,newsmast.social,Humour,humour,false -maique,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false -maique,newsmast.social,LGBTQ+,lgbtq,false -maique,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false -maique,newsmast.social,Movies,movies,false -maique,newsmast.social,Music,music,false -maique,newsmast.social,Nature & Wildlife,nature_wildlife,false -maique,newsmast.social,Journalism & Comment,news_comment_data,false -maique,newsmast.social,Performing Arts,performing_arts,false -maique,newsmast.social,Photography,photography,false -maique,newsmast.social,Politics,politics,false -maique,newsmast.social,Poverty & Inequality,poverty_inequality,false -maique,newsmast.social,Programming,programming,false -maique,newsmast.social,Social Media,social_media,false -maique,newsmast.social,Social Sciences,social_sciences,false -maique,newsmast.social,Space,space,false -maique,newsmast.social,Technology,technology,false -maique,newsmast.social,Travel,travel,false -maique,newsmast.social,TV & Radio,tv_radio,false -maique,newsmast.social,Ukraine Invasion,ukraine_invasion,false -maique,newsmast.social,Visual Arts,visual_arts,false -maique,newsmast.social,Weather,weather,false -maique,newsmast.social,Women’s Voices,women_voices,false -maique,newsmast.social,Breaking News,breaking_news,true -Diva_7057,newsmast.social,Breaking News,breaking_news,false -kuzushi,newsmast.social,AI,ai,false -kuzushi,newsmast.social,Architecture & Design,architecture_design,false -kuzushi,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false -kuzushi,newsmast.social,Biology,biology,false -kuzushi,newsmast.social,Books & Literature,books_literature,false -kuzushi,newsmast.social,Chemistry,chemistry,false -kuzushi,newsmast.social,Climate change,climate_change,false -kuzushi,newsmast.social,Energy & Pollution,energy_pollution,false -kuzushi,newsmast.social,Environment,environment,false -kuzushi,newsmast.social,Government & Policy,government_policy,false -kuzushi,newsmast.social,Healthcare,healthcare,false -kuzushi,newsmast.social,History,history,false -kuzushi,newsmast.social,Humanities,humanities,false -kuzushi,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false -kuzushi,newsmast.social,Law & Justice,law_justice,false -kuzushi,newsmast.social,Mathematics,mathematics,false -kuzushi,newsmast.social,Democracy & Human Rights,democracy_human_rights,true -kuzushi,newsmast.social,Movies,movies,false -kuzushi,newsmast.social,Music,music,false -kuzushi,newsmast.social,Performing Arts,performing_arts,false -kuzushi,newsmast.social,Philosophy,philosophy,false -kuzushi,newsmast.social,Photography,photography,false -kuzushi,newsmast.social,Physics,physics,false -kuzushi,newsmast.social,Poverty & Inequality,poverty_inequality,false -kuzushi,newsmast.social,Programming,programming,false -kuzushi,newsmast.social,Science,science,false -kuzushi,newsmast.social,Social Sciences,social_sciences,false -kuzushi,newsmast.social,Space,space,false -kuzushi,newsmast.social,Sport,sport,false -kuzushi,newsmast.social,Visual Arts,visual_arts,false -noisediver,newsmast.social,Social Media,social_media,false -noisediver,newsmast.social,Disabled Voices,disabled_voices,false -ThatRandomJew,tech.lgbt,Gaming,gaming,false -anca,mastodon.xyz,Climate change,climate_change,true -ThatRandomJew,tech.lgbt,Mental Health & Wellbeing,mental_health_wellbeing,false -ThatRandomJew,tech.lgbt,Movies,movies,false -Aurefreepress,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -Aurefreepress,newsmast.social,Government & Policy,government_policy,false -sillygwailo,mastodon.social,Social Sciences,social_sciences,true -IlCava,mastodon.uno,Music,music,false -diamondlewis,newsmast.social,Ukraine Invasion,ukraine_invasion,false -diamondlewis,newsmast.social,Weather,weather,false -Aurefreepress,newsmast.social,Breaking News,breaking_news,true -Nyein,newsmast.social,Chemistry,chemistry,true -diamondlewis,newsmast.social,Social Media,social_media,true -prabhakar,newsmast.social,Social Media,social_media,false -prabhakar,newsmast.social,Ukraine Invasion,ukraine_invasion,false -exakat,newsmast.social,Engineering,engineering,false -exakat,newsmast.social,Mathematics,mathematics,false -exakat,newsmast.social,Physics,physics,false -exakat,newsmast.social,Space,space,false -exakat,newsmast.social,Programming,programming,true -prabhakar,newsmast.social,Weather,weather,false -prabhakar,newsmast.social,Breaking News,breaking_news,true -90sCraig,pb.craignt.com,Gaming,gaming,false -thedogspaw,mastodon.social,US Sport,us_sport,false -javierleiva,mastodon.social,Indigenous Peoples,indigenous_peoples,false -javierleiva,mastodon.social,Space,space,false -javierleiva,mastodon.social,Sport,sport,false -javierleiva,mastodon.social,US Sport,us_sport,false -javierleiva,mastodon.social,Science,science,true -EngineerFinance,newsmast.social,Breaking News,breaking_news,false -EngineerFinance,newsmast.social,Creative Arts,creative_arts,false -EngineerFinance,newsmast.social,Food & Drink,food_drink,false -EngineerFinance,newsmast.social,Humour,humour,false -EngineerFinance,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false -EngineerFinance,newsmast.social,Nature & Wildlife,nature_wildlife,false -EngineerFinance,newsmast.social,Pets,pets,false -EngineerFinance,newsmast.social,Puzzles,puzzles,false -EngineerFinance,newsmast.social,Social Media,social_media,false -EngineerFinance,newsmast.social,Travel,travel,false -EngineerFinance,newsmast.social,Ukraine Invasion,ukraine_invasion,false -EngineerFinance,newsmast.social,Weather,weather,false -EngineerFinance,newsmast.social,Journalism & Comment,news_comment_data,true -deadsuperhero,newsmast.social,Engineering,engineering,false -deadsuperhero,newsmast.social,LGBTQ+,lgbtq,false -deadsuperhero,newsmast.social,Programming,programming,false -deadsuperhero,newsmast.social,Workers Rights,workers_rights,false -deadsuperhero,newsmast.social,Technology,technology,true -Nyein,newsmast.social,Engineering,engineering,false -Nyein,newsmast.social,Technology,technology,false -Scotty,newsmast.social,Food & Drink,food_drink,false -Scotty,newsmast.social,Humour,humour,false -seedling,newsmast.social,Indigenous Peoples,indigenous_peoples,false -seedling,newsmast.social,Philosophy,philosophy,false -seedling,newsmast.social,Social Sciences,social_sciences,false -seedling,newsmast.social,Women’s Voices,women_voices,false -seedling,newsmast.social,History,history,true -ppt_56,newsmast.social,Journalism & Comment,news_comment_data,false -ppt_56,newsmast.social,Social Media,social_media,false -ppt_56,newsmast.social,Ukraine Invasion,ukraine_invasion,false -ppt_56,newsmast.social,Weather,weather,false -ppt_56,newsmast.social,Breaking News,breaking_news,true -Sylkeweb,newsmast.social,Social Media,social_media,false -tijoantony,newsmast.social,AI,ai,false -tijoantony,newsmast.social,Breaking News,breaking_news,false -tijoantony,newsmast.social,Business,business,false -tijoantony,newsmast.social,Creative Arts,creative_arts,false -tijoantony,newsmast.social,Engineering,engineering,false -tijoantony,newsmast.social,Food & Drink,food_drink,false -tijoantony,newsmast.social,Football,football,false -tijoantony,newsmast.social,Humour,humour,false -tijoantony,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false -tijoantony,newsmast.social,Nature & Wildlife,nature_wildlife,false -tijoantony,newsmast.social,Journalism & Comment,news_comment_data,false -tijoantony,newsmast.social,Pets,pets,false -tijoantony,newsmast.social,Programming,programming,false -tijoantony,newsmast.social,Puzzles,puzzles,false -tijoantony,newsmast.social,Social Media,social_media,false -tijoantony,newsmast.social,Sport,sport,false -tijoantony,newsmast.social,Technology,technology,true -noisediver,newsmast.social,Healthcare,healthcare,false -noisediver,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false -WhiteMode,newsmast.social,Chemistry,chemistry,false -noisediver,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false -miscmisc,newsmast.social,Biology,biology,false -miscmisc,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -miscmisc,newsmast.social,Football,football,false -miscmisc,newsmast.social,Science,science,false -miscmisc,newsmast.social,Sport,sport,false -miscmisc,newsmast.social,Technology,technology,false -miscmisc,newsmast.social,Breaking News,breaking_news,true -ChiefOldMist,newsmast.social,AI,ai,false -ChiefOldMist,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false -ChiefOldMist,newsmast.social,Biology,biology,false -ChiefOldMist,newsmast.social,Breaking News,breaking_news,false -ChiefOldMist,newsmast.social,Chemistry,chemistry,false -ChiefOldMist,newsmast.social,Climate change,climate_change,false -ChiefOldMist,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -ChiefOldMist,newsmast.social,Energy & Pollution,energy_pollution,false -ChiefOldMist,newsmast.social,Engineering,engineering,false -ChiefOldMist,newsmast.social,Environment,environment,false -ChiefOldMist,newsmast.social,Government & Policy,government_policy,false -ChiefOldMist,newsmast.social,History,history,false -ChiefOldMist,newsmast.social,Humanities,humanities,false -k_rose,newsmast.social,Academia & Research,academia_research,false -k_rose,newsmast.social,Activism & Civil Rights,activism_civil_rights,false -k_rose,newsmast.social,AI,ai,false -k_rose,newsmast.social,Architecture & Design,architecture_design,false -k_rose,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false -k_rose,newsmast.social,Biology,biology,false -k_rose,newsmast.social,Black Voices,black_voices,false -k_rose,newsmast.social,Books & Literature,books_literature,false -k_rose,newsmast.social,Breaking News,breaking_news,false -k_rose,newsmast.social,Business,business,false -k_rose,newsmast.social,Chemistry,chemistry,false -k_rose,newsmast.social,Climate change,climate_change,false -k_rose,newsmast.social,Creative Arts,creative_arts,false -k_rose,newsmast.social,Disabled Voices,disabled_voices,false -k_rose,newsmast.social,Energy & Pollution,energy_pollution,false -k_rose,newsmast.social,Engineering,engineering,false -k_rose,newsmast.social,Environment,environment,false -k_rose,newsmast.social,Food & Drink,food_drink,false -k_rose,newsmast.social,Football,football,false -k_rose,newsmast.social,Gaming,gaming,false -k_rose,newsmast.social,Government & Policy,government_policy,false -k_rose,newsmast.social,Healthcare,healthcare,false -k_rose,newsmast.social,History,history,false -k_rose,newsmast.social,Humanities,humanities,false -k_rose,newsmast.social,Humour,humour,false -k_rose,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false -k_rose,newsmast.social,Immigrants Rights,immigrants_rights,false -k_rose,newsmast.social,Indigenous Peoples,indigenous_peoples,false -k_rose,newsmast.social,Law & Justice,law_justice,false -k_rose,newsmast.social,LGBTQ+,lgbtq,false -k_rose,newsmast.social,Markets & Finance,markets_finance,false -k_rose,newsmast.social,Mathematics,mathematics,false -k_rose,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false -k_rose,newsmast.social,Movies,movies,false -k_rose,newsmast.social,Music,music,false -k_rose,newsmast.social,Nature & Wildlife,nature_wildlife,false -k_rose,newsmast.social,Journalism & Comment,news_comment_data,false -k_rose,newsmast.social,Performing Arts,performing_arts,false -k_rose,newsmast.social,Pets,pets,false -k_rose,newsmast.social,Philosophy,philosophy,false -k_rose,newsmast.social,Photography,photography,false -k_rose,newsmast.social,Physics,physics,false -k_rose,newsmast.social,Politics,politics,false -k_rose,newsmast.social,Poverty & Inequality,poverty_inequality,false -k_rose,newsmast.social,Programming,programming,false -k_rose,newsmast.social,Puzzles,puzzles,false -k_rose,newsmast.social,Science,science,false -k_rose,newsmast.social,Social Media,social_media,false -k_rose,newsmast.social,Social Sciences,social_sciences,false -k_rose,newsmast.social,Space,space,false -k_rose,newsmast.social,Sport,sport,false -k_rose,newsmast.social,Technology,technology,false -k_rose,newsmast.social,Travel,travel,false -k_rose,newsmast.social,TV & Radio,tv_radio,false -k_rose,newsmast.social,Ukraine Invasion,ukraine_invasion,false -k_rose,newsmast.social,US Politics,us_politics,false -k_rose,newsmast.social,US Sport,us_sport,false -k_rose,newsmast.social,Visual Arts,visual_arts,false -k_rose,newsmast.social,Weather,weather,false -k_rose,newsmast.social,Women’s Voices,women_voices,false -k_rose,newsmast.social,Workers Rights,workers_rights,false -k_rose,newsmast.social,Democracy & Human Rights,democracy_human_rights,true -EasternHerald,newsmast.social,Academia & Research,academia_research,false -EasternHerald,newsmast.social,AI,ai,false -EasternHerald,newsmast.social,Engineering,engineering,false -EasternHerald,newsmast.social,Government & Policy,government_policy,false -EasternHerald,newsmast.social,Healthcare,healthcare,false -EasternHerald,newsmast.social,Law & Justice,law_justice,false -EasternHerald,newsmast.social,Politics,politics,false -EasternHerald,newsmast.social,Programming,programming,false -EasternHerald,newsmast.social,Technology,technology,false -EasternHerald,newsmast.social,US Politics,us_politics,true -AltonDrew,newsmast.social,Academia & Research,academia_research,false -AltonDrew,newsmast.social,Architecture & Design,architecture_design,false -AltonDrew,newsmast.social,Books & Literature,books_literature,false -AltonDrew,newsmast.social,Creative Arts,creative_arts,false -AltonDrew,newsmast.social,Food & Drink,food_drink,false -AltonDrew,newsmast.social,Gaming,gaming,false -AltonDrew,newsmast.social,Healthcare,healthcare,false -AltonDrew,newsmast.social,Humour,humour,false -AltonDrew,newsmast.social,Law & Justice,law_justice,false -AltonDrew,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false -AltonDrew,newsmast.social,Movies,movies,false -AltonDrew,newsmast.social,Music,music,false -AltonDrew,newsmast.social,Nature & Wildlife,nature_wildlife,false -AltonDrew,newsmast.social,Performing Arts,performing_arts,false -AltonDrew,newsmast.social,Pets,pets,false -AltonDrew,newsmast.social,Photography,photography,false -AltonDrew,newsmast.social,Politics,politics,false -AltonDrew,newsmast.social,Puzzles,puzzles,false -AltonDrew,newsmast.social,Travel,travel,false -AltonDrew,newsmast.social,TV & Radio,tv_radio,false -AltonDrew,newsmast.social,US Politics,us_politics,false -AltonDrew,newsmast.social,Visual Arts,visual_arts,false -AltonDrew,newsmast.social,Government & Policy,government_policy,true -ThatRandomJew,tech.lgbt,Music,music,false -ThatRandomJew,tech.lgbt,Nature & Wildlife,nature_wildlife,false -ThatRandomJew,tech.lgbt,Performing Arts,performing_arts,false -ThatRandomJew,tech.lgbt,Pets,pets,false -ThatRandomJew,tech.lgbt,Photography,photography,false -ThatRandomJew,tech.lgbt,Physics,physics,false -ThatRandomJew,tech.lgbt,Puzzles,puzzles,false -Diva_7057,newsmast.social,Food & Drink,food_drink,false -Diva_7057,newsmast.social,Humour,humour,false -Diva_7057,newsmast.social,Movies,movies,false -Diva_7057,newsmast.social,Performing Arts,performing_arts,false -Diva_7057,newsmast.social,Science,science,false -Diva_7057,newsmast.social,Social Media,social_media,false -Diva_7057,newsmast.social,TV & Radio,tv_radio,false -Diva_7057,newsmast.social,Weather,weather,false -Diva_7057,newsmast.social,Books & Literature,books_literature,true -ChiefOldMist,newsmast.social,Mathematics,mathematics,false -ChiefOldMist,newsmast.social,Journalism & Comment,news_comment_data,false -ChiefOldMist,newsmast.social,Philosophy,philosophy,false -ChiefOldMist,newsmast.social,Physics,physics,false -ChiefOldMist,newsmast.social,Science,science,false -ChiefOldMist,newsmast.social,Social Media,social_media,false -ChiefOldMist,newsmast.social,Social Sciences,social_sciences,false -ChiefOldMist,newsmast.social,Space,space,false -ChiefOldMist,newsmast.social,Technology,technology,true -Startupradio,newsmast.social,AI,ai,false -Startupradio,newsmast.social,Business,business,false -Startupradio,newsmast.social,Engineering,engineering,false -Startupradio,newsmast.social,Markets & Finance,markets_finance,false -Startupradio,newsmast.social,Programming,programming,false -Startupradio,newsmast.social,Workers Rights,workers_rights,false -Startupradio,newsmast.social,Technology,technology,true -ThatRandomJew,tech.lgbt,Science,science,false -seehearpodcast,newsmast.social,Mathematics,mathematics,false -seehearpodcast,newsmast.social,Movies,movies,false -seehearpodcast,newsmast.social,Philosophy,philosophy,false -seehearpodcast,newsmast.social,Physics,physics,false -seehearpodcast,newsmast.social,Music,music,true -ThatRandomJew,tech.lgbt,Space,space,false -ThatRandomJew,tech.lgbt,Technology,technology,false -suthit,newsmast.social,AI,ai,false -suthit,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false -suthit,newsmast.social,Climate change,climate_change,false -suthit,newsmast.social,Energy & Pollution,energy_pollution,false -suthit,newsmast.social,Engineering,engineering,false -suthit,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false -suthit,newsmast.social,Poverty & Inequality,poverty_inequality,false -suthit,newsmast.social,Programming,programming,false -suthit,newsmast.social,Environment,environment,true -tijoantony,newsmast.social,Travel,travel,false -tijoantony,newsmast.social,US Sport,us_sport,false -EasternHerald,newsmast.social,Breaking News,breaking_news,false -ThatRandomJew,tech.lgbt,Travel,travel,false -ThatRandomJew,tech.lgbt,TV & Radio,tv_radio,false -ThatRandomJew,tech.lgbt,Ukraine Invasion,ukraine_invasion,false -ThatRandomJew,tech.lgbt,Visual Arts,visual_arts,false -ThatRandomJew,tech.lgbt,LGBTQ+,lgbtq,true -heartlandnews,newsmast.social,Academia & Research,academia_research,false -heartlandnews,newsmast.social,Activism & Civil Rights,activism_civil_rights,false -heartlandnews,newsmast.social,AI,ai,false -heartlandnews,newsmast.social,Architecture & Design,architecture_design,false -heartlandnews,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false -heartlandnews,newsmast.social,Biology,biology,false -heartlandnews,newsmast.social,Black Voices,black_voices,false -heartlandnews,newsmast.social,Books & Literature,books_literature,false -heartlandnews,newsmast.social,Breaking News,breaking_news,false -heartlandnews,newsmast.social,Business,business,false -heartlandnews,newsmast.social,Chemistry,chemistry,false -heartlandnews,newsmast.social,Climate change,climate_change,false -heartlandnews,newsmast.social,Creative Arts,creative_arts,false -heartlandnews,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -heartlandnews,newsmast.social,Disabled Voices,disabled_voices,false -heartlandnews,newsmast.social,Energy & Pollution,energy_pollution,false -heartlandnews,newsmast.social,Engineering,engineering,false -heartlandnews,newsmast.social,Environment,environment,false -heartlandnews,newsmast.social,Food & Drink,food_drink,false -heartlandnews,newsmast.social,Football,football,false -heartlandnews,newsmast.social,Gaming,gaming,false -heartlandnews,newsmast.social,Government & Policy,government_policy,false -heartlandnews,newsmast.social,Healthcare,healthcare,false -heartlandnews,newsmast.social,History,history,false -heartlandnews,newsmast.social,Humanities,humanities,false -heartlandnews,newsmast.social,Humour,humour,false -heartlandnews,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false -heartlandnews,newsmast.social,Immigrants Rights,immigrants_rights,false -heartlandnews,newsmast.social,Indigenous Peoples,indigenous_peoples,false -heartlandnews,newsmast.social,Law & Justice,law_justice,false -jmcastagnetto,mastodon.social,Climate change,climate_change,false -heartlandnews,newsmast.social,LGBTQ+,lgbtq,false -heartlandnews,newsmast.social,Markets & Finance,markets_finance,false -heartlandnews,newsmast.social,Mathematics,mathematics,false -heartlandnews,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false -heartlandnews,newsmast.social,Movies,movies,false -heartlandnews,newsmast.social,Music,music,false -heartlandnews,newsmast.social,Nature & Wildlife,nature_wildlife,false -heartlandnews,newsmast.social,Performing Arts,performing_arts,false -heartlandnews,newsmast.social,Pets,pets,false -heartlandnews,newsmast.social,Philosophy,philosophy,false -heartlandnews,newsmast.social,Photography,photography,false -heartlandnews,newsmast.social,Physics,physics,false -heartlandnews,newsmast.social,Politics,politics,false -heartlandnews,newsmast.social,Poverty & Inequality,poverty_inequality,false -heartlandnews,newsmast.social,Programming,programming,false -heartlandnews,newsmast.social,Puzzles,puzzles,false -heartlandnews,newsmast.social,Science,science,false -heartlandnews,newsmast.social,Social Media,social_media,false -heartlandnews,newsmast.social,Social Sciences,social_sciences,false -heartlandnews,newsmast.social,Space,space,false -heartlandnews,newsmast.social,Sport,sport,false -heartlandnews,newsmast.social,Technology,technology,false -heartlandnews,newsmast.social,Travel,travel,false -heartlandnews,newsmast.social,TV & Radio,tv_radio,false -heartlandnews,newsmast.social,Ukraine Invasion,ukraine_invasion,false -heartlandnews,newsmast.social,US Politics,us_politics,false -heartlandnews,newsmast.social,US Sport,us_sport,false -heartlandnews,newsmast.social,Visual Arts,visual_arts,false -heartlandnews,newsmast.social,Weather,weather,false -heartlandnews,newsmast.social,Women’s Voices,women_voices,false -heartlandnews,newsmast.social,Workers Rights,workers_rights,false -heartlandnews,newsmast.social,Journalism & Comment,news_comment_data,true -hfodndnd,newsmast.social,Activism & Civil Rights,activism_civil_rights,false -hfodndnd,newsmast.social,Black Voices,black_voices,false -hfodndnd,newsmast.social,Disabled Voices,disabled_voices,false -hfodndnd,newsmast.social,Immigrants Rights,immigrants_rights,false -hfodndnd,newsmast.social,LGBTQ+,lgbtq,false -hfodndnd,newsmast.social,Women’s Voices,women_voices,false -hfodndnd,newsmast.social,Indigenous Peoples,indigenous_peoples,true -mati,moth.social,Food & Drink,food_drink,false -mati,moth.social,Pets,pets,false -evil_k,newsmast.social,Science,science,false -evil_k,newsmast.social,Social Sciences,social_sciences,false -lanartri,newsmast.social,AI,ai,false -lanartri,newsmast.social,Architecture & Design,architecture_design,false -lanartri,newsmast.social,Books & Literature,books_literature,false -lanartri,newsmast.social,Breaking News,breaking_news,false -lanartri,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -lanartri,newsmast.social,Movies,movies,false -lanartri,newsmast.social,Music,music,false -lanartri,newsmast.social,Programming,programming,false -lanartri,newsmast.social,Science,science,false -lanartri,newsmast.social,Space,space,false -lanartri,newsmast.social,Technology,technology,false -lanartri,newsmast.social,Visual Arts,visual_arts,false -lanartri,newsmast.social,Photography,photography,true -evil_k,newsmast.social,Space,space,true -Twitter,twitter.social,Democracy & Human Rights,democracy_human_rights,false -OlPatchy2Eyes,ieji.de,Philosophy,philosophy,false -OlPatchy2Eyes,ieji.de,Travel,travel,false -OlPatchy2Eyes,ieji.de,Nature & Wildlife,nature_wildlife,false -OlPatchy2Eyes,ieji.de,Food & Drink,food_drink,false -OlPatchy2Eyes,ieji.de,Biodiversity & Rewilding,biodiversity_rewilding,false -atom,newsmast.social,Biology,biology,false -atom,newsmast.social,Chemistry,chemistry,false -atom,newsmast.social,Mathematics,mathematics,false -atom,newsmast.social,Physics,physics,false -atom,newsmast.social,Science,science,false -atom,newsmast.social,Space,space,false -atom,newsmast.social,Technology,technology,true -Twitter,twitter.social,Government & Policy,government_policy,false -Twitter,twitter.social,Technology,technology,false -Twitter,twitter.social,Ukraine Invasion,ukraine_invasion,false -gruffowen,toot.wales,AI,ai,false -gruffowen,toot.wales,Biodiversity & Rewilding,biodiversity_rewilding,false -johnvoorhees,newsmast.social,Breaking News,breaking_news,false -johnvoorhees,newsmast.social,Gaming,gaming,false -johnvoorhees,newsmast.social,Movies,movies,false -johnvoorhees,newsmast.social,Music,music,false -johnvoorhees,newsmast.social,TV & Radio,tv_radio,false -johnvoorhees,newsmast.social,Technology,technology,true -Twitter,twitter.social,Breaking News,breaking_news,true -gruffowen,toot.wales,Democracy & Human Rights,democracy_human_rights,false -Aurefreepress,newsmast.social,Journalism & Comment,news_comment_data,false -Aurefreepress,newsmast.social,Social Media,social_media,false -Aurefreepress,newsmast.social,Ukraine Invasion,ukraine_invasion,false -Aurefreepress,newsmast.social,Weather,weather,false -Aurefreepress,newsmast.social,Academia & Research,academia_research,false -Aurefreepress,newsmast.social,Healthcare,healthcare,false -Aurefreepress,newsmast.social,US Politics,us_politics,false -Aurefreepress,newsmast.social,Environment,environment,false -Aurefreepress,newsmast.social,Climate change,climate_change,false -Aurefreepress,newsmast.social,Energy & Pollution,energy_pollution,false -Aurefreepress,newsmast.social,Activism & Civil Rights,activism_civil_rights,false -Aurefreepress,newsmast.social,Black Voices,black_voices,false -Aurefreepress,newsmast.social,Disabled Voices,disabled_voices,false -Aurefreepress,newsmast.social,Immigrants Rights,immigrants_rights,false -Aurefreepress,newsmast.social,Indigenous Peoples,indigenous_peoples,false -Aurefreepress,newsmast.social,LGBTQ+,lgbtq,false -gruffowen,toot.wales,Environment,environment,false -cbattlegear,newsmast.social,AI,ai,false -cbattlegear,newsmast.social,Breaking News,breaking_news,false -cbattlegear,newsmast.social,Business,business,false -cbattlegear,newsmast.social,Engineering,engineering,false -cbattlegear,newsmast.social,Mathematics,mathematics,false -minkhantkyaw350,newsmast.social,Breaking News,breaking_news,false -Aurefreepress,newsmast.social,Women’s Voices,women_voices,false -Aurefreepress,newsmast.social,Science,science,false -Aurefreepress,newsmast.social,Space,space,false -gruffowen,toot.wales,Government & Policy,government_policy,false -gruffowen,toot.wales,Journalism & Comment,news_comment_data,false -gruffowen,toot.wales,Politics,politics,false -gruffowen,toot.wales,Poverty & Inequality,poverty_inequality,false -rajudbg,newsmast.social,Journalism & Comment,news_comment_data,false -rajudbg,newsmast.social,Social Media,social_media,false -dariusofz,newsmast.social,Breaking News,breaking_news,true -beergeek,newsmast.social,Gaming,gaming,false -beergeek,newsmast.social,Movies,movies,false -beergeek,newsmast.social,Music,music,false -beergeek,newsmast.social,Photography,photography,false -beergeek,newsmast.social,TV & Radio,tv_radio,false -beergeek,newsmast.social,Food & Drink,food_drink,false -beergeek,newsmast.social,Humour,humour,false -beergeek,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false -beergeek,newsmast.social,Puzzles,puzzles,false -beergeek,newsmast.social,Travel,travel,false -rajudbg,newsmast.social,Ukraine Invasion,ukraine_invasion,false -rajudbg,newsmast.social,Weather,weather,false -rajudbg,newsmast.social,AI,ai,true -ericovarjao,newsmast.social,AI,ai,false -ericovarjao,newsmast.social,Architecture & Design,architecture_design,false -ericovarjao,newsmast.social,Books & Literature,books_literature,false -ericovarjao,newsmast.social,Business,business,false -ericovarjao,newsmast.social,Creative Arts,creative_arts,false -bret,newsmast.social,AI,ai,false -bret,newsmast.social,Breaking News,breaking_news,false -bret,newsmast.social,Business,business,false -bret,newsmast.social,Climate change,climate_change,false -bret,newsmast.social,Energy & Pollution,energy_pollution,false -bret,newsmast.social,Government & Policy,government_policy,false -bret,newsmast.social,Markets & Finance,markets_finance,false -bret,newsmast.social,Politics,politics,false -bret,newsmast.social,Social Media,social_media,false -bret,newsmast.social,Ukraine Invasion,ukraine_invasion,false -bret,newsmast.social,US Politics,us_politics,false -bret,newsmast.social,Technology,technology,true -ericovarjao,newsmast.social,Energy & Pollution,energy_pollution,false -ericovarjao,newsmast.social,Food & Drink,food_drink,false -ericovarjao,newsmast.social,History,history,false -ericovarjao,newsmast.social,Humanities,humanities,false -ericovarjao,newsmast.social,Markets & Finance,markets_finance,false -jasonbcfcufc,newsmast.social,Engineering,engineering,false -jasonbcfcufc,newsmast.social,Government & Policy,government_policy,false -jasonbcfcufc,newsmast.social,Social Media,social_media,false -jasonbcfcufc,newsmast.social,Technology,technology,false -jasonbcfcufc,newsmast.social,Breaking News,breaking_news,true -ericovarjao,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false -ericovarjao,newsmast.social,Movies,movies,false -ericovarjao,newsmast.social,Music,music,false -ericovarjao,newsmast.social,Philosophy,philosophy,false -FreddieJ,newsmast.social,AI,ai,false -FreddieJ,newsmast.social,Science,science,false -LiveMessy2024,newsmast.social,Social Sciences,social_sciences,false -LiveMessy2024,newsmast.social,Weather,weather,false -ericovarjao,newsmast.social,Law & Justice,law_justice,true -LiveMessy2024,newsmast.social,Women’s Voices,women_voices,false -LiveMessy2024,newsmast.social,Technology,technology,true -scott,onephoto.club,Biodiversity & Rewilding,biodiversity_rewilding,false -r0yaL,newsmast.social,Breaking News,breaking_news,false -r0yaL,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -r0yaL,newsmast.social,Government & Policy,government_policy,false -r0yaL,newsmast.social,Science,science,false -r0yaL,newsmast.social,Technology,technology,true -scott,onephoto.club,Environment,environment,false -scott,onephoto.club,Nature & Wildlife,nature_wildlife,false -scott,onephoto.club,Photography,photography,false -scott,onephoto.club,Travel,travel,true -90sCraig,pb.craignt.com,TV & Radio,tv_radio,false -90sCraig,pb.craignt.com,Food & Drink,food_drink,false -gospelsong,newsmast.social,Activism & Civil Rights,activism_civil_rights,false -gospelsong,newsmast.social,Black Voices,black_voices,false -gospelsong,newsmast.social,Business,business,false -gospelsong,newsmast.social,Creative Arts,creative_arts,false -gospelsong,newsmast.social,Disabled Voices,disabled_voices,false -gospelsong,newsmast.social,Food & Drink,food_drink,false -gospelsong,newsmast.social,Football,football,false -gospelsong,newsmast.social,Humour,humour,false -gospelsong,newsmast.social,Immigrants Rights,immigrants_rights,false -gospelsong,newsmast.social,Indigenous Peoples,indigenous_peoples,false -gospelsong,newsmast.social,LGBTQ+,lgbtq,false -gospelsong,newsmast.social,Markets & Finance,markets_finance,false -gospelsong,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false -gospelsong,newsmast.social,Nature & Wildlife,nature_wildlife,false -gospelsong,newsmast.social,Journalism & Comment,news_comment_data,false -gospelsong,newsmast.social,Pets,pets,false -gospelsong,newsmast.social,Puzzles,puzzles,false -gospelsong,newsmast.social,Social Media,social_media,false -gospelsong,newsmast.social,Sport,sport,false -gospelsong,newsmast.social,Travel,travel,false -gospelsong,newsmast.social,Ukraine Invasion,ukraine_invasion,false -gospelsong,newsmast.social,US Sport,us_sport,false -gospelsong,newsmast.social,Weather,weather,false -gospelsong,newsmast.social,Women’s Voices,women_voices,false -gospelsong,newsmast.social,Workers Rights,workers_rights,false -gospelsong,newsmast.social,Breaking News,breaking_news,true -minkhantkyaw350,newsmast.social,Technology,technology,false -gruffowen,toot.wales,Technology,technology,false -gruffowen,toot.wales,Breaking News,breaking_news,true -ericovarjao,newsmast.social,Politics,politics,false -ericovarjao,newsmast.social,Social Sciences,social_sciences,false -ericovarjao,newsmast.social,Technology,technology,false -ericovarjao,newsmast.social,TV & Radio,tv_radio,false -ericovarjao,newsmast.social,Visual Arts,visual_arts,false -cbattlegear,newsmast.social,Journalism & Comment,news_comment_data,false -cbattlegear,newsmast.social,Physics,physics,false -cbattlegear,newsmast.social,Science,science,false -cbattlegear,newsmast.social,Space,space,false -cbattlegear,newsmast.social,Technology,technology,false -cbattlegear,newsmast.social,Programming,programming,true -jmcastagnetto,mastodon.social,Democracy & Human Rights,democracy_human_rights,false -jmcastagnetto,mastodon.social,Environment,environment,false -jmcastagnetto,mastodon.social,Gaming,gaming,false -jmcastagnetto,mastodon.social,Government & Policy,government_policy,false -jmcastagnetto,mastodon.social,Healthcare,healthcare,false -spear292000,mastodon.social,AI,ai,false -spear292000,mastodon.social,Books & Literature,books_literature,false -spear292000,mastodon.social,Engineering,engineering,false -jetono,newsmast.social,AI,ai,false -jetono,newsmast.social,Engineering,engineering,false -jetono,newsmast.social,Gaming,gaming,false -jetono,newsmast.social,Programming,programming,false -jetono,newsmast.social,Social Media,social_media,false -jetono,newsmast.social,Technology,technology,true -SithuBo,newsmast.social,Programming,programming,false -minkhantkyaw350,newsmast.social,Programming,programming,true -minkhantkyaw350,newsmast.social,Visual Arts,visual_arts,false -minkhantkyaw350,newsmast.social,Architecture & Design,architecture_design,false -minkhantkyaw350,newsmast.social,TV & Radio,tv_radio,false -minkhantkyaw350,newsmast.social,Books & Literature,books_literature,false -minkhantkyaw350,newsmast.social,Photography,photography,false -minkhantkyaw350,newsmast.social,Performing Arts,performing_arts,false -minkhantkyaw350,newsmast.social,Gaming,gaming,false -minkhantkyaw350,newsmast.social,Movies,movies,false -minkhantkyaw350,newsmast.social,Music,music,false -minkhantkyaw350,newsmast.social,Sport,sport,false -minkhantkyaw350,newsmast.social,US Sport,us_sport,false -minkhantkyaw350,newsmast.social,Football,football,false -SithuBo,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -SithuBo,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false -SithuBo,newsmast.social,Poverty & Inequality,poverty_inequality,false -SithuBo,newsmast.social,Government & Policy,government_policy,false -SithuBo,newsmast.social,Academia & Research,academia_research,false -SithuBo,newsmast.social,Healthcare,healthcare,false -SithuBo,newsmast.social,Law & Justice,law_justice,false -SithuBo,newsmast.social,Politics,politics,false -SithuBo,newsmast.social,US Politics,us_politics,false -SithuBo,newsmast.social,Environment,environment,false -SithuBo,newsmast.social,Climate change,climate_change,false -SithuBo,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false -SithuBo,newsmast.social,Energy & Pollution,energy_pollution,false -SithuBo,newsmast.social,Activism & Civil Rights,activism_civil_rights,false -SithuBo,newsmast.social,Black Voices,black_voices,false -SithuBo,newsmast.social,Disabled Voices,disabled_voices,false -SithuBo,newsmast.social,Immigrants Rights,immigrants_rights,false -SithuBo,newsmast.social,Indigenous Peoples,indigenous_peoples,false -SithuBo,newsmast.social,LGBTQ+,lgbtq,false -SithuBo,newsmast.social,Women’s Voices,women_voices,false -SithuBo,newsmast.social,Business,business,false -SithuBo,newsmast.social,Markets & Finance,markets_finance,false -SithuBo,newsmast.social,Workers Rights,workers_rights,false -SithuBo,newsmast.social,Technology,technology,false -SithuBo,newsmast.social,Engineering,engineering,false -SithuBo,newsmast.social,Humanities,humanities,false -SithuBo,newsmast.social,Social Sciences,social_sciences,false -SithuBo,newsmast.social,History,history,false -SithuBo,newsmast.social,Philosophy,philosophy,false -SithuBo,newsmast.social,Creative Arts,creative_arts,false -SithuBo,newsmast.social,Food & Drink,food_drink,false -SithuBo,newsmast.social,Humour,humour,false -SithuBo,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false -SithuBo,newsmast.social,Nature & Wildlife,nature_wildlife,false -SithuBo,newsmast.social,Pets,pets,false -SithuBo,newsmast.social,Puzzles,puzzles,false -SithuBo,newsmast.social,Travel,travel,false -SithuBo,newsmast.social,Architecture & Design,architecture_design,false -SithuBo,newsmast.social,Books & Literature,books_literature,false -SithuBo,newsmast.social,Gaming,gaming,false -SithuBo,newsmast.social,Movies,movies,false -SithuBo,newsmast.social,Music,music,false -SithuBo,newsmast.social,Performing Arts,performing_arts,false -SithuBo,newsmast.social,Photography,photography,false -SithuBo,newsmast.social,TV & Radio,tv_radio,false -SithuBo,newsmast.social,Visual Arts,visual_arts,false -jhantytown89,newsmast.social,Academia & Research,academia_research,false -jhantytown89,newsmast.social,Breaking News,breaking_news,false -jhantytown89,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -jhantytown89,newsmast.social,Disabled Voices,disabled_voices,false -jhantytown89,newsmast.social,Government & Policy,government_policy,false -jhantytown89,newsmast.social,Law & Justice,law_justice,false -jhantytown89,newsmast.social,LGBTQ+,lgbtq,false -jhantytown89,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false -jhantytown89,newsmast.social,Journalism & Comment,news_comment_data,false -jhantytown89,newsmast.social,Politics,politics,false -jhantytown89,newsmast.social,Programming,programming,false -jhantytown89,newsmast.social,Social Media,social_media,false -jhantytown89,newsmast.social,Social Sciences,social_sciences,false -jhantytown89,newsmast.social,US Politics,us_politics,false -jhantytown89,newsmast.social,Technology,technology,true -kirukarki,mastodon.social,Breaking News,breaking_news,false -multimodal,newsmast.social,LGBTQ+,lgbtq,false -multimodal,newsmast.social,Philosophy,philosophy,false -multimodal,newsmast.social,Science,science,false -ryan_kyn,mastodon.social,Social Media,social_media,false -ryan_kyn,mastodon.social,Ukraine Invasion,ukraine_invasion,false -ryan_kyn,mastodon.social,Weather,weather,false -jamal_ppt324,mastodon.social,Democracy & Human Rights,democracy_human_rights,false -multimodal,newsmast.social,Social Sciences,social_sciences,false -multimodal,newsmast.social,Disabled Voices,disabled_voices,true -kirukarki,mastodon.social,Journalism & Comment,news_comment_data,true -jmcastagnetto,mastodon.social,History,history,false -jmcastagnetto,mastodon.social,Humanities,humanities,false -jmcastagnetto,mastodon.social,"Hunger, Disease & Water",hunger_disease_water,false -jmcastagnetto,mastodon.social,Law & Justice,law_justice,false -jamal_ppt324,mastodon.social,Biodiversity & Rewilding,biodiversity_rewilding,false -jamal_ppt324,mastodon.social,Climate change,climate_change,false -jamal_ppt324,mastodon.social,Energy & Pollution,energy_pollution,false -jamal_ppt324,mastodon.social,"Hunger, Disease & Water",hunger_disease_water,false -jamal_ppt324,mastodon.social,Poverty & Inequality,poverty_inequality,false -weston,techhub.social,Breaking News,breaking_news,true -yemyatthu_cs,mastodon.social,Architecture & Design,architecture_design,false -yemyatthu_cs,mastodon.social,Books & Literature,books_literature,false -yemyatthu_cs,mastodon.social,Creative Arts,creative_arts,false -yemyatthu_cs,mastodon.social,Food & Drink,food_drink,false -yemyatthu_cs,mastodon.social,Football,football,false -yemyatthu_cs,mastodon.social,Gaming,gaming,false -yemyatthu_cs,mastodon.social,Humour,humour,false -yemyatthu_cs,mastodon.social,Mental Health & Wellbeing,mental_health_wellbeing,false -yemyatthu_cs,mastodon.social,Movies,movies,false -yemyatthu_cs,mastodon.social,Music,music,false -yemyatthu_cs,mastodon.social,Nature & Wildlife,nature_wildlife,false -yemyatthu_cs,mastodon.social,Performing Arts,performing_arts,false -yemyatthu_cs,mastodon.social,Pets,pets,false -yemyatthu_cs,mastodon.social,Photography,photography,false -yemyatthu_cs,mastodon.social,Puzzles,puzzles,false -yemyatthu_cs,mastodon.social,Sport,sport,false -yemyatthu_cs,mastodon.social,Travel,travel,false -yemyatthu_cs,mastodon.social,US Sport,us_sport,false -yemyatthu_cs,mastodon.social,Visual Arts,visual_arts,false -yemyatthu_cs,mastodon.social,TV & Radio,tv_radio,true -Samfazakerly,mastodon.social,Biodiversity & Rewilding,biodiversity_rewilding,false -Samfazakerly,mastodon.social,Climate change,climate_change,false -Samfazakerly,mastodon.social,Nature & Wildlife,nature_wildlife,false -Samfazakerly,mastodon.social,Journalism & Comment,news_comment_data,false -Samfazakerly,mastodon.social,Social Media,social_media,true -ZeroTwo02,mastodon.social,Journalism & Comment,news_comment_data,false -ZeroTwo02,mastodon.social,Social Media,social_media,false -ZeroTwo02,mastodon.social,Ukraine Invasion,ukraine_invasion,false -ZeroTwo02,mastodon.social,Weather,weather,false -ZeroTwo02,mastodon.social,Breaking News,breaking_news,true -kirukarki,mastodon.social,Social Media,social_media,false -kirukarki,mastodon.social,Ukraine Invasion,ukraine_invasion,false -kirukarki,mastodon.social,Weather,weather,false -saskia_newsmast,mastodon.social,Science,science,false -saskia_newsmast,mastodon.social,Sport,sport,false -saskia_newsmast,mastodon.social,Weather,weather,false -saskia_newsmast,mastodon.social,Journalism & Comment,news_comment_data,true -saskia_newsmast,mastodon.social,LGBTQ+,lgbtq,false -saskia_newsmast,mastodon.social,Space,space,false -weston,techhub.social,Gaming,gaming,false -weston,techhub.social,Government & Policy,government_policy,false -weston,techhub.social,Space,space,false -weston,techhub.social,Technology,technology,false -samfazakerly,mas.to,Architecture & Design,architecture_design,false -samfazakerly,mas.to,Democracy & Human Rights,democracy_human_rights,false -samfazakerly,mas.to,Humanities,humanities,false -samfazakerly,mas.to,Philosophy,philosophy,false -samfazakerly,mas.to,Photography,photography,false -samfazakerly,mas.to,Visual Arts,visual_arts,true -aydnkocek,newsmast.social,Academia & Research,academia_research,false -aydnkocek,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -aydnkocek,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false -aydnkocek,newsmast.social,Indigenous Peoples,indigenous_peoples,false -aydnkocek,newsmast.social,Politics,politics,true -mastertango,toots.tangoit.net,AI,ai,false -mastertango,toots.tangoit.net,Engineering,engineering,false -mastertango,toots.tangoit.net,Journalism & Comment,news_comment_data,false -ryan_kyn,mastodon.social,Breaking News,breaking_news,false -ryan_kyn,mastodon.social,Journalism & Comment,news_comment_data,true -jamal_ppt324,mastodon.social,Environment,environment,true -IlCava,mastodon.uno,Performing Arts,performing_arts,false -IlCava,mastodon.uno,Pets,pets,false -jmcastagnetto,mastodon.social,Mathematics,mathematics,false -jmcastagnetto,mastodon.social,Movies,movies,false -jmcastagnetto,mastodon.social,Music,music,false -Dynamicallydisabled,spore.social,Academia & Research,academia_research,false -Dynamicallydisabled,spore.social,Activism & Civil Rights,activism_civil_rights,false -Dynamicallydisabled,spore.social,AI,ai,false -Dynamicallydisabled,spore.social,Architecture & Design,architecture_design,false -Dynamicallydisabled,spore.social,Biodiversity & Rewilding,biodiversity_rewilding,false -Dynamicallydisabled,spore.social,Biology,biology,false -Dynamicallydisabled,spore.social,Black Voices,black_voices,false -Dynamicallydisabled,spore.social,Books & Literature,books_literature,false -Dynamicallydisabled,spore.social,Chemistry,chemistry,false -Dynamicallydisabled,spore.social,Climate change,climate_change,false -Dynamicallydisabled,spore.social,Creative Arts,creative_arts,false -Dynamicallydisabled,spore.social,Democracy & Human Rights,democracy_human_rights,false -Dynamicallydisabled,spore.social,Energy & Pollution,energy_pollution,false -Dynamicallydisabled,spore.social,Environment,environment,false -Dynamicallydisabled,spore.social,Food & Drink,food_drink,false -Dynamicallydisabled,spore.social,Gaming,gaming,false -Dynamicallydisabled,spore.social,Healthcare,healthcare,false -Dynamicallydisabled,spore.social,History,history,false -Dynamicallydisabled,spore.social,Humanities,humanities,false -Dynamicallydisabled,spore.social,"Hunger, Disease & Water",hunger_disease_water,false -Dynamicallydisabled,spore.social,Immigrants Rights,immigrants_rights,false -Dynamicallydisabled,spore.social,Indigenous Peoples,indigenous_peoples,false -Dynamicallydisabled,spore.social,Law & Justice,law_justice,false -Dynamicallydisabled,spore.social,LGBTQ+,lgbtq,false -Dynamicallydisabled,spore.social,Mathematics,mathematics,false -Dynamicallydisabled,spore.social,Mental Health & Wellbeing,mental_health_wellbeing,false -Dynamicallydisabled,spore.social,Movies,movies,false -Dynamicallydisabled,spore.social,Music,music,false -Dynamicallydisabled,spore.social,Nature & Wildlife,nature_wildlife,false -Dynamicallydisabled,spore.social,Journalism & Comment,news_comment_data,false -Dynamicallydisabled,spore.social,Performing Arts,performing_arts,false -Dynamicallydisabled,spore.social,Pets,pets,false -Dynamicallydisabled,spore.social,Philosophy,philosophy,false -Dynamicallydisabled,spore.social,Photography,photography,false -Dynamicallydisabled,spore.social,Physics,physics,false -Dynamicallydisabled,spore.social,Poverty & Inequality,poverty_inequality,false -Dynamicallydisabled,spore.social,Puzzles,puzzles,false -Dynamicallydisabled,spore.social,Science,science,false -Dynamicallydisabled,spore.social,Social Media,social_media,false -Dynamicallydisabled,spore.social,Social Sciences,social_sciences,false -Dynamicallydisabled,spore.social,Space,space,false -Dynamicallydisabled,spore.social,Technology,technology,false -Dynamicallydisabled,spore.social,TV & Radio,tv_radio,false -Dynamicallydisabled,spore.social,Visual Arts,visual_arts,false -Dynamicallydisabled,spore.social,Weather,weather,false -Dynamicallydisabled,spore.social,Women’s Voices,women_voices,false -Dynamicallydisabled,spore.social,Workers Rights,workers_rights,false -Dynamicallydisabled,spore.social,Disabled Voices,disabled_voices,true -jmcastagnetto,mastodon.social,Philosophy,philosophy,false -jmcastagnetto,mastodon.social,Physics,physics,false -jmcastagnetto,mastodon.social,Politics,politics,false -jmcastagnetto,mastodon.social,Poverty & Inequality,poverty_inequality,false -jmcastagnetto,mastodon.social,Programming,programming,false -jmcastagnetto,mastodon.social,Science,science,false -jmcastagnetto,mastodon.social,Social Sciences,social_sciences,false -jmcastagnetto,mastodon.social,Space,space,false -jmcastagnetto,mastodon.social,Technology,technology,false -jmcastagnetto,mastodon.social,Visual Arts,visual_arts,false -jmcastagnetto,mastodon.social,Academia & Research,academia_research,true -IlCava,mastodon.uno,Photography,photography,false -IlCava,mastodon.uno,Physics,physics,false -bjh,sueden.social,Visual Arts,visual_arts,false -Kingfisher,universeodon.com,Books & Literature,books_literature,false -ravi101,newsmast.social,AI,ai,false -ravi101,newsmast.social,Business,business,false -ravi101,newsmast.social,Markets & Finance,markets_finance,false -trezzer,social.linux.pizza,Books & Literature,books_literature,false -ravi101,newsmast.social,Science,science,false -trezzer,social.linux.pizza,Democracy & Human Rights,democracy_human_rights,false -trezzer,social.linux.pizza,Disabled Voices,disabled_voices,false -trezzer,social.linux.pizza,Gaming,gaming,false -trezzer,social.linux.pizza,Humanities,humanities,false -ravi101,newsmast.social,Technology,technology,true -mastertango,toots.tangoit.net,Programming,programming,false -mastertango,toots.tangoit.net,Social Media,social_media,false -mastertango,toots.tangoit.net,Technology,technology,false -mastertango,toots.tangoit.net,Ukraine Invasion,ukraine_invasion,false -mastertango,toots.tangoit.net,Weather,weather,false -mastertango,toots.tangoit.net,Breaking News,breaking_news,true -elperronegro,shmg.online,Democracy & Human Rights,democracy_human_rights,false -elperronegro,shmg.online,Food & Drink,food_drink,false -elperronegro,shmg.online,Football,football,false -elperronegro,shmg.online,"Hunger, Disease & Water",hunger_disease_water,false -follow,twitter.social,Academia & Research,academia_research,false -follow,twitter.social,Activism & Civil Rights,activism_civil_rights,false -follow,twitter.social,AI,ai,false -elperronegro,shmg.online,Technology,technology,false -elperronegro,shmg.online,Travel,travel,false -elperronegro,shmg.online,Nature & Wildlife,nature_wildlife,true -follow,twitter.social,Architecture & Design,architecture_design,false -trezzer,social.linux.pizza,Movies,movies,false -trezzer,social.linux.pizza,Journalism & Comment,news_comment_data,false -_hellogoodbye,mastodon.social,Black Voices,black_voices,false -_hellogoodbye,mastodon.social,Disabled Voices,disabled_voices,false -_hellogoodbye,mastodon.social,Immigrants Rights,immigrants_rights,false -_hellogoodbye,mastodon.social,Indigenous Peoples,indigenous_peoples,false -_hellogoodbye,mastodon.social,LGBTQ+,lgbtq,false -_hellogoodbye,mastodon.social,Women’s Voices,women_voices,false -_hellogoodbye,mastodon.social,Activism & Civil Rights,activism_civil_rights,true -trezzer,social.linux.pizza,Photography,photography,false -trezzer,social.linux.pizza,Poverty & Inequality,poverty_inequality,false -trezzer,social.linux.pizza,Science,science,false -trezzer,social.linux.pizza,Technology,technology,false -follow,twitter.social,Biodiversity & Rewilding,biodiversity_rewilding,false -follow,twitter.social,Biology,biology,false -follow,twitter.social,Black Voices,black_voices,false -follow,twitter.social,Books & Literature,books_literature,false -follow,twitter.social,Breaking News,breaking_news,false -follow,twitter.social,Business,business,false -follow,twitter.social,Chemistry,chemistry,false -follow,twitter.social,Climate change,climate_change,false -follow,twitter.social,Creative Arts,creative_arts,false -follow,twitter.social,Democracy & Human Rights,democracy_human_rights,false -follow,twitter.social,Disabled Voices,disabled_voices,false -follow,twitter.social,Energy & Pollution,energy_pollution,false -f_johnson,historians.social,Activism & Civil Rights,activism_civil_rights,false -f_johnson,historians.social,Biodiversity & Rewilding,biodiversity_rewilding,false -f_johnson,historians.social,Black Voices,black_voices,false -f_johnson,historians.social,Climate change,climate_change,false -f_johnson,historians.social,Democracy & Human Rights,democracy_human_rights,false -f_johnson,historians.social,Disabled Voices,disabled_voices,false -f_johnson,historians.social,Energy & Pollution,energy_pollution,false -f_johnson,historians.social,Environment,environment,false -f_johnson,historians.social,Government & Policy,government_policy,false -f_johnson,historians.social,"Hunger, Disease & Water",hunger_disease_water,false -f_johnson,historians.social,Immigrants Rights,immigrants_rights,false -f_johnson,historians.social,Indigenous Peoples,indigenous_peoples,false -f_johnson,historians.social,Movies,movies,false -f_johnson,historians.social,Journalism & Comment,news_comment_data,false -f_johnson,historians.social,Politics,politics,false -f_johnson,historians.social,Poverty & Inequality,poverty_inequality,false -f_johnson,historians.social,Ukraine Invasion,ukraine_invasion,false -f_johnson,historians.social,US Politics,us_politics,false -f_johnson,historians.social,Visual Arts,visual_arts,false -f_johnson,historians.social,Women’s Voices,women_voices,false -f_johnson,historians.social,History,history,true -kirukarki2,newsmast.social,Breaking News,breaking_news,false -chrisbrummel,hachyderm.io,Government & Policy,government_policy,false -chrisbrummel,hachyderm.io,Law & Justice,law_justice,false -chrisbrummel,hachyderm.io,Movies,movies,false -chrisbrummel,hachyderm.io,Politics,politics,false -chrisbrummel,hachyderm.io,Technology,technology,false -chrisbrummel,hachyderm.io,Architecture & Design,architecture_design,true -JGirCo,mstdn.social,Mathematics,mathematics,false -JGirCo,mstdn.social,Movies,movies,false -JGirCo,mstdn.social,Performing Arts,performing_arts,false -JGirCo,mstdn.social,Programming,programming,false -JGirCo,mstdn.social,Engineering,engineering,true -lazy_runner,lazy_runer@mastodon.social,AI,ai,false -lazy_runner,lazy_runer@mastodon.social,Democracy & Human Rights,democracy_human_rights,false -lazy_runner,lazy_runer@mastodon.social,Engineering,engineering,false -lazy_runner,lazy_runer@mastodon.social,Poverty & Inequality,poverty_inequality,false -lazy_runner,lazy_runer@mastodon.social,Programming,programming,false -lazy_runner,lazy_runer@mastodon.social,Science,science,false -lazy_runner,lazy_runer@mastodon.social,Space,space,false -lazy_runner,lazy_runer@mastodon.social,Technology,technology,false -lazy_runner,lazy_runer@mastodon.social,Ukraine Invasion,ukraine_invasion,false -lazy_runner,lazy_runer@mastodon.social,Breaking News,breaking_news,true -lazy_runner,lazy_runer@mastodon.social,Movies,movies,false -lazy_runner,lazy_runer@mastodon.social,Gaming,gaming,false -lazy_runner,lazy_runer@mastodon.social,TV & Radio,tv_radio,false -lazy_runner,lazy_runer@mastodon.social,Humour,humour,false -lazy_runner,lazy_runer@mastodon.social,Puzzles,puzzles,false -nr,mastodon.scot,Climate change,climate_change,false -nr,mastodon.scot,Environment,environment,false -nr,mastodon.scot,Government & Policy,government_policy,false -nr,mastodon.scot,Politics,politics,false -nr,mastodon.scot,Breaking News,breaking_news,true -trezzer,social.linux.pizza,Ukraine Invasion,ukraine_invasion,false -jelv,mastodon.nl,AI,ai,false -jelv,mastodon.nl,Architecture & Design,architecture_design,false -jelv,mastodon.nl,Biodiversity & Rewilding,biodiversity_rewilding,false -jelv,mastodon.nl,Books & Literature,books_literature,false -jelv,mastodon.nl,Climate change,climate_change,false -jelv,mastodon.nl,Democracy & Human Rights,democracy_human_rights,false -jelv,mastodon.nl,Energy & Pollution,energy_pollution,false -jelv,mastodon.nl,Environment,environment,false -jelv,mastodon.nl,"Hunger, Disease & Water",hunger_disease_water,false -jelv,mastodon.nl,Poverty & Inequality,poverty_inequality,false -jelv,mastodon.nl,Science,science,false -jelv,mastodon.nl,Space,space,false -jelv,mastodon.nl,Technology,technology,false -jelv,mastodon.nl,Programming,programming,true -trezzer,social.linux.pizza,Breaking News,breaking_news,true -IlCava,mastodon.uno,Nature & Wildlife,nature_wildlife,false -IlCava,mastodon.uno,Journalism & Comment,news_comment_data,false -IlCava,mastodon.uno,Performing Arts,performing_arts,false -IlCava,mastodon.uno,Pets,pets,false -IlCava,mastodon.uno,Photography,photography,false -IlCava,mastodon.uno,Physics,physics,false -thedogspaw,mastodon.social,Technology,technology,false -anthonybwilson,mstdn.social,Journalism & Comment,news_comment_data,false -anthonybwilson,mstdn.social,Politics,politics,false -anthonybwilson,mstdn.social,Social Media,social_media,false -anthonybwilson,mstdn.social,Technology,technology,false -anthonybwilson,mstdn.social,Ukraine Invasion,ukraine_invasion,false -anthonybwilson,mstdn.social,US Politics,us_politics,false -anthonybwilson,mstdn.social,US Sport,us_sport,false -anthonybwilson,mstdn.social,Weather,weather,false -anthonybwilson,mstdn.social,Breaking News,breaking_news,true -thedogspaw,mastodon.social,Books & Literature,books_literature,false -JAVPPT,newsmast.social,Breaking News,breaking_news,false -WetHat,fosstodon.org,AI,ai,false -IlCava,mastodon.uno,Politics,politics,false -IlCava,mastodon.uno,Poverty & Inequality,poverty_inequality,false -IlCava,mastodon.uno,Programming,programming,false -JAVPPT,newsmast.social,Social Media,social_media,false -nr,mastodon.scot,Activism & Civil Rights,activism_civil_rights,false -nr,mastodon.scot,LGBTQ+,lgbtq,false -nr,mastodon.scot,Humanities,humanities,false -nr,mastodon.scot,Social Sciences,social_sciences,false -nr,mastodon.scot,History,history,false -nr,mastodon.scot,Philosophy,philosophy,false -nr,mastodon.scot,Books & Literature,books_literature,false -nr,mastodon.scot,Photography,photography,false -nr,mastodon.scot,Architecture & Design,architecture_design,false -codrut,mastodon.ie,Breaking News,breaking_news,false -codrut,mastodon.ie,Environment,environment,false -codrut,mastodon.ie,Mental Health & Wellbeing,mental_health_wellbeing,false -codrut,mastodon.ie,Science,science,false -codrut,mastodon.ie,Sport,sport,false -codrut,mastodon.ie,Technology,technology,false -codrut,mastodon.ie,LGBTQ+,lgbtq,true -dave42w,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false -dave42w,newsmast.social,Climate change,climate_change,false -dave42w,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -dave42w,newsmast.social,Energy & Pollution,energy_pollution,false -dave42w,newsmast.social,Poverty & Inequality,poverty_inequality,false -dave42w,newsmast.social,Programming,programming,true -Archnemysis,mastodon.social,Mathematics,mathematics,false -yosoybartsolo,tkz.one,AI,ai,false -yosoybartsolo,tkz.one,Democracy & Human Rights,democracy_human_rights,false -yosoybartsolo,tkz.one,Government & Policy,government_policy,false -yosoybartsolo,tkz.one,"Hunger, Disease & Water",hunger_disease_water,false -yosoybartsolo,tkz.one,Journalism & Comment,news_comment_data,false -yosoybartsolo,tkz.one,Politics,politics,false -yosoybartsolo,tkz.one,Poverty & Inequality,poverty_inequality,false -yosoybartsolo,tkz.one,Programming,programming,false -yosoybartsolo,tkz.one,Philosophy,philosophy,true -muchanchoasado,tkz.one,Biology,biology,false -muchanchoasado,tkz.one,Food & Drink,food_drink,false -muchanchoasado,tkz.one,Gaming,gaming,false -muchanchoasado,tkz.one,Humour,humour,false -muchanchoasado,tkz.one,Movies,movies,false -muchanchoasado,tkz.one,Performing Arts,performing_arts,false -muchanchoasado,tkz.one,Physics,physics,false -muchanchoasado,tkz.one,Music,music,true -nothing34,newsmast.social,Government & Policy,government_policy,false -nothing34,newsmast.social,Healthcare,healthcare,false -nothing34,newsmast.social,Law & Justice,law_justice,false -nothing34,newsmast.social,Politics,politics,false -nothing34,newsmast.social,US Politics,us_politics,false -nothing34,newsmast.social,Academia & Research,academia_research,true -hoer356,newsmast.social,Biology,biology,false -hoer356,newsmast.social,History,history,false -hoer356,newsmast.social,Humanities,humanities,false -hoer356,newsmast.social,Mathematics,mathematics,false -hoer356,newsmast.social,Philosophy,philosophy,false -hoer356,newsmast.social,Physics,physics,false -hoer356,newsmast.social,Science,science,false -hoer356,newsmast.social,Social Sciences,social_sciences,false -hoer356,newsmast.social,Space,space,false -hoer356,newsmast.social,Chemistry,chemistry,true -abc35,newsmast.social,Academia & Research,academia_research,false -abc35,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -abc35,newsmast.social,Healthcare,healthcare,false -abc35,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false -abc35,newsmast.social,Law & Justice,law_justice,false -abc35,newsmast.social,Politics,politics,false -abc35,newsmast.social,Poverty & Inequality,poverty_inequality,false -abc35,newsmast.social,US Politics,us_politics,false -abc35,newsmast.social,Government & Policy,government_policy,true -roler34,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false -roler34,newsmast.social,Black Voices,black_voices,false -roler34,newsmast.social,Climate change,climate_change,false -roler34,newsmast.social,Disabled Voices,disabled_voices,false -roler34,newsmast.social,Energy & Pollution,energy_pollution,false -roler34,newsmast.social,Environment,environment,false -roler34,newsmast.social,Immigrants Rights,immigrants_rights,false -roler34,newsmast.social,Indigenous Peoples,indigenous_peoples,false -roler34,newsmast.social,LGBTQ+,lgbtq,false -roler34,newsmast.social,Women’s Voices,women_voices,false -roler34,newsmast.social,Activism & Civil Rights,activism_civil_rights,true -dylan_thiam,newsmast.social,AI,ai,false -dylan_thiam,newsmast.social,Biology,biology,false -dylan_thiam,newsmast.social,Space,space,false -dylan_thiam,newsmast.social,Technology,technology,false -dylan_thiam,newsmast.social,Markets & Finance,markets_finance,true -NMFeed_Monitor,mstdn.social,Breaking News,breaking_news,false -NMFeed_Monitor,mstdn.social,Physics,physics,false -NMFeed_Monitor,mstdn.social,Science,science,false -NMFeed_Monitor,mstdn.social,Social Media,social_media,false -NMFeed_Monitor,mstdn.social,Space,space,false -NMFeed_Monitor,mstdn.social,Ukraine Invasion,ukraine_invasion,false -NMFeed_Monitor,mstdn.social,Weather,weather,false -NMFeed_Monitor,mstdn.social,Journalism & Comment,news_comment_data,true -saskia_newsmast,mastodon.social,Gaming,gaming,false -saskia_newsmast,mastodon.social,TV & Radio,tv_radio,false -nwd,mastodon.online,Breaking News,breaking_news,false -nwd,mastodon.online,Journalism & Comment,news_comment_data,false -nwd,mastodon.online,Science,science,false -nwd,mastodon.online,Space,space,false -nwd,mastodon.online,Technology,technology,true -mikeffarrell,mas.to,Democracy & Human Rights,democracy_human_rights,false -mikeffarrell,mas.to,Environment,environment,false -mikeffarrell,mas.to,Law & Justice,law_justice,false -mikeffarrell,mas.to,Poverty & Inequality,poverty_inequality,false -mikeffarrell,mas.to,US Sport,us_sport,false -mikeffarrell,mas.to,US Politics,us_politics,true -F_johnson1848,mastodon.social,Biodiversity & Rewilding,biodiversity_rewilding,false -F_johnson1848,mastodon.social,Democracy & Human Rights,democracy_human_rights,false -F_johnson1848,mastodon.social,Energy & Pollution,energy_pollution,false -F_johnson1848,mastodon.social,Environment,environment,false -F_johnson1848,mastodon.social,"Hunger, Disease & Water",hunger_disease_water,false -F_johnson1848,mastodon.social,Journalism & Comment,news_comment_data,false -F_johnson1848,mastodon.social,Poverty & Inequality,poverty_inequality,false -F_johnson1848,mastodon.social,Ukraine Invasion,ukraine_invasion,false -F_johnson1848,mastodon.social,Climate change,climate_change,true -cheeaun,mastodon.social,Breaking News,breaking_news,false -cheeaun,mastodon.social,Engineering,engineering,false -cheeaun,mastodon.social,Food & Drink,food_drink,false -cheeaun,mastodon.social,Programming,programming,false -cheeaun,mastodon.social,Technology,technology,true -K3V1NFLYNN,c.im,Travel,travel,false -K3V1NFLYNN,c.im,Pets,pets,false -K3V1NFLYNN,c.im,Food & Drink,food_drink,false -K3V1NFLYNN,c.im,Nature & Wildlife,nature_wildlife,false -K3V1NFLYNN,c.im,Puzzles,puzzles,false -K3V1NFLYNN,c.im,Humour,humour,false -K3V1NFLYNN,c.im,Mental Health & Wellbeing,mental_health_wellbeing,false -K3V1NFLYNN,c.im,Creative Arts,creative_arts,false -K3V1NFLYNN,c.im,US Politics,us_politics,false -K3V1NFLYNN,c.im,Academia & Research,academia_research,false -K3V1NFLYNN,c.im,Healthcare,healthcare,false -K3V1NFLYNN,c.im,Government & Policy,government_policy,false -K3V1NFLYNN,c.im,Politics,politics,false -K3V1NFLYNN,c.im,Law & Justice,law_justice,false -K3V1NFLYNN,c.im,Ukraine Invasion,ukraine_invasion,false -K3V1NFLYNN,c.im,Social Media,social_media,false -K3V1NFLYNN,c.im,Weather,weather,false -K3V1NFLYNN,c.im,Journalism & Comment,news_comment_data,false -K3V1NFLYNN,c.im,"Hunger, Disease & Water",hunger_disease_water,false -K3V1NFLYNN,c.im,Democracy & Human Rights,democracy_human_rights,false -K3V1NFLYNN,c.im,Poverty & Inequality,poverty_inequality,false -K3V1NFLYNN,c.im,Climate change,climate_change,false -K3V1NFLYNN,c.im,Biodiversity & Rewilding,biodiversity_rewilding,false -K3V1NFLYNN,c.im,Energy & Pollution,energy_pollution,false -K3V1NFLYNN,c.im,Environment,environment,false -K3V1NFLYNN,c.im,Indigenous Peoples,indigenous_peoples,false -K3V1NFLYNN,c.im,Disabled Voices,disabled_voices,false -K3V1NFLYNN,c.im,LGBTQ+,lgbtq,false -K3V1NFLYNN,c.im,Immigrants Rights,immigrants_rights,false -K3V1NFLYNN,c.im,Black Voices,black_voices,false -K3V1NFLYNN,c.im,Women’s Voices,women_voices,false -K3V1NFLYNN,c.im,Activism & Civil Rights,activism_civil_rights,false -K3V1NFLYNN,c.im,Markets & Finance,markets_finance,false -K3V1NFLYNN,c.im,Workers Rights,workers_rights,false -K3V1NFLYNN,c.im,Business,business,false -K3V1NFLYNN,c.im,AI,ai,false -K3V1NFLYNN,c.im,Engineering,engineering,false -K3V1NFLYNN,c.im,Programming,programming,false -K3V1NFLYNN,c.im,Physics,physics,false -K3V1NFLYNN,c.im,Biology,biology,false -K3V1NFLYNN,c.im,Space,space,false -K3V1NFLYNN,c.im,Chemistry,chemistry,false -K3V1NFLYNN,c.im,Technology,technology,false -K3V1NFLYNN,c.im,Mathematics,mathematics,false -K3V1NFLYNN,c.im,Science,science,false -K3V1NFLYNN,c.im,Social Sciences,social_sciences,false -K3V1NFLYNN,c.im,History,history,false -K3V1NFLYNN,c.im,Philosophy,philosophy,false -K3V1NFLYNN,c.im,Humanities,humanities,false -K3V1NFLYNN,c.im,Visual Arts,visual_arts,false -K3V1NFLYNN,c.im,Architecture & Design,architecture_design,false -K3V1NFLYNN,c.im,TV & Radio,tv_radio,false -K3V1NFLYNN,c.im,Books & Literature,books_literature,false -K3V1NFLYNN,c.im,Photography,photography,false -K3V1NFLYNN,c.im,Performing Arts,performing_arts,false -K3V1NFLYNN,c.im,Gaming,gaming,false -K3V1NFLYNN,c.im,Movies,movies,false -K3V1NFLYNN,c.im,Music,music,false -IlCava,mastodon.uno,Politics,politics,false -IlCava,mastodon.uno,Poverty & Inequality,poverty_inequality,false -IlCava,mastodon.uno,Programming,programming,false -IlCava,mastodon.uno,Puzzles,puzzles,false -lilythelonelygirl,hear-me.social,Black Voices,black_voices,false -ecwarner,mastodon.social,Breaking News,breaking_news,false -ecwarner,mastodon.social,LGBTQ+,lgbtq,true -Archnemysis,mastodon.social,Physics,physics,false -Archnemysis,mastodon.social,Space,space,false -Archnemysis,mastodon.social,Technology,technology,false -Archnemysis,mastodon.social,Ukraine Invasion,ukraine_invasion,false -Archnemysis,mastodon.social,US Politics,us_politics,false -Archnemysis,mastodon.social,US Sport,us_sport,false -Archnemysis,mastodon.social,Breaking News,breaking_news,true -90sCraig,pb.craignt.com,Business,business,false -90sCraig,pb.craignt.com,Engineering,engineering,false -90sCraig,pb.craignt.com,Markets & Finance,markets_finance,false -90sCraig,pb.craignt.com,Mathematics,mathematics,false -90sCraig,pb.craignt.com,Physics,physics,false -90sCraig,pb.craignt.com,Programming,programming,false -90sCraig,pb.craignt.com,Science,science,false -90sCraig,pb.craignt.com,Space,space,false -90sCraig,pb.craignt.com,Technology,technology,false -90sCraig,pb.craignt.com,Workers Rights,workers_rights,false -90sCraig,pb.craignt.com,AI,ai,true -spear292000,mastodon.social,Movies,movies,false -spear292000,mastodon.social,Music,music,false -spear292000,mastodon.social,Performing Arts,performing_arts,false -spear292000,mastodon.social,Philosophy,philosophy,false -spear292000,mastodon.social,Photography,photography,false -spear292000,mastodon.social,Programming,programming,false -spear292000,mastodon.social,Technology,technology,false -spear292000,mastodon.social,TV & Radio,tv_radio,false -spear292000,mastodon.social,Visual Arts,visual_arts,false -spear292000,mastodon.social,Gaming,gaming,true -min_thu,newsmast.social,Activism & Civil Rights,activism_civil_rights,false -min_thu,newsmast.social,Black Voices,black_voices,false -min_thu,newsmast.social,Immigrants Rights,immigrants_rights,false -min_thu,newsmast.social,Indigenous Peoples,indigenous_peoples,false -min_thu,newsmast.social,LGBTQ+,lgbtq,false -min_thu,newsmast.social,Women’s Voices,women_voices,false -min_thu,newsmast.social,Disabled Voices,disabled_voices,true -lightonflux,mastodon.social,AI,ai,false -lightonflux,mastodon.social,Democracy & Human Rights,democracy_human_rights,false -lightonflux,mastodon.social,"Hunger, Disease & Water",hunger_disease_water,false -lightonflux,mastodon.social,Journalism & Comment,news_comment_data,false -lightonflux,mastodon.social,Poverty & Inequality,poverty_inequality,false -lightonflux,mastodon.social,Technology,technology,false -lightonflux,mastodon.social,Ukraine Invasion,ukraine_invasion,true -davetechg,newsmast.social,AI,ai,false -davetechg,newsmast.social,Business,business,false -davetechg,newsmast.social,Engineering,engineering,false -davetechg,newsmast.social,Markets & Finance,markets_finance,false -davetechg,newsmast.social,Technology,technology,true -ecwarner,mastodon.social,AI,ai,false -ecwarner,mastodon.social,Science,science,false -ecwarner,mastodon.social,Technology,technology,false -eljhkrr,gumzo.africa,Democracy & Human Rights,democracy_human_rights,false -eljhkrr,gumzo.africa,Journalism & Comment,news_comment_data,false -eljhkrr,gumzo.africa,Poverty & Inequality,poverty_inequality,false -eljhkrr,gumzo.africa,Social Media,social_media,false -eljhkrr,gumzo.africa,Ukraine Invasion,ukraine_invasion,false -eljhkrr,gumzo.africa,Weather,weather,false -eljhkrr,gumzo.africa,Breaking News,breaking_news,true -arunshah240,mastodon.social,Technology,technology,true -djape11,newsmast.social,AI,ai,false -djape11,newsmast.social,Breaking News,breaking_news,false -djape11,newsmast.social,Climate change,climate_change,false -djape11,newsmast.social,Food & Drink,food_drink,false -djape11,newsmast.social,Markets & Finance,markets_finance,false -K3V1NFLYNN,c.im,Sport,sport,false -K3V1NFLYNN,c.im,US Sport,us_sport,false -K3V1NFLYNN,c.im,Football,football,false -IlCava,mastodon.uno,Social Media,social_media,false -IlCava,mastodon.uno,Space,space,false -WetHat,fosstodon.org,Biology,biology,false -WetHat,fosstodon.org,Chemistry,chemistry,false -WetHat,fosstodon.org,Engineering,engineering,false -JackPine,ohai.social,Biology,biology,false -JackPine,ohai.social,Chemistry,chemistry,false -JackPine,ohai.social,Engineering,engineering,false -JackPine,ohai.social,Mathematics,mathematics,false -JackPine,ohai.social,Journalism & Comment,news_comment_data,false -JackPine,ohai.social,Physics,physics,false -JackPine,ohai.social,Science,science,false -JackPine,ohai.social,Space,space,false -JackPine,ohai.social,Technology,technology,false -JackPine,ohai.social,Ukraine Invasion,ukraine_invasion,false -JackPine,ohai.social,Weather,weather,false -JackPine,ohai.social,Breaking News,breaking_news,true -K3V1NFLYNN,c.im,Breaking News,breaking_news,true -box464,mastodon.social,AI,ai,false -box464,mastodon.social,Creative Arts,creative_arts,false -box464,mastodon.social,Humour,humour,false -box464,mastodon.social,Pets,pets,false -box464,mastodon.social,Programming,programming,false -box464,mastodon.social,Travel,travel,false -box464,mastodon.social,TV & Radio,tv_radio,false -box464,mastodon.social,Technology,technology,true -drdrowland,fediscience.org,AI,ai,false -drdrowland,fediscience.org,Democracy & Human Rights,democracy_human_rights,false -drdrowland,fediscience.org,Engineering,engineering,false -drdrowland,fediscience.org,Programming,programming,false -drdrowland,fediscience.org,Technology,technology,false -drdrowland,fediscience.org,Physics,physics,true -Vijayvaradharaj,mastodon.social,Technology,technology,true -sithu,mastodon.social,Creative Arts,creative_arts,false -sithu,mastodon.social,Food & Drink,food_drink,false -thejustinto,newsmast.social,AI,ai,false -thejustinto,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false -thejustinto,newsmast.social,Biology,biology,false -thejustinto,newsmast.social,Breaking News,breaking_news,false -thejustinto,newsmast.social,Chemistry,chemistry,false -thejustinto,newsmast.social,Climate change,climate_change,false -thejustinto,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -thejustinto,newsmast.social,Energy & Pollution,energy_pollution,false -thejustinto,newsmast.social,Environment,environment,false -thejustinto,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false -thejustinto,newsmast.social,Mathematics,mathematics,false -thejustinto,newsmast.social,Journalism & Comment,news_comment_data,false -thejustinto,newsmast.social,Physics,physics,false -thejustinto,newsmast.social,Poverty & Inequality,poverty_inequality,false -thejustinto,newsmast.social,Programming,programming,false -thejustinto,newsmast.social,Science,science,false -thejustinto,newsmast.social,Engineering,engineering,true -sithu,mastodon.social,Humour,humour,false -sithu,mastodon.social,Mental Health & Wellbeing,mental_health_wellbeing,false -sithu,mastodon.social,Pets,pets,false -sithu,mastodon.social,Puzzles,puzzles,false -sithu,mastodon.social,Travel,travel,false -sithu,mastodon.social,Nature & Wildlife,nature_wildlife,true -90sCraig,pb.craignt.com,Movies,movies,false -thedogspaw,mastodon.social,Breaking News,breaking_news,false -miroslavglavic,newsmast.social,Government & Policy,government_policy,false -miroslavglavic,newsmast.social,Law & Justice,law_justice,false -miroslavglavic,newsmast.social,Journalism & Comment,news_comment_data,false -miroslavglavic,newsmast.social,Weather,weather,false -miroslavglavic,newsmast.social,Breaking News,breaking_news,true -simonwood,mastodon.social,Government & Policy,government_policy,false -simonwood,mastodon.social,Movies,movies,false -simonwood,mastodon.social,Photography,photography,false -simonwood,mastodon.social,TV & Radio,tv_radio,false -simonwood,mastodon.social,Technology,technology,true -eljhkrr,gumzo.africa,Space,space,false -eljhkrr,gumzo.africa,Chemistry,chemistry,false -eljhkrr,gumzo.africa,Mathematics,mathematics,false -eljhkrr,gumzo.africa,Science,science,false -djape11,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false -djape11,newsmast.social,Travel,travel,false -djape11,newsmast.social,Technology,technology,true -vincentaujapon,social.4f9e1738.ignorelist.com,AI,ai,false -vincentaujapon,social.4f9e1738.ignorelist.com,Architecture & Design,architecture_design,false -vincentaujapon,social.4f9e1738.ignorelist.com,Climate change,climate_change,false -vincentaujapon,social.4f9e1738.ignorelist.com,Engineering,engineering,false -vincentaujapon,social.4f9e1738.ignorelist.com,Photography,photography,false -vincentaujapon,social.4f9e1738.ignorelist.com,Programming,programming,false -vincentaujapon,social.4f9e1738.ignorelist.com,Science,science,false -vincentaujapon,social.4f9e1738.ignorelist.com,Space,space,false -vincentaujapon,social.4f9e1738.ignorelist.com,Ukraine Invasion,ukraine_invasion,false -vincentaujapon,social.4f9e1738.ignorelist.com,US Politics,us_politics,false -vincentaujapon,social.4f9e1738.ignorelist.com,Breaking News,breaking_news,true -tritonforcex,mastodon.social,Breaking News,breaking_news,false -tritonforcex,mastodon.social,Food & Drink,food_drink,false -tritonforcex,mastodon.social,Gaming,gaming,false -tritonforcex,mastodon.social,Humour,humour,false -tritonforcex,mastodon.social,Journalism & Comment,news_comment_data,false -tritonforcex,mastodon.social,Politics,politics,false -tritonforcex,mastodon.social,Technology,technology,false -tritonforcex,mastodon.social,Ukraine Invasion,ukraine_invasion,false -tritonforcex,mastodon.social,Weather,weather,false -thejustinto,newsmast.social,Social Media,social_media,false -thejustinto,newsmast.social,Space,space,false -thejustinto,newsmast.social,Technology,technology,false -thejustinto,newsmast.social,Ukraine Invasion,ukraine_invasion,false -thejustinto,newsmast.social,Weather,weather,false -diggincrudetruestories,mastodon.social,AI,ai,false -diggincrudetruestories,mastodon.social,Engineering,engineering,false -diggincrudetruestories,mastodon.social,Movies,movies,false -8awaffle,hachyderm.io,Engineering,engineering,false -equaton,mastodon.online,Breaking News,breaking_news,false -equaton,mastodon.online,Journalism & Comment,news_comment_data,false -mayel,sunbeam.city,Academia & Research,academia_research,false -mayel,sunbeam.city,Breaking News,breaking_news,false -mayel,sunbeam.city,Democracy & Human Rights,democracy_human_rights,false -mayel,sunbeam.city,Social Media,social_media,false -mayel,sunbeam.city,Programming,programming,true -equaton,mastodon.online,Science,science,false -equaton,mastodon.online,Social Media,social_media,false -equaton,mastodon.online,Technology,technology,true -8awaffle,hachyderm.io,Science,science,false -diggincrudetruestories,mastodon.social,Music,music,false -diggincrudetruestories,mastodon.social,Performing Arts,performing_arts,false -IlCava,mastodon.uno,Puzzles,puzzles,false -spinopsys,aus.social,AI,ai,false -spinopsys,aus.social,Democracy & Human Rights,democracy_human_rights,false -frsterm,sueden.social,Biology,biology,false -frsterm,sueden.social,Democracy & Human Rights,democracy_human_rights,false -frsterm,sueden.social,Engineering,engineering,false -frsterm,sueden.social,Journalism & Comment,news_comment_data,false -frsterm,sueden.social,Physics,physics,false -frsterm,sueden.social,Politics,politics,false -frsterm,sueden.social,Science,science,false -frsterm,sueden.social,Space,space,false -frsterm,sueden.social,US Politics,us_politics,false -frsterm,sueden.social,Technology,technology,true -spinopsys,aus.social,"Hunger, Disease & Water",hunger_disease_water,false -spinopsys,aus.social,Poverty & Inequality,poverty_inequality,false -spinopsys,aus.social,Sport,sport,false -spinopsys,aus.social,Technology,technology,true -mapache,hachyderm.io,AI,ai,false -mapache,hachyderm.io,Engineering,engineering,false -mapache,hachyderm.io,Programming,programming,false -mapache,hachyderm.io,US Politics,us_politics,false -mapache,hachyderm.io,Technology,technology,true -guidostevens,mastodon.green,AI,ai,false -guidostevens,mastodon.green,Biodiversity & Rewilding,biodiversity_rewilding,false -guidostevens,mastodon.green,Energy & Pollution,energy_pollution,false -guidostevens,mastodon.green,Engineering,engineering,false -guidostevens,mastodon.green,Environment,environment,false -guidostevens,mastodon.green,History,history,false -guidostevens,mastodon.green,Humanities,humanities,false -guidostevens,mastodon.green,Philosophy,philosophy,false -guidostevens,mastodon.green,Programming,programming,false -guidostevens,mastodon.green,Social Sciences,social_sciences,false -guidostevens,mastodon.green,Technology,technology,false -guidostevens,mastodon.green,Climate change,climate_change,true -bobstarr,mastodon.social,Government & Policy,government_policy,false -bobstarr,mastodon.social,Journalism & Comment,news_comment_data,false -bobstarr,mastodon.social,Politics,politics,false -bobstarr,mastodon.social,Technology,technology,false -bobstarr,mastodon.social,Breaking News,breaking_news,true -Theblueone,mastodon.social,Academia & Research,academia_research,false -Theblueone,mastodon.social,Books & Literature,books_literature,false -Theblueone,mastodon.social,Climate change,climate_change,false -Theblueone,mastodon.social,Energy & Pollution,energy_pollution,false -Theblueone,mastodon.social,History,history,false -Theblueone,mastodon.social,Law & Justice,law_justice,false -Theblueone,mastodon.social,Mental Health & Wellbeing,mental_health_wellbeing,false -Theblueone,mastodon.social,Music,music,false -Theblueone,mastodon.social,Journalism & Comment,news_comment_data,false -Theblueone,mastodon.social,Photography,photography,false -Theblueone,mastodon.social,Physics,physics,false -Theblueone,mastodon.social,Politics,politics,false -Theblueone,mastodon.social,Poverty & Inequality,poverty_inequality,false -Theblueone,mastodon.social,Science,science,false -Theblueone,mastodon.social,Social Sciences,social_sciences,false -Theblueone,mastodon.social,Space,space,false -Theblueone,mastodon.social,Technology,technology,false -Theblueone,mastodon.social,Breaking News,breaking_news,true -Tombo,mstdn.ca,Academia & Research,academia_research,false -Tombo,mstdn.ca,Activism & Civil Rights,activism_civil_rights,false -Tombo,mstdn.ca,AI,ai,false -Tombo,mstdn.ca,Biodiversity & Rewilding,biodiversity_rewilding,false -Tombo,mstdn.ca,Biology,biology,false -Tombo,mstdn.ca,Breaking News,breaking_news,false -Tombo,mstdn.ca,Chemistry,chemistry,false -Tombo,mstdn.ca,Climate change,climate_change,false -Tombo,mstdn.ca,Energy & Pollution,energy_pollution,false -Tombo,mstdn.ca,Engineering,engineering,false -Tombo,mstdn.ca,Environment,environment,false -Tombo,mstdn.ca,Government & Policy,government_policy,false -Tombo,mstdn.ca,Healthcare,healthcare,false -Tombo,mstdn.ca,History,history,false -Tombo,mstdn.ca,Humanities,humanities,false -Tombo,mstdn.ca,"Hunger, Disease & Water",hunger_disease_water,false -Tombo,mstdn.ca,Indigenous Peoples,indigenous_peoples,false -Tombo,mstdn.ca,Law & Justice,law_justice,false -Tombo,mstdn.ca,Mathematics,mathematics,false -Tombo,mstdn.ca,Journalism & Comment,news_comment_data,false -Tombo,mstdn.ca,Philosophy,philosophy,false -Tombo,mstdn.ca,Physics,physics,false -Tombo,mstdn.ca,Politics,politics,false -Tombo,mstdn.ca,Poverty & Inequality,poverty_inequality,false -Tombo,mstdn.ca,Democracy & Human Rights,democracy_human_rights,true -thedogspaw,mastodon.social,Biology,biology,false -Theblueone,mastodon.social,US Politics,us_politics,false -Theblueone,mastodon.social,Visual Arts,visual_arts,false -diggincrudetruestories,mastodon.social,Photography,photography,false -diggincrudetruestories,mastodon.social,Programming,programming,false -diggincrudetruestories,mastodon.social,Space,space,false -8awaffle,hachyderm.io,Space,space,false -8awaffle,hachyderm.io,Technology,technology,false -8awaffle,hachyderm.io,Breaking News,breaking_news,true -maurofmf,mastodon.scot,AI,ai,false -maurofmf,mastodon.scot,Climate change,climate_change,false -maurofmf,mastodon.scot,Energy & Pollution,energy_pollution,false -maurofmf,mastodon.scot,Environment,environment,false -maurofmf,mastodon.scot,Football,football,false -maurofmf,mastodon.scot,Technology,technology,false -maurofmf,mastodon.scot,Programming,programming,true -IlCava,mastodon.uno,Sport,sport,false -IlCava,mastodon.uno,Technology,technology,false -IlCava,mastodon.uno,Travel,travel,false -drizzly_august,newsmast.social,Engineering,engineering,false -drizzly_august,newsmast.social,Government & Policy,government_policy,false -drizzly_august,newsmast.social,Law & Justice,law_justice,false -drizzly_august,newsmast.social,Poverty & Inequality,poverty_inequality,false -drizzly_august,newsmast.social,US Politics,us_politics,false -drizzly_august,newsmast.social,Technology,technology,true -lilythelonelygirl,hear-me.social,Disabled Voices,disabled_voices,false -lilythelonelygirl,hear-me.social,History,history,false -lilythelonelygirl,hear-me.social,Humanities,humanities,false -lilythelonelygirl,hear-me.social,Immigrants Rights,immigrants_rights,false -smalls,infosec.exchange,AI,ai,false -smalls,infosec.exchange,Biology,biology,false -smalls,infosec.exchange,Breaking News,breaking_news,false -smalls,infosec.exchange,Chemistry,chemistry,false -smalls,infosec.exchange,Engineering,engineering,false -smalls,infosec.exchange,History,history,false -smalls,infosec.exchange,Humanities,humanities,false -smalls,infosec.exchange,Mathematics,mathematics,false -smalls,infosec.exchange,Journalism & Comment,news_comment_data,false -smalls,infosec.exchange,Philosophy,philosophy,false -smalls,infosec.exchange,Physics,physics,false -smalls,infosec.exchange,Programming,programming,false -smalls,infosec.exchange,Science,science,false -smalls,infosec.exchange,Social Media,social_media,false -smalls,infosec.exchange,Social Sciences,social_sciences,false -smalls,infosec.exchange,Space,space,false -smalls,infosec.exchange,Ukraine Invasion,ukraine_invasion,false -smalls,infosec.exchange,Weather,weather,false -smalls,infosec.exchange,Technology,technology,true -tnypxl,mstdn.social,Academia & Research,academia_research,false -tnypxl,mstdn.social,AI,ai,false -latif,newsmast.social,AI,ai,false -latif,newsmast.social,Engineering,engineering,false -latif,newsmast.social,Humanities,humanities,false -latif,newsmast.social,Programming,programming,false -latif,newsmast.social,Technology,technology,true -lilythelonelygirl,hear-me.social,Indigenous Peoples,indigenous_peoples,false -lilythelonelygirl,hear-me.social,LGBTQ+,lgbtq,false -lilythelonelygirl,hear-me.social,Journalism & Comment,news_comment_data,false -lilythelonelygirl,hear-me.social,Philosophy,philosophy,false -lilythelonelygirl,hear-me.social,Social Media,social_media,false -lilythelonelygirl,hear-me.social,Ukraine Invasion,ukraine_invasion,false -lilythelonelygirl,hear-me.social,Weather,weather,false -lilythelonelygirl,hear-me.social,Women’s Voices,women_voices,false -tnypxl,mstdn.social,Government & Policy,government_policy,false -tnypxl,mstdn.social,Healthcare,healthcare,false -youronlyone,newsmast.social,Biology,biology,false -youronlyone,newsmast.social,Books & Literature,books_literature,false -youronlyone,newsmast.social,Chemistry,chemistry,false -youronlyone,newsmast.social,Engineering,engineering,false -youronlyone,newsmast.social,Gaming,gaming,false -youronlyone,newsmast.social,Mathematics,mathematics,false -youronlyone,newsmast.social,Movies,movies,false -youronlyone,newsmast.social,Photography,photography,false -youronlyone,newsmast.social,Programming,programming,false -youronlyone,newsmast.social,Science,science,false -youronlyone,newsmast.social,Space,space,false -youronlyone,newsmast.social,Technology,technology,false -youronlyone,newsmast.social,TV & Radio,tv_radio,false -youronlyone,newsmast.social,Physics,physics,true -tnypxl,mstdn.social,History,history,false -tnypxl,mstdn.social,Technology,technology,false -tnypxl,mstdn.social,Programming,programming,true -toaskoas,mastodon.bayern,Engineering,engineering,false -toaskoas,mastodon.bayern,Poverty & Inequality,poverty_inequality,false -toaskoas,mastodon.bayern,Programming,programming,false -toaskoas,mastodon.bayern,Social Media,social_media,false -toaskoas,mastodon.bayern,Breaking News,breaking_news,true -Caramel,newsmast.social,AI,ai,false -Caramel,newsmast.social,Movies,movies,false -Caramel,newsmast.social,Music,music,false -Caramel,newsmast.social,Performing Arts,performing_arts,false -Caramel,newsmast.social,Photography,photography,false -Caramel,newsmast.social,Technology,technology,false -Caramel,newsmast.social,TV & Radio,tv_radio,false -Caramel,newsmast.social,Visual Arts,visual_arts,false -Caramel,newsmast.social,Programming,programming,true -snoopy,newsmast.social,Architecture & Design,architecture_design,false -snoopy,newsmast.social,Biology,biology,false -snoopy,newsmast.social,Chemistry,chemistry,false -snoopy,newsmast.social,Humanities,humanities,false -Tombo,mstdn.ca,Programming,programming,false -Tombo,mstdn.ca,Science,science,false -Tombo,mstdn.ca,Social Media,social_media,false -Tombo,mstdn.ca,Social Sciences,social_sciences,false -Tombo,mstdn.ca,Space,space,false -Tombo,mstdn.ca,Technology,technology,false -Tombo,mstdn.ca,Ukraine Invasion,ukraine_invasion,false -Tombo,mstdn.ca,US Politics,us_politics,false -Tombo,mstdn.ca,Weather,weather,false -Tombo,mstdn.ca,Women’s Voices,women_voices,false -diggincrudetruestories,mastodon.social,Visual Arts,visual_arts,false -granvalenti,mastodon.social,Breaking News,breaking_news,false -granvalenti,mastodon.social,Movies,movies,false -granvalenti,mastodon.social,Journalism & Comment,news_comment_data,false -granvalenti,mastodon.social,Visual Arts,visual_arts,false -granvalenti,mastodon.social,Books & Literature,books_literature,true -diggincrudetruestories,mastodon.social,Technology,technology,true -FOT,masto.ai,Academia & Research,academia_research,false -FOT,masto.ai,Activism & Civil Rights,activism_civil_rights,false -dance_along_the_edge,socel.net,Activism & Civil Rights,activism_civil_rights,false -dance_along_the_edge,socel.net,Architecture & Design,architecture_design,false -dance_along_the_edge,socel.net,Breaking News,breaking_news,false -dance_along_the_edge,socel.net,Climate change,climate_change,false -dance_along_the_edge,socel.net,Creative Arts,creative_arts,false -dance_along_the_edge,socel.net,Democracy & Human Rights,democracy_human_rights,false -dance_along_the_edge,socel.net,Environment,environment,false -dance_along_the_edge,socel.net,Food & Drink,food_drink,false -dance_along_the_edge,socel.net,Humour,humour,false -mehluv,mastinsaan.in,Creative Arts,creative_arts,false -mehluv,mastinsaan.in,Food & Drink,food_drink,false -mehluv,mastinsaan.in,History,history,false -mehluv,mastinsaan.in,Humanities,humanities,false -mehluv,mastinsaan.in,LGBTQ+,lgbtq,false -mehluv,mastinsaan.in,Movies,movies,false -mehluv,mastinsaan.in,Music,music,false -mehluv,mastinsaan.in,Philosophy,philosophy,false -mehluv,mastinsaan.in,Puzzles,puzzles,false -mehluv,mastinsaan.in,Social Sciences,social_sciences,false -mehluv,mastinsaan.in,TV & Radio,tv_radio,false -mehluv,mastinsaan.in,Visual Arts,visual_arts,false -mehluv,mastinsaan.in,Gaming,gaming,true -dance_along_the_edge,socel.net,Mental Health & Wellbeing,mental_health_wellbeing,false -dance_along_the_edge,socel.net,Movies,movies,false -dance_along_the_edge,socel.net,Music,music,false -dance_along_the_edge,socel.net,Nature & Wildlife,nature_wildlife,false -dance_along_the_edge,socel.net,Performing Arts,performing_arts,false -dance_along_the_edge,socel.net,Pets,pets,false -dance_along_the_edge,socel.net,Philosophy,philosophy,false -dance_along_the_edge,socel.net,Photography,photography,false -duy,mas.to,Architecture & Design,architecture_design,false -duy,mas.to,Books & Literature,books_literature,false -duy,mas.to,Movies,movies,false -duy,mas.to,Music,music,false -duy,mas.to,Performing Arts,performing_arts,false -duy,mas.to,Visual Arts,visual_arts,false -duy,mas.to,Photography,photography,true -dance_along_the_edge,socel.net,Poverty & Inequality,poverty_inequality,false -dance_along_the_edge,socel.net,Science,science,false -dance_along_the_edge,socel.net,Social Sciences,social_sciences,false -dance_along_the_edge,socel.net,Space,space,false -dance_along_the_edge,socel.net,TV & Radio,tv_radio,false -dmt,ioc.exchange,Journalism & Comment,news_comment_data,false -dmt,ioc.exchange,Politics,politics,false -dmt,ioc.exchange,Science,science,false -dmt,ioc.exchange,Space,space,false -dmt,ioc.exchange,Government & Policy,government_policy,true -dance_along_the_edge,socel.net,Ukraine Invasion,ukraine_invasion,false -dance_along_the_edge,socel.net,Visual Arts,visual_arts,false -dance_along_the_edge,socel.net,Books & Literature,books_literature,true -WetHat,fosstodon.org,Mathematics,mathematics,false -WetHat,fosstodon.org,Physics,physics,false -drizzly_august,newsmast.social,Breaking News,breaking_news,false -drizzly_august,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -drizzly_august,newsmast.social,Engineering,engineering,false -drizzly_august,newsmast.social,Government & Policy,government_policy,false -drizzly_august,newsmast.social,Law & Justice,law_justice,false -drizzly_august,newsmast.social,Poverty & Inequality,poverty_inequality,false -drizzly_august,newsmast.social,Technology,technology,false -drizzly_august,newsmast.social,US Politics,us_politics,false -chris,arcticwind.social,Academia & Research,academia_research,false -chris,arcticwind.social,AI,ai,false -chris,arcticwind.social,Architecture & Design,architecture_design,false -chris,arcticwind.social,Books & Literature,books_literature,false -chris,arcticwind.social,Engineering,engineering,false -chris,arcticwind.social,Government & Policy,government_policy,false -chris,arcticwind.social,Healthcare,healthcare,false -chris,arcticwind.social,Law & Justice,law_justice,false -chris,arcticwind.social,Music,music,false -chris,arcticwind.social,Journalism & Comment,news_comment_data,false -chris,arcticwind.social,Performing Arts,performing_arts,false -chris,arcticwind.social,Politics,politics,false -chris,arcticwind.social,Science,science,false -chris,arcticwind.social,Breaking News,breaking_news,true -90sCraig,pb.craignt.com,Humour,humour,false -90sCraig,pb.craignt.com,Travel,travel,false -thedogspaw,mastodon.social,Democracy & Human Rights,democracy_human_rights,false -thedogspaw,mastodon.social,Physics,physics,false -thedogspaw,mastodon.social,Science,science,false -thedogspaw,mastodon.social,Ukraine Invasion,ukraine_invasion,false -thedogspaw,mastodon.social,US Politics,us_politics,false -thedogspaw,mastodon.social,Politics,politics,true -rlabas,mastodon.social,AI,ai,false -rlabas,mastodon.social,Biodiversity & Rewilding,biodiversity_rewilding,false -rlabas,mastodon.social,Climate change,climate_change,false -rlabas,mastodon.social,Engineering,engineering,false -rlabas,mastodon.social,Environment,environment,false -chris,arcticwind.social,Social Media,social_media,false -chris,arcticwind.social,Space,space,false -chris,arcticwind.social,Technology,technology,false -chris,arcticwind.social,Ukraine Invasion,ukraine_invasion,false -chris,arcticwind.social,US Politics,us_politics,false -chris,arcticwind.social,Weather,weather,false -FOT,masto.ai,Biology,biology,false -FOT,masto.ai,Democracy & Human Rights,democracy_human_rights,false -FOT,masto.ai,Environment,environment,false -bringolo,mastodon.social,Books & Literature,books_literature,false -bringolo,mastodon.social,Photography,photography,true -FOT,masto.ai,History,history,false -FOT,masto.ai,Indigenous Peoples,indigenous_peoples,false -IrwinFletcher0,mstdn.social,AI,ai,false -IrwinFletcher0,mstdn.social,Architecture & Design,architecture_design,false -IrwinFletcher0,mstdn.social,Breaking News,breaking_news,false -IrwinFletcher0,mstdn.social,Creative Arts,creative_arts,false -IrwinFletcher0,mstdn.social,Engineering,engineering,false -padraig,det.social,Biodiversity & Rewilding,biodiversity_rewilding,false -padraig,det.social,Climate change,climate_change,false -padraig,det.social,Democracy & Human Rights,democracy_human_rights,false -padraig,det.social,Energy & Pollution,energy_pollution,false -padraig,det.social,Environment,environment,false -padraig,det.social,Government & Policy,government_policy,false -padraig,det.social,Law & Justice,law_justice,false -padraig,det.social,Journalism & Comment,news_comment_data,false -padraig,det.social,Politics,politics,false -padraig,det.social,Social Media,social_media,false -padraig,det.social,Technology,technology,false -padraig,det.social,Ukraine Invasion,ukraine_invasion,false -padraig,det.social,Breaking News,breaking_news,true -smikwily,newsmast.social,Technology,technology,false -smikwily,newsmast.social,Gaming,gaming,false -smikwily,newsmast.social,Movies,movies,false -smikwily,newsmast.social,TV & Radio,tv_radio,false -IrwinFletcher0,mstdn.social,Food & Drink,food_drink,false -IrwinFletcher0,mstdn.social,Gaming,gaming,false -IrwinFletcher0,mstdn.social,Government & Policy,government_policy,false -IrwinFletcher0,mstdn.social,Healthcare,healthcare,false -IrwinFletcher0,mstdn.social,Humour,humour,false -FOT,masto.ai,Politics,politics,false -andy,social.thedevane.family,Creative Arts,creative_arts,false -andy,social.thedevane.family,Engineering,engineering,false -andy,social.thedevane.family,Food & Drink,food_drink,false -andy,social.thedevane.family,Nature & Wildlife,nature_wildlife,false -andy,social.thedevane.family,Journalism & Comment,news_comment_data,false -andy,social.thedevane.family,Pets,pets,false -andy,social.thedevane.family,Programming,programming,false -andy,social.thedevane.family,Puzzles,puzzles,false -andy,social.thedevane.family,Science,science,false -andy,social.thedevane.family,Social Media,social_media,false -andy,social.thedevane.family,Space,space,false -andy,social.thedevane.family,Travel,travel,false -andy,social.thedevane.family,US Sport,us_sport,false -andy,social.thedevane.family,Technology,technology,true -nebo333,@mastodon.social,Academia & Research,academia_research,false -nebo333,@mastodon.social,Architecture & Design,architecture_design,false -nebo333,@mastodon.social,Breaking News,breaking_news,false -nebo333,@mastodon.social,Journalism & Comment,news_comment_data,false -nebo333,@mastodon.social,Politics,politics,false -nebo333,@mastodon.social,Science,science,false -nebo333,@mastodon.social,US Politics,us_politics,false -nebo333,@mastodon.social,AI,ai,true -DerPeder,@social.sp-codes.de,Academia & Research,academia_research,false -DerPeder,@social.sp-codes.de,Democracy & Human Rights,democracy_human_rights,false -DerPeder,@social.sp-codes.de,Journalism & Comment,news_comment_data,false -DerPeder,@social.sp-codes.de,Politics,politics,false -DerPeder,@social.sp-codes.de,Science,science,false -DerPeder,@social.sp-codes.de,Social Media,social_media,false -DerPeder,@social.sp-codes.de,Technology,technology,false -DerPeder,@social.sp-codes.de,Breaking News,breaking_news,true -wolfw,newsmast.social,Academia & Research,academia_research,false -wolfw,newsmast.social,Activism & Civil Rights,activism_civil_rights,false -wolfw,newsmast.social,Books & Literature,books_literature,false -wolfw,newsmast.social,Breaking News,breaking_news,false -wolfw,newsmast.social,Movies,movies,false -wolfw,newsmast.social,Music,music,false -wolfw,newsmast.social,Journalism & Comment,news_comment_data,false -wolfw,newsmast.social,Performing Arts,performing_arts,false -wolfw,newsmast.social,Philosophy,philosophy,false -wolfw,newsmast.social,Politics,politics,false -wolfw,newsmast.social,Social Sciences,social_sciences,false -wolfw,newsmast.social,US Politics,us_politics,false -wolfw,newsmast.social,Visual Arts,visual_arts,false -wolfw,newsmast.social,Women’s Voices,women_voices,false -wolfw,newsmast.social,Workers Rights,workers_rights,false -wolfw,newsmast.social,Democracy & Human Rights,democracy_human_rights,true -CoopCoding,newsmast.social,AI,ai,false -CoopCoding,newsmast.social,Engineering,engineering,false -CoopCoding,newsmast.social,Space,space,false -CoopCoding,newsmast.social,Technology,technology,false -CoopCoding,newsmast.social,Programming,programming,true -Sarahp,mastodon.social,AI,ai,false -Sarahp,mastodon.social,Books & Literature,books_literature,false -Sarahp,mastodon.social,Breaking News,breaking_news,false -Sarahp,mastodon.social,Humanities,humanities,false -Sarahp,mastodon.social,Mental Health & Wellbeing,mental_health_wellbeing,false -Sarahp,mastodon.social,Movies,movies,false -Sarahp,mastodon.social,Music,music,false -Sarahp,mastodon.social,Nature & Wildlife,nature_wildlife,false -Sarahp,mastodon.social,Journalism & Comment,news_comment_data,false -Sarahp,mastodon.social,Social Media,social_media,false -Sarahp,mastodon.social,Social Sciences,social_sciences,false -Sarahp,mastodon.social,Travel,travel,false -Sarahp,mastodon.social,Technology,technology,true -FOT,masto.ai,Science,science,false -FOT,masto.ai,Space,space,false -mcleod5000,mastodon.social,Food & Drink,food_drink,true -FOT,masto.ai,Ukraine Invasion,ukraine_invasion,false -IlCava,mastodon.uno,Social Media,social_media,false -IlCava,mastodon.uno,Space,space,false -trick,idic.social,AI,ai,false -mcleod5000,mastodon.social,Mental Health & Wellbeing,mental_health_wellbeing,false -mcleod5000,mastodon.social,Puzzles,puzzles,false -mcleod5000,mastodon.social,Social Media,social_media,false -mcleod5000,mastodon.social,Technology,technology,false -halans,mastodon.social,AI,ai,false -halans,mastodon.social,Climate change,climate_change,false -halans,mastodon.social,Science,science,false -halans,mastodon.social,Social Sciences,social_sciences,false -halans,mastodon.social,Space,space,false -jarjan,mederland.nl,Activism & Civil Rights,activism_civil_rights,false -jarjan,mederland.nl,Climate change,climate_change,false -jarjan,mederland.nl,LGBTQ+,lgbtq,false -jarjan,mederland.nl,Programming,programming,false -jarjan,mederland.nl,Technology,technology,false -jarjan,mederland.nl,Democracy & Human Rights,democracy_human_rights,true -mikhailt,mastodon.social,AI,ai,false -mikhailt,mastodon.social,Biology,biology,false -mikhailt,mastodon.social,Breaking News,breaking_news,false -mikhailt,mastodon.social,Climate change,climate_change,false -mikhailt,mastodon.social,Democracy & Human Rights,democracy_human_rights,false -mikhailt,mastodon.social,Engineering,engineering,false -mikhailt,mastodon.social,Physics,physics,false -mikhailt,mastodon.social,Programming,programming,false -mikhailt,mastodon.social,Science,science,false -mikhailt,mastodon.social,Technology,technology,false -mikhailt,mastodon.social,US Politics,us_politics,false -mikhailt,mastodon.social,Space,space,true -halans,mastodon.social,Technology,technology,true -IrwinFletcher0,mstdn.social,Law & Justice,law_justice,false -IrwinFletcher0,mstdn.social,Mental Health & Wellbeing,mental_health_wellbeing,false -IrwinFletcher0,mstdn.social,Movies,movies,false -IrwinFletcher0,mstdn.social,Music,music,false -IrwinFletcher0,mstdn.social,Nature & Wildlife,nature_wildlife,false -IrwinFletcher0,mstdn.social,Performing Arts,performing_arts,false -IrwinFletcher0,mstdn.social,Pets,pets,false -IrwinFletcher0,mstdn.social,Photography,photography,false -IrwinFletcher0,mstdn.social,Programming,programming,false -IrwinFletcher0,mstdn.social,Puzzles,puzzles,false -IrwinFletcher0,mstdn.social,Science,science,false -IrwinFletcher0,mstdn.social,Social Media,social_media,false -IrwinFletcher0,mstdn.social,Space,space,false -IrwinFletcher0,mstdn.social,Sport,sport,false -IrwinFletcher0,mstdn.social,Travel,travel,false -IrwinFletcher0,mstdn.social,TV & Radio,tv_radio,false -IrwinFletcher0,mstdn.social,US Politics,us_politics,false -IrwinFletcher0,mstdn.social,US Sport,us_sport,false -IrwinFletcher0,mstdn.social,Visual Arts,visual_arts,false -IrwinFletcher0,mstdn.social,Technology,technology,true -cpchannel,mastodon.online,AI,ai,false -cpchannel,mastodon.online,Breaking News,breaking_news,false -cpchannel,mastodon.online,Engineering,engineering,false -cpchannel,mastodon.online,Gaming,gaming,false -cpchannel,mastodon.online,Movies,movies,false -cpchannel,mastodon.online,Music,music,false -cpchannel,mastodon.online,Journalism & Comment,news_comment_data,false -cpchannel,mastodon.online,Photography,photography,false -cpchannel,mastodon.online,Technology,technology,true -rlabas,mastodon.social,Food & Drink,food_drink,false -rlabas,mastodon.social,Mental Health & Wellbeing,mental_health_wellbeing,false -rlabas,mastodon.social,Physics,physics,false -rlabas,mastodon.social,Science,science,false -rlabas,mastodon.social,Space,space,false -rlabas,mastodon.social,Technology,technology,false -rlabas,mastodon.social,Travel,travel,false -rlabas,mastodon.social,Energy & Pollution,energy_pollution,true -5h331v4,social.linux.pizza,Academia & Research,academia_research,false -5h331v4,social.linux.pizza,Democracy & Human Rights,democracy_human_rights,false -5h331v4,social.linux.pizza,Food & Drink,food_drink,false -5h331v4,social.linux.pizza,Gaming,gaming,false -5h331v4,social.linux.pizza,Government & Policy,government_policy,false -5h331v4,social.linux.pizza,Healthcare,healthcare,false -5h331v4,social.linux.pizza,Law & Justice,law_justice,false -5h331v4,social.linux.pizza,Markets & Finance,markets_finance,false -5h331v4,social.linux.pizza,Music,music,false -5h331v4,social.linux.pizza,Journalism & Comment,news_comment_data,false -5h331v4,social.linux.pizza,Politics,politics,false -5h331v4,social.linux.pizza,Social Media,social_media,false -5h331v4,social.linux.pizza,Technology,technology,false -5h331v4,social.linux.pizza,US Politics,us_politics,false -5h331v4,social.linux.pizza,Breaking News,breaking_news,true -imRam,c.im,Journalism & Comment,news_comment_data,false -imRam,c.im,Social Media,social_media,false -imRam,c.im,Ukraine Invasion,ukraine_invasion,false -imRam,c.im,Weather,weather,false -imRam,c.im,Breaking News,breaking_news,true -tritonforcex,mastodon.social,US Politics,us_politics,true -furbyonsteroids,ohai.social,Programming,programming,false -furbyonsteroids,ohai.social,Science,science,false -furbyonsteroids,ohai.social,Space,space,false -furbyonsteroids,ohai.social,Technology,technology,false -furbyonsteroids,ohai.social,Breaking News,breaking_news,true -andypiper,macaw.social,Gaming,gaming,false -andypiper,macaw.social,Movies,movies,false -andypiper,macaw.social,Photography,photography,false -andypiper,macaw.social,Programming,programming,false -andypiper,macaw.social,Space,space,false -andypiper,macaw.social,Technology,technology,true -IlCava,mastodon.uno,TV & Radio,tv_radio,false -IlCava,mastodon.uno,Ukraine Invasion,ukraine_invasion,false -trick,idic.social,Breaking News,breaking_news,false -trick,idic.social,Engineering,engineering,false -trick,idic.social,Technology,technology,false -trick,idic.social,LGBTQ+,lgbtq,true -IlCava,mastodon.uno,US Politics,us_politics,false -IlCava,mastodon.uno,US Sport,us_sport,false -WetHat,fosstodon.org,Science,science,false -WetHat,fosstodon.org,Space,space,false -WetHat,fosstodon.org,Technology,technology,false -Dvlahakis,fosstodon.org,AI,ai,false -Dvlahakis,fosstodon.org,Breaking News,breaking_news,false -Dvlahakis,fosstodon.org,Business,business,false -Dvlahakis,fosstodon.org,Democracy & Human Rights,democracy_human_rights,false -Dvlahakis,fosstodon.org,Engineering,engineering,false -Dvlahakis,fosstodon.org,Government & Policy,government_policy,false -Dvlahakis,fosstodon.org,Mathematics,mathematics,false -Dvlahakis,fosstodon.org,Physics,physics,false -Dvlahakis,fosstodon.org,Programming,programming,false -Dvlahakis,fosstodon.org,Science,science,false -Dvlahakis,fosstodon.org,Space,space,false -Dvlahakis,fosstodon.org,Weather,weather,false -Dvlahakis,fosstodon.org,Technology,technology,true -Dvlahakis,fosstodon.org,Gaming,gaming,false -WetHat,fosstodon.org,Programming,programming,true -DEW1970,newsmast.social,Humour,humour,false -DEW1970,newsmast.social,Books & Literature,books_literature,true -1100101,dresden.network,Climate change,climate_change,false -1100101,dresden.network,Energy & Pollution,energy_pollution,false -1100101,dresden.network,Environment,environment,false -tchambers,indieweb.social,Politics,politics,false -tchambers,indieweb.social,Social Media,social_media,false -tchambers,indieweb.social,Technology,technology,false -tchambers,indieweb.social,Ukraine Invasion,ukraine_invasion,false -tchambers,indieweb.social,Breaking News,breaking_news,true -thedogspaw,mastodon.social,Movies,movies,false -1100101,dresden.network,Poverty & Inequality,poverty_inequality,false -1100101,dresden.network,Space,space,false -1100101,dresden.network,Science,science,true -wbbdaily,flipboard.social,US Sport,us_sport,false -darth_akeda,mastodon.social,Academia & Research,academia_research,false -darth_akeda,mastodon.social,Activism & Civil Rights,activism_civil_rights,false -darth_akeda,mastodon.social,AI,ai,false -DEW1970,newsmast.social,Architecture & Design,architecture_design,false -DEW1970,newsmast.social,Biology,biology,false -DEW1970,newsmast.social,Food & Drink,food_drink,false -DEW1970,newsmast.social,Football,football,false -DEW1970,newsmast.social,Healthcare,healthcare,false -DEW1970,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false -DEW1970,newsmast.social,Movies,movies,false -DEW1970,newsmast.social,Music,music,false -DEW1970,newsmast.social,Nature & Wildlife,nature_wildlife,false -DEW1970,newsmast.social,Performing Arts,performing_arts,false -DEW1970,newsmast.social,Pets,pets,false -DEW1970,newsmast.social,Photography,photography,false -DEW1970,newsmast.social,Politics,politics,false -DEW1970,newsmast.social,Science,science,false -DEW1970,newsmast.social,Social Media,social_media,false -DEW1970,newsmast.social,Space,space,false -DEW1970,newsmast.social,Travel,travel,false -DEW1970,newsmast.social,TV & Radio,tv_radio,false -DEW1970,newsmast.social,Weather,weather,false -Greg,newsmast.social,Humanities,humanities,false -Greg,newsmast.social,Humour,humour,false -Greg,newsmast.social,Mathematics,mathematics,false -Greg,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false -Greg,newsmast.social,Nature & Wildlife,nature_wildlife,false -Greg,newsmast.social,Journalism & Comment,news_comment_data,false -Greg,newsmast.social,Philosophy,philosophy,false -Greg,newsmast.social,Programming,programming,false -Greg,newsmast.social,Science,science,false -Greg,newsmast.social,Social Sciences,social_sciences,false -Greg,newsmast.social,Technology,technology,false -Greg,newsmast.social,Breaking News,breaking_news,true -theinstantwin,mastodon.world,AI,ai,false -theinstantwin,mastodon.world,History,history,false -theinstantwin,mastodon.world,Social Sciences,social_sciences,false -theinstantwin,mastodon.world,US Sport,us_sport,false -theinstantwin,mastodon.world,Technology,technology,true -Elioz,newsmast.social,Activism & Civil Rights,activism_civil_rights,false -Elioz,newsmast.social,AI,ai,false -Elioz,newsmast.social,Architecture & Design,architecture_design,false -Elioz,newsmast.social,Black Voices,black_voices,false -Elioz,newsmast.social,Books & Literature,books_literature,false -Elioz,newsmast.social,Breaking News,breaking_news,false -Elioz,newsmast.social,Business,business,false -Elioz,newsmast.social,Engineering,engineering,false -Elioz,newsmast.social,Environment,environment,false -Elioz,newsmast.social,Humour,humour,false -Elioz,newsmast.social,LGBTQ+,lgbtq,false -SeoN8,mastodon.cloud,Engineering,engineering,false -SeoN8,mastodon.cloud,Physics,physics,false -SeoN8,mastodon.cloud,Science,science,false -SeoN8,mastodon.cloud,Space,space,false -SeoN8,mastodon.cloud,Sport,sport,false -SeoN8,mastodon.cloud,Technology,technology,true -Elioz,newsmast.social,Movies,movies,false -Elioz,newsmast.social,Music,music,false -Elioz,newsmast.social,Performing Arts,performing_arts,false -Elioz,newsmast.social,Pets,pets,false -Elioz,newsmast.social,Photography,photography,false -Elioz,newsmast.social,Programming,programming,false -Elioz,newsmast.social,Technology,technology,false -Elioz,newsmast.social,Travel,travel,false -Elioz,newsmast.social,TV & Radio,tv_radio,false -Elioz,newsmast.social,Ukraine Invasion,ukraine_invasion,false -Elioz,newsmast.social,Visual Arts,visual_arts,false -Elioz,newsmast.social,Creative Arts,creative_arts,true -FOT,masto.ai,Weather,weather,false -FOT,masto.ai,Breaking News,breaking_news,true -lilythelonelygirl,hear-me.social,Activism & Civil Rights,activism_civil_rights,false -lilythelonelygirl,hear-me.social,Breaking News,breaking_news,true -shelldoor,newsmast.social,AI,ai,false -shelldoor,newsmast.social,Breaking News,breaking_news,false -bjh,sueden.social,Architecture & Design,architecture_design,false -bjh,sueden.social,Creative Arts,creative_arts,false -bjh,sueden.social,Science,science,false -shelldoor,newsmast.social,Engineering,engineering,false -bjh,sueden.social,Photography,photography,true -yethiha,newsmast.social,Breaking News,breaking_news,false -benjamin,newsmast.social,Biology,biology,false -benjamin,newsmast.social,Breaking News,breaking_news,false -benjamin,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -benjamin,newsmast.social,Physics,physics,false -benjamin,newsmast.social,Poverty & Inequality,poverty_inequality,false -benjamin,newsmast.social,Programming,programming,false -benjamin,newsmast.social,Science,science,false -benjamin,newsmast.social,Space,space,false -benjamin,newsmast.social,Technology,technology,false -benjamin,newsmast.social,US Sport,us_sport,false -benjamin,newsmast.social,Social Media,social_media,true -dimillian,mastodon.social,AI,ai,false -dimillian,mastodon.social,Engineering,engineering,false -dimillian,mastodon.social,Programming,programming,false -dimillian,mastodon.social,Science,science,false -dimillian,mastodon.social,Technology,technology,false -dimillian,mastodon.social,Ukraine Invasion,ukraine_invasion,false -dimillian,mastodon.social,Breaking News,breaking_news,true -m2knewsmast,newsmast.social,Academia & Research,academia_research,false -m2knewsmast,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -m2knewsmast,newsmast.social,Government & Policy,government_policy,false -m2knewsmast,newsmast.social,Healthcare,healthcare,false -m2knewsmast,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false -m2knewsmast,newsmast.social,Law & Justice,law_justice,false -m2knewsmast,newsmast.social,Journalism & Comment,news_comment_data,false -m2knewsmast,newsmast.social,Politics,politics,false -m2knewsmast,newsmast.social,Poverty & Inequality,poverty_inequality,false -m2knewsmast,newsmast.social,Social Media,social_media,false -m2knewsmast,newsmast.social,Ukraine Invasion,ukraine_invasion,false -m2knewsmast,newsmast.social,US Politics,us_politics,false -m2knewsmast,newsmast.social,Weather,weather,false -m2knewsmast,newsmast.social,Breaking News,breaking_news,true -Sushi,mamot.fr,Architecture & Design,architecture_design,false -Sushi,mamot.fr,Climate change,climate_change,false -Sushi,mamot.fr,Environment,environment,false -Sushi,mamot.fr,History,history,false -Sushi,mamot.fr,Social Sciences,social_sciences,false -Sushi,mamot.fr,Space,space,false -Sushi,mamot.fr,Technology,technology,false -Sushi,mamot.fr,Breaking News,breaking_news,true -chloe_661,newsmast.social,Programming,programming,false -chloe_661,newsmast.social,Space,space,false -chloe_661,newsmast.social,Sport,sport,false -chloe_661,newsmast.social,Technology,technology,false -chloe_661,newsmast.social,Football,football,true -thedogspaw,mastodon.social,Journalism & Comment,news_comment_data,false -thedogspaw,mastodon.social,Space,space,false -ericsfeed,mas.to,Engineering,engineering,false -ericsfeed,mas.to,History,history,false -ericsfeed,mas.to,Law & Justice,law_justice,false -ericsfeed,mas.to,Science,science,false -ericsfeed,mas.to,Breaking News,breaking_news,true -shanelord,shanelord@social.shas.am,Breaking News,breaking_news,false -shanelord,shanelord@social.shas.am,Food & Drink,food_drink,false -shanelord,shanelord@social.shas.am,Humour,humour,false -shanelord,shanelord@social.shas.am,Movies,movies,false -shanelord,shanelord@social.shas.am,Music,music,false -shanelord,shanelord@social.shas.am,Technology,technology,false -shanelord,shanelord@social.shas.am,Travel,travel,false -shanelord,shanelord@social.shas.am,Gaming,gaming,true -zenchyii,mastodon.social,Academia & Research,academia_research,false -zenchyii,mastodon.social,Healthcare,healthcare,false -zenchyii,mastodon.social,Space,space,false -zenchyii,mastodon.social,US Politics,us_politics,false -zenchyii,mastodon.social,Programming,programming,true -nick,pebble.social,Pets,pets,false -nick,pebble.social,Politics,politics,false -nick,pebble.social,Social Media,social_media,false -nick,pebble.social,Technology,technology,false -nick,pebble.social,Travel,travel,false -nick,pebble.social,TV & Radio,tv_radio,false -nick,pebble.social,US Politics,us_politics,false -nick,pebble.social,Weather,weather,false -nick,pebble.social,Breaking News,breaking_news,true -fwd7,newsmast.social,Academia & Research,academia_research,false -regis,social.vivaldi.net,AI,ai,false -regis,social.vivaldi.net,Architecture & Design,architecture_design,false -regis,social.vivaldi.net,Programming,programming,false -regis,social.vivaldi.net,Travel,travel,false -regis,social.vivaldi.net,Technology,technology,true -fwd7,newsmast.social,AI,ai,false -fwd7,newsmast.social,Books & Literature,books_literature,false -fwd7,newsmast.social,Breaking News,breaking_news,false -fwd7,newsmast.social,Football,football,false -fwd7,newsmast.social,Gaming,gaming,false -fwd7,newsmast.social,Government & Policy,government_policy,false -dianirawan,newsmast.social,Academia & Research,academia_research,false -fwd7,newsmast.social,Music,music,false -Maily,newsmast.social,AI,ai,false -Maily,newsmast.social,Movies,movies,false -Maily,newsmast.social,Music,music,false -Maily,newsmast.social,Technology,technology,false -Maily,newsmast.social,Women’s Voices,women_voices,true -fwd7,newsmast.social,Social Sciences,social_sciences,false -mgye,newsmast.social,Activism & Civil Rights,activism_civil_rights,false -mgye,newsmast.social,AI,ai,false -mgye,newsmast.social,Biology,biology,false -mgye,newsmast.social,Black Voices,black_voices,false -mgye,newsmast.social,Business,business,false -mgye,newsmast.social,Chemistry,chemistry,false -mgye,newsmast.social,Disabled Voices,disabled_voices,false -mgye,newsmast.social,Engineering,engineering,false -mgye,newsmast.social,Government & Policy,government_policy,false -mgye,newsmast.social,Healthcare,healthcare,false -mgye,newsmast.social,Immigrants Rights,immigrants_rights,false -mgye,newsmast.social,Indigenous Peoples,indigenous_peoples,false -mgye,newsmast.social,Law & Justice,law_justice,false -mgye,newsmast.social,LGBTQ+,lgbtq,false -mgye,newsmast.social,Markets & Finance,markets_finance,false -mgye,newsmast.social,Mathematics,mathematics,false -mgye,newsmast.social,Physics,physics,false -mgye,newsmast.social,Politics,politics,false -mgye,newsmast.social,Programming,programming,false -mgye,newsmast.social,Science,science,false -mgye,newsmast.social,Space,space,false -mgye,newsmast.social,Technology,technology,false -mgye,newsmast.social,US Politics,us_politics,false -mgye,newsmast.social,Women’s Voices,women_voices,false -mgye,newsmast.social,Workers Rights,workers_rights,false -AdmiralAckbar,twit.social,AI,ai,false -AdmiralAckbar,twit.social,Biodiversity & Rewilding,biodiversity_rewilding,false -AdmiralAckbar,twit.social,Breaking News,breaking_news,false -AdmiralAckbar,twit.social,Engineering,engineering,false -AdmiralAckbar,twit.social,Environment,environment,false -AdmiralAckbar,twit.social,Mathematics,mathematics,false -AdmiralAckbar,twit.social,Mental Health & Wellbeing,mental_health_wellbeing,false -AdmiralAckbar,twit.social,Nature & Wildlife,nature_wildlife,false -AdmiralAckbar,twit.social,Journalism & Comment,news_comment_data,false -AdmiralAckbar,twit.social,Pets,pets,false -AdmiralAckbar,twit.social,Physics,physics,false -AdmiralAckbar,twit.social,Programming,programming,false -AdmiralAckbar,twit.social,Science,science,false -AdmiralAckbar,twit.social,Space,space,false -AdmiralAckbar,twit.social,Travel,travel,false -AdmiralAckbar,twit.social,Technology,technology,true -mgye,newsmast.social,Academia & Research,academia_research,true -fwd7,newsmast.social,Sport,sport,false -fwd7,newsmast.social,Technology,technology,false -lyracqua,infosec.exchange,Humour,humour,false -lyracqua,infosec.exchange,Programming,programming,false -lyracqua,infosec.exchange,Puzzles,puzzles,false -lyracqua,infosec.exchange,Travel,travel,false -lyracqua,infosec.exchange,Technology,technology,true -m2knmst,newsmast.social,Activism & Civil Rights,activism_civil_rights,false -m2knmst,newsmast.social,Black Voices,black_voices,false -m2knmst,newsmast.social,Disabled Voices,disabled_voices,false -m2knmst,newsmast.social,History,history,false -m2knmst,newsmast.social,Humanities,humanities,false -m2knmst,newsmast.social,Immigrants Rights,immigrants_rights,false -m2knmst,newsmast.social,Indigenous Peoples,indigenous_peoples,false -m2knmst,newsmast.social,LGBTQ+,lgbtq,false -m2knmst,newsmast.social,Journalism & Comment,news_comment_data,false -m2knmst,newsmast.social,Philosophy,philosophy,false -jenericw,mstdn.party,Architecture & Design,architecture_design,false -jenericw,mstdn.party,Biology,biology,false -jenericw,mstdn.party,Books & Literature,books_literature,false -m2knmst,newsmast.social,Social Media,social_media,false -jenericw,mstdn.party,Business,business,false -jenericw,mstdn.party,Chemistry,chemistry,false -jenericw,mstdn.party,Energy & Pollution,energy_pollution,false -jenericw,mstdn.party,Engineering,engineering,false -m2knmst,newsmast.social,Social Sciences,social_sciences,false -jenericw,mstdn.party,Gaming,gaming,false -m2knmst,newsmast.social,Ukraine Invasion,ukraine_invasion,false -m2knmst,newsmast.social,Weather,weather,false -m2knmst,newsmast.social,Women’s Voices,women_voices,false -jenericw,mstdn.party,AI,ai,false -m2knmst,newsmast.social,Breaking News,breaking_news,true -Jezebelley,mstdn.social,AI,ai,false -Jezebelley,mstdn.social,Breaking News,breaking_news,false -Jezebelley,mstdn.social,Government & Policy,government_policy,false -Jezebelley,mstdn.social,Politics,politics,false -Jezebelley,mstdn.social,Social Media,social_media,false -Jezebelley,mstdn.social,US Politics,us_politics,false -Jezebelley,mstdn.social,Movies,movies,false -Jezebelley,mstdn.social,Photography,photography,false -Jezebelley,mstdn.social,TV & Radio,tv_radio,false -Jezebelley,mstdn.social,Books & Literature,books_literature,false -Jezebelley,mstdn.social,Technology,technology,false -Jezebelley,mstdn.social,Gaming,gaming,true -jenericw,mstdn.party,History,history,false -jenericw,mstdn.party,Humanities,humanities,false -jenericw,mstdn.party,Markets & Finance,markets_finance,false -jenericw,mstdn.party,Mathematics,mathematics,false -jenericw,mstdn.party,Movies,movies,false -jenericw,mstdn.party,Music,music,false -jenericw,mstdn.party,Journalism & Comment,news_comment_data,false -jenericw,mstdn.party,Performing Arts,performing_arts,false -jenericw,mstdn.party,Philosophy,philosophy,false -jenericw,mstdn.party,Photography,photography,false -jenericw,mstdn.party,Physics,physics,false -jenericw,mstdn.party,Science,science,false -jenericw,mstdn.party,Social Media,social_media,false -jenericw,mstdn.party,Social Sciences,social_sciences,false -jenericw,mstdn.party,Space,space,false -jenericw,mstdn.party,Sport,sport,false -jenericw,mstdn.party,Technology,technology,false -jenericw,mstdn.party,TV & Radio,tv_radio,false -jenericw,mstdn.party,Ukraine Invasion,ukraine_invasion,false -jenericw,mstdn.party,US Sport,us_sport,false -jenericw,mstdn.party,Visual Arts,visual_arts,false -jenericw,mstdn.party,Weather,weather,false -lydiechen,newsmast.social,AI,ai,false -lydiechen,newsmast.social,Business,business,false -lydiechen,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -lydiechen,newsmast.social,Technology,technology,false -jtomchak,moth.social,Business,business,false -jtomchak,moth.social,Politics,politics,false -jtomchak,moth.social,Programming,programming,false -jtomchak,moth.social,Sport,sport,false -jtomchak,moth.social,Technology,technology,true -lydiechen,newsmast.social,Markets & Finance,markets_finance,true -climbinghummel,sueden.social,Academia & Research,academia_research,false -ekebonke,mastodon.online,Programming,programming,true -climbinghummel,sueden.social,AI,ai,false -climbinghummel,sueden.social,Biodiversity & Rewilding,biodiversity_rewilding,false -climbinghummel,sueden.social,Biology,biology,false -climbinghummel,sueden.social,Breaking News,breaking_news,false -climbinghummel,sueden.social,Business,business,false -climbinghummel,sueden.social,Chemistry,chemistry,false -climbinghummel,sueden.social,Climate change,climate_change,false -climbinghummel,sueden.social,Democracy & Human Rights,democracy_human_rights,false -msafaksari,newsmast.social,History,history,false -msafaksari,newsmast.social,Movies,movies,false -msafaksari,newsmast.social,Photography,photography,false -msafaksari,newsmast.social,Social Sciences,social_sciences,false -msafaksari,newsmast.social,AI,ai,true -tedcurran,indieweb.social,AI,ai,false -tedcurran,indieweb.social,Breaking News,breaking_news,false -tedcurran,indieweb.social,Democracy & Human Rights,democracy_human_rights,false -tedcurran,indieweb.social,Gaming,gaming,false -tedcurran,indieweb.social,History,history,false -tedcurran,indieweb.social,Mental Health & Wellbeing,mental_health_wellbeing,false -tedcurran,indieweb.social,Movies,movies,false -tedcurran,indieweb.social,Music,music,false -tedcurran,indieweb.social,Nature & Wildlife,nature_wildlife,false -tedcurran,indieweb.social,Journalism & Comment,news_comment_data,false -tedcurran,indieweb.social,Poverty & Inequality,poverty_inequality,false -tedcurran,indieweb.social,Social Sciences,social_sciences,false -tedcurran,indieweb.social,US Politics,us_politics,false -tedcurran,indieweb.social,Visual Arts,visual_arts,false -tedcurran,indieweb.social,Technology,technology,true -jimhillhouse,mastodon.social,AI,ai,false -jimhillhouse,mastodon.social,Business,business,false -jimhillhouse,mastodon.social,Engineering,engineering,false -jimhillhouse,mastodon.social,Markets & Finance,markets_finance,false -jimhillhouse,mastodon.social,Technology,technology,false -jimhillhouse,mastodon.social,Programming,programming,true -EiEi,newsmast.social,AI,ai,false -EiEi,newsmast.social,Biology,biology,false -EiEi,newsmast.social,Chemistry,chemistry,false -EiEi,newsmast.social,Engineering,engineering,false -EiEi,newsmast.social,Environment,environment,false -EiEi,newsmast.social,Mathematics,mathematics,false -EiEi,newsmast.social,Physics,physics,false -EiEi,newsmast.social,Programming,programming,false -EiEi,newsmast.social,Science,science,false -EiEi,newsmast.social,Space,space,false -EiEi,newsmast.social,Technology,technology,true -ekebonke,mastodon.online,Mathematics,mathematics,false -ekebonke,mastodon.online,Politics,politics,false -ekebonke,mastodon.online,Technology,technology,false -ekebonke,mastodon.online,Ukraine Invasion,ukraine_invasion,false -jenericw,mstdn.party,Government & Policy,government_policy,false -jenericw,mstdn.party,Healthcare,healthcare,false -jenericw,mstdn.party,Humour,humour,false -jenericw,mstdn.party,Food & Drink,food_drink,false -jenericw,mstdn.party,Travel,travel,false -jenericw,mstdn.party,Pets,pets,false -bart,moth.social,Music,music,false -bart,moth.social,Technology,technology,false -bart,moth.social,TV & Radio,tv_radio,false -bart,moth.social,Visual Arts,visual_arts,false -bart,moth.social,Journalism & Comment,news_comment_data,true -corb1n,mastodon.social,AI,ai,false -corb1n,mastodon.social,Business,business,false -corb1n,mastodon.social,Engineering,engineering,false -corb1n,mastodon.social,Markets & Finance,markets_finance,false -corb1n,mastodon.social,Programming,programming,false -corb1n,mastodon.social,Technology,technology,true -jenericw,mstdn.party,Democracy & Human Rights,democracy_human_rights,false -jenericw,mstdn.party,US Politics,us_politics,true -climbinghummel,sueden.social,Energy & Pollution,energy_pollution,false -climbinghummel,sueden.social,Engineering,engineering,false -climbinghummel,sueden.social,Environment,environment,false -climbinghummel,sueden.social,Government & Policy,government_policy,false -climbinghummel,sueden.social,Healthcare,healthcare,false -climbinghummel,sueden.social,History,history,false -climbinghummel,sueden.social,Humanities,humanities,false -climbinghummel,sueden.social,"Hunger, Disease & Water",hunger_disease_water,false -climbinghummel,sueden.social,Law & Justice,law_justice,false -climbinghummel,sueden.social,Markets & Finance,markets_finance,false -climbinghummel,sueden.social,Mathematics,mathematics,false -climbinghummel,sueden.social,Journalism & Comment,news_comment_data,false -climbinghummel,sueden.social,Philosophy,philosophy,false -climbinghummel,sueden.social,Physics,physics,false -climbinghummel,sueden.social,Politics,politics,false -climbinghummel,sueden.social,Poverty & Inequality,poverty_inequality,false -climbinghummel,sueden.social,Programming,programming,false -climbinghummel,sueden.social,Science,science,false -climbinghummel,sueden.social,Social Media,social_media,false -climbinghummel,sueden.social,Social Sciences,social_sciences,false -climbinghummel,sueden.social,Space,space,false -climbinghummel,sueden.social,Ukraine Invasion,ukraine_invasion,false -climbinghummel,sueden.social,US Politics,us_politics,false -climbinghummel,sueden.social,Weather,weather,false -climbinghummel,sueden.social,Workers Rights,workers_rights,false -climbinghummel,sueden.social,Technology,technology,true -fwd7,newsmast.social,Law & Justice,law_justice,true -dianirawan,newsmast.social,Breaking News,breaking_news,false -dianirawan,newsmast.social,Healthcare,healthcare,false -dianirawan,newsmast.social,Law & Justice,law_justice,false -dianirawan,newsmast.social,Journalism & Comment,news_comment_data,false -dianirawan,newsmast.social,Politics,politics,false -dianirawan,newsmast.social,Social Media,social_media,false -eklektikos,mastodon.uno,Academia & Research,academia_research,false -eklektikos,mastodon.uno,AI,ai,false -eklektikos,mastodon.uno,Architecture & Design,architecture_design,false -eklektikos,mastodon.uno,Biology,biology,false -eklektikos,mastodon.uno,Books & Literature,books_literature,false -eklektikos,mastodon.uno,Chemistry,chemistry,false -eklektikos,mastodon.uno,Democracy & Human Rights,democracy_human_rights,false -eklektikos,mastodon.uno,Engineering,engineering,false -eklektikos,mastodon.uno,Gaming,gaming,false -eklektikos,mastodon.uno,Government & Policy,government_policy,false -eklektikos,mastodon.uno,Healthcare,healthcare,false -eklektikos,mastodon.uno,History,history,false -eklektikos,mastodon.uno,Humanities,humanities,false -eklektikos,mastodon.uno,"Hunger, Disease & Water",hunger_disease_water,false -eklektikos,mastodon.uno,Law & Justice,law_justice,false -eklektikos,mastodon.uno,Mathematics,mathematics,false -eklektikos,mastodon.uno,Movies,movies,false -eklektikos,mastodon.uno,Music,music,false -eklektikos,mastodon.uno,Journalism & Comment,news_comment_data,false -eklektikos,mastodon.uno,Performing Arts,performing_arts,false -eklektikos,mastodon.uno,Philosophy,philosophy,false -eklektikos,mastodon.uno,Photography,photography,false -eklektikos,mastodon.uno,Physics,physics,false -eklektikos,mastodon.uno,Politics,politics,false -eklektikos,mastodon.uno,Poverty & Inequality,poverty_inequality,false -eklektikos,mastodon.uno,Programming,programming,false -eklektikos,mastodon.uno,Science,science,false -eklektikos,mastodon.uno,Social Media,social_media,false -eklektikos,mastodon.uno,Social Sciences,social_sciences,false -eklektikos,mastodon.uno,Space,space,false -eklektikos,mastodon.uno,Technology,technology,false -eklektikos,mastodon.uno,TV & Radio,tv_radio,false -eklektikos,mastodon.uno,Ukraine Invasion,ukraine_invasion,false -eklektikos,mastodon.uno,US Politics,us_politics,false -eklektikos,mastodon.uno,Visual Arts,visual_arts,false -eklektikos,mastodon.uno,Weather,weather,false -eklektikos,mastodon.uno,Breaking News,breaking_news,true -dianirawan,newsmast.social,Ukraine Invasion,ukraine_invasion,false -dianirawan,newsmast.social,US Politics,us_politics,false -thedogspaw,mastodon.social,Social Media,social_media,false -dianirawan,newsmast.social,Weather,weather,false -dianirawan,newsmast.social,Government & Policy,government_policy,true -IlCava,mastodon.uno,Sport,sport,false -IlCava,mastodon.uno,Technology,technology,false -IlCava,mastodon.uno,Travel,travel,false -IlCava,mastodon.uno,TV & Radio,tv_radio,false -IlCava,mastodon.uno,Ukraine Invasion,ukraine_invasion,false -IlCava,mastodon.uno,US Politics,us_politics,false -LosGrandeFocco,afterspace.rocks,Gaming,gaming,false -LosGrandeFocco,afterspace.rocks,Government & Policy,government_policy,false -LosGrandeFocco,afterspace.rocks,"Hunger, Disease & Water",hunger_disease_water,false -LosGrandeFocco,afterspace.rocks,Journalism & Comment,news_comment_data,false -LosGrandeFocco,afterspace.rocks,Photography,photography,false -LosGrandeFocco,afterspace.rocks,Politics,politics,false -LosGrandeFocco,afterspace.rocks,Poverty & Inequality,poverty_inequality,false -LosGrandeFocco,afterspace.rocks,Programming,programming,false -LosGrandeFocco,afterspace.rocks,Science,science,false -LosGrandeFocco,afterspace.rocks,Social Media,social_media,false -LosGrandeFocco,afterspace.rocks,Technology,technology,false -LosGrandeFocco,afterspace.rocks,Ukraine Invasion,ukraine_invasion,false -LosGrandeFocco,afterspace.rocks,US Politics,us_politics,false -LosGrandeFocco,afterspace.rocks,Visual Arts,visual_arts,true -nick,pebble.social,AI,ai,false -nick,pebble.social,Books & Literature,books_literature,false -nick,pebble.social,Engineering,engineering,false -nick,pebble.social,Food & Drink,food_drink,false -nick,pebble.social,Government & Policy,government_policy,false -nick,pebble.social,Humour,humour,false -nick,pebble.social,Mental Health & Wellbeing,mental_health_wellbeing,false -nick,pebble.social,Movies,movies,false -nick,pebble.social,Music,music,false -nick,pebble.social,Journalism & Comment,news_comment_data,false -hiphopheaven,rap.social,AI,ai,false -hiphopheaven,rap.social,Biology,biology,false -hiphopheaven,rap.social,Chemistry,chemistry,false -hiphopheaven,rap.social,Engineering,engineering,false -hiphopheaven,rap.social,Mathematics,mathematics,false -hiphopheaven,rap.social,Photography,photography,false -hiphopheaven,rap.social,Physics,physics,false -hiphopheaven,rap.social,Programming,programming,false -hiphopheaven,rap.social,Science,science,false -hiphopheaven,rap.social,Space,space,false -hiphopheaven,rap.social,Technology,technology,false -hiphopheaven,rap.social,Visual Arts,visual_arts,false -hiphopheaven,rap.social,Music,music,true -IlCava,mastodon.uno,Visual Arts,visual_arts,false -shelldoor,newsmast.social,Politics,politics,false -shelldoor,newsmast.social,Programming,programming,false -wysteria,baraag.net,Biology,biology,false -wysteria,baraag.net,Movies,movies,false -thedogspaw,mastodon.social,Workers Rights,workers_rights,false -Zhong,mstdn.social,AI,ai,false -misk,pol.social,Democracy & Human Rights,democracy_human_rights,false -misk,pol.social,Gaming,gaming,false -misk,pol.social,Markets & Finance,markets_finance,false -misk,pol.social,Movies,movies,false -misk,pol.social,Journalism & Comment,news_comment_data,false -misk,pol.social,Politics,politics,false -misk,pol.social,Space,space,false -misk,pol.social,Technology,technology,false -misk,pol.social,TV & Radio,tv_radio,false -misk,pol.social,Ukraine Invasion,ukraine_invasion,false -misk,pol.social,Workers Rights,workers_rights,false -misk,pol.social,Breaking News,breaking_news,true -Zhong,mstdn.social,Business,business,false -Zhong,mstdn.social,Engineering,engineering,false -Zhong,mstdn.social,Politics,politics,false -Zhong,mstdn.social,Science,science,false -Zhong,mstdn.social,Space,space,false -TheStarrCompanyNL,mastodon.social,AI,ai,false -TheStarrCompanyNL,mastodon.social,Architecture & Design,architecture_design,false -TheStarrCompanyNL,mastodon.social,Books & Literature,books_literature,false -TheStarrCompanyNL,mastodon.social,History,history,false -TheStarrCompanyNL,mastodon.social,Movies,movies,false -TheStarrCompanyNL,mastodon.social,Music,music,false -TheStarrCompanyNL,mastodon.social,Philosophy,philosophy,false -TheStarrCompanyNL,mastodon.social,Photography,photography,false -TheStarrCompanyNL,mastodon.social,Physics,physics,false -TheStarrCompanyNL,mastodon.social,Science,science,false -TheStarrCompanyNL,mastodon.social,Social Sciences,social_sciences,false -TheStarrCompanyNL,mastodon.social,Technology,technology,false -TheStarrCompanyNL,mastodon.social,TV & Radio,tv_radio,false -TheStarrCompanyNL,mastodon.social,Visual Arts,visual_arts,false -TheStarrCompanyNL,mastodon.social,Breaking News,breaking_news,true -vile_person,newsmast.social,Books & Literature,books_literature,false -vile_person,newsmast.social,Climate change,climate_change,false -vile_person,newsmast.social,Energy & Pollution,energy_pollution,false -vile_person,newsmast.social,Environment,environment,false -vile_person,newsmast.social,Gaming,gaming,false -vile_person,newsmast.social,LGBTQ+,lgbtq,false -vile_person,newsmast.social,Mathematics,mathematics,false -vile_person,newsmast.social,Music,music,false -vile_person,newsmast.social,Journalism & Comment,news_comment_data,false -vile_person,newsmast.social,Philosophy,philosophy,false -vile_person,newsmast.social,Photography,photography,false -vile_person,newsmast.social,Poverty & Inequality,poverty_inequality,false -vile_person,newsmast.social,Programming,programming,false -vile_person,newsmast.social,Women’s Voices,women_voices,false -vile_person,newsmast.social,Democracy & Human Rights,democracy_human_rights,true -renlok,mastodon.social,AI,ai,false -renlok,mastodon.social,Engineering,engineering,false -renlok,mastodon.social,Science,science,false -renlok,mastodon.social,Space,space,false -renlok,mastodon.social,Technology,technology,false -renlok,mastodon.social,Programming,programming,true -renlok,mastodon.social,Healthcare,healthcare,false -renlok,mastodon.social,Humour,humour,false -renlok,mastodon.social,Nature & Wildlife,nature_wildlife,false -renlok,mastodon.social,Travel,travel,false -satvika,newsmast.social,Technology,technology,true -NurseTed,newsmast.social,Journalism & Comment,news_comment_data,false -NurseTed,newsmast.social,Social Media,social_media,false -NurseTed,newsmast.social,Ukraine Invasion,ukraine_invasion,false -NurseTed,newsmast.social,Weather,weather,false -NurseTed,newsmast.social,Breaking News,breaking_news,true -richtong,mastodon.social,Engineering,engineering,false -richtong,mastodon.social,Programming,programming,false -richtong,mastodon.social,Space,space,false -richtong,mastodon.social,Technology,technology,false -richtong,mastodon.social,AI,ai,true -xavierho,newsmast.social,Academia & Research,academia_research,false -xavierho,newsmast.social,AI,ai,false -xavierho,newsmast.social,Breaking News,breaking_news,false -xavierho,newsmast.social,Journalism & Comment,news_comment_data,false -xavierho,newsmast.social,Politics,politics,false -xavierho,newsmast.social,Programming,programming,false -xavierho,newsmast.social,Ukraine Invasion,ukraine_invasion,false -xavierho,newsmast.social,Technology,technology,true -IlCava,mastodon.uno,Weather,weather,false -Zhong,mstdn.social,US Politics,us_politics,false -Zhong,mstdn.social,Technology,technology,true -ryankhan,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -ryankhan,newsmast.social,Government & Policy,government_policy,false -ryankhan,newsmast.social,Healthcare,healthcare,false -bricksguy,mastodon.social,LGBTQ+,lgbtq,false -bricksguy,mastodon.social,Mental Health & Wellbeing,mental_health_wellbeing,false -bricksguy,mastodon.social,Nature & Wildlife,nature_wildlife,false -bricksguy,mastodon.social,Puzzles,puzzles,false -bricksguy,mastodon.social,Technology,technology,false -bricksguy,mastodon.social,Travel,travel,false -bricksguy,mastodon.social,TV & Radio,tv_radio,false -bricksguy,mastodon.social,Breaking News,breaking_news,true -thedogspaw,mastodon.social,Gaming,gaming,false -ryankhan,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false -thedogspaw,mastodon.social,TV & Radio,tv_radio,false -ryankhan,newsmast.social,Law & Justice,law_justice,false -ryankhan,newsmast.social,Politics,politics,false -Sunfishstanford,hachyderm.io,AI,ai,false -Sunfishstanford,hachyderm.io,Breaking News,breaking_news,false -Sunfishstanford,hachyderm.io,Business,business,false -Sunfishstanford,hachyderm.io,Engineering,engineering,false -jayayess1190,mastodon.social,Environment,environment,false -jayayess1190,mastodon.social,Football,football,false -jayayess1190,mastodon.social,Science,science,false -jayayess1190,mastodon.social,Space,space,false -jayayess1190,mastodon.social,Technology,technology,true -Sunfishstanford,hachyderm.io,Mathematics,mathematics,false -Sunfishstanford,hachyderm.io,Physics,physics,false -Sunfishstanford,hachyderm.io,Programming,programming,false -Sunfishstanford,hachyderm.io,Technology,technology,true -ryankhan,newsmast.social,Poverty & Inequality,poverty_inequality,false -lime360,newsmast.social,AI,ai,false -lime360,newsmast.social,Breaking News,breaking_news,false -lime360,newsmast.social,Engineering,engineering,false -lime360,newsmast.social,History,history,false -lime360,newsmast.social,Humanities,humanities,false -lime360,newsmast.social,Journalism & Comment,news_comment_data,false -lime360,newsmast.social,Philosophy,philosophy,false -lime360,newsmast.social,Social Media,social_media,false -lime360,newsmast.social,Social Sciences,social_sciences,false -lime360,newsmast.social,Technology,technology,false -lime360,newsmast.social,Ukraine Invasion,ukraine_invasion,false -lime360,newsmast.social,Weather,weather,false -lime360,newsmast.social,Programming,programming,true -kevlong,mastodon.social,Politics,politics,false -kevlong,mastodon.social,Science,science,false -kevlong,mastodon.social,US Politics,us_politics,false -kevlong,mastodon.social,Sport,sport,true -yoda,mastodon.ir0k.de,Breaking News,breaking_news,false -yoda,mastodon.ir0k.de,Gaming,gaming,false -yoda,mastodon.ir0k.de,Humanities,humanities,false -yoda,mastodon.ir0k.de,Philosophy,philosophy,false -yoda,mastodon.ir0k.de,Technology,technology,false -yoda,mastodon.ir0k.de,Movies,movies,true -LosGrandeFocco,afterspace.rocks,AI,ai,false -LosGrandeFocco,afterspace.rocks,Breaking News,breaking_news,false -LosGrandeFocco,afterspace.rocks,Democracy & Human Rights,democracy_human_rights,false -tomo,newsmast.social,Music,music,false -tomo,newsmast.social,Sport,sport,false -tomo,newsmast.social,Technology,technology,false -tomo,newsmast.social,TV & Radio,tv_radio,false -tomo,newsmast.social,Weather,weather,false -tomo,newsmast.social,Social Media,social_media,true -ppttest456,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -ppttest456,newsmast.social,Government & Policy,government_policy,false -ppttest456,newsmast.social,Healthcare,healthcare,false -ppttest456,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false -ppttest456,newsmast.social,Law & Justice,law_justice,false -ppttest456,newsmast.social,Politics,politics,false -ppttest456,newsmast.social,Poverty & Inequality,poverty_inequality,false -ppttest456,newsmast.social,US Politics,us_politics,false -ppttest456,newsmast.social,Academia & Research,academia_research,true -Rebeccamwrites,mastodon.gamedev.place,Creative Arts,creative_arts,false -Rebeccamwrites,mastodon.gamedev.place,History,history,false -Rebeccamwrites,mastodon.gamedev.place,Humanities,humanities,false -Rebeccamwrites,mastodon.gamedev.place,Pets,pets,false -Rebeccamwrites,mastodon.gamedev.place,Science,science,false -Rebeccamwrites,mastodon.gamedev.place,Space,space,false -Rebeccamwrites,mastodon.gamedev.place,Technology,technology,false -Rebeccamwrites,mastodon.gamedev.place,TV & Radio,tv_radio,false -Rebeccamwrites,mastodon.gamedev.place,Visual Arts,visual_arts,false -Rebeccamwrites,mastodon.gamedev.place,Gaming,gaming,true -yemyatthu,c.im,Journalism & Comment,news_comment_data,false -yemyatthu,c.im,Social Media,social_media,false -yemyatthu,c.im,Ukraine Invasion,ukraine_invasion,false -yemyatthu,c.im,Weather,weather,false -yemyatthu,c.im,Breaking News,breaking_news,true -testpp34,newsmast.social,Academia & Research,academia_research,false -testpp34,newsmast.social,Healthcare,healthcare,false -testpp34,newsmast.social,Law & Justice,law_justice,false -testpp34,newsmast.social,Politics,politics,false -testpp34,newsmast.social,US Politics,us_politics,false -testpp34,newsmast.social,Government & Policy,government_policy,true -freelix,layer8.space,Visual Arts,visual_arts,false -normalniklas,mastodonsweden.se,Biodiversity & Rewilding,biodiversity_rewilding,false -normalniklas,mastodonsweden.se,Climate change,climate_change,false -normalniklas,mastodonsweden.se,Energy & Pollution,energy_pollution,false -normalniklas,mastodonsweden.se,Environment,environment,false -normalniklas,mastodonsweden.se,Gaming,gaming,false -normalniklas,mastodonsweden.se,Movies,movies,false -normalniklas,mastodonsweden.se,Music,music,false -thedogspaw,mastodon.social,Weather,weather,false -_youssef_0k,newsmast.social,Academia & Research,academia_research,false -_youssef_0k,newsmast.social,Activism & Civil Rights,activism_civil_rights,false -Argyle13,xarxa.cloud,Activism & Civil Rights,activism_civil_rights,false -Argyle13,xarxa.cloud,AI,ai,false -Argyle13,xarxa.cloud,Biodiversity & Rewilding,biodiversity_rewilding,false -Argyle13,xarxa.cloud,Biology,biology,false -Argyle13,xarxa.cloud,Books & Literature,books_literature,false -Argyle13,xarxa.cloud,Breaking News,breaking_news,false -Argyle13,xarxa.cloud,Business,business,false -Argyle13,xarxa.cloud,Chemistry,chemistry,false -Argyle13,xarxa.cloud,Climate change,climate_change,false -Argyle13,xarxa.cloud,Creative Arts,creative_arts,false -Argyle13,xarxa.cloud,Democracy & Human Rights,democracy_human_rights,false -Argyle13,xarxa.cloud,Energy & Pollution,energy_pollution,false -Argyle13,xarxa.cloud,Engineering,engineering,false -Argyle13,xarxa.cloud,Environment,environment,false -Argyle13,xarxa.cloud,Food & Drink,food_drink,false -Argyle13,xarxa.cloud,Football,football,false -Argyle13,xarxa.cloud,Gaming,gaming,false -CheekyMonkey75,mastodonapp.uk,Academia & Research,academia_research,false -CheekyMonkey75,mastodonapp.uk,AI,ai,false -CheekyMonkey75,mastodonapp.uk,Biodiversity & Rewilding,biodiversity_rewilding,false -CheekyMonkey75,mastodonapp.uk,Breaking News,breaking_news,false -CheekyMonkey75,mastodonapp.uk,Climate change,climate_change,false -CheekyMonkey75,mastodonapp.uk,Energy & Pollution,energy_pollution,false -CheekyMonkey75,mastodonapp.uk,Environment,environment,false -CheekyMonkey75,mastodonapp.uk,Government & Policy,government_policy,false -CheekyMonkey75,mastodonapp.uk,Healthcare,healthcare,false -CheekyMonkey75,mastodonapp.uk,History,history,false -CheekyMonkey75,mastodonapp.uk,Humanities,humanities,false -CheekyMonkey75,mastodonapp.uk,Law & Justice,law_justice,false -CheekyMonkey75,mastodonapp.uk,Journalism & Comment,news_comment_data,false -CheekyMonkey75,mastodonapp.uk,Physics,physics,false -CheekyMonkey75,mastodonapp.uk,Science,science,false -CheekyMonkey75,mastodonapp.uk,Social Sciences,social_sciences,false -CheekyMonkey75,mastodonapp.uk,Space,space,false -CheekyMonkey75,mastodonapp.uk,Technology,technology,false -CheekyMonkey75,mastodonapp.uk,Weather,weather,false -CheekyMonkey75,mastodonapp.uk,Politics,politics,true -Argyle13,xarxa.cloud,Government & Policy,government_policy,false -Argyle13,xarxa.cloud,Healthcare,healthcare,false -Argyle13,xarxa.cloud,History,history,false -Argyle13,xarxa.cloud,Humanities,humanities,false -Argyle13,xarxa.cloud,Humour,humour,false -Argyle13,xarxa.cloud,"Hunger, Disease & Water",hunger_disease_water,false -Argyle13,xarxa.cloud,Academia & Research,academia_research,false -normalniklas,mastodonsweden.se,Science,science,false -normalniklas,mastodonsweden.se,Space,space,false -normalniklas,mastodonsweden.se,Photography,photography,true -leo,twit.social,AI,ai,false -leo,twit.social,Biology,biology,false -leo,twit.social,Chemistry,chemistry,false -leo,twit.social,Engineering,engineering,false -leo,twit.social,Mathematics,mathematics,false -leo,twit.social,Physics,physics,false -leo,twit.social,Science,science,false -leo,twit.social,Space,space,false -leo,twit.social,Technology,technology,false -leo,twit.social,US Politics,us_politics,false -leo,twit.social,Programming,programming,true -DBailey635,mstdn.social,Academia & Research,academia_research,false -DBailey635,mstdn.social,Engineering,engineering,false -DBailey635,mstdn.social,Government & Policy,government_policy,false -DBailey635,mstdn.social,Social Media,social_media,false -DBailey635,mstdn.social,Space,space,false -DBailey635,mstdn.social,Technology,technology,false -DBailey635,mstdn.social,Breaking News,breaking_news,true -grislyeye,toot.io,Gaming,gaming,false -grislyeye,toot.io,Movies,movies,false -grislyeye,toot.io,Politics,politics,false -grislyeye,toot.io,Programming,programming,false -grislyeye,toot.io,Social Media,social_media,false -grislyeye,toot.io,Technology,technology,false -grislyeye,toot.io,TV & Radio,tv_radio,false -grislyeye,toot.io,Breaking News,breaking_news,true -grumpy_copi,social.tchncs.de,Breaking News,breaking_news,false -grumpy_copi,social.tchncs.de,Engineering,engineering,false -grumpy_copi,social.tchncs.de,Environment,environment,false -grumpy_copi,social.tchncs.de,Technology,technology,false -grumpy_copi,social.tchncs.de,Ukraine Invasion,ukraine_invasion,false -grumpy_copi,social.tchncs.de,Science,science,true -leobm,norden.social,AI,ai,false -leobm,norden.social,Engineering,engineering,false -leobm,norden.social,Journalism & Comment,news_comment_data,false -leobm,norden.social,Technology,technology,false -leobm,norden.social,Programming,programming,true -IlCava,mastodon.uno,Women’s Voices,women_voices,false -_youssef_0k,newsmast.social,Architecture & Design,architecture_design,false -_youssef_0k,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false -_youssef_0k,newsmast.social,Biology,biology,false -justwatch,newsmast.social,Academia & Research,academia_research,false -justwatch,newsmast.social,Activism & Civil Rights,activism_civil_rights,false -justwatch,newsmast.social,AI,ai,false -justwatch,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false -justwatch,newsmast.social,Black Voices,black_voices,false -justwatch,newsmast.social,Business,business,false -justwatch,newsmast.social,Climate change,climate_change,false -justwatch,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -justwatch,newsmast.social,Disabled Voices,disabled_voices,false -justwatch,newsmast.social,Energy & Pollution,energy_pollution,false -justwatch,newsmast.social,Engineering,engineering,false -justwatch,newsmast.social,Environment,environment,false -justwatch,newsmast.social,Government & Policy,government_policy,false -justwatch,newsmast.social,Healthcare,healthcare,false -justwatch,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false -justwatch,newsmast.social,Immigrants Rights,immigrants_rights,false -justwatch,newsmast.social,Indigenous Peoples,indigenous_peoples,false -justwatch,newsmast.social,Law & Justice,law_justice,false -justwatch,newsmast.social,LGBTQ+,lgbtq,false -justwatch,newsmast.social,Markets & Finance,markets_finance,false -justwatch,newsmast.social,Journalism & Comment,news_comment_data,false -justwatch,newsmast.social,Politics,politics,false -justwatch,newsmast.social,Poverty & Inequality,poverty_inequality,false -justwatch,newsmast.social,Programming,programming,false -justwatch,newsmast.social,Social Media,social_media,false -justwatch,newsmast.social,Technology,technology,false -justwatch,newsmast.social,Ukraine Invasion,ukraine_invasion,false -justwatch,newsmast.social,US Politics,us_politics,false -justwatch,newsmast.social,Weather,weather,false -justwatch,newsmast.social,Women’s Voices,women_voices,false -justwatch,newsmast.social,Workers Rights,workers_rights,false -justwatch,newsmast.social,Breaking News,breaking_news,true -IlCava,mastodon.uno,Science,science,true -ryankhan,newsmast.social,US Politics,us_politics,false -ryankhan,newsmast.social,Academia & Research,academia_research,true -shelldoor,newsmast.social,Technology,technology,false -janrif,newsmast.social,Activism & Civil Rights,activism_civil_rights,false -janrif,newsmast.social,AI,ai,false -janrif,newsmast.social,Breaking News,breaking_news,false -OlPatchy2Eyes,ieji.de,Humour,humour,false -saskia,newsmast.social,Women’s Voices,women_voices,false -mjgardner,social.sdf.org,Social Media,social_media,false -CaptE,mastodon.social,Architecture & Design,architecture_design,false -CaptE,mastodon.social,Biodiversity & Rewilding,biodiversity_rewilding,false -CaptE,mastodon.social,Books & Literature,books_literature,false -CaptE,mastodon.social,Climate change,climate_change,false -CaptE,mastodon.social,Food & Drink,food_drink,false -CaptE,mastodon.social,Humanities,humanities,false -CaptE,mastodon.social,Humour,humour,false -CaptE,mastodon.social,Music,music,false -CaptE,mastodon.social,Nature & Wildlife,nature_wildlife,false -CaptE,mastodon.social,Pets,pets,false -CaptE,mastodon.social,Social Media,social_media,false -ambientdread,toot.io,Academia & Research,academia_research,false -ambientdread,toot.io,Breaking News,breaking_news,false -ambientdread,toot.io,Democracy & Human Rights,democracy_human_rights,false -ambientdread,toot.io,Government & Policy,government_policy,false -ambientdread,toot.io,Healthcare,healthcare,false -ambientdread,toot.io,History,history,false -ambientdread,toot.io,Humanities,humanities,false -ambientdread,toot.io,"Hunger, Disease & Water",hunger_disease_water,false -ambientdread,toot.io,Law & Justice,law_justice,false -ambientdread,toot.io,Philosophy,philosophy,false -ambientdread,toot.io,Politics,politics,false -ambientdread,toot.io,Poverty & Inequality,poverty_inequality,false -ambientdread,toot.io,Social Media,social_media,false -ambientdread,toot.io,Social Sciences,social_sciences,false -ambientdread,toot.io,Ukraine Invasion,ukraine_invasion,false -ambientdread,toot.io,US Politics,us_politics,false -ambientdread,toot.io,Weather,weather,false -ambientdread,toot.io,Journalism & Comment,news_comment_data,true -CaptE,mastodon.social,Weather,weather,false -CaptE,mastodon.social,Women’s Voices,women_voices,false -snowka,scholar.social,Books & Literature,books_literature,false -snowka,scholar.social,Environment,environment,false -snowka,scholar.social,Humanities,humanities,false -snowka,scholar.social,Music,music,false -snowka,scholar.social,Breaking News,breaking_news,true -CaptE,mastodon.social,Breaking News,breaking_news,true -wbbdaily,flipboard.social,Social Media,social_media,false -EMcParland,newsmast.social,Breaking News,breaking_news,false -EMcParland,newsmast.social,Government & Policy,government_policy,false -EMcParland,newsmast.social,Journalism & Comment,news_comment_data,false -EMcParland,newsmast.social,Politics,politics,false -EMcParland,newsmast.social,Social Media,social_media,false -EMcParland,newsmast.social,Ukraine Invasion,ukraine_invasion,true -nchls,mas.to,AI,ai,false -nchls,mas.to,Food & Drink,food_drink,false -nchls,mas.to,Movies,movies,false -nchls,mas.to,Music,music,false -nchls,mas.to,Technology,technology,true -eob,social.coop,Breaking News,breaking_news,false -eob,social.coop,Business,business,false -eob,social.coop,Chemistry,chemistry,false -eob,social.coop,Climate change,climate_change,false -eob,social.coop,Democracy & Human Rights,democracy_human_rights,false -eob,social.coop,Engineering,engineering,false -_youssef_0k,newsmast.social,Black Voices,black_voices,false -minmaunghein,mastodon.social,AI,ai,false -minmaunghein,mastodon.social,Chemistry,chemistry,false -minmaunghein,mastodon.social,Engineering,engineering,false -minmaunghein,mastodon.social,Mathematics,mathematics,false -minmaunghein,mastodon.social,Physics,physics,false -minmaunghein,mastodon.social,Programming,programming,false -minmaunghein,mastodon.social,Science,science,false -Addictions2024,theaddict.ink,AI,ai,false -Addictions2024,theaddict.ink,Breaking News,breaking_news,false -Addictions2024,theaddict.ink,Social Media,social_media,false -Addictions2024,theaddict.ink,Weather,weather,false -Addictions2024,theaddict.ink,Technology,technology,true -minmaunghein,mastodon.social,Space,space,false -minmaunghein,mastodon.social,Technology,technology,false -minmaunghein,mastodon.social,Biology,biology,true -shelldoor,newsmast.social,Journalism & Comment,news_comment_data,true -Zed,infosec.exchange,Climate change,climate_change,false -Zed,infosec.exchange,Democracy & Human Rights,democracy_human_rights,false -Zed,infosec.exchange,Government & Policy,government_policy,false -Zed,infosec.exchange,Movies,movies,false -Zed,infosec.exchange,Politics,politics,false -Zed,infosec.exchange,Social Sciences,social_sciences,false -Zed,infosec.exchange,Technology,technology,false -Zed,infosec.exchange,AI,ai,true -darth_akeda,mastodon.social,Black Voices,black_voices,false -darth_akeda,mastodon.social,Breaking News,breaking_news,false -darth_akeda,mastodon.social,Democracy & Human Rights,democracy_human_rights,false -darth_akeda,mastodon.social,Government & Policy,government_policy,false -darth_akeda,mastodon.social,Indigenous Peoples,indigenous_peoples,false -mjgardner,social.sdf.org,Humour,humour,false -mjgardner,social.sdf.org,Mental Health & Wellbeing,mental_health_wellbeing,false -darth_akeda,mastodon.social,Journalism & Comment,news_comment_data,false -darth_akeda,mastodon.social,Poverty & Inequality,poverty_inequality,false -darth_akeda,mastodon.social,Social Media,social_media,false -darth_akeda,mastodon.social,Technology,technology,false -darth_akeda,mastodon.social,US Politics,us_politics,false -darth_akeda,mastodon.social,US Sport,us_sport,true -Curiosa2Blue,mstdn.social,Academia & Research,academia_research,false -Curiosa2Blue,mstdn.social,Activism & Civil Rights,activism_civil_rights,false -Curiosa2Blue,mstdn.social,AI,ai,false -Curiosa2Blue,mstdn.social,Biodiversity & Rewilding,biodiversity_rewilding,false -Curiosa2Blue,mstdn.social,Biology,biology,false -Curiosa2Blue,mstdn.social,Books & Literature,books_literature,false -yvz,mstdn.social,Academia & Research,academia_research,false -yvz,mstdn.social,AI,ai,false -yvz,mstdn.social,Biology,biology,false -yvz,mstdn.social,Breaking News,breaking_news,false -yvz,mstdn.social,Chemistry,chemistry,false -yvz,mstdn.social,Democracy & Human Rights,democracy_human_rights,false -yvz,mstdn.social,Engineering,engineering,false -yvz,mstdn.social,Government & Policy,government_policy,false -yvz,mstdn.social,Healthcare,healthcare,false -yvz,mstdn.social,"Hunger, Disease & Water",hunger_disease_water,false -yvz,mstdn.social,Law & Justice,law_justice,false -yvz,mstdn.social,Mathematics,mathematics,false -yvz,mstdn.social,Journalism & Comment,news_comment_data,false -yvz,mstdn.social,Physics,physics,false -yvz,mstdn.social,Politics,politics,false -Curiosa2Blue,mstdn.social,Business,business,false -Curiosa2Blue,mstdn.social,Climate change,climate_change,false -Curiosa2Blue,mstdn.social,Creative Arts,creative_arts,false -Curiosa2Blue,mstdn.social,Democracy & Human Rights,democracy_human_rights,false -Curiosa2Blue,mstdn.social,Energy & Pollution,energy_pollution,false -Curiosa2Blue,mstdn.social,Environment,environment,false -Curiosa2Blue,mstdn.social,Food & Drink,food_drink,false -Curiosa2Blue,mstdn.social,Government & Policy,government_policy,false -Curiosa2Blue,mstdn.social,Healthcare,healthcare,false -Curiosa2Blue,mstdn.social,History,history,false -Curiosa2Blue,mstdn.social,Humanities,humanities,false -Curiosa2Blue,mstdn.social,Humour,humour,false -Curiosa2Blue,mstdn.social,"Hunger, Disease & Water",hunger_disease_water,false -Curiosa2Blue,mstdn.social,Immigrants Rights,immigrants_rights,false -Curiosa2Blue,mstdn.social,Law & Justice,law_justice,false -Curiosa2Blue,mstdn.social,Mental Health & Wellbeing,mental_health_wellbeing,false -Curiosa2Blue,mstdn.social,Music,music,false -Curiosa2Blue,mstdn.social,Nature & Wildlife,nature_wildlife,false -Curiosa2Blue,mstdn.social,Journalism & Comment,news_comment_data,false -Curiosa2Blue,mstdn.social,Pets,pets,false -Curiosa2Blue,mstdn.social,Philosophy,philosophy,false -Curiosa2Blue,mstdn.social,Photography,photography,false -Curiosa2Blue,mstdn.social,Physics,physics,false -Curiosa2Blue,mstdn.social,Politics,politics,false -Curiosa2Blue,mstdn.social,Poverty & Inequality,poverty_inequality,false -Curiosa2Blue,mstdn.social,Puzzles,puzzles,false -Curiosa2Blue,mstdn.social,Science,science,false -Curiosa2Blue,mstdn.social,Social Media,social_media,false -Curiosa2Blue,mstdn.social,Social Sciences,social_sciences,false -Curiosa2Blue,mstdn.social,Space,space,false -Curiosa2Blue,mstdn.social,Technology,technology,false -Curiosa2Blue,mstdn.social,Travel,travel,false -Curiosa2Blue,mstdn.social,TV & Radio,tv_radio,false -Curiosa2Blue,mstdn.social,Ukraine Invasion,ukraine_invasion,false -Curiosa2Blue,mstdn.social,US Politics,us_politics,false -Curiosa2Blue,mstdn.social,Visual Arts,visual_arts,false -Curiosa2Blue,mstdn.social,Weather,weather,false -Curiosa2Blue,mstdn.social,Women’s Voices,women_voices,false -Curiosa2Blue,mstdn.social,Workers Rights,workers_rights,false -Curiosa2Blue,mstdn.social,Breaking News,breaking_news,true -thedogspaw,mastodon.social,Performing Arts,performing_arts,false -_youssef_0k,newsmast.social,Books & Literature,books_literature,false -madjo,mstdn.social,AI,ai,false -madjo,mstdn.social,Architecture & Design,architecture_design,false -madjo,mstdn.social,Biology,biology,false -madjo,mstdn.social,Books & Literature,books_literature,false -kamin,social.kghorvath.com,Breaking News,breaking_news,false -kamin,social.kghorvath.com,Music,music,false -kamin,social.kghorvath.com,Journalism & Comment,news_comment_data,false -kamin,social.kghorvath.com,US Sport,us_sport,false -kamin,social.kghorvath.com,Technology,technology,true -madjo,mstdn.social,Breaking News,breaking_news,false -madjo,mstdn.social,Chemistry,chemistry,false -madjo,mstdn.social,Democracy & Human Rights,democracy_human_rights,false -madjo,mstdn.social,Engineering,engineering,false -wbbdaily,flipboard.social,Humanities,humanities,false -wbbdaily,flipboard.social,Sport,sport,false -wbbdaily,flipboard.social,Technology,technology,false -_youssef_0k,newsmast.social,Breaking News,breaking_news,false -wbbdaily,flipboard.social,History,history,true -madjo,mstdn.social,Food & Drink,food_drink,false -madjo,mstdn.social,Gaming,gaming,false -madjo,mstdn.social,Humour,humour,false -madjo,mstdn.social,"Hunger, Disease & Water",hunger_disease_water,false -madjo,mstdn.social,Mathematics,mathematics,false -madjo,mstdn.social,Creative Arts,creative_arts,true -marcelo,newsmast.social,History,history,false -marcelo,newsmast.social,Journalism & Comment,news_comment_data,false -marcelo,newsmast.social,Philosophy,philosophy,false -marcelo,newsmast.social,Politics,politics,false -marcelo,newsmast.social,Social Sciences,social_sciences,false -marcelo,newsmast.social,Ukraine Invasion,ukraine_invasion,false -marcelo,newsmast.social,Democracy & Human Rights,democracy_human_rights,true -pixel,urusai.social,Humour,humour,false -pixel,urusai.social,Programming,programming,false -pixel,urusai.social,Science,science,false -pixel,urusai.social,Technology,technology,false -pixel,urusai.social,TV & Radio,tv_radio,false -pixel,urusai.social,Gaming,gaming,true -pinkoos,med-mastodon.com,AI,ai,false -pinkoos,med-mastodon.com,Biology,biology,false -pinkoos,med-mastodon.com,Food & Drink,food_drink,false -pinkoos,med-mastodon.com,Government & Policy,government_policy,false -pinkoos,med-mastodon.com,History,history,false -pinkoos,med-mastodon.com,Humanities,humanities,false -pinkoos,med-mastodon.com,Movies,movies,false -pinkoos,med-mastodon.com,Music,music,false -pinkoos,med-mastodon.com,Nature & Wildlife,nature_wildlife,false -pinkoos,med-mastodon.com,Journalism & Comment,news_comment_data,false -pinkoos,med-mastodon.com,Politics,politics,false -pinkoos,med-mastodon.com,Science,science,false -pinkoos,med-mastodon.com,Space,space,false -pinkoos,med-mastodon.com,Technology,technology,false -pinkoos,med-mastodon.com,Travel,travel,false -pinkoos,med-mastodon.com,TV & Radio,tv_radio,false -pinkoos,med-mastodon.com,US Politics,us_politics,false -pinkoos,med-mastodon.com,Breaking News,breaking_news,true -ekonomism,arvr.social,AI,ai,false -ekonomism,arvr.social,Government & Policy,government_policy,false -ekonomism,arvr.social,Healthcare,healthcare,false -ekonomism,arvr.social,Programming,programming,false -ekonomism,arvr.social,Science,science,false -ekonomism,arvr.social,Social Sciences,social_sciences,false -ekonomism,arvr.social,Ukraine Invasion,ukraine_invasion,false -ekonomism,arvr.social,Breaking News,breaking_news,true -_youssef_0k,newsmast.social,Business,business,false -madjo,mstdn.social,Mental Health & Wellbeing,mental_health_wellbeing,false -madjo,mstdn.social,Movies,movies,false -madjo,mstdn.social,Music,music,false -madjo,mstdn.social,Nature & Wildlife,nature_wildlife,false -madjo,mstdn.social,Journalism & Comment,news_comment_data,false -madjo,mstdn.social,Performing Arts,performing_arts,false -madjo,mstdn.social,Pets,pets,false -madjo,mstdn.social,Photography,photography,false -madjo,mstdn.social,Physics,physics,false -yzsm,mastodon.social,Academia & Research,academia_research,false -yzsm,mastodon.social,AI,ai,false -yzsm,mastodon.social,Biology,biology,false -yzsm,mastodon.social,Breaking News,breaking_news,false -yzsm,mastodon.social,Chemistry,chemistry,false -yzsm,mastodon.social,Democracy & Human Rights,democracy_human_rights,false -yzsm,mastodon.social,Engineering,engineering,false -yzsm,mastodon.social,Government & Policy,government_policy,false -yzsm,mastodon.social,Healthcare,healthcare,false -yzsm,mastodon.social,"Hunger, Disease & Water",hunger_disease_water,false -yzsm,mastodon.social,Law & Justice,law_justice,false -yzsm,mastodon.social,Mathematics,mathematics,false -yzsm,mastodon.social,Journalism & Comment,news_comment_data,false -yzsm,mastodon.social,Physics,physics,false -yzsm,mastodon.social,Politics,politics,false -yzsm,mastodon.social,Poverty & Inequality,poverty_inequality,false -yzsm,mastodon.social,Programming,programming,false -yzsm,mastodon.social,Science,science,false -yzsm,mastodon.social,Social Media,social_media,false -yzsm,mastodon.social,Space,space,false -yzsm,mastodon.social,Ukraine Invasion,ukraine_invasion,false -yzsm,mastodon.social,US Politics,us_politics,false -yzsm,mastodon.social,Weather,weather,false -yzsm,mastodon.social,Technology,technology,true -madjo,mstdn.social,Poverty & Inequality,poverty_inequality,false -madjo,mstdn.social,Programming,programming,false -madjo,mstdn.social,Puzzles,puzzles,false -madjo,mstdn.social,Science,science,false -madjo,mstdn.social,Social Media,social_media,false -madjo,mstdn.social,Space,space,false -ekonomism,newsmast.social,Government & Policy,government_policy,false -ekonomism,newsmast.social,Healthcare,healthcare,false -ekonomism,newsmast.social,Politics,politics,false -ekonomism,newsmast.social,Social Sciences,social_sciences,false -ekonomism,newsmast.social,Ukraine Invasion,ukraine_invasion,false -ekonomism,newsmast.social,Breaking News,breaking_news,true -madjo,mstdn.social,Technology,technology,false -madjo,mstdn.social,Travel,travel,false -madjo,mstdn.social,TV & Radio,tv_radio,false -madjo,mstdn.social,Ukraine Invasion,ukraine_invasion,false -madjo,mstdn.social,Visual Arts,visual_arts,false -madjo,mstdn.social,Weather,weather,false -_youssef_0k,newsmast.social,Chemistry,chemistry,false -alexdickson,newsmast.social,Creative Arts,creative_arts,false -nsmsn,mastodon.design,Academia & Research,academia_research,false -nsmsn,mastodon.design,Environment,environment,false -nsmsn,mastodon.design,Healthcare,healthcare,false -nsmsn,mastodon.design,History,history,false -nsmsn,mastodon.design,Music,music,false -nsmsn,mastodon.design,Philosophy,philosophy,false -nsmsn,mastodon.design,Physics,physics,false -nsmsn,mastodon.design,Science,science,false -nsmsn,mastodon.design,Space,space,false -nsmsn,mastodon.design,Visual Arts,visual_arts,false -nsmsn,mastodon.design,Architecture & Design,architecture_design,true -micheledm,mastodon.uno,AI,ai,false -micheledm,mastodon.uno,Books & Literature,books_literature,false -micheledm,mastodon.uno,Breaking News,breaking_news,false -micheledm,mastodon.uno,Business,business,false -micheledm,mastodon.uno,Engineering,engineering,false -private_penguin,mastodon.world,Football,football,false -private_penguin,mastodon.world,Gaming,gaming,false -private_penguin,mastodon.world,Pets,pets,false -private_penguin,mastodon.world,Technology,technology,false -private_penguin,mastodon.world,Humour,humour,true -youronlyone,newsmast.social,Social Media,social_media,false -youronlyone,newsmast.social,Disabled Voices,disabled_voices,false -youronlyone,newsmast.social,Weather,weather,false -micheledm,mastodon.uno,Food & Drink,food_drink,false -youronlyone,newsmast.social,History,history,false -micheledm,mastodon.uno,Gaming,gaming,false -youronlyone,newsmast.social,Food & Drink,food_drink,false -youronlyone,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false -micheledm,mastodon.uno,Markets & Finance,markets_finance,false -micheledm,mastodon.uno,Movies,movies,false -youronlyone,newsmast.social,Travel,travel,false -youronlyone,newsmast.social,Nature & Wildlife,nature_wildlife,false -micheledm,mastodon.uno,Music,music,false -micheledm,mastodon.uno,Journalism & Comment,news_comment_data,false -micheledm,mastodon.uno,Programming,programming,false -micheledm,mastodon.uno,Technology,technology,true -sebastian,pol.social,Social Media,social_media,false -sebastian,pol.social,Space,space,false -sebastian,pol.social,Technology,technology,false -sebastian,pol.social,Ukraine Invasion,ukraine_invasion,false -sebastian,pol.social,Programming,programming,true -catswhocode,mastodon.art,Gaming,gaming,false -catswhocode,mastodon.art,Mathematics,mathematics,false -catswhocode,mastodon.art,Music,music,false -catswhocode,mastodon.art,TV & Radio,tv_radio,false -Nathy,mastodon.art,AI,ai,false -Nathy,mastodon.art,Biodiversity & Rewilding,biodiversity_rewilding,false -Nathy,mastodon.art,Climate change,climate_change,false -Nathy,mastodon.art,Creative Arts,creative_arts,false -Nathy,mastodon.art,Democracy & Human Rights,democracy_human_rights,false -Argyle13,xarxa.cloud,Immigrants Rights,immigrants_rights,false -Argyle13,xarxa.cloud,Law & Justice,law_justice,false -Nathy,mastodon.art,Environment,environment,false -Nathy,mastodon.art,Food & Drink,food_drink,false -Argyle13,xarxa.cloud,LGBTQ+,lgbtq,false -Nathy,mastodon.art,History,history,false -Nathy,mastodon.art,Humanities,humanities,false -Nathy,mastodon.art,Humour,humour,false -Argyle13,xarxa.cloud,Markets & Finance,markets_finance,false -Nathy,mastodon.art,Mathematics,mathematics,false -Nathy,mastodon.art,Mental Health & Wellbeing,mental_health_wellbeing,false -Nathy,mastodon.art,Movies,movies,false -Nathy,mastodon.art,Music,music,false -Nathy,mastodon.art,Performing Arts,performing_arts,false -Nathy,mastodon.art,Pets,pets,false -Nathy,mastodon.art,Philosophy,philosophy,false -Nathy,mastodon.art,Photography,photography,false -Nathy,mastodon.art,Physics,physics,false -Nathy,mastodon.art,Poverty & Inequality,poverty_inequality,false -Nathy,mastodon.art,Programming,programming,false -Nathy,mastodon.art,Puzzles,puzzles,false -Nathy,mastodon.art,Science,science,false -Nathy,mastodon.art,Social Sciences,social_sciences,false -Argyle13,xarxa.cloud,Mathematics,mathematics,false -Argyle13,xarxa.cloud,Movies,movies,false -Argyle13,xarxa.cloud,Nature & Wildlife,nature_wildlife,false -Nathy,mastodon.art,Visual Arts,visual_arts,false -Argyle13,xarxa.cloud,Journalism & Comment,news_comment_data,false -Argyle13,xarxa.cloud,Performing Arts,performing_arts,false -Argyle13,xarxa.cloud,Philosophy,philosophy,false -janrif,newsmast.social,Business,business,false -janrif,newsmast.social,Government & Policy,government_policy,false -janrif,newsmast.social,Healthcare,healthcare,false -janrif,newsmast.social,History,history,false -janrif,newsmast.social,Humanities,humanities,false -researchnode,mastodon.social,Democracy & Human Rights,democracy_human_rights,false -researchnode,mastodon.social,Mathematics,mathematics,false -researchnode,mastodon.social,Politics,politics,false -researchnode,mastodon.social,Programming,programming,false -researchnode,mastodon.social,Science,science,false -researchnode,mastodon.social,Space,space,false -researchnode,mastodon.social,US Politics,us_politics,false -researchnode,mastodon.social,Academia & Research,academia_research,true -kevlong,mastodon.social,US Sport,us_sport,false -janrif,newsmast.social,Immigrants Rights,immigrants_rights,false -janrif,newsmast.social,Indigenous Peoples,indigenous_peoples,false -janrif,newsmast.social,Law & Justice,law_justice,false -janrif,newsmast.social,Markets & Finance,markets_finance,false -janrif,newsmast.social,Journalism & Comment,news_comment_data,false -janrif,newsmast.social,Philosophy,philosophy,false -m0bi,newsmast.social,Breaking News,breaking_news,false -m0bi,newsmast.social,Journalism & Comment,news_comment_data,false -m0bi,newsmast.social,Science,science,false -m0bi,newsmast.social,Space,space,false -m0bi,newsmast.social,Ukraine Invasion,ukraine_invasion,false -m0bi,newsmast.social,Programming,programming,true -twitchandmoan,c.im,Black Voices,black_voices,false -twitchandmoan,c.im,Creative Arts,creative_arts,false -twitchandmoan,c.im,Food & Drink,food_drink,false -twitchandmoan,c.im,Humour,humour,false -twitchandmoan,c.im,Movies,movies,false -twitchandmoan,c.im,Photography,photography,false -twitchandmoan,c.im,Social Media,social_media,false -twitchandmoan,c.im,TV & Radio,tv_radio,false -twitchandmoan,c.im,Visual Arts,visual_arts,false -twitchandmoan,c.im,Women’s Voices,women_voices,false -twitchandmoan,c.im,Gaming,gaming,true -DemocracyMattersALot,mstdn.social,Government & Policy,government_policy,false -DemocracyMattersALot,mstdn.social,Healthcare,healthcare,false -DemocracyMattersALot,mstdn.social,Law & Justice,law_justice,false -DemocracyMattersALot,mstdn.social,Politics,politics,false -DemocracyMattersALot,mstdn.social,US Politics,us_politics,true -billyanders,mstdn.social,AI,ai,false -billyanders,mstdn.social,Breaking News,breaking_news,false -billyanders,mstdn.social,Engineering,engineering,false -billyanders,mstdn.social,Law & Justice,law_justice,false -billyanders,mstdn.social,Programming,programming,false -billyanders,mstdn.social,Social Media,social_media,false -billyanders,mstdn.social,Technology,technology,false -billyanders,mstdn.social,Politics,politics,true -Nathy,mastodon.art,Books & Literature,books_literature,false -flynsarmy,mastodon.gamedev.place,Energy & Pollution,energy_pollution,false -Nathy,mastodon.art,Travel,travel,false -Nathy,mastodon.art,Nature & Wildlife,nature_wildlife,true -flynsarmy,mastodon.gamedev.place,Physics,physics,false -flynsarmy,mastodon.gamedev.place,Science,science,false -flynsarmy,mastodon.gamedev.place,Technology,technology,false -flynsarmy,mastodon.gamedev.place,Programming,programming,true -PamelaSchure,universeodon.com,AI,ai,false -PamelaSchure,universeodon.com,Biodiversity & Rewilding,biodiversity_rewilding,false -PamelaSchure,universeodon.com,Climate change,climate_change,false -PamelaSchure,universeodon.com,Politics,politics,false -PamelaSchure,universeodon.com,Technology,technology,false -PamelaSchure,universeodon.com,Ukraine Invasion,ukraine_invasion,false -PamelaSchure,universeodon.com,US Politics,us_politics,false -PamelaSchure,universeodon.com,Breaking News,breaking_news,true -truegem,mastodon.social,Architecture & Design,architecture_design,false -truegem,mastodon.social,Environment,environment,false -truegem,mastodon.social,History,history,false -truegem,mastodon.social,Humour,humour,false -truegem,mastodon.social,Movies,movies,false -truegem,mastodon.social,Programming,programming,false -truegem,mastodon.social,Puzzles,puzzles,false -truegem,mastodon.social,Technology,technology,false -truegem,mastodon.social,Travel,travel,false -truegem,mastodon.social,Breaking News,breaking_news,true -Argyle13,xarxa.cloud,Physics,physics,false -Argyle13,xarxa.cloud,Politics,politics,false -Argyle13,xarxa.cloud,Poverty & Inequality,poverty_inequality,false -Argyle13,xarxa.cloud,Programming,programming,false -Argyle13,xarxa.cloud,Puzzles,puzzles,false -Argyle13,xarxa.cloud,Science,science,false -Argyle13,xarxa.cloud,Social Media,social_media,false -Argyle13,xarxa.cloud,Social Sciences,social_sciences,false -Argyle13,xarxa.cloud,Space,space,false -Argyle13,xarxa.cloud,Sport,sport,false -harrylyon,newsmast.social,Activism & Civil Rights,activism_civil_rights,false -Argyle13,xarxa.cloud,Travel,travel,false -Argyle13,xarxa.cloud,TV & Radio,tv_radio,false -io,s.cafe,Breaking News,breaking_news,false -R3amD3,mastodon.social,Breaking News,breaking_news,false -R3amD3,mastodon.social,Movies,movies,false -R3amD3,mastodon.social,Music,music,false -R3amD3,mastodon.social,Journalism & Comment,news_comment_data,false -R3amD3,mastodon.social,Photography,photography,false -R3amD3,mastodon.social,Gaming,gaming,true -io,s.cafe,Science,science,false -io,s.cafe,Social Media,social_media,false -io,s.cafe,Space,space,false -io,s.cafe,Technology,technology,true -bernini,social.coop,Breaking News,breaking_news,false -bernini,social.coop,Environment,environment,false -bernini,social.coop,Mental Health & Wellbeing,mental_health_wellbeing,false -bernini,social.coop,Physics,physics,false -bernini,social.coop,Space,space,false -bernini,social.coop,AI,ai,true -zsotykai,mas.to,Books & Literature,books_literature,false -zsotykai,mas.to,Breaking News,breaking_news,false -zsotykai,mas.to,Engineering,engineering,false -zsotykai,mas.to,Movies,movies,false -zsotykai,mas.to,Journalism & Comment,news_comment_data,false -zsotykai,mas.to,Technology,technology,false -zsotykai,mas.to,Programming,programming,true -realgnomidad,newsmast.social,Academia & Research,academia_research,false -realgnomidad,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -realgnomidad,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false -realgnomidad,newsmast.social,Law & Justice,law_justice,false -realgnomidad,newsmast.social,Politics,politics,false -realgnomidad,newsmast.social,Poverty & Inequality,poverty_inequality,false -realgnomidad,newsmast.social,US Politics,us_politics,false -realgnomidad,newsmast.social,Government & Policy,government_policy,true -aloppnow,cunnin.me,AI,ai,false -aloppnow,cunnin.me,Books & Literature,books_literature,false -aloppnow,cunnin.me,Breaking News,breaking_news,false -aloppnow,cunnin.me,Climate change,climate_change,false -aloppnow,cunnin.me,Environment,environment,false -aloppnow,cunnin.me,Gaming,gaming,false -aloppnow,cunnin.me,Music,music,false -aloppnow,cunnin.me,Programming,programming,false -aloppnow,cunnin.me,Science,science,false -aloppnow,cunnin.me,Space,space,false -aloppnow,cunnin.me,US Politics,us_politics,false -aloppnow,cunnin.me,Visual Arts,visual_arts,false -aloppnow,cunnin.me,Technology,technology,true -notabird,mstdn.social,Government & Policy,government_policy,false -notabird,mstdn.social,Law & Justice,law_justice,false -notabird,mstdn.social,Journalism & Comment,news_comment_data,false -notabird,mstdn.social,Programming,programming,false -notabird,mstdn.social,Science,science,false -notabird,mstdn.social,Technology,technology,false -notabird,mstdn.social,US Politics,us_politics,false -notabird,mstdn.social,Breaking News,breaking_news,true -bibliotech,mastodon.social,Activism & Civil Rights,activism_civil_rights,false -bibliotech,mastodon.social,Black Voices,black_voices,false -bibliotech,mastodon.social,Books & Literature,books_literature,false -bibliotech,mastodon.social,Disabled Voices,disabled_voices,false -bibliotech,mastodon.social,Gaming,gaming,false -bibliotech,mastodon.social,History,history,false -bibliotech,mastodon.social,LGBTQ+,lgbtq,false -bibliotech,mastodon.social,Movies,movies,false -bibliotech,mastodon.social,Philosophy,philosophy,false -bibliotech,mastodon.social,Social Media,social_media,false -bibliotech,mastodon.social,Technology,technology,false -bibliotech,mastodon.social,TV & Radio,tv_radio,false -bibliotech,mastodon.social,Women’s Voices,women_voices,false -bibliotech,mastodon.social,Breaking News,breaking_news,true -amiya_rbehera,mas.to,Democracy & Human Rights,democracy_human_rights,false -amiya_rbehera,mas.to,"Hunger, Disease & Water",hunger_disease_water,false -amiya_rbehera,mas.to,Politics,politics,false -amiya_rbehera,mas.to,Poverty & Inequality,poverty_inequality,false -amiya_rbehera,mas.to,Academia & Research,academia_research,true -Roundtrip,federate.social,Architecture & Design,architecture_design,false -Roundtrip,federate.social,Books & Literature,books_literature,false -Roundtrip,federate.social,Breaking News,breaking_news,false -Roundtrip,federate.social,Government & Policy,government_policy,false -Roundtrip,federate.social,Law & Justice,law_justice,false -Roundtrip,federate.social,Movies,movies,false -Roundtrip,federate.social,Journalism & Comment,news_comment_data,false -Roundtrip,federate.social,Science,science,false -Roundtrip,federate.social,Space,space,false -Roundtrip,federate.social,Technology,technology,false -Roundtrip,federate.social,TV & Radio,tv_radio,false -Roundtrip,federate.social,US Politics,us_politics,false -Roundtrip,federate.social,Photography,photography,true -Argyle13,xarxa.cloud,US Politics,us_politics,false -Argyle13,xarxa.cloud,Weather,weather,false -Argyle13,xarxa.cloud,Women’s Voices,women_voices,false -Argyle13,xarxa.cloud,Workers Rights,workers_rights,false -_youssef_0k,newsmast.social,Climate change,climate_change,false -Argyle13,xarxa.cloud,Technology,technology,true -Hazelcrazygoatlady,sunbeam.city,Activism & Civil Rights,activism_civil_rights,false -Hazelcrazygoatlady,sunbeam.city,Architecture & Design,architecture_design,false -Hazelcrazygoatlady,sunbeam.city,Books & Literature,books_literature,false -Hazelcrazygoatlady,sunbeam.city,Environment,environment,false -Hazelcrazygoatlady,sunbeam.city,Indigenous Peoples,indigenous_peoples,false -Hazelcrazygoatlady,sunbeam.city,LGBTQ+,lgbtq,false -Hazelcrazygoatlady,sunbeam.city,Biodiversity & Rewilding,biodiversity_rewilding,true -_youssef_0k,newsmast.social,Creative Arts,creative_arts,false -janrif,newsmast.social,Social Media,social_media,false -janrif,newsmast.social,Social Sciences,social_sciences,false -janrif,newsmast.social,Technology,technology,false -janrif,newsmast.social,Ukraine Invasion,ukraine_invasion,false -janrif,newsmast.social,US Politics,us_politics,false -janrif,newsmast.social,Weather,weather,false -janrif,newsmast.social,Women’s Voices,women_voices,false -janrif,newsmast.social,Workers Rights,workers_rights,false -janrif,newsmast.social,Politics,politics,true -drakakis,universeodon.com,Books & Literature,books_literature,false -vlp00,newsmast.social,Breaking News,breaking_news,false -vlp00,newsmast.social,Engineering,engineering,false -vlp00,newsmast.social,Journalism & Comment,news_comment_data,false -vlp00,newsmast.social,Programming,programming,false -vlp00,newsmast.social,Social Media,social_media,false -vlp00,newsmast.social,Technology,technology,false -vlp00,newsmast.social,Ukraine Invasion,ukraine_invasion,false -drakakis,universeodon.com,History,history,false -drakakis,universeodon.com,Law & Justice,law_justice,false -drakakis,universeodon.com,Movies,movies,false -drakakis,universeodon.com,Music,music,false -drakakis,universeodon.com,Politics,politics,false -drakakis,universeodon.com,Poverty & Inequality,poverty_inequality,false -drakakis,universeodon.com,Social Media,social_media,false -drakakis,universeodon.com,Social Sciences,social_sciences,false -drakakis,universeodon.com,Technology,technology,false -drakakis,universeodon.com,TV & Radio,tv_radio,false -drakakis,universeodon.com,Ukraine Invasion,ukraine_invasion,false -JMMaok,mastodon.online,Breaking News,breaking_news,false -JMMaok,mastodon.online,Democracy & Human Rights,democracy_human_rights,false -JMMaok,mastodon.online,Journalism & Comment,news_comment_data,false -JMMaok,mastodon.online,Poverty & Inequality,poverty_inequality,false -JMMaok,mastodon.online,Social Media,social_media,false -JMMaok,mastodon.online,Social Sciences,social_sciences,false -JMMaok,mastodon.online,Technology,technology,false -JMMaok,mastodon.online,US Politics,us_politics,false -JMMaok,mastodon.online,Workers Rights,workers_rights,false -JMMaok,mastodon.online,Government & Policy,government_policy,true -instepphysio,newsmast.social,Academia & Research,academia_research,false -instepphysio,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false -instepphysio,newsmast.social,Climate change,climate_change,false -tschigi,swiss.social,Biodiversity & Rewilding,biodiversity_rewilding,false -tschigi,swiss.social,Climate change,climate_change,false -tschigi,swiss.social,Programming,programming,false -instepphysio,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -tschigi,swiss.social,Technology,technology,false -instepphysio,newsmast.social,Environment,environment,false -instepphysio,newsmast.social,Government & Policy,government_policy,false -instepphysio,newsmast.social,Healthcare,healthcare,false -instepphysio,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false -instepphysio,newsmast.social,Law & Justice,law_justice,false -drakakis,universeodon.com,Breaking News,breaking_news,true -CStJames,kolektiva.social,AI,ai,false -CStJames,kolektiva.social,Biology,biology,false -CStJames,kolektiva.social,Business,business,false -CStJames,kolektiva.social,Chemistry,chemistry,false -CStJames,kolektiva.social,Democracy & Human Rights,democracy_human_rights,false -CStJames,kolektiva.social,Football,football,false -CStJames,kolektiva.social,Government & Policy,government_policy,false -CStJames,kolektiva.social,Healthcare,healthcare,false -domy,mstdn.social,Programming,programming,false -CStJames,kolektiva.social,Markets & Finance,markets_finance,false -CStJames,kolektiva.social,Mathematics,mathematics,false -CStJames,kolektiva.social,Journalism & Comment,news_comment_data,false -CStJames,kolektiva.social,Physics,physics,false -CStJames,kolektiva.social,Politics,politics,false -CStJames,kolektiva.social,Programming,programming,false -CStJames,kolektiva.social,Science,science,false -CStJames,kolektiva.social,Social Media,social_media,false -CStJames,kolektiva.social,Space,space,false -CStJames,kolektiva.social,Sport,sport,false -CStJames,kolektiva.social,Technology,technology,false -CStJames,kolektiva.social,Ukraine Invasion,ukraine_invasion,false -CStJames,kolektiva.social,US Sport,us_sport,false -CStJames,kolektiva.social,Weather,weather,false -CStJames,kolektiva.social,Breaking News,breaking_news,true -harrylyon,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false -harrylyon,newsmast.social,Climate change,climate_change,false -harrylyon,newsmast.social,Disabled Voices,disabled_voices,false -harrylyon,newsmast.social,Energy & Pollution,energy_pollution,false -tne_556,mastodon.social,AI,ai,false -tne_556,mastodon.social,Democracy & Human Rights,democracy_human_rights,false -tne_556,mastodon.social,Engineering,engineering,false -tne_556,mastodon.social,"Hunger, Disease & Water",hunger_disease_water,false -tne_556,mastodon.social,Journalism & Comment,news_comment_data,false -tne_556,mastodon.social,Poverty & Inequality,poverty_inequality,false -tne_556,mastodon.social,Programming,programming,false -tne_556,mastodon.social,Social Media,social_media,false -tne_556,mastodon.social,Technology,technology,false -tne_556,mastodon.social,Ukraine Invasion,ukraine_invasion,false -tne_556,mastodon.social,Weather,weather,false -tne_556,mastodon.social,Breaking News,breaking_news,true -harrylyon,newsmast.social,Environment,environment,false -kimschulz,social.data.coop,AI,ai,false -kimschulz,social.data.coop,Biodiversity & Rewilding,biodiversity_rewilding,false -kimschulz,social.data.coop,Biology,biology,false -kimschulz,social.data.coop,Breaking News,breaking_news,false -kimschulz,social.data.coop,Chemistry,chemistry,false -kimschulz,social.data.coop,Climate change,climate_change,false -kimschulz,social.data.coop,Democracy & Human Rights,democracy_human_rights,false -kimschulz,social.data.coop,Energy & Pollution,energy_pollution,false -kimschulz,social.data.coop,Engineering,engineering,false -kimschulz,social.data.coop,Environment,environment,false -kimschulz,social.data.coop,"Hunger, Disease & Water",hunger_disease_water,false -kimschulz,social.data.coop,Mathematics,mathematics,false -kimschulz,social.data.coop,Journalism & Comment,news_comment_data,false -kimschulz,social.data.coop,Physics,physics,false -kimschulz,social.data.coop,Poverty & Inequality,poverty_inequality,false -kimschulz,social.data.coop,Programming,programming,false -kimschulz,social.data.coop,Science,science,false -kimschulz,social.data.coop,Social Media,social_media,false -kimschulz,social.data.coop,Space,space,false -kimschulz,social.data.coop,Ukraine Invasion,ukraine_invasion,false -kimschulz,social.data.coop,Weather,weather,false -kimschulz,social.data.coop,Technology,technology,true -cmonster,thecanadian.social,Journalism & Comment,news_comment_data,false -cmonster,thecanadian.social,Science,science,false -cmonster,thecanadian.social,US Sport,us_sport,false -cmonster,thecanadian.social,Weather,weather,false -cmonster,thecanadian.social,Space,space,true -tschigi,swiss.social,Space,space,true -worldbyisa,newsmast.social,Architecture & Design,architecture_design,false -worldbyisa,newsmast.social,Books & Literature,books_literature,false -worldbyisa,newsmast.social,Creative Arts,creative_arts,false -worldbyisa,newsmast.social,Nature & Wildlife,nature_wildlife,false -worldbyisa,newsmast.social,Travel,travel,true -youronlyone,c.im,History,history,false -ikuturso,mastodon.social,AI,ai,false -ikuturso,mastodon.social,Books & Literature,books_literature,false -ikuturso,mastodon.social,Democracy & Human Rights,democracy_human_rights,false -ikuturso,mastodon.social,Gaming,gaming,false -ikuturso,mastodon.social,Markets & Finance,markets_finance,false -ikuturso,mastodon.social,Movies,movies,false -ikuturso,mastodon.social,Politics,politics,false -ikuturso,mastodon.social,Poverty & Inequality,poverty_inequality,false -ikuturso,mastodon.social,Programming,programming,false -ikuturso,mastodon.social,Science,science,false -ikuturso,mastodon.social,Space,space,false -ikuturso,mastodon.social,Technology,technology,false -harrylyon,newsmast.social,Immigrants Rights,immigrants_rights,false -harrylyon,newsmast.social,Indigenous Peoples,indigenous_peoples,false -harrylyon,newsmast.social,LGBTQ+,lgbtq,false -catswhocode,mastodon.art,Technology,technology,true -harrylyon,newsmast.social,Black Voices,black_voices,true -_youssef_0k,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -aclrian,det.social,US Politics,us_politics,false -aclrian,det.social,Academia & Research,academia_research,false -aclrian,det.social,AI,ai,false -aclrian,det.social,Books & Literature,books_literature,false -aclrian,det.social,Breaking News,breaking_news,false -aclrian,det.social,Business,business,false -aclrian,det.social,Climate change,climate_change,false -aclrian,det.social,Gaming,gaming,false -aclrian,det.social,Government & Policy,government_policy,false -aclrian,det.social,Law & Justice,law_justice,false -aclrian,det.social,LGBTQ+,lgbtq,false -aclrian,det.social,Markets & Finance,markets_finance,false -aclrian,det.social,Movies,movies,false -aclrian,det.social,Music,music,false -aclrian,det.social,Journalism & Comment,news_comment_data,false -aclrian,det.social,Politics,politics,false -aclrian,det.social,Programming,programming,false -aclrian,det.social,Puzzles,puzzles,false -aclrian,det.social,Science,science,false -aclrian,det.social,Social Media,social_media,false -aclrian,det.social,Social Media,social_media,false -aclrian,det.social,Space,space,false -aclrian,det.social,Space,space,false -aclrian,det.social,Technology,technology,false -aclrian,det.social,Technology,technology,false -aclrian,det.social,Ukraine Invasion,ukraine_invasion,false -aclrian,det.social,Weather,weather,false -aclrian,det.social,US Politics,us_politics,true -cmonster,thecanadian.social,Books & Literature,books_literature,false -cmonster,thecanadian.social,Music,music,false -cmonster,thecanadian.social,TV & Radio,tv_radio,false -cmonster,thecanadian.social,Movies,movies,false -cmonster,thecanadian.social,Visual Arts,visual_arts,false -_youssef_0k,newsmast.social,Disabled Voices,disabled_voices,false -sydney_aokay,mastodon.social,Academia & Research,academia_research,false -_youssef_0k,newsmast.social,Energy & Pollution,energy_pollution,false -sydney_aokay,mastodon.social,AI,ai,false -sydney_aokay,mastodon.social,Architecture & Design,architecture_design,false -sydney_aokay,mastodon.social,Biodiversity & Rewilding,biodiversity_rewilding,false -sydney_aokay,mastodon.social,Biology,biology,false -sydney_aokay,mastodon.social,Black Voices,black_voices,false -sydney_aokay,mastodon.social,Books & Literature,books_literature,false -sydney_aokay,mastodon.social,Chemistry,chemistry,false -sydney_aokay,mastodon.social,Climate change,climate_change,false -sydney_aokay,mastodon.social,Creative Arts,creative_arts,false -youronlyone,c.im,Biodiversity & Rewilding,biodiversity_rewilding,false -youronlyone,c.im,Books & Literature,books_literature,false -youronlyone,c.im,Disabled Voices,disabled_voices,false -youronlyone,c.im,Environment,environment,false -youronlyone,c.im,Food & Drink,food_drink,false -youronlyone,c.im,Immigrants Rights,immigrants_rights,false -youronlyone,c.im,Mental Health & Wellbeing,mental_health_wellbeing,false -youronlyone,c.im,Movies,movies,false -youronlyone,c.im,Photography,photography,false -youronlyone,c.im,Programming,programming,false -youronlyone,c.im,Science,science,false -youronlyone,c.im,Technology,technology,false -youronlyone,c.im,Travel,travel,false -youronlyone,c.im,Weather,weather,false -youronlyone,c.im,Breaking News,breaking_news,true -youronlyone,c.im,Social Media,social_media,false -youronlyone,c.im,Academia & Research,academia_research,false -youronlyone,c.im,Engineering,engineering,false -youronlyone,c.im,Biology,biology,false -youronlyone,c.im,Chemistry,chemistry,false -youronlyone,c.im,Mathematics,mathematics,false -youronlyone,c.im,Physics,physics,false -youronlyone,c.im,Space,space,false -youronlyone,c.im,Gaming,gaming,false -youronlyone,c.im,TV & Radio,tv_radio,false -youronlyone,c.im,Nature & Wildlife,nature_wildlife,false -youronlyone,c.im,Humour,humour,false -sithubo_pt,newsmast.social,Academia & Research,academia_research,false -sithubo_pt,newsmast.social,Activism & Civil Rights,activism_civil_rights,false -sithubo_pt,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false -sithubo_pt,newsmast.social,Black Voices,black_voices,false -sithubo_pt,newsmast.social,Climate change,climate_change,false -sithubo_pt,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -sithubo_pt,newsmast.social,Disabled Voices,disabled_voices,false -sithubo_pt,newsmast.social,Energy & Pollution,energy_pollution,false -sithubo_pt,newsmast.social,Environment,environment,false -sithubo_pt,newsmast.social,Government & Policy,government_policy,false -sithubo_pt,newsmast.social,Healthcare,healthcare,false -sithubo_pt,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false -sithubo_pt,newsmast.social,Immigrants Rights,immigrants_rights,false -sithubo_pt,newsmast.social,Indigenous Peoples,indigenous_peoples,false -markr,newsmast.social,AI,ai,false -markr,newsmast.social,Architecture & Design,architecture_design,false -markr,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false -markr,newsmast.social,Biology,biology,false -markr,newsmast.social,Books & Literature,books_literature,false -markr,newsmast.social,Chemistry,chemistry,false -markr,newsmast.social,Climate change,climate_change,false -markr,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -markr,newsmast.social,Energy & Pollution,energy_pollution,false -markr,newsmast.social,Engineering,engineering,false -markr,newsmast.social,Environment,environment,false -markr,newsmast.social,Gaming,gaming,false -markr,newsmast.social,History,history,false -markr,newsmast.social,Humanities,humanities,false -markr,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false -markr,newsmast.social,Mathematics,mathematics,false -markr,newsmast.social,Movies,movies,false -markr,newsmast.social,Music,music,false -markr,newsmast.social,Journalism & Comment,news_comment_data,false -markr,newsmast.social,Performing Arts,performing_arts,false -markr,newsmast.social,Philosophy,philosophy,false -markr,newsmast.social,Photography,photography,false -markr,newsmast.social,Physics,physics,false -markr,newsmast.social,Poverty & Inequality,poverty_inequality,false -markr,newsmast.social,Programming,programming,false -markr,newsmast.social,Science,science,false -markr,newsmast.social,Social Sciences,social_sciences,false -markr,newsmast.social,Space,space,false -markr,newsmast.social,Technology,technology,false -markr,newsmast.social,TV & Radio,tv_radio,false -markr,newsmast.social,Visual Arts,visual_arts,false -markr,newsmast.social,Breaking News,breaking_news,true -mjgardner,social.sdf.org,Gaming,gaming,false -mjgardner,social.sdf.org,Music,music,false -mjgardner,social.sdf.org,Space,space,false -mjgardner,social.sdf.org,Technology,technology,false -mjgardner,social.sdf.org,Programming,programming,true -trygvekalland,snabelen.no,Democracy & Human Rights,democracy_human_rights,false -trygvekalland,snabelen.no,Politics,politics,false -trygvekalland,snabelen.no,Science,science,false -trygvekalland,snabelen.no,Technology,technology,false -trygvekalland,snabelen.no,Ukraine Invasion,ukraine_invasion,false -trygvekalland,snabelen.no,Breaking News,breaking_news,true -sydney_aokay,mastodon.social,Democracy & Human Rights,democracy_human_rights,false -sydney_aokay,mastodon.social,Disabled Voices,disabled_voices,false -Xaq,mastodon.sdf.org,Journalism & Comment,news_comment_data,false -Xaq,mastodon.sdf.org,Physics,physics,false -Xaq,mastodon.sdf.org,Science,science,false -Xaq,mastodon.sdf.org,Ukraine Invasion,ukraine_invasion,false -Xaq,mastodon.sdf.org,Space,space,true -Jason381,mastodon.social,Government & Policy,government_policy,false -Jason381,mastodon.social,Science,science,false -Jason381,mastodon.social,Social Media,social_media,false -Jason381,mastodon.social,Technology,technology,false -Jason381,mastodon.social,Breaking News,breaking_news,true -yvz,mstdn.social,Poverty & Inequality,poverty_inequality,false -yvz,mstdn.social,Programming,programming,false -yvz,mstdn.social,Science,science,false -yvz,mstdn.social,Social Media,social_media,false -yvz,mstdn.social,Space,space,false -yvz,mstdn.social,Ukraine Invasion,ukraine_invasion,false -yvz,mstdn.social,US Politics,us_politics,false -yvz,mstdn.social,Weather,weather,false -Jimellisuk,mstdn.social,Academia & Research,academia_research,false -Jimellisuk,mstdn.social,Activism & Civil Rights,activism_civil_rights,false -Jimellisuk,mstdn.social,AI,ai,false -Jimellisuk,mstdn.social,Architecture & Design,architecture_design,false -Jimellisuk,mstdn.social,Biodiversity & Rewilding,biodiversity_rewilding,false -Jimellisuk,mstdn.social,Biology,biology,false -Jimellisuk,mstdn.social,Books & Literature,books_literature,false -Jimellisuk,mstdn.social,Chemistry,chemistry,false -Jimellisuk,mstdn.social,Climate change,climate_change,false -Jimellisuk,mstdn.social,Democracy & Human Rights,democracy_human_rights,false -Jimellisuk,mstdn.social,Energy & Pollution,energy_pollution,false -Jimellisuk,mstdn.social,Engineering,engineering,false -Jimellisuk,mstdn.social,Environment,environment,false -Jimellisuk,mstdn.social,Gaming,gaming,false -Jimellisuk,mstdn.social,Government & Policy,government_policy,false -Jimellisuk,mstdn.social,Healthcare,healthcare,false -Jimellisuk,mstdn.social,History,history,false -Jimellisuk,mstdn.social,Humanities,humanities,false -Jimellisuk,mstdn.social,"Hunger, Disease & Water",hunger_disease_water,false -Jimellisuk,mstdn.social,Law & Justice,law_justice,false -Jimellisuk,mstdn.social,Mathematics,mathematics,false -Jimellisuk,mstdn.social,Movies,movies,false -Jimellisuk,mstdn.social,Music,music,false -Jimellisuk,mstdn.social,Journalism & Comment,news_comment_data,false -Jimellisuk,mstdn.social,Performing Arts,performing_arts,false -Jimellisuk,mstdn.social,Philosophy,philosophy,false -Jimellisuk,mstdn.social,Photography,photography,false -Jimellisuk,mstdn.social,Physics,physics,false -Jimellisuk,mstdn.social,Politics,politics,false -Jimellisuk,mstdn.social,Poverty & Inequality,poverty_inequality,false -Jimellisuk,mstdn.social,Programming,programming,false -Jimellisuk,mstdn.social,Science,science,false -Jimellisuk,mstdn.social,Breaking News,breaking_news,true -yvz,mstdn.social,Technology,technology,true -csolisr,hub.azkware.net,Biodiversity & Rewilding,biodiversity_rewilding,false -csolisr,hub.azkware.net,Biology,biology,false -csolisr,hub.azkware.net,Chemistry,chemistry,false -csolisr,hub.azkware.net,Engineering,engineering,false -csolisr,hub.azkware.net,Environment,environment,false -csolisr,hub.azkware.net,History,history,false -csolisr,hub.azkware.net,Humanities,humanities,false -csolisr,hub.azkware.net,Mathematics,mathematics,false -csolisr,hub.azkware.net,Philosophy,philosophy,false -csolisr,hub.azkware.net,Physics,physics,false -csolisr,hub.azkware.net,Programming,programming,false -csolisr,hub.azkware.net,Science,science,false -csolisr,hub.azkware.net,Social Sciences,social_sciences,false -csolisr,hub.azkware.net,Space,space,false -csolisr,hub.azkware.net,Technology,technology,false -csolisr,hub.azkware.net,Breaking News,breaking_news,true -steffoz,mastodon.social,AI,ai,false -steffoz,mastodon.social,Books & Literature,books_literature,false -steffoz,mastodon.social,Climate change,climate_change,false -steffoz,mastodon.social,Journalism & Comment,news_comment_data,false -Jimellisuk,mstdn.social,Social Media,social_media,false -Jimellisuk,mstdn.social,Social Sciences,social_sciences,false -Jimellisuk,mstdn.social,Space,space,false -Jimellisuk,mstdn.social,Technology,technology,false -Jimellisuk,mstdn.social,TV & Radio,tv_radio,false -Jimellisuk,mstdn.social,Ukraine Invasion,ukraine_invasion,false -Jimellisuk,mstdn.social,US Politics,us_politics,false -Jimellisuk,mstdn.social,Visual Arts,visual_arts,false -Jimellisuk,mstdn.social,Weather,weather,false -mjgardner,social.sdf.org,Philosophy,philosophy,false -sydney_aokay,mastodon.social,Energy & Pollution,energy_pollution,false -sydney_aokay,mastodon.social,Engineering,engineering,false -sydney_aokay,mastodon.social,Environment,environment,false -sithubo_pt,newsmast.social,Law & Justice,law_justice,false -sithubo_pt,newsmast.social,LGBTQ+,lgbtq,false -sithubo_pt,newsmast.social,Journalism & Comment,news_comment_data,false -sithubo_pt,newsmast.social,Politics,politics,false -sithubo_pt,newsmast.social,Poverty & Inequality,poverty_inequality,false -sithubo_pt,newsmast.social,Social Media,social_media,false -sithubo_pt,newsmast.social,Ukraine Invasion,ukraine_invasion,false -sithubo_pt,newsmast.social,US Politics,us_politics,false -sithubo_pt,newsmast.social,Weather,weather,false -sithubo_pt,newsmast.social,Women’s Voices,women_voices,false -sithubo_pt,newsmast.social,Breaking News,breaking_news,true -ikuturso,mastodon.social,US Politics,us_politics,false -khabeko,techhub.social,AI,ai,false -wysteria,baraag.net,Space,space,false -wysteria,baraag.net,Visual Arts,visual_arts,false -wysteria,baraag.net,Programming,programming,true -khabeko,techhub.social,Biology,biology,false -khabeko,techhub.social,Breaking News,breaking_news,false -khabeko,techhub.social,Chemistry,chemistry,false -khabeko,techhub.social,Engineering,engineering,false -OlPatchy2Eyes,ieji.de,Environment,environment,false -ikuturso,mastodon.social,Weather,weather,false -ikuturso,mastodon.social,Ukraine Invasion,ukraine_invasion,true -steffoz,mastodon.social,Poverty & Inequality,poverty_inequality,false -steffoz,mastodon.social,Programming,programming,false -steffoz,mastodon.social,Mental Health & Wellbeing,mental_health_wellbeing,true -OlPatchy2Eyes,ieji.de,Climate change,climate_change,false -GlobalRewilding,newsmast.social,Academia & Research,academia_research,false -GlobalRewilding,newsmast.social,Climate change,climate_change,false -GlobalRewilding,newsmast.social,Environment,environment,false -GlobalRewilding,newsmast.social,Government & Policy,government_policy,false -khaled57,newsmast.social,Creative Arts,creative_arts,false -khaled57,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -khaled57,newsmast.social,Food & Drink,food_drink,false -khaled57,newsmast.social,Humour,humour,false -khaled57,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false -khaled57,newsmast.social,Nature & Wildlife,nature_wildlife,false -khaled57,newsmast.social,Pets,pets,false -khaled57,newsmast.social,Poverty & Inequality,poverty_inequality,false -khaled57,newsmast.social,Puzzles,puzzles,false -khaled57,newsmast.social,Travel,travel,false -khaled57,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,true -GlobalRewilding,newsmast.social,Science,science,false -sweetroll,climatejustice.social,Biology,biology,false -sweetroll,climatejustice.social,Books & Literature,books_literature,false -sweetroll,climatejustice.social,Climate change,climate_change,false -sweetroll,climatejustice.social,Creative Arts,creative_arts,false -sweetroll,climatejustice.social,Disabled Voices,disabled_voices,false -sweetroll,climatejustice.social,Environment,environment,false -sweetroll,climatejustice.social,Food & Drink,food_drink,false -sweetroll,climatejustice.social,Gaming,gaming,false -sweetroll,climatejustice.social,Immigrants Rights,immigrants_rights,false -sweetroll,climatejustice.social,LGBTQ+,lgbtq,false -sweetroll,climatejustice.social,Mental Health & Wellbeing,mental_health_wellbeing,false -sweetroll,climatejustice.social,Nature & Wildlife,nature_wildlife,false -sweetroll,climatejustice.social,Physics,physics,false -sweetroll,climatejustice.social,Science,science,false -sweetroll,climatejustice.social,Women’s Voices,women_voices,false -sweetroll,climatejustice.social,Pets,pets,true -petri,newsmast.social,Breaking News,breaking_news,false -petri,newsmast.social,Engineering,engineering,false -petri,newsmast.social,Programming,programming,false -petri,newsmast.social,Science,science,false -petri,newsmast.social,Space,space,false -justingood,hachyderm.io,Black Voices,black_voices,false -justingood,hachyderm.io,Gaming,gaming,false -justingood,hachyderm.io,LGBTQ+,lgbtq,false -justingood,hachyderm.io,Physics,physics,false -justingood,hachyderm.io,Programming,programming,false -justingood,hachyderm.io,Science,science,false -justingood,hachyderm.io,Space,space,false -justingood,hachyderm.io,Technology,technology,false -justingood,hachyderm.io,TV & Radio,tv_radio,false -justingood,hachyderm.io,Engineering,engineering,true -petri,newsmast.social,Weather,weather,false -petri,newsmast.social,Technology,technology,true -themadcodger,pdx.social,AI,ai,false -themadcodger,pdx.social,Breaking News,breaking_news,false -themadcodger,pdx.social,Environment,environment,false -themadcodger,pdx.social,Politics,politics,false -themadcodger,pdx.social,US Politics,us_politics,false -themadcodger,pdx.social,Weather,weather,false -themadcodger,pdx.social,Technology,technology,true -eob,social.coop,AI,ai,false -eob,social.coop,Biology,biology,false -huntsyea,indieweb.social,Business,business,false -huntsyea,indieweb.social,Programming,programming,false -huntsyea,indieweb.social,Technology,technology,true -eob,social.coop,Government & Policy,government_policy,false -eob,social.coop,History,history,false -eob,social.coop,Mathematics,mathematics,false -eob,social.coop,Journalism & Comment,news_comment_data,false -eob,social.coop,Philosophy,philosophy,false -eob,social.coop,Physics,physics,false -eob,social.coop,Politics,politics,false -eob,social.coop,Programming,programming,false -eob,social.coop,Science,science,false -eob,social.coop,Space,space,false -eob,social.coop,US Politics,us_politics,false -eob,social.coop,Technology,technology,true -sydney_aokay,mastodon.social,Food & Drink,food_drink,false -sydney_aokay,mastodon.social,Gaming,gaming,false -sydney_aokay,mastodon.social,Government & Policy,government_policy,false -sydney_aokay,mastodon.social,Healthcare,healthcare,false -sydney_aokay,mastodon.social,History,history,false -sydney_aokay,mastodon.social,Humanities,humanities,false -sydney_aokay,mastodon.social,Humour,humour,false -sydney_aokay,mastodon.social,"Hunger, Disease & Water",hunger_disease_water,false -sydney_aokay,mastodon.social,Immigrants Rights,immigrants_rights,false -a132,fediscience.org,AI,ai,false -sydney_aokay,mastodon.social,Indigenous Peoples,indigenous_peoples,false -a132,fediscience.org,Engineering,engineering,false -sydney_aokay,mastodon.social,Law & Justice,law_justice,false -a132,fediscience.org,Mathematics,mathematics,false -a132,fediscience.org,Programming,programming,false -a132,fediscience.org,Science,science,false -a132,fediscience.org,Space,space,false -a132,fediscience.org,Academia & Research,academia_research,true -sydney_aokay,mastodon.social,LGBTQ+,lgbtq,false -sydney_aokay,mastodon.social,Mathematics,mathematics,false -sydney_aokay,mastodon.social,Mental Health & Wellbeing,mental_health_wellbeing,false -rgaida,mastodon.social,AI,ai,false -rgaida,mastodon.social,Breaking News,breaking_news,false -rgaida,mastodon.social,Engineering,engineering,false -rgaida,mastodon.social,Social Sciences,social_sciences,false -rgaida,mastodon.social,Space,space,false -rgaida,mastodon.social,Technology,technology,false -rgaida,mastodon.social,Programming,programming,true -brian,dads.so,Programming,programming,false -brian,dads.so,Science,science,false -brian,dads.so,Technology,technology,true -ernie,writing.exchange,Breaking News,breaking_news,false -ernie,writing.exchange,Business,business,false -ernie,writing.exchange,Music,music,false -ernie,writing.exchange,Journalism & Comment,news_comment_data,false -ernie,writing.exchange,US Politics,us_politics,false -ernie,writing.exchange,Technology,technology,true -benfell,infosec.exchange,Biodiversity & Rewilding,biodiversity_rewilding,false -benfell,infosec.exchange,Breaking News,breaking_news,false -benfell,infosec.exchange,Chemistry,chemistry,false -benfell,infosec.exchange,Climate change,climate_change,false -benfell,infosec.exchange,Democracy & Human Rights,democracy_human_rights,false -benfell,infosec.exchange,Energy & Pollution,energy_pollution,false -benfell,infosec.exchange,Environment,environment,false -benfell,infosec.exchange,Government & Policy,government_policy,false -benfell,infosec.exchange,Healthcare,healthcare,false -benfell,infosec.exchange,History,history,false -benfell,infosec.exchange,Humanities,humanities,false -benfell,infosec.exchange,"Hunger, Disease & Water",hunger_disease_water,false -benfell,infosec.exchange,Law & Justice,law_justice,false -benfell,infosec.exchange,Journalism & Comment,news_comment_data,false -benfell,infosec.exchange,Philosophy,philosophy,false -benfell,infosec.exchange,Physics,physics,false -benfell,infosec.exchange,Politics,politics,false -benfell,infosec.exchange,Poverty & Inequality,poverty_inequality,false -benfell,infosec.exchange,Science,science,false -benfell,infosec.exchange,Social Sciences,social_sciences,false -benfell,infosec.exchange,Space,space,false -benfell,infosec.exchange,Technology,technology,false -benfell,infosec.exchange,Ukraine Invasion,ukraine_invasion,false -benfell,infosec.exchange,US Politics,us_politics,false -benfell,infosec.exchange,Weather,weather,false -benfell,infosec.exchange,Workers Rights,workers_rights,false -benfell,infosec.exchange,Academia & Research,academia_research,true -phelan,mastodon.ie,Architecture & Design,architecture_design,false -phelan,mastodon.ie,Biodiversity & Rewilding,biodiversity_rewilding,false -phelan,mastodon.ie,Climate change,climate_change,false -phelan,mastodon.ie,History,history,false -phelan,mastodon.ie,Music,music,false -phelan,mastodon.ie,Philosophy,philosophy,false -phelan,mastodon.ie,Photography,photography,false -phelan,mastodon.ie,Programming,programming,false -phelan,mastodon.ie,Technology,technology,false -phelan,mastodon.ie,Visual Arts,visual_arts,false -phelan,mastodon.ie,Environment,environment,true -joewynne,mindly.social,Biology,biology,false -joewynne,mindly.social,Environment,environment,false -joewynne,mindly.social,Poverty & Inequality,poverty_inequality,false -joewynne,mindly.social,Science,science,false -joewynne,mindly.social,Biodiversity & Rewilding,biodiversity_rewilding,true -oschene,mastodon.social,Mathematics,mathematics,false -oschene,mastodon.social,Science,science,false -oschene,mastodon.social,Space,space,false -oschene,mastodon.social,Technology,technology,false -oschene,mastodon.social,Weather,weather,false -oschene,mastodon.social,Breaking News,breaking_news,true -aichessem,universeodon.com,AI,ai,false -aichessem,universeodon.com,Biology,biology,false -aichessem,universeodon.com,Breaking News,breaking_news,false -aichessem,universeodon.com,Chemistry,chemistry,false -aichessem,universeodon.com,Engineering,engineering,false -aichessem,universeodon.com,Mathematics,mathematics,false -aichessem,universeodon.com,Journalism & Comment,news_comment_data,false -aichessem,universeodon.com,Programming,programming,false -aichessem,universeodon.com,Science,science,false -aichessem,universeodon.com,Space,space,false -aichessem,universeodon.com,Technology,technology,false -aichessem,universeodon.com,Weather,weather,false -aichessem,universeodon.com,Physics,physics,true -sydney_aokay,mastodon.social,Movies,movies,false -sydney_aokay,mastodon.social,Music,music,false -sydney_aokay,mastodon.social,Nature & Wildlife,nature_wildlife,false -sydney_aokay,mastodon.social,Journalism & Comment,news_comment_data,false -sydney_aokay,mastodon.social,Performing Arts,performing_arts,false -sydney_aokay,mastodon.social,Pets,pets,false -Tealk,rollenspiel.social,Engineering,engineering,false -Tealk,rollenspiel.social,Physics,physics,false -Tealk,rollenspiel.social,Programming,programming,false -Tealk,rollenspiel.social,Science,science,false -Tealk,rollenspiel.social,Space,space,false -Tealk,rollenspiel.social,Technology,technology,true -sydney_aokay,mastodon.social,Philosophy,philosophy,false -sydney_aokay,mastodon.social,Photography,photography,false -sydney_aokay,mastodon.social,Physics,physics,false -sydney_aokay,mastodon.social,Politics,politics,false -sydney_aokay,mastodon.social,Poverty & Inequality,poverty_inequality,false -sydney_aokay,mastodon.social,Programming,programming,false -sydney_aokay,mastodon.social,Puzzles,puzzles,false -sydney_aokay,mastodon.social,Science,science,false -sydney_aokay,mastodon.social,Social Media,social_media,false -sydney_aokay,mastodon.social,Social Sciences,social_sciences,false -julieninthesky,mastodon.art,Architecture & Design,architecture_design,false -julieninthesky,mastodon.art,Environment,environment,false -julieninthesky,mastodon.art,Movies,movies,false -julieninthesky,mastodon.art,Music,music,false -julieninthesky,mastodon.art,Performing Arts,performing_arts,false -julieninthesky,mastodon.art,Photography,photography,false -julieninthesky,mastodon.art,Programming,programming,false -julieninthesky,mastodon.art,Science,science,false -julieninthesky,mastodon.art,Technology,technology,false -julieninthesky,mastodon.art,Visual Arts,visual_arts,true -sydney_aokay,mastodon.social,Space,space,false -sydney_aokay,mastodon.social,Sport,sport,false -sydney_aokay,mastodon.social,Technology,technology,false -sydney_aokay,mastodon.social,Travel,travel,false -sydney_aokay,mastodon.social,TV & Radio,tv_radio,false -sydney_aokay,mastodon.social,US Politics,us_politics,false -sydney_aokay,mastodon.social,Visual Arts,visual_arts,false -sydney_aokay,mastodon.social,Women’s Voices,women_voices,false -sydney_aokay,mastodon.social,Activism & Civil Rights,activism_civil_rights,true -d_krueger,mas.to,Academia & Research,academia_research,false -d_krueger,mas.to,Biodiversity & Rewilding,biodiversity_rewilding,false -d_krueger,mas.to,Business,business,false -OlPatchy2Eyes,ieji.de,Energy & Pollution,energy_pollution,false -GlobalRewilding,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,true -KyawZinLinn123,newsmast.social,AI,ai,false -KyawZinLinn123,newsmast.social,Biology,biology,false -KyawZinLinn123,newsmast.social,Chemistry,chemistry,false -KyawZinLinn123,newsmast.social,Engineering,engineering,false -KyawZinLinn123,newsmast.social,Mathematics,mathematics,false -KyawZinLinn123,newsmast.social,Physics,physics,false -KyawZinLinn123,newsmast.social,Science,science,false -KyawZinLinn123,newsmast.social,Space,space,false -KyawZinLinn123,newsmast.social,Technology,technology,false -KyawZinLinn123,newsmast.social,Programming,programming,true -DadeMurphy,burma.social,Journalism & Comment,news_comment_data,false -DadeMurphy,burma.social,Poverty & Inequality,poverty_inequality,false -DadeMurphy,burma.social,Academia & Research,academia_research,false -DadeMurphy,burma.social,Healthcare,healthcare,false -DadeMurphy,burma.social,Politics,politics,false -DadeMurphy,burma.social,US Politics,us_politics,false -mttaggart,newsmast.social,Academia & Research,academia_research,false -mttaggart,newsmast.social,Activism & Civil Rights,activism_civil_rights,false -mttaggart,newsmast.social,AI,ai,false -mttaggart,newsmast.social,Architecture & Design,architecture_design,false -mttaggart,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false -mttaggart,newsmast.social,Biology,biology,false -mttaggart,newsmast.social,Black Voices,black_voices,false -mttaggart,newsmast.social,Books & Literature,books_literature,false -mttaggart,newsmast.social,Breaking News,breaking_news,false -mttaggart,newsmast.social,Business,business,false -mttaggart,newsmast.social,Chemistry,chemistry,false -mttaggart,newsmast.social,Climate change,climate_change,false -mttaggart,newsmast.social,Creative Arts,creative_arts,false -mttaggart,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -mttaggart,newsmast.social,Disabled Voices,disabled_voices,false -mttaggart,newsmast.social,Energy & Pollution,energy_pollution,false -mttaggart,newsmast.social,Engineering,engineering,false -mttaggart,newsmast.social,Environment,environment,false -DadeMurphy,burma.social,Environment,environment,false -DadeMurphy,burma.social,Climate change,climate_change,false -DadeMurphy,burma.social,Black Voices,black_voices,false -DadeMurphy,burma.social,Disabled Voices,disabled_voices,false -DadeMurphy,burma.social,Business,business,false -DadeMurphy,burma.social,Humanities,humanities,false -DadeMurphy,burma.social,History,history,false -DadeMurphy,burma.social,Performing Arts,performing_arts,false -DadeMurphy,burma.social,Football,football,false -DadeMurphy,burma.social,Puzzles,puzzles,false -DadeMurphy,burma.social,Travel,travel,false -mttaggart,newsmast.social,Food & Drink,food_drink,false -mttaggart,newsmast.social,Gaming,gaming,false -mttaggart,newsmast.social,Government & Policy,government_policy,false -mttaggart,newsmast.social,Healthcare,healthcare,false -mttaggart,newsmast.social,History,history,false -mttaggart,newsmast.social,Humanities,humanities,false -mttaggart,newsmast.social,Humour,humour,false -mttaggart,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false -mttaggart,newsmast.social,Immigrants Rights,immigrants_rights,false -mttaggart,newsmast.social,Indigenous Peoples,indigenous_peoples,false -mttaggart,newsmast.social,Law & Justice,law_justice,false -mttaggart,newsmast.social,LGBTQ+,lgbtq,false -mttaggart,newsmast.social,Markets & Finance,markets_finance,false -mttaggart,newsmast.social,Mathematics,mathematics,false -mttaggart,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false -mttaggart,newsmast.social,Movies,movies,false -mttaggart,newsmast.social,Music,music,false -mttaggart,newsmast.social,Nature & Wildlife,nature_wildlife,false -mttaggart,newsmast.social,Journalism & Comment,news_comment_data,false -mttaggart,newsmast.social,Performing Arts,performing_arts,false -mttaggart,newsmast.social,Pets,pets,false -mttaggart,newsmast.social,Philosophy,philosophy,false -mttaggart,newsmast.social,Photography,photography,false -mttaggart,newsmast.social,Physics,physics,false -mttaggart,newsmast.social,Politics,politics,false -mttaggart,newsmast.social,Poverty & Inequality,poverty_inequality,false -mttaggart,newsmast.social,Programming,programming,false -mttaggart,newsmast.social,Puzzles,puzzles,false -mttaggart,newsmast.social,Science,science,false -mttaggart,newsmast.social,Social Media,social_media,false -mttaggart,newsmast.social,Social Sciences,social_sciences,false -mttaggart,newsmast.social,Space,space,false -mttaggart,newsmast.social,Travel,travel,false -mttaggart,newsmast.social,TV & Radio,tv_radio,false -mttaggart,newsmast.social,Ukraine Invasion,ukraine_invasion,false -mttaggart,newsmast.social,US Politics,us_politics,false -mttaggart,newsmast.social,Visual Arts,visual_arts,false -mttaggart,newsmast.social,Weather,weather,false -mttaggart,newsmast.social,Women’s Voices,women_voices,false -mttaggart,newsmast.social,Workers Rights,workers_rights,false -mttaggart,newsmast.social,Technology,technology,true -sydney_aokay,mastodon.social,Breaking News,breaking_news,false -alexdickson,newsmast.social,Food & Drink,food_drink,false -alexdickson,newsmast.social,History,history,false -alexdickson,newsmast.social,Humanities,humanities,false -alexdickson,newsmast.social,Humour,humour,false -alexdickson,newsmast.social,Markets & Finance,markets_finance,false -alexdickson,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false -a,linuxrocks.online,Books & Literature,books_literature,false -a,linuxrocks.online,Engineering,engineering,false -a,linuxrocks.online,Immigrants Rights,immigrants_rights,false -a,linuxrocks.online,Technology,technology,false -a,linuxrocks.online,Programming,programming,true -alexdickson,newsmast.social,Nature & Wildlife,nature_wildlife,false -dcm,social.sunet.se,Books & Literature,books_literature,false -dcm,social.sunet.se,Breaking News,breaking_news,false -dcm,social.sunet.se,Gaming,gaming,false -dcm,social.sunet.se,Humanities,humanities,false -dcm,social.sunet.se,Movies,movies,false -dcm,social.sunet.se,Music,music,false -dcm,social.sunet.se,Philosophy,philosophy,false -dcm,social.sunet.se,Politics,politics,false -dcm,social.sunet.se,Science,science,false -dcm,social.sunet.se,Technology,technology,false -dcm,social.sunet.se,Ukraine Invasion,ukraine_invasion,false -dcm,social.sunet.se,AI,ai,true -berot3,newsmast.social,Breaking News,breaking_news,false -berot3,newsmast.social,Journalism & Comment,news_comment_data,false -berot3,newsmast.social,Programming,programming,false -berot3,newsmast.social,Social Media,social_media,false -berot3,newsmast.social,Technology,technology,false -berot3,newsmast.social,Ukraine Invasion,ukraine_invasion,false -berot3,newsmast.social,Weather,weather,false -berot3,newsmast.social,AI,ai,true -johnlago,mastodon.social,AI,ai,false -johnlago,mastodon.social,Breaking News,breaking_news,false -johnlago,mastodon.social,Gaming,gaming,false -johnlago,mastodon.social,Movies,movies,false -johnlago,mastodon.social,Journalism & Comment,news_comment_data,false -johnlago,mastodon.social,Performing Arts,performing_arts,false -johnlago,mastodon.social,Photography,photography,false -johnlago,mastodon.social,Programming,programming,false -johnlago,mastodon.social,Science,science,false -johnlago,mastodon.social,Social Media,social_media,false -johnlago,mastodon.social,Space,space,false -johnlago,mastodon.social,TV & Radio,tv_radio,false -johnlago,mastodon.social,Technology,technology,true -joshmike35,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -joshmike35,newsmast.social,Government & Policy,government_policy,false -joshmike35,newsmast.social,Healthcare,healthcare,false -joshmike35,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false -joshmike35,newsmast.social,Law & Justice,law_justice,false -joshmike35,newsmast.social,Politics,politics,false -joshmike35,newsmast.social,Poverty & Inequality,poverty_inequality,false -joshmike35,newsmast.social,US Politics,us_politics,false -joshmike35,newsmast.social,Academia & Research,academia_research,true -wooWike23,newsmast.social,Breaking News,breaking_news,false -wooWike23,newsmast.social,Journalism & Comment,news_comment_data,false -wooWike23,newsmast.social,Social Media,social_media,false -wooWike23,newsmast.social,Ukraine Invasion,ukraine_invasion,false -wooWike23,newsmast.social,Weather,weather,true -bech,mstdn.dk,Climate change,climate_change,false -bech,mstdn.dk,Energy & Pollution,energy_pollution,false -bech,mstdn.dk,Science,science,false -bech,mstdn.dk,Space,space,false -bech,mstdn.dk,Technology,technology,false -bech,mstdn.dk,Visual Arts,visual_arts,false -alexdickson,newsmast.social,Pets,pets,false -alexdickson,newsmast.social,Philosophy,philosophy,false -alexdickson,newsmast.social,Puzzles,puzzles,false -Marakana,mastodon.social,AI,ai,false -andrew,andrew.masto.host,Food & Drink,food_drink,false -andrew,andrew.masto.host,Football,football,false -andrew,andrew.masto.host,Nature & Wildlife,nature_wildlife,false -andrew,andrew.masto.host,Travel,travel,false -andrew,andrew.masto.host,Technology,technology,true -Marakana,mastodon.social,Food & Drink,food_drink,false -Marakana,mastodon.social,Politics,politics,false -Marakana,mastodon.social,Programming,programming,false -Marakana,mastodon.social,Puzzles,puzzles,false -Marakana,mastodon.social,Technology,technology,false -oatmeal,kolektiva.social,AI,ai,false -oatmeal,kolektiva.social,History,history,false -oatmeal,kolektiva.social,Journalism & Comment,news_comment_data,false -oatmeal,kolektiva.social,Programming,programming,false -oatmeal,kolektiva.social,Humanities,humanities,true -Marakana,mastodon.social,Breaking News,breaking_news,true -nathan,social.lostinok.com,Academia & Research,academia_research,false -nathan,social.lostinok.com,AI,ai,false -nathan,social.lostinok.com,Biology,biology,false -nathan,social.lostinok.com,Books & Literature,books_literature,false -nathan,social.lostinok.com,Breaking News,breaking_news,false -nathan,social.lostinok.com,Business,business,false -nathan,social.lostinok.com,Energy & Pollution,energy_pollution,false -nathan,social.lostinok.com,Engineering,engineering,false -nathan,social.lostinok.com,Environment,environment,false -nathan,social.lostinok.com,Government & Policy,government_policy,false -nathan,social.lostinok.com,History,history,false -nathan,social.lostinok.com,Humanities,humanities,false -nathan,social.lostinok.com,Law & Justice,law_justice,false -nathan,social.lostinok.com,Markets & Finance,markets_finance,false -nathan,social.lostinok.com,Movies,movies,false -nathan,social.lostinok.com,Music,music,false -alexdickson,newsmast.social,Social Sciences,social_sciences,false -alexdickson,newsmast.social,Workers Rights,workers_rights,false -alexdickson,newsmast.social,Business,business,true -_youssef_0k,newsmast.social,Engineering,engineering,false -_youssef_0k,newsmast.social,Environment,environment,false -_youssef_0k,newsmast.social,Food & Drink,food_drink,false -_youssef_0k,newsmast.social,Football,football,false -_youssef_0k,newsmast.social,Gaming,gaming,false -_youssef_0k,newsmast.social,Government & Policy,government_policy,false -_youssef_0k,newsmast.social,Healthcare,healthcare,false -_youssef_0k,newsmast.social,History,history,false -_youssef_0k,newsmast.social,Humanities,humanities,false -_youssef_0k,newsmast.social,Humour,humour,false -_youssef_0k,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false -_youssef_0k,newsmast.social,Immigrants Rights,immigrants_rights,false -_youssef_0k,newsmast.social,Indigenous Peoples,indigenous_peoples,false -_youssef_0k,newsmast.social,Law & Justice,law_justice,false -_youssef_0k,newsmast.social,LGBTQ+,lgbtq,false -_youssef_0k,newsmast.social,Markets & Finance,markets_finance,false -_youssef_0k,newsmast.social,Mathematics,mathematics,false -_youssef_0k,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false -_youssef_0k,newsmast.social,Movies,movies,false -_youssef_0k,newsmast.social,Music,music,false -_youssef_0k,newsmast.social,Nature & Wildlife,nature_wildlife,false -_youssef_0k,newsmast.social,Journalism & Comment,news_comment_data,false -_youssef_0k,newsmast.social,Performing Arts,performing_arts,false -_youssef_0k,newsmast.social,Pets,pets,false -_youssef_0k,newsmast.social,Philosophy,philosophy,false -_youssef_0k,newsmast.social,Photography,photography,false -sinclair,techhub.social,Technology,technology,true -zheka296,newsmast.social,Breaking News,breaking_news,false -zheka296,newsmast.social,Chemistry,chemistry,false -zheka296,newsmast.social,Immigrants Rights,immigrants_rights,false -zheka296,newsmast.social,Mathematics,mathematics,false -zheka296,newsmast.social,Weather,weather,true -mpmilestogo,moth.social,Mental Health & Wellbeing,mental_health_wellbeing,false -mpmilestogo,moth.social,Social Media,social_media,false -mpmilestogo,moth.social,Technology,technology,false -mpmilestogo,moth.social,Travel,travel,false -mpmilestogo,moth.social,Breaking News,breaking_news,true -mpmilestogo,moth.social,History,history,false -mpmilestogo,moth.social,Social Sciences,social_sciences,false -mpmilestogo,moth.social,Photography,photography,false -mpmilestogo,moth.social,Books & Literature,books_literature,false -hanism,newsmast.social,AI,ai,false -hanism,newsmast.social,Biology,biology,false -hanism,newsmast.social,Breaking News,breaking_news,false -hanism,newsmast.social,Chemistry,chemistry,false -hanism,newsmast.social,Engineering,engineering,false -hanism,newsmast.social,Mathematics,mathematics,false -hanism,newsmast.social,Journalism & Comment,news_comment_data,false -hanism,newsmast.social,Physics,physics,false -hanism,newsmast.social,Programming,programming,false -hanism,newsmast.social,Science,science,false -hanism,newsmast.social,Technology,technology,false -hanism,newsmast.social,Space,space,true -b_o_b_o,newsmast.social,Journalism & Comment,news_comment_data,false -b_o_b_o,newsmast.social,Social Media,social_media,false -b_o_b_o,newsmast.social,Ukraine Invasion,ukraine_invasion,false -b_o_b_o,newsmast.social,Weather,weather,false -b_o_b_o,newsmast.social,Breaking News,breaking_news,true -torogbeck,newsmast.social,Activism & Civil Rights,activism_civil_rights,false -torogbeck,newsmast.social,Creative Arts,creative_arts,false -bech,mstdn.dk,Programming,programming,true -torogbeck,newsmast.social,Government & Policy,government_policy,false -torogbeck,newsmast.social,History,history,false -torogbeck,newsmast.social,Humanities,humanities,false -torogbeck,newsmast.social,Humour,humour,false -torogbeck,newsmast.social,Law & Justice,law_justice,false -torogbeck,newsmast.social,LGBTQ+,lgbtq,false -torogbeck,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false -torogbeck,newsmast.social,Movies,movies,false -torogbeck,newsmast.social,Music,music,false -torogbeck,newsmast.social,Nature & Wildlife,nature_wildlife,false -torogbeck,newsmast.social,Journalism & Comment,news_comment_data,false -torogbeck,newsmast.social,Politics,politics,false -torogbeck,newsmast.social,Programming,programming,false -torogbeck,newsmast.social,Social Media,social_media,false -torogbeck,newsmast.social,Social Sciences,social_sciences,false -torogbeck,newsmast.social,Technology,technology,false -torogbeck,newsmast.social,TV & Radio,tv_radio,false -torogbeck,newsmast.social,US Politics,us_politics,false -torogbeck,newsmast.social,Weather,weather,false -torogbeck,newsmast.social,Breaking News,breaking_news,true -johnDaonld,newsmast.social,Architecture & Design,architecture_design,false -johnDaonld,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false -johnDaonld,newsmast.social,Books & Literature,books_literature,false -johnDaonld,newsmast.social,Climate change,climate_change,false -jramompichel2023,mastodon.social,Creative Arts,creative_arts,false -nathan,social.lostinok.com,Journalism & Comment,news_comment_data,false -nathan,social.lostinok.com,Performing Arts,performing_arts,false -nathan,social.lostinok.com,Philosophy,philosophy,false -nathan,social.lostinok.com,Photography,photography,false -nathan,social.lostinok.com,Physics,physics,false -nathan,social.lostinok.com,Politics,politics,false -nathan,social.lostinok.com,Science,science,false -nathan,social.lostinok.com,Social Media,social_media,false -dexterrat,mathstodon.xyz,Architecture & Design,architecture_design,false -dexterrat,mathstodon.xyz,Books & Literature,books_literature,false -dexterrat,mathstodon.xyz,Breaking News,breaking_news,false -dexterrat,mathstodon.xyz,Football,football,false -dexterrat,mathstodon.xyz,Gaming,gaming,false -dexterrat,mathstodon.xyz,Movies,movies,false -dexterrat,mathstodon.xyz,Music,music,false -dexterrat,mathstodon.xyz,Journalism & Comment,news_comment_data,false -dexterrat,mathstodon.xyz,Photography,photography,false -dexterrat,mathstodon.xyz,Social Media,social_media,false -dexterrat,mathstodon.xyz,Sport,sport,false -dexterrat,mathstodon.xyz,TV & Radio,tv_radio,false -dexterrat,mathstodon.xyz,Ukraine Invasion,ukraine_invasion,false -dexterrat,mathstodon.xyz,US Sport,us_sport,false -dexterrat,mathstodon.xyz,Visual Arts,visual_arts,false -dexterrat,mathstodon.xyz,Weather,weather,false -dexterrat,mathstodon.xyz,Performing Arts,performing_arts,true -F_johnson1848,mastodon.social,Movies,movies,false -dexterrat,mathstodon.xyz,Science,science,false -dexterrat,mathstodon.xyz,Mathematics,mathematics,false -dexterrat,mathstodon.xyz,Physics,physics,false -dexterrat,mathstodon.xyz,Space,space,false -nathan,social.lostinok.com,Social Sciences,social_sciences,false -nathan,social.lostinok.com,Space,space,false -nathan,social.lostinok.com,Technology,technology,false -nathan,social.lostinok.com,TV & Radio,tv_radio,false -nathan,social.lostinok.com,Ukraine Invasion,ukraine_invasion,false -nathan,social.lostinok.com,US Politics,us_politics,false -nathan,social.lostinok.com,Visual Arts,visual_arts,false -nathan,social.lostinok.com,Programming,programming,true -DadeMurphy,burma.social,Democracy & Human Rights,democracy_human_rights,false -DadeMurphy,burma.social,Government & Policy,government_policy,false -DadeMurphy,burma.social,Immigrants Rights,immigrants_rights,false -DadeMurphy,burma.social,LGBTQ+,lgbtq,false -DadeMurphy,burma.social,Markets & Finance,markets_finance,false -DadeMurphy,burma.social,Social Sciences,social_sciences,false -DadeMurphy,burma.social,Philosophy,philosophy,false -thedogspaw,mastodon.social,Academia & Research,academia_research,false -hraluoma,mastodon.social,AI,ai,false -hraluoma,mastodon.social,Biodiversity & Rewilding,biodiversity_rewilding,false -hraluoma,mastodon.social,Engineering,engineering,false -hraluoma,mastodon.social,Environment,environment,false -hraluoma,mastodon.social,Journalism & Comment,news_comment_data,false -hraluoma,mastodon.social,Physics,physics,false -hraluoma,mastodon.social,Programming,programming,false -hraluoma,mastodon.social,Science,science,false -hraluoma,mastodon.social,Social Media,social_media,false -hraluoma,mastodon.social,Space,space,false -hraluoma,mastodon.social,Technology,technology,false -hraluoma,mastodon.social,Breaking News,breaking_news,true -robertartois,mas.to,Science,science,false -robertartois,mas.to,Space,space,false -robertartois,mas.to,Technology,technology,false -bre4ch3r,mastodon.social,Breaking News,breaking_news,false -bre4ch3r,mastodon.social,Humour,humour,false -bre4ch3r,mastodon.social,Social Media,social_media,false -bre4ch3r,mastodon.social,Weather,weather,false -bre4ch3r,mastodon.social,Technology,technology,true -robertartois,mas.to,TV & Radio,tv_radio,false -MrAdamJohn,mysocial.community,AI,ai,false -MrAdamJohn,mysocial.community,Architecture & Design,architecture_design,false -MrAdamJohn,mysocial.community,Biology,biology,false -MrAdamJohn,mysocial.community,Books & Literature,books_literature,false -MrAdamJohn,mysocial.community,Breaking News,breaking_news,false -MrAdamJohn,mysocial.community,Chemistry,chemistry,false -MrAdamJohn,mysocial.community,Democracy & Human Rights,democracy_human_rights,false -MrAdamJohn,mysocial.community,Engineering,engineering,false -MrAdamJohn,mysocial.community,Gaming,gaming,false -MrAdamJohn,mysocial.community,History,history,false -MrAdamJohn,mysocial.community,Humanities,humanities,false -MrAdamJohn,mysocial.community,"Hunger, Disease & Water",hunger_disease_water,false -MrAdamJohn,mysocial.community,Markets & Finance,markets_finance,false -MrAdamJohn,mysocial.community,Mathematics,mathematics,false -MrAdamJohn,mysocial.community,Movies,movies,false -MrAdamJohn,mysocial.community,Music,music,false -MrAdamJohn,mysocial.community,Journalism & Comment,news_comment_data,false -MrAdamJohn,mysocial.community,Performing Arts,performing_arts,false -MrAdamJohn,mysocial.community,Philosophy,philosophy,false -MrAdamJohn,mysocial.community,Photography,photography,false -MrAdamJohn,mysocial.community,Physics,physics,false -MrAdamJohn,mysocial.community,Poverty & Inequality,poverty_inequality,false -MrAdamJohn,mysocial.community,Programming,programming,false -MrAdamJohn,mysocial.community,Science,science,false -MrAdamJohn,mysocial.community,Social Media,social_media,false -MrAdamJohn,mysocial.community,Social Sciences,social_sciences,false -MrAdamJohn,mysocial.community,Space,space,false -MrAdamJohn,mysocial.community,Technology,technology,false -MrAdamJohn,mysocial.community,TV & Radio,tv_radio,false -MrAdamJohn,mysocial.community,Ukraine Invasion,ukraine_invasion,false -MrAdamJohn,mysocial.community,Visual Arts,visual_arts,false -MrAdamJohn,mysocial.community,Weather,weather,false -MrAdamJohn,mysocial.community,Workers Rights,workers_rights,false -MrAdamJohn,mysocial.community,Business,business,true -johnDaonld,newsmast.social,Energy & Pollution,energy_pollution,false -_youssef_0k,newsmast.social,Physics,physics,false -d_krueger,mas.to,Democracy & Human Rights,democracy_human_rights,false -d_krueger,mas.to,Energy & Pollution,energy_pollution,false -d_krueger,mas.to,Environment,environment,false -d_krueger,mas.to,Football,football,false -expert,attractive.space,AI,ai,false -expert,attractive.space,Architecture & Design,architecture_design,false -expert,attractive.space,Books & Literature,books_literature,false -expert,attractive.space,Engineering,engineering,false -expert,attractive.space,Immigrants Rights,immigrants_rights,false -expert,attractive.space,Photography,photography,false -expert,attractive.space,Programming,programming,false -expert,attractive.space,Technology,technology,true -mango,social.tchncs.de,Climate change,climate_change,false -mango,social.tchncs.de,Environment,environment,false -mango,social.tchncs.de,Humanities,humanities,false -mango,social.tchncs.de,Indigenous Peoples,indigenous_peoples,false -mango,social.tchncs.de,Science,science,false -mango,social.tchncs.de,Social Sciences,social_sciences,false -mango,social.tchncs.de,Energy & Pollution,energy_pollution,true -PoLaRobs,fediscience.org,Biodiversity & Rewilding,biodiversity_rewilding,false -PoLaRobs,fediscience.org,Energy & Pollution,energy_pollution,false -PoLaRobs,fediscience.org,Environment,environment,false -PoLaRobs,fediscience.org,Science,science,false -PoLaRobs,fediscience.org,Climate change,climate_change,true -savvdm,masto.nu,Physics,physics,false -savvdm,masto.nu,Science,science,false -savvdm,masto.nu,Space,space,false -savvdm,masto.nu,Technology,technology,false -savvdm,masto.nu,Programming,programming,true -savvdm,masto.nu,Photography,photography,false -rickcdmx,mastodon.social,Visual Arts,visual_arts,false -rickcdmx,mastodon.social,Democracy & Human Rights,democracy_human_rights,false -rickcdmx,mastodon.social,Photography,photography,false -rickcdmx,mastodon.social,Science,science,false -rickcdmx,mastodon.social,TV & Radio,tv_radio,false -rickcdmx,mastodon.social,Visual Arts,visual_arts,false -rickcdmx,mastodon.social,Movies,movies,true -kakerlake,newsmast.social,Engineering,engineering,false -kakerlake,newsmast.social,Photography,photography,false -kakerlake,newsmast.social,Science,science,false -kakerlake,newsmast.social,Visual Arts,visual_arts,false -kakerlake,newsmast.social,Technology,technology,true -Brian,bgarr.com,Nature & Wildlife,nature_wildlife,true -paulpeace,mastodon.social,Biodiversity & Rewilding,biodiversity_rewilding,false -paulpeace,mastodon.social,Breaking News,breaking_news,false -paulpeace,mastodon.social,Climate change,climate_change,false -paulpeace,mastodon.social,Science,science,false -paulpeace,mastodon.social,Social Sciences,social_sciences,false -paulpeace,mastodon.social,Environment,environment,true -Brian,bgarr.com,Creative Arts,creative_arts,false -Brian,bgarr.com,Programming,programming,false -Brian,bgarr.com,Technology,technology,false -Brian,bgarr.com,Travel,travel,false -henning,mastodon.online,Biology,biology,false -henning,mastodon.online,Breaking News,breaking_news,false -henning,mastodon.online,Science,science,false -henning,mastodon.online,Technology,technology,false -henning,mastodon.online,Ukraine Invasion,ukraine_invasion,false -henning,mastodon.online,Programming,programming,true -ryancurrie,mastodon.scot,Football,football,false -ryancurrie,mastodon.scot,Humour,humour,false -ryancurrie,mastodon.scot,Movies,movies,false -ryancurrie,mastodon.scot,TV & Radio,tv_radio,false -ryancurrie,mastodon.scot,Breaking News,breaking_news,true -F_johnson1848,mastodon.social,Women’s Voices,women_voices,false -F_johnson1848,mastodon.social,Black Voices,black_voices,false -F_johnson1848,mastodon.social,Disabled Voices,disabled_voices,false -F_johnson1848,mastodon.social,Activism & Civil Rights,activism_civil_rights,false -F_johnson1848,mastodon.social,Immigrants Rights,immigrants_rights,false -F_johnson1848,mastodon.social,Indigenous Peoples,indigenous_peoples,false -johnDaonld,newsmast.social,Gaming,gaming,false -requiem,mastodonapp.uk,Architecture & Design,architecture_design,false -requiem,mastodonapp.uk,Books & Literature,books_literature,false -requiem,mastodonapp.uk,Engineering,engineering,false -requiem,mastodonapp.uk,Movies,movies,false -requiem,mastodonapp.uk,Journalism & Comment,news_comment_data,false -requiem,mastodonapp.uk,Technology,technology,false -requiem,mastodonapp.uk,Weather,weather,false -requiem,mastodonapp.uk,Breaking News,breaking_news,true -panicky_patzer,mastodon.social,Academia & Research,academia_research,false -panicky_patzer,mastodon.social,AI,ai,false -panicky_patzer,mastodon.social,Biodiversity & Rewilding,biodiversity_rewilding,false -panicky_patzer,mastodon.social,Biology,biology,false -d_krueger,mas.to,Government & Policy,government_policy,false -d_krueger,mas.to,Healthcare,healthcare,false -panicky_patzer,mastodon.social,Chemistry,chemistry,false -panicky_patzer,mastodon.social,Climate change,climate_change,false -panicky_patzer,mastodon.social,Democracy & Human Rights,democracy_human_rights,false -aerxi,mastodon.social,AI,ai,false -aerxi,mastodon.social,Breaking News,breaking_news,false -aerxi,mastodon.social,Technology,technology,false -aerxi,mastodon.social,Weather,weather,false -aerxi,mastodon.social,Programming,programming,true -DadeMurphy,burma.social,Law & Justice,law_justice,false -DadeMurphy,burma.social,Biodiversity & Rewilding,biodiversity_rewilding,false -DadeMurphy,burma.social,Energy & Pollution,energy_pollution,false -DadeMurphy,burma.social,Activism & Civil Rights,activism_civil_rights,false -DadeMurphy,burma.social,Science,science,false -DadeMurphy,burma.social,Biology,biology,false -DadeMurphy,burma.social,Books & Literature,books_literature,false -DadeMurphy,burma.social,Visual Arts,visual_arts,false -DadeMurphy,burma.social,Sport,sport,false -DadeMurphy,burma.social,US Sport,us_sport,false -DadeMurphy,burma.social,Creative Arts,creative_arts,false -DadeMurphy,burma.social,Humour,humour,false -panicky_patzer,mastodon.social,Energy & Pollution,energy_pollution,false -panicky_patzer,mastodon.social,Engineering,engineering,false -panicky_patzer,mastodon.social,Environment,environment,false -panicky_patzer,mastodon.social,Government & Policy,government_policy,false -panicky_patzer,mastodon.social,Healthcare,healthcare,false -panicky_patzer,mastodon.social,History,history,false -panicky_patzer,mastodon.social,Humanities,humanities,false -panicky_patzer,mastodon.social,"Hunger, Disease & Water",hunger_disease_water,false -panicky_patzer,mastodon.social,Law & Justice,law_justice,false -panicky_patzer,mastodon.social,Mathematics,mathematics,false -panicky_patzer,mastodon.social,Journalism & Comment,news_comment_data,false -panicky_patzer,mastodon.social,Philosophy,philosophy,false -panicky_patzer,mastodon.social,Physics,physics,false -panicky_patzer,mastodon.social,Politics,politics,false -panicky_patzer,mastodon.social,Poverty & Inequality,poverty_inequality,false -panicky_patzer,mastodon.social,Programming,programming,false -panicky_patzer,mastodon.social,Science,science,false -panicky_patzer,mastodon.social,Social Media,social_media,false -panicky_patzer,mastodon.social,Social Sciences,social_sciences,false -panicky_patzer,mastodon.social,Space,space,false -panicky_patzer,mastodon.social,Technology,technology,false -wwrr,newsmast.social,AI,ai,false -panicky_patzer,mastodon.social,Breaking News,breaking_news,true -wwrr,newsmast.social,Engineering,engineering,false -wwrr,newsmast.social,Government & Policy,government_policy,false -wwrr,newsmast.social,Healthcare,healthcare,false -wwrr,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false -wwrr,newsmast.social,Law & Justice,law_justice,false -wwrr,newsmast.social,Politics,politics,false -wwrr,newsmast.social,Poverty & Inequality,poverty_inequality,false -wwrr,newsmast.social,Programming,programming,false -wwrr,newsmast.social,Technology,technology,false -wwrr,newsmast.social,US Politics,us_politics,false -wwrr,newsmast.social,Breaking News,breaking_news,true -ScottStarkey,hoosier.social,Weather,weather,false -ScottStarkey,hoosier.social,Breaking News,breaking_news,true -mutthew,mastodon.social,Academia & Research,academia_research,false -mutthew,mastodon.social,Activism & Civil Rights,activism_civil_rights,false -mutthew,mastodon.social,AI,ai,false -mutthew,mastodon.social,Architecture & Design,architecture_design,false -mutthew,mastodon.social,Biodiversity & Rewilding,biodiversity_rewilding,false -mutthew,mastodon.social,Biology,biology,false -mutthew,mastodon.social,Black Voices,black_voices,false -mutthew,mastodon.social,Books & Literature,books_literature,false -mutthew,mastodon.social,Breaking News,breaking_news,false -mutthew,mastodon.social,Chemistry,chemistry,false -mutthew,mastodon.social,Climate change,climate_change,false -mutthew,mastodon.social,Creative Arts,creative_arts,false -mutthew,mastodon.social,Democracy & Human Rights,democracy_human_rights,false -mutthew,mastodon.social,Disabled Voices,disabled_voices,false -mutthew,mastodon.social,Energy & Pollution,energy_pollution,false -mutthew,mastodon.social,Engineering,engineering,false -mutthew,mastodon.social,Environment,environment,false -mutthew,mastodon.social,Food & Drink,food_drink,false -mutthew,mastodon.social,Gaming,gaming,false -mutthew,mastodon.social,Government & Policy,government_policy,false -mutthew,mastodon.social,Healthcare,healthcare,false -mutthew,mastodon.social,History,history,false -mutthew,mastodon.social,Humanities,humanities,false -mutthew,mastodon.social,Humour,humour,false -mutthew,mastodon.social,"Hunger, Disease & Water",hunger_disease_water,false -mutthew,mastodon.social,Immigrants Rights,immigrants_rights,false -mutthew,mastodon.social,Indigenous Peoples,indigenous_peoples,false -mutthew,mastodon.social,Law & Justice,law_justice,false -mutthew,mastodon.social,LGBTQ+,lgbtq,false -mutthew,mastodon.social,Mathematics,mathematics,false -mutthew,mastodon.social,Mental Health & Wellbeing,mental_health_wellbeing,false -mutthew,mastodon.social,Movies,movies,false -mutthew,mastodon.social,Music,music,false -d_krueger,mas.to,"Hunger, Disease & Water",hunger_disease_water,false -d_krueger,mas.to,Law & Justice,law_justice,false -indie,mastodon.sdf.org,Activism & Civil Rights,activism_civil_rights,false -indie,mastodon.sdf.org,Biodiversity & Rewilding,biodiversity_rewilding,false -indie,mastodon.sdf.org,Biology,biology,false -indie,mastodon.sdf.org,Energy & Pollution,energy_pollution,false -indie,mastodon.sdf.org,Nature & Wildlife,nature_wildlife,false -indie,mastodon.sdf.org,Physics,physics,false -indie,mastodon.sdf.org,Women’s Voices,women_voices,false -indie,mastodon.sdf.org,Indigenous Peoples,indigenous_peoples,true -max_batsyn,mas.to,Academia & Research,academia_research,false -brian,fedinerds.net,AI,ai,false -brian,fedinerds.net,Books & Literature,books_literature,false -brian,fedinerds.net,Breaking News,breaking_news,false -brian,fedinerds.net,Food & Drink,food_drink,false -brian,fedinerds.net,History,history,false -brian,fedinerds.net,Humanities,humanities,false -brian,fedinerds.net,Humour,humour,false -brian,fedinerds.net,Movies,movies,false -brian,fedinerds.net,Music,music,false -brian,fedinerds.net,Journalism & Comment,news_comment_data,false -brian,fedinerds.net,Pets,pets,false -brian,fedinerds.net,Photography,photography,false -brian,fedinerds.net,Social Sciences,social_sciences,false -brian,fedinerds.net,Technology,technology,false -brian,fedinerds.net,Travel,travel,false -brian,fedinerds.net,TV & Radio,tv_radio,false -brian,fedinerds.net,Performing Arts,performing_arts,true -max_batsyn,mas.to,Activism & Civil Rights,activism_civil_rights,false -max_batsyn,mas.to,Architecture & Design,architecture_design,false -max_batsyn,mas.to,Books & Literature,books_literature,false -max_batsyn,mas.to,Environment,environment,false -Rainer,climatejustice.social,Activism & Civil Rights,activism_civil_rights,false -Rainer,climatejustice.social,Biodiversity & Rewilding,biodiversity_rewilding,false -Rainer,climatejustice.social,Books & Literature,books_literature,false -Rainer,climatejustice.social,Disabled Voices,disabled_voices,false -Rainer,climatejustice.social,Immigrants Rights,immigrants_rights,false -Rainer,climatejustice.social,Indigenous Peoples,indigenous_peoples,false -Rainer,climatejustice.social,LGBTQ+,lgbtq,false -Rainer,climatejustice.social,Movies,movies,false -Rainer,climatejustice.social,Journalism & Comment,news_comment_data,false -Rainer,climatejustice.social,Space,space,false -Rainer,climatejustice.social,TV & Radio,tv_radio,false -Rainer,climatejustice.social,Ukraine Invasion,ukraine_invasion,false -Rainer,climatejustice.social,Breaking News,breaking_news,true -Blindworrell,mastodon.social,AI,ai,false -Blindworrell,mastodon.social,Healthcare,healthcare,false -Blindworrell,mastodon.social,Markets & Finance,markets_finance,false -Blindworrell,mastodon.social,Science,science,false -Blindworrell,mastodon.social,Space,space,false -Blindworrell,mastodon.social,US Politics,us_politics,false -Blindworrell,mastodon.social,Technology,technology,true -srijit,newsmast.social,Environment,environment,false -jecture,mastodon.social,Breaking News,breaking_news,false -jecture,mastodon.social,Democracy & Human Rights,democracy_human_rights,false -jecture,mastodon.social,Humanities,humanities,false -jecture,mastodon.social,Journalism & Comment,news_comment_data,false -jecture,mastodon.social,Science,science,false -jecture,mastodon.social,Technology,technology,false -jecture,mastodon.social,AI,ai,true -jeze,mstdn.social,Architecture & Design,architecture_design,false -jeze,mstdn.social,Breaking News,breaking_news,false -jeze,mstdn.social,LGBTQ+,lgbtq,false -jeze,mstdn.social,Movies,movies,false -jeze,mstdn.social,Photography,photography,false -jeze,mstdn.social,Social Media,social_media,false -jeze,mstdn.social,Technology,technology,false -jeze,mstdn.social,US Politics,us_politics,false -jeze,mstdn.social,Gaming,gaming,true -jeze,mstdn.social,Democracy & Human Rights,democracy_human_rights,false -jeze,mstdn.social,Poverty & Inequality,poverty_inequality,false -jeze,mstdn.social,Climate change,climate_change,false -jeze,mstdn.social,Women’s Voices,women_voices,false -jeze,mstdn.social,AI,ai,false -jeze,mstdn.social,Humour,humour,false -jeze,mstdn.social,Mental Health & Wellbeing,mental_health_wellbeing,false -jeze,mstdn.social,Nature & Wildlife,nature_wildlife,false -jeze,mstdn.social,Travel,travel,false -johnDaonld,newsmast.social,History,history,false -max_batsyn,mas.to,Gaming,gaming,false -max_batsyn,mas.to,History,history,false -max_batsyn,mas.to,Humanities,humanities,false -max_batsyn,mas.to,LGBTQ+,lgbtq,false -max_batsyn,mas.to,Movies,movies,false -max_batsyn,mas.to,Music,music,false -max_batsyn,mas.to,Philosophy,philosophy,false -max_batsyn,mas.to,Visual Arts,visual_arts,false -max_batsyn,mas.to,Photography,photography,true -d_krueger,mas.to,Markets & Finance,markets_finance,false -d_krueger,mas.to,Movies,movies,false -d_krueger,mas.to,Photography,photography,false -johnDaonld,newsmast.social,Humanities,humanities,false -johnDaonld,newsmast.social,Movies,movies,false -DadeMurphy,burma.social,Indigenous Peoples,indigenous_peoples,false -johnDaonld,newsmast.social,Music,music,false -johnDaonld,newsmast.social,Performing Arts,performing_arts,false -johnDaonld,newsmast.social,Philosophy,philosophy,false -johnDaonld,newsmast.social,Photography,photography,false -mwshook,pdx.social,Biology,biology,false -mwshook,pdx.social,Breaking News,breaking_news,false -mwshook,pdx.social,Humour,humour,false -mwshook,pdx.social,Nature & Wildlife,nature_wildlife,false -mwshook,pdx.social,Pets,pets,false -mwshook,pdx.social,Physics,physics,false -mwshook,pdx.social,Science,science,false -ricmac,mastodon.social,AI,ai,false -ricmac,mastodon.social,Architecture & Design,architecture_design,false -ricmac,mastodon.social,Books & Literature,books_literature,false -ricmac,mastodon.social,Engineering,engineering,false -ricmac,mastodon.social,Gaming,gaming,false -ricmac,mastodon.social,History,history,false -ricmac,mastodon.social,Humanities,humanities,false -ricmac,mastodon.social,Movies,movies,false -ricmac,mastodon.social,Music,music,false -ricmac,mastodon.social,Performing Arts,performing_arts,false -ricmac,mastodon.social,Philosophy,philosophy,false -ricmac,mastodon.social,Photography,photography,false -ricmac,mastodon.social,Programming,programming,false -ricmac,mastodon.social,Social Sciences,social_sciences,false -ricmac,mastodon.social,TV & Radio,tv_radio,false -ricmac,mastodon.social,Visual Arts,visual_arts,false -ricmac,mastodon.social,Technology,technology,true -mwshook,pdx.social,Space,space,false -mwshook,pdx.social,Technology,technology,true -peterthepainter,newsmast.social,History,history,false -peterthepainter,newsmast.social,Humanities,humanities,false -peterthepainter,newsmast.social,Journalism & Comment,news_comment_data,false -peterthepainter,newsmast.social,Philosophy,philosophy,false -peterthepainter,newsmast.social,Ukraine Invasion,ukraine_invasion,false -peterthepainter,newsmast.social,Breaking News,breaking_news,true -johnDaonld,newsmast.social,Social Sciences,social_sciences,false -johnDaonld,newsmast.social,TV & Radio,tv_radio,false -warmaster,mastodon.social,AI,ai,false -warmaster,mastodon.social,Business,business,false -warmaster,mastodon.social,Engineering,engineering,false -warmaster,mastodon.social,Programming,programming,false -warmaster,mastodon.social,Science,science,false -warmaster,mastodon.social,Space,space,false -warmaster,mastodon.social,Technology,technology,true -nick,tootr.co,AI,ai,false -nick,tootr.co,Engineering,engineering,false -nick,tootr.co,Government & Policy,government_policy,false -nick,tootr.co,Journalism & Comment,news_comment_data,false -nick,tootr.co,Politics,politics,false -nick,tootr.co,Programming,programming,false -nick,tootr.co,Social Media,social_media,false -nick,tootr.co,Technology,technology,false -nick,tootr.co,US Politics,us_politics,false -nick,tootr.co,Breaking News,breaking_news,true -ATOxley,mastodon.sdf.org,Activism & Civil Rights,activism_civil_rights,false -ATOxley,mastodon.sdf.org,AI,ai,false -ATOxley,mastodon.sdf.org,Biodiversity & Rewilding,biodiversity_rewilding,false -mutthew,mastodon.social,Nature & Wildlife,nature_wildlife,false -mutthew,mastodon.social,Journalism & Comment,news_comment_data,false -mutthew,mastodon.social,Performing Arts,performing_arts,false -mutthew,mastodon.social,Pets,pets,false -mutthew,mastodon.social,Philosophy,philosophy,false -mutthew,mastodon.social,Photography,photography,false -mutthew,mastodon.social,Physics,physics,false -mutthew,mastodon.social,Politics,politics,false -mutthew,mastodon.social,Poverty & Inequality,poverty_inequality,false -mutthew,mastodon.social,Programming,programming,false -mutthew,mastodon.social,Puzzles,puzzles,false -mutthew,mastodon.social,Science,science,false -mutthew,mastodon.social,Social Media,social_media,false -mutthew,mastodon.social,Social Sciences,social_sciences,false -mutthew,mastodon.social,Space,space,false -mutthew,mastodon.social,Travel,travel,false -mutthew,mastodon.social,TV & Radio,tv_radio,false -mutthew,mastodon.social,Ukraine Invasion,ukraine_invasion,false -mutthew,mastodon.social,US Politics,us_politics,false -mutthew,mastodon.social,Visual Arts,visual_arts,false -mutthew,mastodon.social,Weather,weather,false -mutthew,mastodon.social,Women’s Voices,women_voices,false -mutthew,mastodon.social,Technology,technology,true -dreamingawake09,newsmast.social,AI,ai,false -dreamingawake09,newsmast.social,Breaking News,breaking_news,false -dreamingawake09,newsmast.social,Creative Arts,creative_arts,false -dreamingawake09,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -dreamingawake09,newsmast.social,Engineering,engineering,false -dreamingawake09,newsmast.social,Food & Drink,food_drink,false -chris,pkm.social,Business,business,false -chris,pkm.social,Climate change,climate_change,false -chris,pkm.social,Energy & Pollution,energy_pollution,false -chris,pkm.social,Technology,technology,false -chris,pkm.social,AI,ai,true -tsybulin,mastodon.social,Engineering,engineering,false -tsybulin,mastodon.social,Social Media,social_media,false -textdump,newsmast.social,Academia & Research,academia_research,false -textdump,newsmast.social,Architecture & Design,architecture_design,false -textdump,newsmast.social,Biology,biology,false -textdump,newsmast.social,Books & Literature,books_literature,false -textdump,newsmast.social,Breaking News,breaking_news,false -textdump,newsmast.social,Chemistry,chemistry,false -textdump,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -textdump,newsmast.social,Gaming,gaming,false -textdump,newsmast.social,Government & Policy,government_policy,false -textdump,newsmast.social,Healthcare,healthcare,false -textdump,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false -textdump,newsmast.social,Law & Justice,law_justice,false -textdump,newsmast.social,Mathematics,mathematics,false -textdump,newsmast.social,Movies,movies,false -textdump,newsmast.social,Music,music,false -textdump,newsmast.social,Journalism & Comment,news_comment_data,false -textdump,newsmast.social,Performing Arts,performing_arts,false -textdump,newsmast.social,Photography,photography,false -textdump,newsmast.social,Physics,physics,false -textdump,newsmast.social,Politics,politics,false -textdump,newsmast.social,Poverty & Inequality,poverty_inequality,false -textdump,newsmast.social,Science,science,false -textdump,newsmast.social,Social Media,social_media,false -textdump,newsmast.social,Space,space,false -textdump,newsmast.social,TV & Radio,tv_radio,false -textdump,newsmast.social,US Politics,us_politics,false -textdump,newsmast.social,Visual Arts,visual_arts,false -textdump,newsmast.social,Weather,weather,false -textdump,newsmast.social,Ukraine Invasion,ukraine_invasion,true -tsybulin,mastodon.social,Technology,technology,false -tsybulin,mastodon.social,Ukraine Invasion,ukraine_invasion,false -tsybulin,mastodon.social,Programming,programming,true -DadeMurphy,burma.social,Women’s Voices,women_voices,false -jeroen,sociabl.be,Academia & Research,academia_research,false -russjr08,bitforged.social,AI,ai,false -russjr08,bitforged.social,Engineering,engineering,false -russjr08,bitforged.social,Programming,programming,false -russjr08,bitforged.social,Science,science,false -russjr08,bitforged.social,Space,space,false -russjr08,bitforged.social,Technology,technology,true -jeroen,sociabl.be,Breaking News,breaking_news,false -jeroen,sociabl.be,Engineering,engineering,false -swrogers,social.targaryen.house,Academia & Research,academia_research,false -swrogers,social.targaryen.house,Biology,biology,false -swrogers,social.targaryen.house,Breaking News,breaking_news,false -swrogers,social.targaryen.house,Chemistry,chemistry,false -swrogers,social.targaryen.house,Engineering,engineering,false -swrogers,social.targaryen.house,Government & Policy,government_policy,false -swrogers,social.targaryen.house,Mathematics,mathematics,false -swrogers,social.targaryen.house,Journalism & Comment,news_comment_data,false -swrogers,social.targaryen.house,Physics,physics,false -swrogers,social.targaryen.house,Programming,programming,false -swrogers,social.targaryen.house,Science,science,false -swrogers,social.targaryen.house,Space,space,false -swrogers,social.targaryen.house,Technology,technology,true -TheatreReviews,mastodonapp.uk,Performing Arts,performing_arts,true -eugene135,mastodon.social,Academia & Research,academia_research,false -eugene135,mastodon.social,AI,ai,false -eugene135,mastodon.social,Engineering,engineering,false -eugene135,mastodon.social,Government & Policy,government_policy,false -eugene135,mastodon.social,Healthcare,healthcare,false -eugene135,mastodon.social,Law & Justice,law_justice,false -eugene135,mastodon.social,Politics,politics,false -eugene135,mastodon.social,Technology,technology,false -eugene135,mastodon.social,US Politics,us_politics,false -eugene135,mastodon.social,Programming,programming,true -brian,dads.so,Philosophy,philosophy,false -brian,dads.so,Social Sciences,social_sciences,false -brian,dads.so,Humanities,humanities,false -brian,dads.so,Books & Literature,books_literature,false -brian,dads.so,Movies,movies,false -brian,dads.so,Gaming,gaming,false -brian,dads.so,Food & Drink,food_drink,false -brian,dads.so,Humour,humour,false -brian,dads.so,Mental Health & Wellbeing,mental_health_wellbeing,false -brian,dads.so,Travel,travel,false -brian,dads.so,Sport,sport,false -epicureandad,dads.so,Books & Literature,books_literature,false -epicureandad,dads.so,Humanities,humanities,false -epicureandad,dads.so,Mental Health & Wellbeing,mental_health_wellbeing,false -epicureandad,dads.so,Travel,travel,false -epicureandad,dads.so,Philosophy,philosophy,true -cmonster,thecanadian.social,Government & Policy,government_policy,false -cmonster,thecanadian.social,Law & Justice,law_justice,false -DasVedanya,mastodon.social,AI,ai,false -DasVedanya,mastodon.social,Biology,biology,false -DasVedanya,mastodon.social,Breaking News,breaking_news,false -DasVedanya,mastodon.social,Chemistry,chemistry,false -DasVedanya,mastodon.social,Engineering,engineering,false -DasVedanya,mastodon.social,Mathematics,mathematics,false -DasVedanya,mastodon.social,Journalism & Comment,news_comment_data,false -DasVedanya,mastodon.social,Physics,physics,false -DasVedanya,mastodon.social,Programming,programming,false -DasVedanya,mastodon.social,Science,science,false -DasVedanya,mastodon.social,Social Media,social_media,false -DasVedanya,mastodon.social,Technology,technology,false -DasVedanya,mastodon.social,Ukraine Invasion,ukraine_invasion,false -DasVedanya,mastodon.social,Weather,weather,false -DasVedanya,mastodon.social,Space,space,true -johnDaonld,newsmast.social,Visual Arts,visual_arts,false -johnDaonld,newsmast.social,Environment,environment,true -_youssef_0k,newsmast.social,Politics,politics,false -_youssef_0k,newsmast.social,Poverty & Inequality,poverty_inequality,false -_youssef_0k,newsmast.social,Programming,programming,false -_youssef_0k,newsmast.social,Puzzles,puzzles,false -DadeMurphy,burma.social,Architecture & Design,architecture_design,false -jeroen,sociabl.be,Space,space,false -jeroen,sociabl.be,Technology,technology,false -jeroen,sociabl.be,US Politics,us_politics,false -jeroen,sociabl.be,Government & Policy,government_policy,true -wbbdaily,flipboard.social,Social Sciences,social_sciences,false -Yeekasoose,mstdn.social,AI,ai,false -Yeekasoose,mstdn.social,Business,business,false -Yeekasoose,mstdn.social,Climate change,climate_change,false -Yeekasoose,mstdn.social,Democracy & Human Rights,democracy_human_rights,false -Yeekasoose,mstdn.social,Energy & Pollution,energy_pollution,false -Yeekasoose,mstdn.social,Engineering,engineering,false -Yeekasoose,mstdn.social,Environment,environment,false -Yeekasoose,mstdn.social,History,history,false -Yeekasoose,mstdn.social,Journalism & Comment,news_comment_data,false -Yeekasoose,mstdn.social,Philosophy,philosophy,false -Yeekasoose,mstdn.social,Physics,physics,false -Yeekasoose,mstdn.social,Politics,politics,false -Yeekasoose,mstdn.social,Poverty & Inequality,poverty_inequality,false -Yeekasoose,mstdn.social,Programming,programming,false -Yeekasoose,mstdn.social,Science,science,false -Yeekasoose,mstdn.social,Social Sciences,social_sciences,false -Yeekasoose,mstdn.social,Space,space,false -Yeekasoose,mstdn.social,Technology,technology,false -Yeekasoose,mstdn.social,Ukraine Invasion,ukraine_invasion,false -Yeekasoose,mstdn.social,Breaking News,breaking_news,true -Jason381,mastodon.social,Engineering,engineering,false -Jason381,mastodon.social,Politics,politics,false -Jason381,mastodon.social,History,history,false -Jason381,mastodon.social,Humanities,humanities,false -Jason381,mastodon.social,Gaming,gaming,false -Jason381,mastodon.social,Movies,movies,false -Jason381,mastodon.social,Music,music,false -Jason381,mastodon.social,TV & Radio,tv_radio,false -Jason381,mastodon.social,Humour,humour,false -Jason381,mastodon.social,Mental Health & Wellbeing,mental_health_wellbeing,false -beta_123,newsmast.social,Breaking News,breaking_news,false -robertartois,mas.to,AI,ai,false -robertartois,mas.to,Architecture & Design,architecture_design,false -robertartois,mas.to,Biodiversity & Rewilding,biodiversity_rewilding,false -robertartois,mas.to,Biology,biology,false -robertartois,mas.to,Breaking News,breaking_news,false -robertartois,mas.to,Climate change,climate_change,false -robertartois,mas.to,Creative Arts,creative_arts,false -robertartois,mas.to,Democracy & Human Rights,democracy_human_rights,false -robertartois,mas.to,Energy & Pollution,energy_pollution,false -robertartois,mas.to,Engineering,engineering,false -robertartois,mas.to,Environment,environment,false -robertartois,mas.to,Food & Drink,food_drink,false -robertartois,mas.to,Gaming,gaming,false -robertartois,mas.to,Government & Policy,government_policy,false -robertartois,mas.to,Humour,humour,false -robertartois,mas.to,Law & Justice,law_justice,false -robertartois,mas.to,Mental Health & Wellbeing,mental_health_wellbeing,false -robertartois,mas.to,Movies,movies,false -robertartois,mas.to,Nature & Wildlife,nature_wildlife,false -robertartois,mas.to,Journalism & Comment,news_comment_data,false -robertartois,mas.to,Pets,pets,false -robertartois,mas.to,Physics,physics,false -STROHminator,fosstodon.org,AI,ai,false -STROHminator,fosstodon.org,Architecture & Design,architecture_design,false -STROHminator,fosstodon.org,Business,business,false -STROHminator,fosstodon.org,Climate change,climate_change,false -STROHminator,fosstodon.org,Creative Arts,creative_arts,false -STROHminator,fosstodon.org,Democracy & Human Rights,democracy_human_rights,false -STROHminator,fosstodon.org,Energy & Pollution,energy_pollution,false -STROHminator,fosstodon.org,Engineering,engineering,false -STROHminator,fosstodon.org,Environment,environment,false -STROHminator,fosstodon.org,Food & Drink,food_drink,false -STROHminator,fosstodon.org,Gaming,gaming,false -STROHminator,fosstodon.org,Government & Policy,government_policy,false -STROHminator,fosstodon.org,Humour,humour,false -STROHminator,fosstodon.org,Law & Justice,law_justice,false -STROHminator,fosstodon.org,Markets & Finance,markets_finance,false -STROHminator,fosstodon.org,Mental Health & Wellbeing,mental_health_wellbeing,false -STROHminator,fosstodon.org,Breaking News,breaking_news,true -robertartois,mas.to,Politics,politics,false -robertartois,mas.to,Poverty & Inequality,poverty_inequality,false -beta_123,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -robertartois,mas.to,Academia & Research,academia_research,false -robertartois,mas.to,Books & Literature,books_literature,true -beta_123,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false -beta_123,newsmast.social,Journalism & Comment,news_comment_data,false -beta_123,newsmast.social,Ukraine Invasion,ukraine_invasion,false -beta_123,newsmast.social,Weather,weather,false -beta_123,newsmast.social,Poverty & Inequality,poverty_inequality,true -moko,mstdn.ca,Programming,programming,false -kiko,newsmast.social,Programming,programming,false -kiko,newsmast.social,Social Media,social_media,false -kiko,newsmast.social,Technology,technology,false -kiko,newsmast.social,US Sport,us_sport,false -kiko,newsmast.social,Football,football,true -beta_123,newsmast.social,Social Media,social_media,false -STROHminator,fosstodon.org,Movies,movies,false -STROHminator,fosstodon.org,Music,music,false -STROHminator,fosstodon.org,Nature & Wildlife,nature_wildlife,false -STROHminator,fosstodon.org,Pets,pets,false -STROHminator,fosstodon.org,Physics,physics,false -STROHminator,fosstodon.org,Poverty & Inequality,poverty_inequality,false -STROHminator,fosstodon.org,Science,science,false -STROHminator,fosstodon.org,Space,space,false -STROHminator,fosstodon.org,Technology,technology,false -STROHminator,fosstodon.org,Travel,travel,false -STROHminator,fosstodon.org,TV & Radio,tv_radio,false -STROHminator,fosstodon.org,US Politics,us_politics,false -STROHminator,fosstodon.org,Weather,weather,false -STROHminator,fosstodon.org,Workers Rights,workers_rights,false -_youssef_0k,newsmast.social,Science,science,false -_youssef_0k,newsmast.social,Social Media,social_media,false -_youssef_0k,newsmast.social,Social Sciences,social_sciences,false -DadeMurphy,burma.social,Food & Drink,food_drink,false -DadeMurphy,burma.social,Nature & Wildlife,nature_wildlife,false -_youssef_0k,newsmast.social,Space,space,false -_youssef_0k,newsmast.social,Sport,sport,false -iggy_b,mastodon.social,Architecture & Design,architecture_design,false -iggy_b,mastodon.social,Breaking News,breaking_news,false -iggy_b,mastodon.social,Democracy & Human Rights,democracy_human_rights,false -iggy_b,mastodon.social,Food & Drink,food_drink,false -CitizenWald,historians.social,Architecture & Design,architecture_design,false -CitizenWald,historians.social,Breaking News,breaking_news,false -CitizenWald,historians.social,Humanities,humanities,false -CitizenWald,historians.social,Music,music,false -CitizenWald,historians.social,Journalism & Comment,news_comment_data,false -CitizenWald,historians.social,Philosophy,philosophy,false -CitizenWald,historians.social,Social Sciences,social_sciences,false -CitizenWald,historians.social,Ukraine Invasion,ukraine_invasion,false -CitizenWald,historians.social,Visual Arts,visual_arts,false -CitizenWald,historians.social,History,history,true -bech,mstdn.dk,Democracy & Human Rights,democracy_human_rights,false -bech,mstdn.dk,Movies,movies,false -bech,mstdn.dk,Books & Literature,books_literature,false -bech,mstdn.dk,Government & Policy,government_policy,false -bech,mstdn.dk,Politics,politics,false -DadeMurphy,burma.social,Technology,technology,true -bech,mstdn.dk,Architecture & Design,architecture_design,false -iggy_b,mastodon.social,Government & Policy,government_policy,false -iggy_b,mastodon.social,Humour,humour,false -iggy_b,mastodon.social,Movies,movies,false -Realzombiegeek,fosstodon.org,Breaking News,breaking_news,false -Realzombiegeek,fosstodon.org,Physics,physics,false -Realzombiegeek,fosstodon.org,Programming,programming,false -Realzombiegeek,fosstodon.org,Science,science,false -Realzombiegeek,fosstodon.org,Technology,technology,true -ScottStarkey,hoosier.social,Creative Arts,creative_arts,false -ScottStarkey,hoosier.social,Gaming,gaming,false -ScottStarkey,hoosier.social,Humour,humour,false -DadeMurphy,burma.social,Breaking News,breaking_news,false -DadeMurphy,burma.social,Chemistry,chemistry,false -DadeMurphy,burma.social,"Hunger, Disease & Water",hunger_disease_water,false -DadeMurphy,burma.social,Mathematics,mathematics,false -DadeMurphy,burma.social,Physics,physics,false -DadeMurphy,burma.social,Social Media,social_media,false -DadeMurphy,burma.social,Space,space,false -DadeMurphy,burma.social,Ukraine Invasion,ukraine_invasion,false -DadeMurphy,burma.social,Weather,weather,false -DadeMurphy,burma.social,Workers Rights,workers_rights,false -DadeMurphy,burma.social,Gaming,gaming,false -DadeMurphy,burma.social,Movies,movies,false -DadeMurphy,burma.social,Music,music,false -DadeMurphy,burma.social,Photography,photography,false -DadeMurphy,burma.social,TV & Radio,tv_radio,false -ScottStarkey,hoosier.social,Law & Justice,law_justice,false -ScottStarkey,hoosier.social,Mental Health & Wellbeing,mental_health_wellbeing,false -ScottStarkey,hoosier.social,Journalism & Comment,news_comment_data,false -weblink,newsmast.social,AI,ai,false -weblink,newsmast.social,Disabled Voices,disabled_voices,false -weblink,newsmast.social,Energy & Pollution,energy_pollution,false -weblink,newsmast.social,Engineering,engineering,false -weblink,newsmast.social,Humanities,humanities,false -weblink,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false -weblink,newsmast.social,Programming,programming,false -weblink,newsmast.social,Science,science,false -weblink,newsmast.social,Space,space,false -weblink,newsmast.social,Technology,technology,true -ScottStarkey,hoosier.social,Politics,politics,false -ScottStarkey,hoosier.social,Puzzles,puzzles,false -ScottStarkey,hoosier.social,Ukraine Invasion,ukraine_invasion,false -ScottStarkey,hoosier.social,US Politics,us_politics,false -ScottStarkey,hoosier.social,US Sport,us_sport,false -ScottStarkey,hoosier.social,Visual Arts,visual_arts,false -lolzek,mastodon.social,Books & Literature,books_literature,false -lolzek,mastodon.social,Creative Arts,creative_arts,false -lolzek,mastodon.social,History,history,false -lolzek,mastodon.social,Humour,humour,false -lolzek,mastodon.social,Food & Drink,food_drink,true -anaslm10,newsmast.social,Science,science,false -romeroabelleira,ruby.social,Architecture & Design,architecture_design,false -romeroabelleira,ruby.social,Gaming,gaming,false -romeroabelleira,ruby.social,Humanities,humanities,false -romeroabelleira,ruby.social,Music,music,false -romeroabelleira,ruby.social,Philosophy,philosophy,false -romeroabelleira,ruby.social,Science,science,false -romeroabelleira,ruby.social,Space,space,false -romeroabelleira,ruby.social,Technology,technology,false -romeroabelleira,ruby.social,Visual Arts,visual_arts,false -romeroabelleira,ruby.social,Programming,programming,true -Dragonholley,mastodon.social,Gaming,gaming,true -_youssef_0k,newsmast.social,Technology,technology,false -_youssef_0k,newsmast.social,Travel,travel,false -_youssef_0k,newsmast.social,TV & Radio,tv_radio,false -d_krueger,mas.to,Politics,politics,false -d_krueger,mas.to,Poverty & Inequality,poverty_inequality,false -d_krueger,mas.to,TV & Radio,tv_radio,false -FELO_rob,mastodon.social,Architecture & Design,architecture_design,false -FELO_rob,mastodon.social,Books & Literature,books_literature,false -FELO_rob,mastodon.social,Gaming,gaming,false -FELO_rob,mastodon.social,Government & Policy,government_policy,false -FELO_rob,mastodon.social,Poverty & Inequality,poverty_inequality,false -FELO_rob,mastodon.social,Visual Arts,visual_arts,false -FELO_rob,mastodon.social,Democracy & Human Rights,democracy_human_rights,true -DadeMurphy,burma.social,Mental Health & Wellbeing,mental_health_wellbeing,false -DadeMurphy,burma.social,Pets,pets,false -philomath,social.lol,Breaking News,breaking_news,true -atrom,m.ai6yr.org,Breaking News,breaking_news,false -atrom,m.ai6yr.org,Politics,politics,false -atrom,m.ai6yr.org,Programming,programming,false -atrom,m.ai6yr.org,Technology,technology,false -atrom,m.ai6yr.org,US Politics,us_politics,true -philomath,social.lol,Activism & Civil Rights,activism_civil_rights,false -philomath,social.lol,Black Voices,black_voices,false -philomath,social.lol,Books & Literature,books_literature,false -philomath,social.lol,Business,business,false -ifnotnowboston,mastodon.social,Democracy & Human Rights,democracy_human_rights,false -ifnotnowboston,mastodon.social,Government & Policy,government_policy,false -ifnotnowboston,mastodon.social,"Hunger, Disease & Water",hunger_disease_water,false -ifnotnowboston,mastodon.social,Journalism & Comment,news_comment_data,false -ifnotnowboston,mastodon.social,Politics,politics,false -ifnotnowboston,mastodon.social,Social Media,social_media,false -ifnotnowboston,mastodon.social,US Politics,us_politics,false -ifnotnowboston,mastodon.social,Breaking News,breaking_news,true -philomath,social.lol,Democracy & Human Rights,democracy_human_rights,false -philomath,social.lol,Disabled Voices,disabled_voices,false -philomath,social.lol,Environment,environment,false -philomath,social.lol,Gaming,gaming,false -philomath,social.lol,History,history,false -andrew,melder.social,Books & Literature,books_literature,false -andrew,melder.social,Gaming,gaming,false -andrew,melder.social,Photography,photography,false -andrew,melder.social,Mental Health & Wellbeing,mental_health_wellbeing,true -philomath,social.lol,Humanities,humanities,false -philomath,social.lol,Immigrants Rights,immigrants_rights,false -philomath,social.lol,Indigenous Peoples,indigenous_peoples,false -philomath,social.lol,LGBTQ+,lgbtq,false -philomath,social.lol,Philosophy,philosophy,false -philomath,social.lol,Photography,photography,false -philomath,social.lol,Science,science,false -philomath,social.lol,Social Sciences,social_sciences,false -philomath,social.lol,Space,space,false -philomath,social.lol,Technology,technology,false -philomath,social.lol,Ukraine Invasion,ukraine_invasion,false -philomath,social.lol,Women’s Voices,women_voices,false -philomath,social.lol,Workers Rights,workers_rights,false -ad_on_is,mastodon.world,AI,ai,false -ad_on_is,mastodon.world,Biology,biology,false -ad_on_is,mastodon.world,Breaking News,breaking_news,false -ad_on_is,mastodon.world,Business,business,false -ad_on_is,mastodon.world,Chemistry,chemistry,false -ad_on_is,mastodon.world,Engineering,engineering,false -bismillah345,newsmast.social,Breaking News,breaking_news,false -bismillah345,newsmast.social,Engineering,engineering,false -bismillah345,newsmast.social,Journalism & Comment,news_comment_data,false -bismillah345,newsmast.social,Programming,programming,false -bismillah345,newsmast.social,Social Media,social_media,false -bismillah345,newsmast.social,Technology,technology,false -bismillah345,newsmast.social,Ukraine Invasion,ukraine_invasion,false -bismillah345,newsmast.social,Weather,weather,false -bismillah345,newsmast.social,AI,ai,true -ad_on_is,mastodon.world,Mathematics,mathematics,false -ad_on_is,mastodon.world,Journalism & Comment,news_comment_data,false -ad_on_is,mastodon.world,Physics,physics,false -Dragonholley,mastodon.social,AI,ai,false -Dragonholley,mastodon.social,Architecture & Design,architecture_design,false -Dragonholley,mastodon.social,Biology,biology,false -Dragonholley,mastodon.social,Books & Literature,books_literature,false -Dragonholley,mastodon.social,Chemistry,chemistry,false -Dragonholley,mastodon.social,Creative Arts,creative_arts,false -Dragonholley,mastodon.social,Engineering,engineering,false -Dragonholley,mastodon.social,Food & Drink,food_drink,false -Dragonholley,mastodon.social,Football,football,false -Dragonholley,mastodon.social,Humour,humour,false -Dragonholley,mastodon.social,Mathematics,mathematics,false -Dragonholley,mastodon.social,Mental Health & Wellbeing,mental_health_wellbeing,false -Dragonholley,mastodon.social,Movies,movies,false -Dragonholley,mastodon.social,Music,music,false -ad_on_is,mastodon.world,Science,science,false -ad_on_is,mastodon.world,Social Media,social_media,false -ad_on_is,mastodon.world,Space,space,false -ad_on_is,mastodon.world,Technology,technology,false -ad_on_is,mastodon.world,Programming,programming,true -David_Bartlett,mindly.social,Books & Literature,books_literature,false -David_Bartlett,mindly.social,Social Media,social_media,false -David_Bartlett,mindly.social,Technology,technology,false -David_Bartlett,mindly.social,TV & Radio,tv_radio,false -David_Bartlett,mindly.social,Journalism & Comment,news_comment_data,true -jramompichel2023,mastodon.social,Philosophy,philosophy,false -dreamingawake09,newsmast.social,Football,football,false -dreamingawake09,newsmast.social,History,history,false -dreamingawake09,newsmast.social,Humanities,humanities,false -dreamingawake09,newsmast.social,Humour,humour,false -dreamingawake09,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false -dreamingawake09,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false -dreamingawake09,newsmast.social,Nature & Wildlife,nature_wildlife,false -dreamingawake09,newsmast.social,Journalism & Comment,news_comment_data,false -dreamingawake09,newsmast.social,Pets,pets,false -dreamingawake09,newsmast.social,Philosophy,philosophy,false -dreamingawake09,newsmast.social,Poverty & Inequality,poverty_inequality,false -dreamingawake09,newsmast.social,Programming,programming,false -dreamingawake09,newsmast.social,Puzzles,puzzles,false -dreamingawake09,newsmast.social,Social Media,social_media,false -dreamingawake09,newsmast.social,Social Sciences,social_sciences,false -dreamingawake09,newsmast.social,Sport,sport,false -dreamingawake09,newsmast.social,Travel,travel,false -dreamingawake09,newsmast.social,Ukraine Invasion,ukraine_invasion,false -dreamingawake09,newsmast.social,US Sport,us_sport,false -dreamingawake09,newsmast.social,Weather,weather,false -dreamingawake09,newsmast.social,Technology,technology,true -Kingfisher,universeodon.com,Breaking News,breaking_news,false -Kingfisher,universeodon.com,Music,music,false -Kingfisher,universeodon.com,Journalism & Comment,news_comment_data,false -Kingfisher,universeodon.com,Photography,photography,false -Kingfisher,universeodon.com,Space,space,false -Kingfisher,universeodon.com,Visual Arts,visual_arts,false -Kingfisher,universeodon.com,Weather,weather,false -Kingfisher,universeodon.com,Science,science,true -_youssef_0k,newsmast.social,Ukraine Invasion,ukraine_invasion,false -wbbdaily,flipboard.social,Creative Arts,creative_arts,false -yemyatthu_cs,mastodon.social,Breaking News,breaking_news,false -EmillaFilipowic,newsmast.social,Academia & Research,academia_research,false -EmillaFilipowic,newsmast.social,Activism & Civil Rights,activism_civil_rights,false -EmillaFilipowic,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false -EmillaFilipowic,newsmast.social,Black Voices,black_voices,false -EmillaFilipowic,newsmast.social,Business,business,false -EmillaFilipowic,newsmast.social,Climate change,climate_change,false -EmillaFilipowic,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -EmillaFilipowic,newsmast.social,Disabled Voices,disabled_voices,false -EmillaFilipowic,newsmast.social,Energy & Pollution,energy_pollution,false -EmillaFilipowic,newsmast.social,Environment,environment,false -EmillaFilipowic,newsmast.social,Government & Policy,government_policy,false -EmillaFilipowic,newsmast.social,Healthcare,healthcare,false -EmillaFilipowic,newsmast.social,History,history,false -EmillaFilipowic,newsmast.social,Humanities,humanities,false -EmillaFilipowic,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false -EmillaFilipowic,newsmast.social,Immigrants Rights,immigrants_rights,false -EmillaFilipowic,newsmast.social,Indigenous Peoples,indigenous_peoples,false -EmillaFilipowic,newsmast.social,Law & Justice,law_justice,false -EmillaFilipowic,newsmast.social,LGBTQ+,lgbtq,false -EmillaFilipowic,newsmast.social,Markets & Finance,markets_finance,false -EmillaFilipowic,newsmast.social,Journalism & Comment,news_comment_data,false -EmillaFilipowic,newsmast.social,Philosophy,philosophy,false -EmillaFilipowic,newsmast.social,Politics,politics,false -EmillaFilipowic,newsmast.social,Poverty & Inequality,poverty_inequality,false -EmillaFilipowic,newsmast.social,Social Media,social_media,false -EmillaFilipowic,newsmast.social,Social Sciences,social_sciences,false -EmillaFilipowic,newsmast.social,Ukraine Invasion,ukraine_invasion,false -EmillaFilipowic,newsmast.social,US Politics,us_politics,false -EmillaFilipowic,newsmast.social,Weather,weather,false -EmillaFilipowic,newsmast.social,Women’s Voices,women_voices,false -EmillaFilipowic,newsmast.social,Workers Rights,workers_rights,false -EmillaFilipowic,newsmast.social,Breaking News,breaking_news,true -hn,mastodon.social,Climate change,climate_change,false -hn,mastodon.social,Democracy & Human Rights,democracy_human_rights,false -hn,mastodon.social,Energy & Pollution,energy_pollution,false -hn,mastodon.social,Environment,environment,false -hn,mastodon.social,Journalism & Comment,news_comment_data,false -hn,mastodon.social,Poverty & Inequality,poverty_inequality,false -hn,mastodon.social,Science,science,false -hn,mastodon.social,Technology,technology,false -hn,mastodon.social,Breaking News,breaking_news,true -guzz,newsmast.social,Breaking News,breaking_news,false -wbbdaily,flipboard.social,Journalism & Comment,news_comment_data,false -michaelgraaf,cheeseburger.social,Academia & Research,academia_research,false -michaelgraaf,cheeseburger.social,AI,ai,false -michaelgraaf,cheeseburger.social,Biodiversity & Rewilding,biodiversity_rewilding,false -michaelgraaf,cheeseburger.social,Black Voices,black_voices,false -michaelgraaf,cheeseburger.social,Climate change,climate_change,false -michaelgraaf,cheeseburger.social,Democracy & Human Rights,democracy_human_rights,false -michaelgraaf,cheeseburger.social,Disabled Voices,disabled_voices,false -michaelgraaf,cheeseburger.social,Energy & Pollution,energy_pollution,false -michaelgraaf,cheeseburger.social,Engineering,engineering,false -michaelgraaf,cheeseburger.social,Environment,environment,false -michaelgraaf,cheeseburger.social,Government & Policy,government_policy,false -michaelgraaf,cheeseburger.social,Healthcare,healthcare,false -michaelgraaf,cheeseburger.social,"Hunger, Disease & Water",hunger_disease_water,false -michaelgraaf,cheeseburger.social,Immigrants Rights,immigrants_rights,false -michaelgraaf,cheeseburger.social,Indigenous Peoples,indigenous_peoples,false -michaelgraaf,cheeseburger.social,Law & Justice,law_justice,false -michaelgraaf,cheeseburger.social,LGBTQ+,lgbtq,false -michaelgraaf,cheeseburger.social,Politics,politics,false -travtasy,newsmast.social,Architecture & Design,architecture_design,false -travtasy,newsmast.social,Food & Drink,food_drink,false -travtasy,newsmast.social,Photography,photography,false -travtasy,newsmast.social,Visual Arts,visual_arts,false -travtasy,newsmast.social,Travel,travel,true -sinclair,techhub.social,Puzzles,puzzles,false -sinclair,techhub.social,Programming,programming,false -sinclair,techhub.social,Philosophy,philosophy,false -sinclair,techhub.social,Movies,movies,false -sinclair,techhub.social,TV & Radio,tv_radio,false -michaelgraaf,cheeseburger.social,Poverty & Inequality,poverty_inequality,false -michaelgraaf,cheeseburger.social,Programming,programming,false -michaelgraaf,cheeseburger.social,Technology,technology,false -michaelgraaf,cheeseburger.social,US Politics,us_politics,false -michaelgraaf,cheeseburger.social,Women’s Voices,women_voices,false -michaelgraaf,cheeseburger.social,Activism & Civil Rights,activism_civil_rights,true -panicky_patzer,mastodon.social,Ukraine Invasion,ukraine_invasion,false -panicky_patzer,mastodon.social,US Politics,us_politics,false -panicky_patzer,mastodon.social,Weather,weather,false -benjaminkruse,mastodon.social,Physics,physics,false -benjaminkruse,mastodon.social,Science,science,false -benjaminkruse,mastodon.social,Space,space,false -benjaminkruse,mastodon.social,Technology,technology,false -benjaminkruse,mastodon.social,Breaking News,breaking_news,true -_youssef_0k,newsmast.social,US Politics,us_politics,false -aronrussel,mastodon.social,Architecture & Design,architecture_design,false -aronrussel,mastodon.social,Creative Arts,creative_arts,false -aronrussel,mastodon.social,Environment,environment,false -aronrussel,mastodon.social,Food & Drink,food_drink,false -aronrussel,mastodon.social,Humour,humour,false -aronrussel,mastodon.social,Nature & Wildlife,nature_wildlife,false -aronrussel,mastodon.social,Pets,pets,false -aronrussel,mastodon.social,Photography,photography,false -aronrussel,mastodon.social,Politics,politics,false -aronrussel,mastodon.social,Social Media,social_media,false -aronrussel,mastodon.social,Sport,sport,false -aronrussel,mastodon.social,Technology,technology,false -aronrussel,mastodon.social,Travel,travel,false -aronrussel,mastodon.social,Football,football,true -OpalTiger,newsmast.social,Architecture & Design,architecture_design,false -OpalTiger,newsmast.social,Books & Literature,books_literature,false -OpalTiger,newsmast.social,Breaking News,breaking_news,false -OpalTiger,newsmast.social,Creative Arts,creative_arts,false -OpalTiger,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -mehron,mastodon.social,Activism & Civil Rights,activism_civil_rights,false -mehron,mastodon.social,Architecture & Design,architecture_design,false -mehron,mastodon.social,Books & Literature,books_literature,false -mehron,mastodon.social,Visual Arts,visual_arts,false -mehron,mastodon.social,Breaking News,breaking_news,true -OpalTiger,newsmast.social,Disabled Voices,disabled_voices,false -OpalTiger,newsmast.social,History,history,false -OpalTiger,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false -OpalTiger,newsmast.social,Performing Arts,performing_arts,false -OpalTiger,newsmast.social,Politics,politics,false -OpalTiger,newsmast.social,Poverty & Inequality,poverty_inequality,false -OpalTiger,newsmast.social,Technology,technology,false -OpalTiger,newsmast.social,TV & Radio,tv_radio,false -OpalTiger,newsmast.social,Visual Arts,visual_arts,false -OpalTiger,newsmast.social,Activism & Civil Rights,activism_civil_rights,true -apollon,mastodon.online,Democracy & Human Rights,democracy_human_rights,false -apollon,mastodon.online,Humanities,humanities,false -apollon,mastodon.online,Philosophy,philosophy,false -apollon,mastodon.online,Politics,politics,false -apollon,mastodon.online,Poverty & Inequality,poverty_inequality,false -apollon,mastodon.online,Social Media,social_media,false -apollon,mastodon.online,Social Sciences,social_sciences,false -apollon,mastodon.online,Technology,technology,false -ATOxley,mastodon.sdf.org,Breaking News,breaking_news,false -ATOxley,mastodon.sdf.org,Climate change,climate_change,false -ATOxley,mastodon.sdf.org,Democracy & Human Rights,democracy_human_rights,false -apollon,mastodon.online,AI,ai,false -apollon,mastodon.online,Music,music,true -ATOxley,mastodon.sdf.org,Energy & Pollution,energy_pollution,false -ATOxley,mastodon.sdf.org,Engineering,engineering,false -ATOxley,mastodon.sdf.org,Environment,environment,false -ATOxley,mastodon.sdf.org,Government & Policy,government_policy,false -ATOxley,mastodon.sdf.org,Healthcare,healthcare,false -brentnatzle,mastodon.social,Politics,politics,false -brentnatzle,mastodon.social,Social Media,social_media,false -brentnatzle,mastodon.social,US Politics,us_politics,false -brentnatzle,mastodon.social,Weather,weather,false -brentnatzle,mastodon.social,Breaking News,breaking_news,true -ATOxley,mastodon.sdf.org,"Hunger, Disease & Water",hunger_disease_water,false -ATOxley,mastodon.sdf.org,Politics,politics,false -ATOxley,mastodon.sdf.org,Science,science,false -ATOxley,mastodon.sdf.org,Space,space,false -mateussbentes,mastodon.social,Biology,biology,false -mateussbentes,mastodon.social,Chemistry,chemistry,false -mateussbentes,mastodon.social,Mathematics,mathematics,false -mateussbentes,mastodon.social,Physics,physics,false -mateussbentes,mastodon.social,Science,science,false -mateussbentes,mastodon.social,Space,space,true -jvalleroy,fosstodon.org,Energy & Pollution,energy_pollution,false -jvalleroy,fosstodon.org,Environment,environment,false -jvalleroy,fosstodon.org,Space,space,false -jvalleroy,fosstodon.org,Technology,technology,false -jvalleroy,fosstodon.org,Programming,programming,true -justinionn,social.vivaldi.net,Architecture & Design,architecture_design,false -justinionn,social.vivaldi.net,Books & Literature,books_literature,false -justinionn,social.vivaldi.net,Breaking News,breaking_news,false -justinionn,social.vivaldi.net,Creative Arts,creative_arts,false -justinionn,social.vivaldi.net,Food & Drink,food_drink,false -justinionn,social.vivaldi.net,Humanities,humanities,false -justinionn,social.vivaldi.net,Humour,humour,false -justinionn,social.vivaldi.net,LGBTQ+,lgbtq,false -justinionn,social.vivaldi.net,Mental Health & Wellbeing,mental_health_wellbeing,false -justinionn,social.vivaldi.net,Movies,movies,false -justinionn,social.vivaldi.net,Music,music,false -justinionn,social.vivaldi.net,Nature & Wildlife,nature_wildlife,false -justinionn,social.vivaldi.net,Journalism & Comment,news_comment_data,false -justinionn,social.vivaldi.net,Performing Arts,performing_arts,false -justinionn,social.vivaldi.net,Technology,technology,false -justinionn,social.vivaldi.net,Travel,travel,false -justinionn,social.vivaldi.net,Visual Arts,visual_arts,false -justinionn,social.vivaldi.net,TV & Radio,tv_radio,true -_youssef_0k,newsmast.social,US Sport,us_sport,false -laurids,mastodon.social,Academia & Research,academia_research,false -laurids,mastodon.social,Architecture & Design,architecture_design,false -laurids,mastodon.social,Biodiversity & Rewilding,biodiversity_rewilding,false -laurids,mastodon.social,Biology,biology,false -laurids,mastodon.social,Books & Literature,books_literature,false -laurids,mastodon.social,Breaking News,breaking_news,false -laurids,mastodon.social,Chemistry,chemistry,false -laurids,mastodon.social,Climate change,climate_change,false -laurids,mastodon.social,Creative Arts,creative_arts,false -laurids,mastodon.social,Democracy & Human Rights,democracy_human_rights,false -laurids,mastodon.social,Energy & Pollution,energy_pollution,false -laurids,mastodon.social,Engineering,engineering,false -laurids,mastodon.social,Environment,environment,false -laurids,mastodon.social,Food & Drink,food_drink,false -laurids,mastodon.social,Football,football,false -laurids,mastodon.social,Gaming,gaming,false -laurids,mastodon.social,Government & Policy,government_policy,false -laurids,mastodon.social,History,history,false -laurids,mastodon.social,Humanities,humanities,false -laurids,mastodon.social,Humour,humour,false -laurids,mastodon.social,Movies,movies,false -laurids,mastodon.social,Nature & Wildlife,nature_wildlife,false -laurids,mastodon.social,Pets,pets,false -laurids,mastodon.social,Photography,photography,false -laurids,mastodon.social,Physics,physics,false -laurids,mastodon.social,Politics,politics,false -laurids,mastodon.social,Science,science,false -laurids,mastodon.social,Social Media,social_media,false -laurids,mastodon.social,Social Sciences,social_sciences,false -laurids,mastodon.social,Space,space,false -laurids,mastodon.social,Technology,technology,false -laurids,mastodon.social,Travel,travel,false -laurids,mastodon.social,TV & Radio,tv_radio,false -laurids,mastodon.social,Ukraine Invasion,ukraine_invasion,false -laurids,mastodon.social,US Politics,us_politics,false -laurids,mastodon.social,Visual Arts,visual_arts,false -laurids,mastodon.social,Programming,programming,true -_youssef_0k,newsmast.social,Visual Arts,visual_arts,false -_youssef_0k,newsmast.social,Weather,weather,false -_youssef_0k,newsmast.social,Women’s Voices,women_voices,false -_youssef_0k,newsmast.social,Workers Rights,workers_rights,false -_youssef_0k,newsmast.social,AI,ai,true -follow,twitter.social,Engineering,engineering,false -follow,twitter.social,Environment,environment,false -follow,twitter.social,Food & Drink,food_drink,false -tchambers,indieweb.social,Space,space,false -ATOxley,mastodon.sdf.org,Technology,technology,false -ATOxley,mastodon.sdf.org,Poverty & Inequality,poverty_inequality,true -tchambers,indieweb.social,Environment,environment,false -tchambers,indieweb.social,Climate change,climate_change,false -occuros,mastodon.gamedev.place,Biology,biology,false -occuros,mastodon.gamedev.place,Breaking News,breaking_news,false -follow,twitter.social,Football,football,false -follow,twitter.social,Gaming,gaming,false -follow,twitter.social,Government & Policy,government_policy,false -follow,twitter.social,Healthcare,healthcare,false -follow,twitter.social,History,history,false -follow,twitter.social,Humanities,humanities,false -lety,doesstuff.social,Academia & Research,academia_research,false -lety,doesstuff.social,Activism & Civil Rights,activism_civil_rights,false -lety,doesstuff.social,AI,ai,false -lety,doesstuff.social,Architecture & Design,architecture_design,false -lety,doesstuff.social,Biodiversity & Rewilding,biodiversity_rewilding,false -lety,doesstuff.social,Biology,biology,false -lety,doesstuff.social,Black Voices,black_voices,false -lety,doesstuff.social,Books & Literature,books_literature,false -quaewpos,kanoa.de,Academia & Research,academia_research,false -quaewpos,kanoa.de,AI,ai,false -quaewpos,kanoa.de,Biology,biology,false -quaewpos,kanoa.de,Chemistry,chemistry,false -quaewpos,kanoa.de,Democracy & Human Rights,democracy_human_rights,false -quaewpos,kanoa.de,Engineering,engineering,false -quaewpos,kanoa.de,Government & Policy,government_policy,false -quaewpos,kanoa.de,Healthcare,healthcare,false -quaewpos,kanoa.de,"Hunger, Disease & Water",hunger_disease_water,false -quaewpos,kanoa.de,Law & Justice,law_justice,false -quaewpos,kanoa.de,Mathematics,mathematics,false -quaewpos,kanoa.de,Journalism & Comment,news_comment_data,false -quaewpos,kanoa.de,Physics,physics,false -quaewpos,kanoa.de,Politics,politics,false -quaewpos,kanoa.de,Poverty & Inequality,poverty_inequality,false -quaewpos,kanoa.de,Programming,programming,false -quaewpos,kanoa.de,Science,science,false -quaewpos,kanoa.de,Social Media,social_media,false -quaewpos,kanoa.de,Space,space,false -quaewpos,kanoa.de,Technology,technology,false -quaewpos,kanoa.de,Ukraine Invasion,ukraine_invasion,false -quaewpos,kanoa.de,US Politics,us_politics,false -quaewpos,kanoa.de,Weather,weather,false -quaewpos,kanoa.de,Breaking News,breaking_news,true -lety,doesstuff.social,Breaking News,breaking_news,false -lety,doesstuff.social,Business,business,false -lety,doesstuff.social,Chemistry,chemistry,false -lety,doesstuff.social,Climate change,climate_change,false -lety,doesstuff.social,Creative Arts,creative_arts,false -follow,twitter.social,Humour,humour,false -follow,twitter.social,"Hunger, Disease & Water",hunger_disease_water,false -follow,twitter.social,Immigrants Rights,immigrants_rights,false -follow,twitter.social,Indigenous Peoples,indigenous_peoples,false -wbbdaily,flipboard.social,Breaking News,breaking_news,false -follow,twitter.social,Law & Justice,law_justice,false -follow,twitter.social,LGBTQ+,lgbtq,false -follow,twitter.social,Markets & Finance,markets_finance,false -follow,twitter.social,Mathematics,mathematics,false -follow,twitter.social,Mental Health & Wellbeing,mental_health_wellbeing,false -follow,twitter.social,Movies,movies,false -d_krueger,mas.to,US Politics,us_politics,false -TimBondy,mstdn.social,Academia & Research,academia_research,false -FreddieJ,newsmast.social,Nature & Wildlife,nature_wildlife,false -TimBondy,mstdn.social,Biodiversity & Rewilding,biodiversity_rewilding,false -TimBondy,mstdn.social,Biology,biology,false -TimBondy,mstdn.social,Chemistry,chemistry,false -TimBondy,mstdn.social,Climate change,climate_change,false -TimBondy,mstdn.social,Creative Arts,creative_arts,false -TimBondy,mstdn.social,Energy & Pollution,energy_pollution,false -follow,twitter.social,Music,music,false -follow,twitter.social,Nature & Wildlife,nature_wildlife,false -follow,twitter.social,Journalism & Comment,news_comment_data,false -follow,twitter.social,Performing Arts,performing_arts,false -follow,twitter.social,Pets,pets,false -follow,twitter.social,Philosophy,philosophy,false -vpol,mastodon.social,Engineering,engineering,false -vpol,mastodon.social,Journalism & Comment,news_comment_data,false -vpol,mastodon.social,Science,science,false -vpol,mastodon.social,Space,space,false -vpol,mastodon.social,Technology,technology,false -vpol,mastodon.social,Programming,programming,true -chino,newsmast.social,AI,ai,false -chino,newsmast.social,Business,business,false -chino,newsmast.social,Markets & Finance,markets_finance,false -chino,newsmast.social,Science,science,false -chino,newsmast.social,Space,space,false -chino,newsmast.social,Technology,technology,false -chino,newsmast.social,Breaking News,breaking_news,true -TimBondy,mstdn.social,Environment,environment,false -TimBondy,mstdn.social,Food & Drink,food_drink,false -andadapt,newsmast.social,AI,ai,false -andadapt,newsmast.social,Architecture & Design,architecture_design,false -leibi,social.bau-ha.us,Academia & Research,academia_research,false -leibi,social.bau-ha.us,AI,ai,false -leibi,social.bau-ha.us,Biodiversity & Rewilding,biodiversity_rewilding,false -leibi,social.bau-ha.us,Climate change,climate_change,false -leibi,social.bau-ha.us,Democracy & Human Rights,democracy_human_rights,false -leibi,social.bau-ha.us,Energy & Pollution,energy_pollution,false -leibi,social.bau-ha.us,Engineering,engineering,false -leibi,social.bau-ha.us,Environment,environment,false -leibi,social.bau-ha.us,Government & Policy,government_policy,false -leibi,social.bau-ha.us,Healthcare,healthcare,false -leibi,social.bau-ha.us,"Hunger, Disease & Water",hunger_disease_water,false -leibi,social.bau-ha.us,Law & Justice,law_justice,false -leibi,social.bau-ha.us,Journalism & Comment,news_comment_data,false -leibi,social.bau-ha.us,Physics,physics,false -leibi,social.bau-ha.us,Politics,politics,false -leibi,social.bau-ha.us,Poverty & Inequality,poverty_inequality,false -leibi,social.bau-ha.us,Programming,programming,false -leibi,social.bau-ha.us,Science,science,false -leibi,social.bau-ha.us,Social Media,social_media,false -leibi,social.bau-ha.us,Space,space,false -leibi,social.bau-ha.us,Technology,technology,false -leibi,social.bau-ha.us,Ukraine Invasion,ukraine_invasion,false -leibi,social.bau-ha.us,Breaking News,breaking_news,true -andadapt,newsmast.social,Biology,biology,false -andadapt,newsmast.social,Books & Literature,books_literature,false -andadapt,newsmast.social,Business,business,false -andadapt,newsmast.social,Chemistry,chemistry,false -andadapt,newsmast.social,Creative Arts,creative_arts,false -andadapt,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -davidfield,pebble.social,AI,ai,false -davidfield,pebble.social,Breaking News,breaking_news,false -davidfield,pebble.social,Movies,movies,false -davidfield,pebble.social,Photography,photography,false -davidfield,pebble.social,Science,science,false -davidfield,pebble.social,Space,space,false -davidfield,pebble.social,Technology,technology,true -victoriavito,mastodon.social,Mental Health & Wellbeing,mental_health_wellbeing,false -victoriavito,mastodon.social,Movies,movies,false -victoriavito,mastodon.social,Music,music,false -victoriavito,mastodon.social,Technology,technology,false -victoriavito,mastodon.social,Food & Drink,food_drink,true -psp1973,fosstodon.org,AI,ai,false -psp1973,fosstodon.org,Biology,biology,false -psp1973,fosstodon.org,Books & Literature,books_literature,false -psp1973,fosstodon.org,Breaking News,breaking_news,false -psp1973,fosstodon.org,Engineering,engineering,false -psp1973,fosstodon.org,Gaming,gaming,false -psp1973,fosstodon.org,Movies,movies,false -psp1973,fosstodon.org,Music,music,false -psp1973,fosstodon.org,Journalism & Comment,news_comment_data,false -psp1973,fosstodon.org,Photography,photography,false -psp1973,fosstodon.org,Physics,physics,false -psp1973,fosstodon.org,Science,science,false -psp1973,fosstodon.org,Social Media,social_media,false -psp1973,fosstodon.org,Space,space,false -psp1973,fosstodon.org,Technology,technology,false -psp1973,fosstodon.org,TV & Radio,tv_radio,false -psp1973,fosstodon.org,Visual Arts,visual_arts,false -psp1973,fosstodon.org,Weather,weather,false -psp1973,fosstodon.org,Programming,programming,true -jacklund,freeradical.zone,Activism & Civil Rights,activism_civil_rights,false -jacklund,freeradical.zone,Biodiversity & Rewilding,biodiversity_rewilding,false -jacklund,freeradical.zone,Black Voices,black_voices,false -jacklund,freeradical.zone,Climate change,climate_change,false -jacklund,freeradical.zone,Democracy & Human Rights,democracy_human_rights,false -jacklund,freeradical.zone,Energy & Pollution,energy_pollution,false -jacklund,freeradical.zone,Environment,environment,false -jacklund,freeradical.zone,Government & Policy,government_policy,false -jacklund,freeradical.zone,History,history,false -jacklund,freeradical.zone,"Hunger, Disease & Water",hunger_disease_water,false -jacklund,freeradical.zone,Immigrants Rights,immigrants_rights,false -jacklund,freeradical.zone,Indigenous Peoples,indigenous_peoples,false -jacklund,freeradical.zone,LGBTQ+,lgbtq,false -jacklund,freeradical.zone,Mathematics,mathematics,false -jacklund,freeradical.zone,Journalism & Comment,news_comment_data,false -jacklund,freeradical.zone,Philosophy,philosophy,false -jacklund,freeradical.zone,Physics,physics,false -jacklund,freeradical.zone,Politics,politics,false -jacklund,freeradical.zone,Poverty & Inequality,poverty_inequality,false -jacklund,freeradical.zone,Programming,programming,false -jacklund,freeradical.zone,Science,science,false -jacklund,freeradical.zone,Social Media,social_media,false -jacklund,freeradical.zone,Space,space,false -jacklund,freeradical.zone,Technology,technology,false -jacklund,freeradical.zone,Ukraine Invasion,ukraine_invasion,false -jacklund,freeradical.zone,US Politics,us_politics,false -jacklund,freeradical.zone,Weather,weather,false -jacklund,freeradical.zone,Women’s Voices,women_voices,false -jacklund,freeradical.zone,Breaking News,breaking_news,true -follow,twitter.social,Photography,photography,false -pkreissel,volksverpetzer.social,Ukraine Invasion,ukraine_invasion,false -TimBondy,mstdn.social,Football,football,false -TimBondy,mstdn.social,Government & Policy,government_policy,false -TimBondy,mstdn.social,Healthcare,healthcare,false -TimBondy,mstdn.social,Humour,humour,false -davidvasandani,social.coop,AI,ai,false -davidvasandani,social.coop,Democracy & Human Rights,democracy_human_rights,false -davidvasandani,social.coop,Science,science,false -davidvasandani,social.coop,Space,space,false -davidvasandani,social.coop,Technology,technology,false -davidvasandani,social.coop,Engineering,engineering,true -TimBondy,mstdn.social,Law & Justice,law_justice,false -TimBondy,mstdn.social,Mathematics,mathematics,false -TimBondy,mstdn.social,Mental Health & Wellbeing,mental_health_wellbeing,false -TimBondy,mstdn.social,Nature & Wildlife,nature_wildlife,false -TimBondy,mstdn.social,Pets,pets,false -TimBondy,mstdn.social,Physics,physics,false -TimBondy,mstdn.social,Politics,politics,false -TimBondy,mstdn.social,Puzzles,puzzles,false -TimBondy,mstdn.social,Science,science,false -TimBondy,mstdn.social,Space,space,false -TimBondy,mstdn.social,Sport,sport,false -TimBondy,mstdn.social,Travel,travel,false -TimBondy,mstdn.social,US Sport,us_sport,false -TimBondy,mstdn.social,US Politics,us_politics,true -randulo,mozilla.social,Performing Arts,performing_arts,false -randulo,mozilla.social,Books & Literature,books_literature,false -randulo,mozilla.social,Programming,programming,false -randulo,mozilla.social,Science,science,false -randulo,mozilla.social,Space,space,false -randulo,mozilla.social,Technology,technology,false -randulo,mozilla.social,Movies,movies,true -occuros,mastodon.gamedev.place,Engineering,engineering,false -occuros,mastodon.gamedev.place,Physics,physics,false -occuros,mastodon.gamedev.place,Science,science,false -occuros,mastodon.gamedev.place,Programming,programming,true -Robinbonhomme,mastodon.social,Humour,humour,false -Robinbonhomme,mastodon.social,Science,science,false -Robinbonhomme,mastodon.social,Social Sciences,social_sciences,false -Robinbonhomme,mastodon.social,Travel,travel,false -Robinbonhomme,mastodon.social,Mental Health & Wellbeing,mental_health_wellbeing,true -gsyhiap,kind.social,Business,business,false -gsyhiap,kind.social,Engineering,engineering,false -gsyhiap,kind.social,Government & Policy,government_policy,false -gsyhiap,kind.social,Markets & Finance,markets_finance,false -gsyhiap,kind.social,Mathematics,mathematics,false -gsyhiap,kind.social,Politics,politics,false -gsyhiap,kind.social,Science,science,false -gsyhiap,kind.social,Space,space,false -gsyhiap,kind.social,Technology,technology,false -gsyhiap,kind.social,US Politics,us_politics,false -gsyhiap,kind.social,Workers Rights,workers_rights,true -SabahH,newsmast.social,Breaking News,breaking_news,false -SabahH,newsmast.social,Business,business,false -SabahH,newsmast.social,Creative Arts,creative_arts,false -SabahH,newsmast.social,Markets & Finance,markets_finance,false -SabahH,newsmast.social,Movies,movies,false -SabahH,newsmast.social,Music,music,false -SabahH,newsmast.social,Performing Arts,performing_arts,false -SabahH,newsmast.social,Photography,photography,false -SabahH,newsmast.social,Social Media,social_media,false -SabahH,newsmast.social,Travel,travel,false -SabahH,newsmast.social,TV & Radio,tv_radio,false -SabahH,newsmast.social,Visual Arts,visual_arts,false -SabahH,newsmast.social,Journalism & Comment,news_comment_data,true -priester,mastodon.social,Academia & Research,academia_research,false -priester,mastodon.social,AI,ai,false -priester,mastodon.social,Architecture & Design,architecture_design,false -priester,mastodon.social,Biodiversity & Rewilding,biodiversity_rewilding,false -priester,mastodon.social,Biology,biology,false -priester,mastodon.social,Books & Literature,books_literature,false -priester,mastodon.social,Breaking News,breaking_news,false -priester,mastodon.social,Chemistry,chemistry,false -priester,mastodon.social,Climate change,climate_change,false -priester,mastodon.social,Creative Arts,creative_arts,false -priester,mastodon.social,Democracy & Human Rights,democracy_human_rights,false -priester,mastodon.social,Energy & Pollution,energy_pollution,false -priester,mastodon.social,Engineering,engineering,false -priester,mastodon.social,Humanities,humanities,true -iggy_b,mastodon.social,Music,music,false -iggy_b,mastodon.social,Nature & Wildlife,nature_wildlife,false -iggy_b,mastodon.social,Performing Arts,performing_arts,false -iggy_b,mastodon.social,Photography,photography,false -iggy_b,mastodon.social,Politics,politics,false -iggy_b,mastodon.social,Social Media,social_media,false -iggy_b,mastodon.social,Sport,sport,false -iggy_b,mastodon.social,Technology,technology,false -iggy_b,mastodon.social,Travel,travel,false -mleaning,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -mleaning,newsmast.social,Mathematics,mathematics,false -mleaning,newsmast.social,Physics,physics,false -mleaning,newsmast.social,Science,science,false -mleaning,newsmast.social,Breaking News,breaking_news,true -andadapt,newsmast.social,Engineering,engineering,false -andadapt,newsmast.social,Food & Drink,food_drink,false -andadapt,newsmast.social,Gaming,gaming,false -andadapt,newsmast.social,History,history,false -andadapt,newsmast.social,Humanities,humanities,false -andadapt,newsmast.social,Humour,humour,false -andadapt,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false -andadapt,newsmast.social,Markets & Finance,markets_finance,false -andadapt,newsmast.social,Mathematics,mathematics,false -andadapt,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false -andadapt,newsmast.social,Movies,movies,false -andadapt,newsmast.social,Music,music,false -andadapt,newsmast.social,Nature & Wildlife,nature_wildlife,false -andadapt,newsmast.social,Journalism & Comment,news_comment_data,false -andadapt,newsmast.social,Performing Arts,performing_arts,false -andadapt,newsmast.social,Pets,pets,false -andadapt,newsmast.social,Philosophy,philosophy,false -andadapt,newsmast.social,Photography,photography,false -andadapt,newsmast.social,Physics,physics,false -andadapt,newsmast.social,Poverty & Inequality,poverty_inequality,false -andadapt,newsmast.social,Programming,programming,false -andadapt,newsmast.social,Puzzles,puzzles,false -andadapt,newsmast.social,Science,science,false -andadapt,newsmast.social,Social Media,social_media,false -andadapt,newsmast.social,Social Sciences,social_sciences,false -andadapt,newsmast.social,Space,space,false -andadapt,newsmast.social,Technology,technology,false -andadapt,newsmast.social,Travel,travel,false -andadapt,newsmast.social,TV & Radio,tv_radio,false -andadapt,newsmast.social,Ukraine Invasion,ukraine_invasion,false -andadapt,newsmast.social,Visual Arts,visual_arts,false -andadapt,newsmast.social,Weather,weather,false -andadapt,newsmast.social,Workers Rights,workers_rights,false -andadapt,newsmast.social,Breaking News,breaking_news,true -iggy_b,mastodon.social,Visual Arts,visual_arts,false -iggy_b,mastodon.social,Football,football,true -IlCava,mastodon.uno,US Sport,us_sport,false -IlCava,mastodon.uno,Visual Arts,visual_arts,false -pkreissel,volksverpetzer.social,Biology,biology,false -IlCava,mastodon.uno,Weather,weather,false -pkreissel,volksverpetzer.social,Democracy & Human Rights,democracy_human_rights,false -sinclair,techhub.social,Social Sciences,social_sciences,false -jhantytown89,newsmast.social,Poverty & Inequality,poverty_inequality,false -danielbowmaniel,mastodon.sdf.org,Science,science,false -danielbowmaniel,mastodon.sdf.org,Technology,technology,false -danielbowmaniel,mastodon.sdf.org,US Politics,us_politics,false -danielbowmaniel,mastodon.sdf.org,US Sport,us_sport,false -danielbowmaniel,mastodon.sdf.org,Visual Arts,visual_arts,false -danielbowmaniel,mastodon.sdf.org,Weather,weather,false -mjgardner,social.sdf.org,Physics,physics,false -mjgardner,social.sdf.org,TV & Radio,tv_radio,false -mjgardner,social.sdf.org,History,history,false -chrisg,aus.social,Academia & Research,academia_research,false -chrisg,aus.social,Activism & Civil Rights,activism_civil_rights,false -chrisg,aus.social,AI,ai,false -chrisg,aus.social,Architecture & Design,architecture_design,false -chrisg,aus.social,Biodiversity & Rewilding,biodiversity_rewilding,false -chrisg,aus.social,Biology,biology,false -chrisg,aus.social,Black Voices,black_voices,false -chrisg,aus.social,Books & Literature,books_literature,false -chrisg,aus.social,Business,business,false -chrisg,aus.social,Chemistry,chemistry,false -chrisg,aus.social,Climate change,climate_change,false -chrisg,aus.social,Creative Arts,creative_arts,false -chrisg,aus.social,Democracy & Human Rights,democracy_human_rights,false -chrisg,aus.social,Disabled Voices,disabled_voices,false -chrisg,aus.social,Energy & Pollution,energy_pollution,false -chrisg,aus.social,Engineering,engineering,false -chrisg,aus.social,Environment,environment,false -chrisg,aus.social,Food & Drink,food_drink,false -chrisg,aus.social,Gaming,gaming,false -chrisg,aus.social,Government & Policy,government_policy,false -chrisg,aus.social,Healthcare,healthcare,false -chrisg,aus.social,History,history,false -chrisg,aus.social,Humanities,humanities,false -chrisg,aus.social,Humour,humour,false -chrisg,aus.social,Immigrants Rights,immigrants_rights,false -chrisg,aus.social,Indigenous Peoples,indigenous_peoples,false -chrisg,aus.social,Law & Justice,law_justice,false -chrisg,aus.social,LGBTQ+,lgbtq,false -chrisg,aus.social,Markets & Finance,markets_finance,false -chrisg,aus.social,Mathematics,mathematics,false -chrisg,aus.social,Mental Health & Wellbeing,mental_health_wellbeing,false -chrisg,aus.social,Movies,movies,false -chrisg,aus.social,Music,music,false -priester,mastodon.social,Environment,environment,false -priester,mastodon.social,Food & Drink,food_drink,false -priester,mastodon.social,Gaming,gaming,false -priester,mastodon.social,Government & Policy,government_policy,false -priester,mastodon.social,Healthcare,healthcare,false -priester,mastodon.social,History,history,false -priester,mastodon.social,Humour,humour,false -priester,mastodon.social,"Hunger, Disease & Water",hunger_disease_water,false -priester,mastodon.social,Law & Justice,law_justice,false -priester,mastodon.social,Mathematics,mathematics,false -priester,mastodon.social,Mental Health & Wellbeing,mental_health_wellbeing,false -priester,mastodon.social,Movies,movies,false -priester,mastodon.social,Music,music,false -priester,mastodon.social,Nature & Wildlife,nature_wildlife,false -priester,mastodon.social,Journalism & Comment,news_comment_data,false -priester,mastodon.social,Performing Arts,performing_arts,false -priester,mastodon.social,Pets,pets,false -priester,mastodon.social,Philosophy,philosophy,false -priester,mastodon.social,Photography,photography,false -priester,mastodon.social,Physics,physics,false -priester,mastodon.social,Politics,politics,false -priester,mastodon.social,Poverty & Inequality,poverty_inequality,false -priester,mastodon.social,Programming,programming,false -priester,mastodon.social,Puzzles,puzzles,false -priester,mastodon.social,Science,science,false -priester,mastodon.social,Social Media,social_media,false -priester,mastodon.social,Social Sciences,social_sciences,false -priester,mastodon.social,Space,space,false -priester,mastodon.social,Technology,technology,false -priester,mastodon.social,Travel,travel,false -priester,mastodon.social,TV & Radio,tv_radio,false -priester,mastodon.social,Ukraine Invasion,ukraine_invasion,false -priester,mastodon.social,US Politics,us_politics,false -priester,mastodon.social,Visual Arts,visual_arts,false -priester,mastodon.social,Weather,weather,false -IlCava,mastodon.uno,Women’s Voices,women_voices,false -IlCava,mastodon.uno,Science,science,true -d_krueger,mas.to,Workers Rights,workers_rights,false -d_krueger,mas.to,Climate change,climate_change,true -khabeko,techhub.social,Mathematics,mathematics,false -khabeko,techhub.social,Physics,physics,false -khabeko,techhub.social,Programming,programming,false -follow,twitter.social,Physics,physics,false -follow,twitter.social,Politics,politics,false -follow,twitter.social,Poverty & Inequality,poverty_inequality,false -follow,twitter.social,Programming,programming,false -follow,twitter.social,Puzzles,puzzles,false -follow,twitter.social,Science,science,false -follow,twitter.social,Social Sciences,social_sciences,false -follow,twitter.social,Space,space,false -follow,twitter.social,Sport,sport,false -BobDoodle,pnw.zone,Breaking News,breaking_news,false -BobDoodle,pnw.zone,Climate change,climate_change,false -BobDoodle,pnw.zone,Democracy & Human Rights,democracy_human_rights,false -BobDoodle,pnw.zone,Energy & Pollution,energy_pollution,false -BobDoodle,pnw.zone,Government & Policy,government_policy,false -BobDoodle,pnw.zone,Healthcare,healthcare,false -BobDoodle,pnw.zone,"Hunger, Disease & Water",hunger_disease_water,false -BobDoodle,pnw.zone,Law & Justice,law_justice,false -BobDoodle,pnw.zone,Journalism & Comment,news_comment_data,false -BobDoodle,pnw.zone,Poverty & Inequality,poverty_inequality,false -BobDoodle,pnw.zone,Social Media,social_media,false -BobDoodle,pnw.zone,Social Sciences,social_sciences,false -BobDoodle,pnw.zone,US Politics,us_politics,false -BobDoodle,pnw.zone,Ukraine Invasion,ukraine_invasion,true -follow,twitter.social,Technology,technology,false -follow,twitter.social,Travel,travel,false -heathenstorm,mastodon.social,AI,ai,false -heathenstorm,mastodon.social,Programming,programming,false -heathenstorm,mastodon.social,Space,space,false -heathenstorm,mastodon.social,Technology,technology,false -heathenstorm,mastodon.social,Social Media,social_media,true -Deanmobley,mastodon.social,Architecture & Design,architecture_design,false -Deanmobley,mastodon.social,Chemistry,chemistry,false -Deanmobley,mastodon.social,Creative Arts,creative_arts,false -Deanmobley,mastodon.social,Food & Drink,food_drink,false -Deanmobley,mastodon.social,History,history,false -Deanmobley,mastodon.social,Humanities,humanities,false -Deanmobley,mastodon.social,Humour,humour,false -Deanmobley,mastodon.social,Mental Health & Wellbeing,mental_health_wellbeing,false -Deanmobley,mastodon.social,Movies,movies,false -Deanmobley,mastodon.social,Music,music,false -Deanmobley,mastodon.social,Nature & Wildlife,nature_wildlife,false -Deanmobley,mastodon.social,Performing Arts,performing_arts,false -Deanmobley,mastodon.social,Philosophy,philosophy,false -Deanmobley,mastodon.social,Physics,physics,false -Deanmobley,mastodon.social,Science,science,false -Deanmobley,mastodon.social,Social Sciences,social_sciences,false -Deanmobley,mastodon.social,Space,space,false -Deanmobley,mastodon.social,TV & Radio,tv_radio,false -Deanmobley,mastodon.social,Visual Arts,visual_arts,false -Deanmobley,mastodon.social,Books & Literature,books_literature,true -Tony62Pineview,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false -Tony62Pineview,newsmast.social,Climate change,climate_change,false -Tony62Pineview,newsmast.social,Energy & Pollution,energy_pollution,false -Tony62Pineview,newsmast.social,Football,football,false -Tony62Pineview,newsmast.social,Humanities,humanities,false -Tony62Pineview,newsmast.social,Music,music,false -Tony62Pineview,newsmast.social,Journalism & Comment,news_comment_data,false -Tony62Pineview,newsmast.social,Performing Arts,performing_arts,false -Tony62Pineview,newsmast.social,TV & Radio,tv_radio,false -Tony62Pineview,newsmast.social,US Sport,us_sport,false -Tony62Pineview,newsmast.social,Environment,environment,true -gardito,mastodon.social,Activism & Civil Rights,activism_civil_rights,false -gardito,mastodon.social,AI,ai,false -gardito,mastodon.social,Climate change,climate_change,false -gardito,mastodon.social,Democracy & Human Rights,democracy_human_rights,false -gardito,mastodon.social,Engineering,engineering,false -gardito,mastodon.social,Environment,environment,false -gardito,mastodon.social,Government & Policy,government_policy,false -gardito,mastodon.social,Healthcare,healthcare,false -gardito,mastodon.social,History,history,false -gardito,mastodon.social,Humanities,humanities,false -gardito,mastodon.social,"Hunger, Disease & Water",hunger_disease_water,false -gardito,mastodon.social,Journalism & Comment,news_comment_data,false -gardito,mastodon.social,Philosophy,philosophy,false -gardito,mastodon.social,Politics,politics,false -gardito,mastodon.social,Poverty & Inequality,poverty_inequality,false -gardito,mastodon.social,Science,science,false -gardito,mastodon.social,Social Media,social_media,false -flyoverproj,lor.sh,Academia & Research,academia_research,false -flyoverproj,lor.sh,AI,ai,false -flyoverproj,lor.sh,Black Voices,black_voices,false -flyoverproj,lor.sh,Climate change,climate_change,false -flyoverproj,lor.sh,Democracy & Human Rights,democracy_human_rights,false -flyoverproj,lor.sh,Disabled Voices,disabled_voices,false -flyoverproj,lor.sh,Energy & Pollution,energy_pollution,false -flyoverproj,lor.sh,Government & Policy,government_policy,false -flyoverproj,lor.sh,Healthcare,healthcare,false -flyoverproj,lor.sh,Humanities,humanities,false -flyoverproj,lor.sh,"Hunger, Disease & Water",hunger_disease_water,false -flyoverproj,lor.sh,Immigrants Rights,immigrants_rights,false -flyoverproj,lor.sh,Indigenous Peoples,indigenous_peoples,false -flyoverproj,lor.sh,Law & Justice,law_justice,false -flyoverproj,lor.sh,LGBTQ+,lgbtq,false -flyoverproj,lor.sh,Movies,movies,false -flyoverproj,lor.sh,Performing Arts,performing_arts,false -flyoverproj,lor.sh,Politics,politics,false -flyoverproj,lor.sh,Poverty & Inequality,poverty_inequality,false -flyoverproj,lor.sh,Social Media,social_media,false -flyoverproj,lor.sh,Social Sciences,social_sciences,false -flyoverproj,lor.sh,Technology,technology,false -flyoverproj,lor.sh,TV & Radio,tv_radio,false -flyoverproj,lor.sh,Ukraine Invasion,ukraine_invasion,false -flyoverproj,lor.sh,US Politics,us_politics,false -flyoverproj,lor.sh,Visual Arts,visual_arts,false -flyoverproj,lor.sh,Women’s Voices,women_voices,false -flyoverproj,lor.sh,Activism & Civil Rights,activism_civil_rights,true -gardito,mastodon.social,Social Sciences,social_sciences,false -gardito,mastodon.social,Space,space,false -gardito,mastodon.social,Technology,technology,false -gardito,mastodon.social,US Politics,us_politics,false -gardito,mastodon.social,Weather,weather,false -gardito,mastodon.social,Breaking News,breaking_news,true -sophia,newsmast.social,Activism & Civil Rights,activism_civil_rights,false -Cormac,mastodon.london,Activism & Civil Rights,activism_civil_rights,false -Cormac,mastodon.london,Architecture & Design,architecture_design,false -Cormac,mastodon.london,Books & Literature,books_literature,false -Cormac,mastodon.london,Democracy & Human Rights,democracy_human_rights,false -Cormac,mastodon.london,History,history,false -Cormac,mastodon.london,Movies,movies,false -Cormac,mastodon.london,Social Sciences,social_sciences,false -Cormac,mastodon.london,Technology,technology,false -Cormac,mastodon.london,Humanities,humanities,true -OlPatchy2Eyes,ieji.de,Gaming,gaming,false -syncretist,writing.exchange,Humanities,humanities,false -syncretist,writing.exchange,Journalism & Comment,news_comment_data,false -syncretist,writing.exchange,Science,science,false -syncretist,writing.exchange,Social Sciences,social_sciences,false -Name,mstdn.plus,AI,ai,false -Name,mstdn.plus,Football,football,false -Name,mstdn.plus,Sport,sport,false -Name,mstdn.plus,Weather,weather,false -Name,mstdn.plus,Breaking News,breaking_news,true -syncretist,writing.exchange,Space,space,false -syncretist,writing.exchange,Breaking News,breaking_news,true -OlPatchy2Eyes,ieji.de,Architecture & Design,architecture_design,false -johannesalbrecth,bolha.us,AI,ai,false -johannesalbrecth,bolha.us,Architecture & Design,architecture_design,false -johannesalbrecth,bolha.us,Biology,biology,false -johannesalbrecth,bolha.us,Books & Literature,books_literature,false -johannesalbrecth,bolha.us,Breaking News,breaking_news,false -johannesalbrecth,bolha.us,Chemistry,chemistry,false -johannesalbrecth,bolha.us,Engineering,engineering,false -johannesalbrecth,bolha.us,Gaming,gaming,false -johannesalbrecth,bolha.us,History,history,false -johannesalbrecth,bolha.us,Humanities,humanities,false -johannesalbrecth,bolha.us,Humour,humour,false -Del_the_funk66,mastodon.social,Academia & Research,academia_research,false -Del_the_funk66,mastodon.social,AI,ai,false -Del_the_funk66,mastodon.social,Books & Literature,books_literature,false -Del_the_funk66,mastodon.social,Breaking News,breaking_news,false -Del_the_funk66,mastodon.social,Business,business,false -Del_the_funk66,mastodon.social,Democracy & Human Rights,democracy_human_rights,false -Del_the_funk66,mastodon.social,Engineering,engineering,false -Del_the_funk66,mastodon.social,Environment,environment,false -Del_the_funk66,mastodon.social,Food & Drink,food_drink,false -Del_the_funk66,mastodon.social,Football,football,false -Del_the_funk66,mastodon.social,Gaming,gaming,false -Del_the_funk66,mastodon.social,Healthcare,healthcare,false -Del_the_funk66,mastodon.social,Humanities,humanities,false -Del_the_funk66,mastodon.social,Humour,humour,false -Del_the_funk66,mastodon.social,Law & Justice,law_justice,false -Del_the_funk66,mastodon.social,Government & Policy,government_policy,true -Del_the_funk66,mastodon.social,Markets & Finance,markets_finance,false -Del_the_funk66,mastodon.social,Mental Health & Wellbeing,mental_health_wellbeing,false -Del_the_funk66,mastodon.social,Movies,movies,false -Del_the_funk66,mastodon.social,Music,music,false -Del_the_funk66,mastodon.social,Journalism & Comment,news_comment_data,false -Del_the_funk66,mastodon.social,Pets,pets,false -Del_the_funk66,mastodon.social,Politics,politics,false -Del_the_funk66,mastodon.social,Poverty & Inequality,poverty_inequality,false -Del_the_funk66,mastodon.social,Programming,programming,false -Del_the_funk66,mastodon.social,Social Media,social_media,false -Del_the_funk66,mastodon.social,Technology,technology,false -Del_the_funk66,mastodon.social,Travel,travel,false -Del_the_funk66,mastodon.social,TV & Radio,tv_radio,false -Del_the_funk66,mastodon.social,US Politics,us_politics,false -Del_the_funk66,mastodon.social,Workers Rights,workers_rights,false -paulpeace,mastodon.social,Energy & Pollution,energy_pollution,false -ArnoC,eupolicy.social,Academia & Research,academia_research,false -ArnoC,eupolicy.social,AI,ai,false -ArnoC,eupolicy.social,Breaking News,breaking_news,false -ArnoC,eupolicy.social,Democracy & Human Rights,democracy_human_rights,false -cm5,mas.to,Biodiversity & Rewilding,biodiversity_rewilding,false -ArnoC,eupolicy.social,Government & Policy,government_policy,false -cm5,mas.to,Engineering,engineering,false -cm5,mas.to,Environment,environment,false -cm5,mas.to,Programming,programming,false -cm5,mas.to,Technology,technology,true -ArnoC,eupolicy.social,History,history,false -ArnoC,eupolicy.social,Humanities,humanities,false -ArnoC,eupolicy.social,Humour,humour,false -ArnoC,eupolicy.social,Law & Justice,law_justice,false -ArnoC,eupolicy.social,Mental Health & Wellbeing,mental_health_wellbeing,false -ArnoC,eupolicy.social,Philosophy,philosophy,false -ArnoC,eupolicy.social,Science,science,false -roomaroo,mastodon.green,AI,ai,false -roomaroo,mastodon.green,Biodiversity & Rewilding,biodiversity_rewilding,false -roomaroo,mastodon.green,Climate change,climate_change,false -roomaroo,mastodon.green,Energy & Pollution,energy_pollution,false -roomaroo,mastodon.green,Engineering,engineering,false -roomaroo,mastodon.green,Environment,environment,false -roomaroo,mastodon.green,Programming,programming,false -roomaroo,mastodon.green,Technology,technology,true -daniellean,newsmast.social,Activism & Civil Rights,activism_civil_rights,false -daniellean,newsmast.social,Black Voices,black_voices,false -daniellean,newsmast.social,Breaking News,breaking_news,false -daniellean,newsmast.social,Climate change,climate_change,false -daniellean,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -daniellean,newsmast.social,Environment,environment,false -daniellean,newsmast.social,Government & Policy,government_policy,false -daniellean,newsmast.social,Humanities,humanities,false -daniellean,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false -daniellean,newsmast.social,Immigrants Rights,immigrants_rights,false -daniellean,newsmast.social,Indigenous Peoples,indigenous_peoples,false -daniellean,newsmast.social,Journalism & Comment,news_comment_data,false -daniellean,newsmast.social,Social Media,social_media,false -daniellean,newsmast.social,Social Sciences,social_sciences,false -daniellean,newsmast.social,Women’s Voices,women_voices,false -daniellean,newsmast.social,LGBTQ+,lgbtq,true -daniellean,newsmast.social,Ukraine Invasion,ukraine_invasion,false -daniellean,newsmast.social,Weather,weather,false -daniellean,newsmast.social,Academia & Research,academia_research,false -daniellean,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false -daniellean,newsmast.social,Disabled Voices,disabled_voices,false -daniellean,newsmast.social,Science,science,false -Greenarchist,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false -Greenarchist,newsmast.social,Breaking News,breaking_news,false -Greenarchist,newsmast.social,Energy & Pollution,energy_pollution,false -Greenarchist,newsmast.social,Science,science,false -Greenarchist,newsmast.social,Environment,environment,true -embibel,mastodon.online,Books & Literature,books_literature,false -embibel,mastodon.online,History,history,false -embibel,mastodon.online,Humanities,humanities,false -embibel,mastodon.online,Movies,movies,false -embibel,mastodon.online,Music,music,false -embibel,mastodon.online,Philosophy,philosophy,false -embibel,mastodon.online,Social Sciences,social_sciences,false -embibel,mastodon.online,Technology,technology,false -embibel,mastodon.online,Football,football,true -daniellean,newsmast.social,Poverty & Inequality,poverty_inequality,false -daniellean,newsmast.social,Politics,politics,false -daniellean,newsmast.social,US Politics,us_politics,false -daniellean,newsmast.social,Energy & Pollution,energy_pollution,false -nitinkhanna,mastodon.social,Architecture & Design,architecture_design,false -nitinkhanna,mastodon.social,Books & Literature,books_literature,false -nitinkhanna,mastodon.social,Breaking News,breaking_news,false -nitinkhanna,mastodon.social,Democracy & Human Rights,democracy_human_rights,false -nitinkhanna,mastodon.social,Environment,environment,false -nitinkhanna,mastodon.social,Gaming,gaming,false -nitinkhanna,mastodon.social,Government & Policy,government_policy,false -nitinkhanna,mastodon.social,Humour,humour,false -nitinkhanna,mastodon.social,Movies,movies,false -nitinkhanna,mastodon.social,Journalism & Comment,news_comment_data,false -nitinkhanna,mastodon.social,Physics,physics,false -nitinkhanna,mastodon.social,Science,science,false -nitinkhanna,mastodon.social,Space,space,false -nitinkhanna,mastodon.social,Technology,technology,false -nitinkhanna,mastodon.social,AI,ai,true -marcofrasca,mastodon.uno,Engineering,engineering,false -marcofrasca,mastodon.uno,Physics,physics,false -marcofrasca,mastodon.uno,Programming,programming,false -marcofrasca,mastodon.uno,Science,science,false -marcofrasca,mastodon.uno,Technology,technology,true -marcofrasca,mastodon.uno,Social Media,social_media,false -marcofrasca,mastodon.uno,Photography,photography,false -marcofrasca,mastodon.uno,Music,music,false -sophia,newsmast.social,AI,ai,false -ArnoC,eupolicy.social,Social Sciences,social_sciences,false -ArnoC,eupolicy.social,Technology,technology,true -sophia,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false -metalpig,mastodon.social,AI,ai,false -metalpig,mastodon.social,Biodiversity & Rewilding,biodiversity_rewilding,false -metalpig,mastodon.social,Climate change,climate_change,false -metalpig,mastodon.social,Creative Arts,creative_arts,false -metalpig,mastodon.social,Energy & Pollution,energy_pollution,false -metalpig,mastodon.social,Environment,environment,false -metalpig,mastodon.social,Food & Drink,food_drink,false -metalpig,mastodon.social,Humour,humour,false -metalpig,mastodon.social,Mental Health & Wellbeing,mental_health_wellbeing,false -metalpig,mastodon.social,Nature & Wildlife,nature_wildlife,false -metalpig,mastodon.social,Pets,pets,false -metalpig,mastodon.social,Programming,programming,false -metalpig,mastodon.social,Puzzles,puzzles,false -metalpig,mastodon.social,Technology,technology,false -metalpig,mastodon.social,Travel,travel,false -metalpig,mastodon.social,Engineering,engineering,true -wbbdaily,flipboard.social,Football,football,false -sophia,newsmast.social,Black Voices,black_voices,false -sophia,newsmast.social,Climate change,climate_change,false -sophia,newsmast.social,Disabled Voices,disabled_voices,false -sophia,newsmast.social,Energy & Pollution,energy_pollution,false -sophia,newsmast.social,Engineering,engineering,false -sophia,newsmast.social,Immigrants Rights,immigrants_rights,false -sophia,newsmast.social,Indigenous Peoples,indigenous_peoples,false -sophia,newsmast.social,LGBTQ+,lgbtq,false -sophia,newsmast.social,Programming,programming,false -sophia,newsmast.social,Technology,technology,false -sophia,newsmast.social,Women’s Voices,women_voices,false -sophia,newsmast.social,Environment,environment,true -pkreissel,volksverpetzer.social,"Hunger, Disease & Water",hunger_disease_water,false -pkreissel,volksverpetzer.social,Physics,physics,false -pkreissel,volksverpetzer.social,Science,science,false -pkreissel,volksverpetzer.social,Climate change,climate_change,true -mariosiniscalchi,mastodon.uno,Energy & Pollution,energy_pollution,false -follow,twitter.social,TV & Radio,tv_radio,false -follow,twitter.social,Ukraine Invasion,ukraine_invasion,false -follow,twitter.social,US Politics,us_politics,false -yanmoenaing,newsmast.social,Business,business,false -yanmoenaing,newsmast.social,Chemistry,chemistry,false -yanmoenaing,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -yanmoenaing,newsmast.social,Engineering,engineering,false -yanmoenaing,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false -yanmoenaing,newsmast.social,Markets & Finance,markets_finance,false -yanmoenaing,newsmast.social,Mathematics,mathematics,false -yanmoenaing,newsmast.social,Physics,physics,false -yanmoenaing,newsmast.social,Poverty & Inequality,poverty_inequality,false -yanmoenaing,newsmast.social,Programming,programming,false -yanmoenaing,newsmast.social,Science,science,false -yanmoenaing,newsmast.social,Technology,technology,false -yanmoenaing,newsmast.social,Workers Rights,workers_rights,false -yanmoenaing,newsmast.social,Space,space,false -alemida30,newsmast.social,Breaking News,breaking_news,false -alemida30,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -alemida30,newsmast.social,Humanities,humanities,false -alemida30,newsmast.social,Social Media,social_media,false -alemida30,newsmast.social,LGBTQ+,lgbtq,true -rizoid,mastodon.world,Chemistry,chemistry,false -rizoid,mastodon.world,Climate change,climate_change,false -rizoid,mastodon.world,Democracy & Human Rights,democracy_human_rights,false -rizoid,mastodon.world,Energy & Pollution,energy_pollution,false -rizoid,mastodon.world,Environment,environment,false -rizoid,mastodon.world,Law & Justice,law_justice,false -rizoid,mastodon.world,Journalism & Comment,news_comment_data,false -rizoid,mastodon.world,Politics,politics,false -rizoid,mastodon.world,Programming,programming,false -rizoid,mastodon.world,Science,science,false -rizoid,mastodon.world,Social Media,social_media,false -rizoid,mastodon.world,Space,space,false -rizoid,mastodon.world,Technology,technology,false -rizoid,mastodon.world,US Politics,us_politics,false -rizoid,mastodon.world,Weather,weather,false -rizoid,mastodon.world,Breaking News,breaking_news,true -ToposInstitute,newsmast.social,AI,ai,false -ToposInstitute,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -ToposInstitute,newsmast.social,Engineering,engineering,false -ToposInstitute,newsmast.social,Poverty & Inequality,poverty_inequality,false -ToposInstitute,newsmast.social,Science,science,false -ToposInstitute,newsmast.social,Technology,technology,false -ToposInstitute,newsmast.social,Mathematics,mathematics,true -irlrefuge,newsmast.social,Technology,technology,true -trinsdau,m.cmx.im,Democracy & Human Rights,democracy_human_rights,false -trinsdau,m.cmx.im,History,history,false -trinsdau,m.cmx.im,Humanities,humanities,false -trinsdau,m.cmx.im,"Hunger, Disease & Water",hunger_disease_water,false -trinsdau,m.cmx.im,Social Sciences,social_sciences,true -mariosiniscalchi,mastodon.uno,Environment,environment,false -mariosiniscalchi,mastodon.uno,Journalism & Comment,news_comment_data,false -mariosiniscalchi,mastodon.uno,Science,science,false -WelchE,newsmast.social,LGBTQ+,lgbtq,false -WelchE,newsmast.social,Indigenous Peoples,indigenous_peoples,false -WelchE,newsmast.social,Creative Arts,creative_arts,false -jhantytown89,newsmast.social,Science,science,false -jhantytown89,newsmast.social,Workers Rights,workers_rights,false -WelchE,newsmast.social,Food & Drink,food_drink,false -WelchE,newsmast.social,Nature & Wildlife,nature_wildlife,false -quillmatiq,mastodon.social,Breaking News,breaking_news,false -quillmatiq,mastodon.social,Business,business,false -quillmatiq,mastodon.social,Engineering,engineering,false -quillmatiq,mastodon.social,Social Media,social_media,false -quillmatiq,mastodon.social,Technology,technology,true -WelchE,newsmast.social,Puzzles,puzzles,false -mjgardner,social.sdf.org,Science,science,false -mjgardner,social.sdf.org,Movies,movies,false -mjgardner,social.sdf.org,Performing Arts,performing_arts,false -DrJLCLee,mastodon.green,Science,science,false -xomex,defcon.social,Mathematics,mathematics,false -xomex,defcon.social,Programming,programming,false -virtulis,loud.computer,Biology,biology,false -virtulis,loud.computer,Breaking News,breaking_news,false -virtulis,loud.computer,Climate change,climate_change,false -virtulis,loud.computer,Democracy & Human Rights,democracy_human_rights,false -virtulis,loud.computer,Energy & Pollution,energy_pollution,false -virtulis,loud.computer,Engineering,engineering,false -virtulis,loud.computer,Environment,environment,false -virtulis,loud.computer,Physics,physics,false -virtulis,loud.computer,Science,science,false -virtulis,loud.computer,Space,space,false -virtulis,loud.computer,Technology,technology,false -virtulis,loud.computer,Ukraine Invasion,ukraine_invasion,false -virtulis,loud.computer,Programming,programming,true -xomex,defcon.social,Space,space,false -xomex,defcon.social,Technology,technology,false -xomex,defcon.social,US Politics,us_politics,false -xomex,defcon.social,Science,science,true -johannesalbrecth,bolha.us,Mathematics,mathematics,false -johannesalbrecth,bolha.us,Mental Health & Wellbeing,mental_health_wellbeing,false -johannesalbrecth,bolha.us,Movies,movies,false -johannesalbrecth,bolha.us,Music,music,false -justinling,mastodon.online,Academia & Research,academia_research,false -justinling,mastodon.online,Democracy & Human Rights,democracy_human_rights,false -justinling,mastodon.online,Government & Policy,government_policy,false -justinling,mastodon.online,Journalism & Comment,news_comment_data,false -justinling,mastodon.online,Politics,politics,false -justinling,mastodon.online,Ukraine Invasion,ukraine_invasion,false -justinling,mastodon.online,US Politics,us_politics,false -justinling,mastodon.online,Breaking News,breaking_news,true -johannesalbrecth,bolha.us,Journalism & Comment,news_comment_data,false -johannesalbrecth,bolha.us,Performing Arts,performing_arts,false -johannesalbrecth,bolha.us,Philosophy,philosophy,false -johannesalbrecth,bolha.us,Photography,photography,false -johannesalbrecth,bolha.us,Physics,physics,false -johannesalbrecth,bolha.us,Programming,programming,false -johannesalbrecth,bolha.us,Puzzles,puzzles,false -johannesalbrecth,bolha.us,Science,science,false -johannesalbrecth,bolha.us,Social Media,social_media,false -johannesalbrecth,bolha.us,Social Sciences,social_sciences,false -johannesalbrecth,bolha.us,Space,space,false -johannesalbrecth,bolha.us,Technology,technology,false -johannesalbrecth,bolha.us,TV & Radio,tv_radio,false -johannesalbrecth,bolha.us,Ukraine Invasion,ukraine_invasion,false -johannesalbrecth,bolha.us,Visual Arts,visual_arts,false -johannesalbrecth,bolha.us,Weather,weather,false -johannesalbrecth,bolha.us,LGBTQ+,lgbtq,true -guidostevens,kolektiva.social,Biodiversity & Rewilding,biodiversity_rewilding,false -guidostevens,kolektiva.social,Business,business,false -guidostevens,kolektiva.social,Energy & Pollution,energy_pollution,false -guidostevens,kolektiva.social,Engineering,engineering,false -guidostevens,kolektiva.social,Environment,environment,false -guidostevens,kolektiva.social,History,history,false -guidostevens,kolektiva.social,Humanities,humanities,false -guidostevens,kolektiva.social,Philosophy,philosophy,false -guidostevens,kolektiva.social,Programming,programming,false -guidostevens,kolektiva.social,Social Sciences,social_sciences,false -guidostevens,kolektiva.social,Technology,technology,false -guidostevens,kolektiva.social,Climate change,climate_change,true -livelylion6,mastodon.social,Breaking News,breaking_news,true -zack,hachyderm.io,Democracy & Human Rights,democracy_human_rights,false -zack,hachyderm.io,"Hunger, Disease & Water",hunger_disease_water,false -zack,hachyderm.io,Journalism & Comment,news_comment_data,false -zack,hachyderm.io,Poverty & Inequality,poverty_inequality,false -zack,hachyderm.io,Breaking News,breaking_news,true -DadeMurphy,chaotic.fun,Breaking News,breaking_news,true -RevChrismok,dobbs.town,Academia & Research,academia_research,false -RevChrismok,dobbs.town,Activism & Civil Rights,activism_civil_rights,false -RevChrismok,dobbs.town,AI,ai,false -RevChrismok,dobbs.town,Architecture & Design,architecture_design,false -yatzy,mastodon.social,Academia & Research,academia_research,false -yatzy,mastodon.social,AI,ai,false -yatzy,mastodon.social,Architecture & Design,architecture_design,false -yatzy,mastodon.social,Books & Literature,books_literature,false -yatzy,mastodon.social,Breaking News,breaking_news,false -yatzy,mastodon.social,Business,business,false -yatzy,mastodon.social,Creative Arts,creative_arts,false -yatzy,mastodon.social,Energy & Pollution,energy_pollution,false -yatzy,mastodon.social,Environment,environment,false -yatzy,mastodon.social,Food & Drink,food_drink,false -yatzy,mastodon.social,Football,football,false -yatzy,mastodon.social,Gaming,gaming,false -yatzy,mastodon.social,Engineering,engineering,true -RevChrismok,dobbs.town,Biodiversity & Rewilding,biodiversity_rewilding,false -RevChrismok,dobbs.town,Biology,biology,false -RevChrismok,dobbs.town,Black Voices,black_voices,false -RevChrismok,dobbs.town,Books & Literature,books_literature,false -RevChrismok,dobbs.town,Business,business,false -RevChrismok,dobbs.town,Chemistry,chemistry,false -RevChrismok,dobbs.town,Climate change,climate_change,false -RevChrismok,dobbs.town,Democracy & Human Rights,democracy_human_rights,false -RevChrismok,dobbs.town,Energy & Pollution,energy_pollution,false -RevChrismok,dobbs.town,Engineering,engineering,false -RevChrismok,dobbs.town,Environment,environment,false -RevChrismok,dobbs.town,Gaming,gaming,false -RevChrismok,dobbs.town,Government & Policy,government_policy,false -RevChrismok,dobbs.town,Healthcare,healthcare,false -RevChrismok,dobbs.town,History,history,false -RevChrismok,dobbs.town,Humanities,humanities,false -RevChrismok,dobbs.town,"Hunger, Disease & Water",hunger_disease_water,false -RevChrismok,dobbs.town,Immigrants Rights,immigrants_rights,false -RevChrismok,dobbs.town,Indigenous Peoples,indigenous_peoples,false -RevChrismok,dobbs.town,Law & Justice,law_justice,false -RevChrismok,dobbs.town,LGBTQ+,lgbtq,false -RevChrismok,dobbs.town,Markets & Finance,markets_finance,false -RevChrismok,dobbs.town,Mathematics,mathematics,false -RevChrismok,dobbs.town,Movies,movies,false -RevChrismok,dobbs.town,Music,music,false -RevChrismok,dobbs.town,Journalism & Comment,news_comment_data,false -RevChrismok,dobbs.town,Performing Arts,performing_arts,false -RevChrismok,dobbs.town,Philosophy,philosophy,false -RevChrismok,dobbs.town,Photography,photography,false -RevChrismok,dobbs.town,Physics,physics,false -RevChrismok,dobbs.town,Politics,politics,false -RevChrismok,dobbs.town,Poverty & Inequality,poverty_inequality,false -RevChrismok,dobbs.town,Programming,programming,false -RevChrismok,dobbs.town,Science,science,false -RevChrismok,dobbs.town,Social Sciences,social_sciences,false -RevChrismok,dobbs.town,Technology,technology,false -RevChrismok,dobbs.town,TV & Radio,tv_radio,false -RevChrismok,dobbs.town,Ukraine Invasion,ukraine_invasion,false -RevChrismok,dobbs.town,US Politics,us_politics,false -RevChrismok,dobbs.town,Visual Arts,visual_arts,false -RevChrismok,dobbs.town,Weather,weather,false -RevChrismok,dobbs.town,Women’s Voices,women_voices,false -RevChrismok,dobbs.town,Workers Rights,workers_rights,false -RevChrismok,dobbs.town,Breaking News,breaking_news,true -follow,twitter.social,US Sport,us_sport,false -follow,twitter.social,Visual Arts,visual_arts,false -follow,twitter.social,Weather,weather,false -follow,twitter.social,Women’s Voices,women_voices,false -follow,twitter.social,Workers Rights,workers_rights,false -follow,twitter.social,Social Media,social_media,true -cmayes,notacult.social,Business,business,false -cmayes,notacult.social,Chemistry,chemistry,false -cmayes,notacult.social,Engineering,engineering,false -cmayes,notacult.social,Environment,environment,false -cmayes,notacult.social,History,history,false -cmayes,notacult.social,Humanities,humanities,false -cmayes,notacult.social,Programming,programming,false -cmayes,notacult.social,Science,science,false -cmayes,notacult.social,Social Sciences,social_sciences,false -cmayes,notacult.social,Space,space,false -cmayes,notacult.social,Technology,technology,false -cmayes,notacult.social,Workers Rights,workers_rights,false -cmayes,notacult.social,Breaking News,breaking_news,true -ivan,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false -ivan,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -ivan,newsmast.social,History,history,false -ivan,newsmast.social,Social Sciences,social_sciences,false -ivan,newsmast.social,Breaking News,breaking_news,true -rzylber,mastodon.social,Climate change,climate_change,false -rzylber,mastodon.social,Philosophy,philosophy,false -rzylber,mastodon.social,Science,science,false -rzylber,mastodon.social,Social Sciences,social_sciences,false -rzylber,mastodon.social,Programming,programming,true -arunshah,social.vivaldi.net,Breaking News,breaking_news,false -arunshah,social.vivaldi.net,Democracy & Human Rights,democracy_human_rights,false -arunshah,social.vivaldi.net,Engineering,engineering,false -arunshah,social.vivaldi.net,"Hunger, Disease & Water",hunger_disease_water,false -arunshah,social.vivaldi.net,Journalism & Comment,news_comment_data,false -arunshah,social.vivaldi.net,Poverty & Inequality,poverty_inequality,false -arunshah,social.vivaldi.net,Programming,programming,false -arunshah,social.vivaldi.net,Social Media,social_media,false -arunshah,social.vivaldi.net,Technology,technology,false -arunshah,social.vivaldi.net,Ukraine Invasion,ukraine_invasion,false -arunshah,social.vivaldi.net,Weather,weather,false -arunshah,social.vivaldi.net,AI,ai,true -lety,doesstuff.social,Democracy & Human Rights,democracy_human_rights,false -lety,doesstuff.social,Disabled Voices,disabled_voices,false -lety,doesstuff.social,Energy & Pollution,energy_pollution,false -lety,doesstuff.social,Engineering,engineering,false -lety,doesstuff.social,Environment,environment,false -lety,doesstuff.social,Food & Drink,food_drink,false -lety,doesstuff.social,Football,football,false -lety,doesstuff.social,Gaming,gaming,false -lety,doesstuff.social,Government & Policy,government_policy,false -lety,doesstuff.social,Healthcare,healthcare,false -lety,doesstuff.social,History,history,false -mariosiniscalchi,mastodon.uno,Ukraine Invasion,ukraine_invasion,true -cult247,mastodon.social,Breaking News,breaking_news,false -cult247,mastodon.social,Environment,environment,false -cult247,mastodon.social,Photography,photography,false -cult247,mastodon.social,Weather,weather,false -cult247,mastodon.social,Movies,movies,true -lety,doesstuff.social,Humanities,humanities,false -lety,doesstuff.social,Humour,humour,false -lety,doesstuff.social,"Hunger, Disease & Water",hunger_disease_water,false -lety,doesstuff.social,Immigrants Rights,immigrants_rights,false -lety,doesstuff.social,Indigenous Peoples,indigenous_peoples,false -lety,doesstuff.social,Law & Justice,law_justice,false -lety,doesstuff.social,LGBTQ+,lgbtq,false -lety,doesstuff.social,Markets & Finance,markets_finance,false -lety,doesstuff.social,Mathematics,mathematics,false -lety,doesstuff.social,Mental Health & Wellbeing,mental_health_wellbeing,false -lety,doesstuff.social,Movies,movies,false -lety,doesstuff.social,Music,music,false -danielbowmaniel,mastodon.sdf.org,Breaking News,breaking_news,false -danielbowmaniel,mastodon.sdf.org,Architecture & Design,architecture_design,false -danielbowmaniel,mastodon.sdf.org,Books & Literature,books_literature,false -danielbowmaniel,mastodon.sdf.org,Climate change,climate_change,false -danielbowmaniel,mastodon.sdf.org,Engineering,engineering,false -danielbowmaniel,mastodon.sdf.org,Gaming,gaming,false -danielbowmaniel,mastodon.sdf.org,Government & Policy,government_policy,false -danielbowmaniel,mastodon.sdf.org,Law & Justice,law_justice,false -danielbowmaniel,mastodon.sdf.org,Journalism & Comment,news_comment_data,false -danielbowmaniel,mastodon.sdf.org,Performing Arts,performing_arts,false -danielbowmaniel,mastodon.sdf.org,Photography,photography,false -paradym3,newsmast.social,Ukraine Invasion,ukraine_invasion,false -paradym3,newsmast.social,US Politics,us_politics,false -paradym3,newsmast.social,Weather,weather,false -paradym3,newsmast.social,Workers Rights,workers_rights,false -paradym3,newsmast.social,Academia & Research,academia_research,false -paradym3,newsmast.social,AI,ai,false -paradym3,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false -paradym3,newsmast.social,Biology,biology,false -paradym3,newsmast.social,Business,business,false -paradym3,newsmast.social,Chemistry,chemistry,false -paradym3,newsmast.social,Climate change,climate_change,false -paradym3,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -paradym3,newsmast.social,Energy & Pollution,energy_pollution,false -paradym3,newsmast.social,Engineering,engineering,false -paradym3,newsmast.social,Environment,environment,false -paradym3,newsmast.social,Food & Drink,food_drink,false -paradym3,newsmast.social,Gaming,gaming,false -paradym3,newsmast.social,Government & Policy,government_policy,false -paradym3,newsmast.social,Healthcare,healthcare,false -paradym3,newsmast.social,History,history,false -paradym3,newsmast.social,Humanities,humanities,false -paradym3,newsmast.social,Humour,humour,false -paradym3,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false -paradym3,newsmast.social,Law & Justice,law_justice,false -paradym3,newsmast.social,Markets & Finance,markets_finance,false -paradym3,newsmast.social,Mathematics,mathematics,false -paradym3,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false -paradym3,newsmast.social,Movies,movies,false -paradym3,newsmast.social,Music,music,false -paradym3,newsmast.social,Nature & Wildlife,nature_wildlife,false -paradym3,newsmast.social,Journalism & Comment,news_comment_data,false -paradym3,newsmast.social,Pets,pets,false -paradym3,newsmast.social,Philosophy,philosophy,false -paradym3,newsmast.social,Physics,physics,false -paradym3,newsmast.social,Politics,politics,false -paradym3,newsmast.social,Poverty & Inequality,poverty_inequality,false -paradym3,newsmast.social,Programming,programming,false -paradym3,newsmast.social,Puzzles,puzzles,false -paradym3,newsmast.social,Science,science,false -paradym3,newsmast.social,Social Media,social_media,false -paradym3,newsmast.social,Social Sciences,social_sciences,false -paradym3,newsmast.social,Space,space,false -paradym3,newsmast.social,Technology,technology,false -paradym3,newsmast.social,Travel,travel,false -paradym3,newsmast.social,TV & Radio,tv_radio,false -paradym3,newsmast.social,Ukraine Invasion,ukraine_invasion,false -paradym3,newsmast.social,US Politics,us_politics,false -paradym3,newsmast.social,Weather,weather,false -paradym3,newsmast.social,Workers Rights,workers_rights,false -paradym3,newsmast.social,Breaking News,breaking_news,true -danielbowmaniel,mastodon.sdf.org,Politics,politics,false -danielbowmaniel,mastodon.sdf.org,Science,science,false -danielbowmaniel,mastodon.sdf.org,Technology,technology,false -danielbowmaniel,mastodon.sdf.org,US Politics,us_politics,false -danielbowmaniel,mastodon.sdf.org,US Sport,us_sport,false -danielbowmaniel,mastodon.sdf.org,Visual Arts,visual_arts,false -danielbowmaniel,mastodon.sdf.org,Weather,weather,false -moko,mstdn.ca,AI,ai,false -moko,mstdn.ca,Climate change,climate_change,false -moko,mstdn.ca,Environment,environment,false -moko,mstdn.ca,Science,science,false -moko,mstdn.ca,Space,space,false -moko,mstdn.ca,Technology,technology,false -moko,mstdn.ca,Breaking News,breaking_news,true -danielbowmaniel,mastodon.sdf.org,Environment,environment,true -Sven,newsmast.social,AI,ai,false -Sven,newsmast.social,Biology,biology,false -Sven,newsmast.social,Business,business,false -Sven,newsmast.social,Healthcare,healthcare,false -Sven,newsmast.social,Mathematics,mathematics,false -Sven,newsmast.social,Physics,physics,false -Sven,newsmast.social,Programming,programming,false -Sven,newsmast.social,Space,space,false -Sven,newsmast.social,Technology,technology,false -Sven,newsmast.social,US Politics,us_politics,false -Sven,newsmast.social,Breaking News,breaking_news,true -tex,mas.to,Academia & Research,academia_research,false -lety,doesstuff.social,Journalism & Comment,news_comment_data,false -lety,doesstuff.social,Performing Arts,performing_arts,false -lety,doesstuff.social,Pets,pets,false -lety,doesstuff.social,Philosophy,philosophy,false -lety,doesstuff.social,Photography,photography,false -lety,doesstuff.social,Physics,physics,false -lety,doesstuff.social,Politics,politics,false -lety,doesstuff.social,Poverty & Inequality,poverty_inequality,false -lety,doesstuff.social,Programming,programming,false -lety,doesstuff.social,Puzzles,puzzles,false -lety,doesstuff.social,Science,science,false -lety,doesstuff.social,Social Media,social_media,false -tobias,social.diekershoff.de,AI,ai,false -tobias,social.diekershoff.de,Architecture & Design,architecture_design,false -tobias,social.diekershoff.de,Biodiversity & Rewilding,biodiversity_rewilding,false -tobias,social.diekershoff.de,Biology,biology,false -tobias,social.diekershoff.de,Books & Literature,books_literature,false -tobias,social.diekershoff.de,Breaking News,breaking_news,false -tobias,social.diekershoff.de,Chemistry,chemistry,false -tobias,social.diekershoff.de,Climate change,climate_change,false -tobias,social.diekershoff.de,Energy & Pollution,energy_pollution,false -tobias,social.diekershoff.de,Engineering,engineering,false -tobias,social.diekershoff.de,Environment,environment,false -tobias,social.diekershoff.de,Gaming,gaming,false -tobias,social.diekershoff.de,Mathematics,mathematics,false -tobias,social.diekershoff.de,Movies,movies,false -tobias,social.diekershoff.de,Music,music,false -tobias,social.diekershoff.de,Journalism & Comment,news_comment_data,false -tobias,social.diekershoff.de,Performing Arts,performing_arts,false -tobias,social.diekershoff.de,Photography,photography,false -tobias,social.diekershoff.de,Programming,programming,false -tobias,social.diekershoff.de,Science,science,false -tobias,social.diekershoff.de,Social Media,social_media,false -tobias,social.diekershoff.de,Space,space,false -tobias,social.diekershoff.de,Technology,technology,false -tobias,social.diekershoff.de,TV & Radio,tv_radio,false -tobias,social.diekershoff.de,Ukraine Invasion,ukraine_invasion,false -tobias,social.diekershoff.de,Visual Arts,visual_arts,false -tobias,social.diekershoff.de,Weather,weather,false -tobias,social.diekershoff.de,Physics,physics,true -orimori,mastodon.social,Biodiversity & Rewilding,biodiversity_rewilding,false -orimori,mastodon.social,Biology,biology,false -orimori,mastodon.social,Chemistry,chemistry,false -orimori,mastodon.social,Climate change,climate_change,false -orimori,mastodon.social,Energy & Pollution,energy_pollution,false -orimori,mastodon.social,Mathematics,mathematics,false -orimori,mastodon.social,Physics,physics,false -orimori,mastodon.social,Science,science,false -orimori,mastodon.social,Space,space,false -orimori,mastodon.social,Environment,environment,true -orianavmatos,newsmast.social,Movies,movies,false -thelightoflife,universeodon.com,Business,business,false -thelightoflife,universeodon.com,Markets & Finance,markets_finance,false -thelightoflife,universeodon.com,Mathematics,mathematics,false -thelightoflife,universeodon.com,Physics,physics,false -thelightoflife,universeodon.com,Social Sciences,social_sciences,false -thelightoflife,universeodon.com,Workers Rights,workers_rights,false -thelightoflife,universeodon.com,Biology,biology,true -Ethgar,Berlin.social,Biodiversity & Rewilding,biodiversity_rewilding,false -Ethgar,Berlin.social,Climate change,climate_change,false -Ethgar,Berlin.social,Democracy & Human Rights,democracy_human_rights,false -Ethgar,Berlin.social,Energy & Pollution,energy_pollution,false -Ethgar,Berlin.social,Engineering,engineering,false -Ethgar,Berlin.social,Mathematics,mathematics,false -Ethgar,Berlin.social,Politics,politics,false -Ethgar,Berlin.social,Science,science,false -Ethgar,Berlin.social,Space,space,false -Ethgar,Berlin.social,Technology,technology,false -Ethgar,Berlin.social,Programming,programming,true -dai,mastodon.social,AI,ai,false -dai,mastodon.social,Engineering,engineering,false -dai,mastodon.social,Programming,programming,false -dai,mastodon.social,Social Sciences,social_sciences,false -dai,mastodon.social,Technology,technology,true -nigelp,newsmast.social,AI,ai,false -nigelp,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false -nigelp,newsmast.social,Biology,biology,false -nigelp,newsmast.social,Breaking News,breaking_news,false -nigelp,newsmast.social,Chemistry,chemistry,false -nigelp,newsmast.social,Climate change,climate_change,false -nigelp,newsmast.social,Energy & Pollution,energy_pollution,false -nigelp,newsmast.social,Engineering,engineering,false -nigelp,newsmast.social,Environment,environment,false -nigelp,newsmast.social,Food & Drink,food_drink,false -mariana_16,mastodon.social,Academia & Research,academia_research,false -mariana_16,mastodon.social,Activism & Civil Rights,activism_civil_rights,false -mariana_16,mastodon.social,Black Voices,black_voices,false -mariana_16,mastodon.social,Democracy & Human Rights,democracy_human_rights,false -mariana_16,mastodon.social,Disabled Voices,disabled_voices,false -mariana_16,mastodon.social,Government & Policy,government_policy,false -mariana_16,mastodon.social,Healthcare,healthcare,false -mariana_16,mastodon.social,"Hunger, Disease & Water",hunger_disease_water,false -mariana_16,mastodon.social,Immigrants Rights,immigrants_rights,false -nigelp,newsmast.social,Gaming,gaming,false -nigelp,newsmast.social,Humour,humour,false -nigelp,newsmast.social,Movies,movies,false -nigelp,newsmast.social,Music,music,false -nigelp,newsmast.social,Nature & Wildlife,nature_wildlife,false -nigelp,newsmast.social,Journalism & Comment,news_comment_data,false -nigelp,newsmast.social,Photography,photography,false -nigelp,newsmast.social,Physics,physics,false -nigelp,newsmast.social,Programming,programming,false -nigelp,newsmast.social,Science,science,false -nigelp,newsmast.social,Social Media,social_media,false -nigelp,newsmast.social,Ukraine Invasion,ukraine_invasion,false -nigelp,newsmast.social,Weather,weather,false -nigelp,newsmast.social,Technology,technology,true -lety,doesstuff.social,Social Sciences,social_sciences,false -lety,doesstuff.social,Space,space,false -lety,doesstuff.social,Sport,sport,false -lety,doesstuff.social,Technology,technology,false -lety,doesstuff.social,Travel,travel,false -lety,doesstuff.social,TV & Radio,tv_radio,false -lety,doesstuff.social,Ukraine Invasion,ukraine_invasion,false -lety,doesstuff.social,US Politics,us_politics,false -lety,doesstuff.social,US Sport,us_sport,false -lety,doesstuff.social,Visual Arts,visual_arts,false -lety,doesstuff.social,Weather,weather,false -lety,doesstuff.social,Women’s Voices,women_voices,false -lety,doesstuff.social,Workers Rights,workers_rights,false -lety,doesstuff.social,Nature & Wildlife,nature_wildlife,true -tex,mas.to,Activism & Civil Rights,activism_civil_rights,false -ekaasha,newsmast.social,AI,ai,false -ekaasha,newsmast.social,Business,business,false -ekaasha,newsmast.social,Creative Arts,creative_arts,false -ekaasha,newsmast.social,Engineering,engineering,false -ekaasha,newsmast.social,Food & Drink,food_drink,false -ekaasha,newsmast.social,Humour,humour,false -ekaasha,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false -ekaasha,newsmast.social,Nature & Wildlife,nature_wildlife,false -ekaasha,newsmast.social,Pets,pets,false -ekaasha,newsmast.social,Programming,programming,false -ekaasha,newsmast.social,Puzzles,puzzles,false -ekaasha,newsmast.social,Technology,technology,false -ekaasha,newsmast.social,Travel,travel,false -ekaasha,newsmast.social,Workers Rights,workers_rights,false -ekaasha,newsmast.social,Markets & Finance,markets_finance,true -mjgardner,social.sdf.org,Books & Literature,books_literature,false -tex,mas.to,AI,ai,false -tex,mas.to,Biodiversity & Rewilding,biodiversity_rewilding,false -tex,mas.to,Biology,biology,false -tex,mas.to,Chemistry,chemistry,false -tex,mas.to,Climate change,climate_change,false -tex,mas.to,Democracy & Human Rights,democracy_human_rights,false -tex,mas.to,Energy & Pollution,energy_pollution,false -tex,mas.to,Engineering,engineering,false -tex,mas.to,Environment,environment,false -Twitter,twitter.social,Social Media,social_media,false -HelOWeen,digitalcourage.social,Breaking News,breaking_news,false -HelOWeen,digitalcourage.social,Climate change,climate_change,false -HelOWeen,digitalcourage.social,Journalism & Comment,news_comment_data,false -HelOWeen,digitalcourage.social,Programming,programming,false -HelOWeen,digitalcourage.social,Space,space,false -HelOWeen,digitalcourage.social,Technology,technology,false -HelOWeen,digitalcourage.social,Ukraine Invasion,ukraine_invasion,true -yatzy,mastodon.social,History,history,false -yatzy,mastodon.social,Humanities,humanities,false -yatzy,mastodon.social,Humour,humour,false -yatzy,mastodon.social,Markets & Finance,markets_finance,false -yatzy,mastodon.social,Mathematics,mathematics,false -yatzy,mastodon.social,Mental Health & Wellbeing,mental_health_wellbeing,false -yatzy,mastodon.social,Nature & Wildlife,nature_wildlife,false -yatzy,mastodon.social,Journalism & Comment,news_comment_data,false -yatzy,mastodon.social,Performing Arts,performing_arts,false -yatzy,mastodon.social,Pets,pets,false -yatzy,mastodon.social,Philosophy,philosophy,false -yatzy,mastodon.social,Photography,photography,false -yatzy,mastodon.social,Politics,politics,false -yatzy,mastodon.social,Programming,programming,false -yatzy,mastodon.social,Puzzles,puzzles,false -yatzy,mastodon.social,Science,science,false -yatzy,mastodon.social,Social Media,social_media,false -yatzy,mastodon.social,Social Sciences,social_sciences,false -yatzy,mastodon.social,Sport,sport,false -yatzy,mastodon.social,Technology,technology,false -yatzy,mastodon.social,Travel,travel,false -yatzy,mastodon.social,Visual Arts,visual_arts,false -chetwilliams,fosstodon.org,Books & Literature,books_literature,false -chetwilliams,fosstodon.org,Engineering,engineering,false -chetwilliams,fosstodon.org,Food & Drink,food_drink,false -chetwilliams,fosstodon.org,Gaming,gaming,false -chetwilliams,fosstodon.org,Mental Health & Wellbeing,mental_health_wellbeing,false -chetwilliams,fosstodon.org,Movies,movies,false -chetwilliams,fosstodon.org,Music,music,false -chetwilliams,fosstodon.org,Nature & Wildlife,nature_wildlife,false -chetwilliams,fosstodon.org,Photography,photography,false -chetwilliams,fosstodon.org,Programming,programming,false -chetwilliams,fosstodon.org,Travel,travel,false -chetwilliams,fosstodon.org,TV & Radio,tv_radio,false -chetwilliams,fosstodon.org,Visual Arts,visual_arts,false -chetwilliams,fosstodon.org,Technology,technology,true -mkilby,hachyderm.io,Academia & Research,academia_research,false -mkilby,hachyderm.io,Architecture & Design,architecture_design,false -mkilby,hachyderm.io,Black Voices,black_voices,false -mkilby,hachyderm.io,Books & Literature,books_literature,false -mkilby,hachyderm.io,Breaking News,breaking_news,false -mariana_16,mastodon.social,Indigenous Peoples,indigenous_peoples,false -mariana_16,mastodon.social,Law & Justice,law_justice,false -mariana_16,mastodon.social,Politics,politics,false -mariana_16,mastodon.social,Poverty & Inequality,poverty_inequality,false -mariana_16,mastodon.social,US Politics,us_politics,false -mariana_16,mastodon.social,Women’s Voices,women_voices,false -mariana_16,mastodon.social,LGBTQ+,lgbtq,true -mjgardner,social.sdf.org,Creative Arts,creative_arts,false -tom,tomkahe.com,Breaking News,breaking_news,false -tom,tomkahe.com,Politics,politics,false -tom,tomkahe.com,Social Media,social_media,false -tom,tomkahe.com,US Politics,us_politics,false -tom,tomkahe.com,US Sport,us_sport,true -tex,mas.to,Government & Policy,government_policy,false -mistercharlie,indieweb.social,Environment,environment,false -LuizIQ,mastodon.social,Breaking News,breaking_news,false -LuizIQ,mastodon.social,Creative Arts,creative_arts,false -LuizIQ,mastodon.social,Food & Drink,food_drink,false -LuizIQ,mastodon.social,Humour,humour,false -LuizIQ,mastodon.social,Mental Health & Wellbeing,mental_health_wellbeing,false -LuizIQ,mastodon.social,Nature & Wildlife,nature_wildlife,false -LuizIQ,mastodon.social,Journalism & Comment,news_comment_data,false -LuizIQ,mastodon.social,Pets,pets,false -LuizIQ,mastodon.social,Puzzles,puzzles,false -LuizIQ,mastodon.social,Social Media,social_media,false -LuizIQ,mastodon.social,Ukraine Invasion,ukraine_invasion,false -LuizIQ,mastodon.social,Weather,weather,false -LuizIQ,mastodon.social,Travel,travel,true -mistercharlie,indieweb.social,Mathematics,mathematics,false -mistercharlie,indieweb.social,Movies,movies,false -mistercharlie,indieweb.social,Journalism & Comment,news_comment_data,false -mistercharlie,indieweb.social,Performing Arts,performing_arts,false -Claire_XIV,ffxiv-mastodon.com,Books & Literature,books_literature,false -Claire_XIV,ffxiv-mastodon.com,Movies,movies,false -Claire_XIV,ffxiv-mastodon.com,Music,music,false -curlicious,iosdev.space,Academia & Research,academia_research,false -curlicious,iosdev.space,AI,ai,false -curlicious,iosdev.space,Biodiversity & Rewilding,biodiversity_rewilding,false -curlicious,iosdev.space,Business,business,false -curlicious,iosdev.space,Engineering,engineering,false -curlicious,iosdev.space,Environment,environment,false -curlicious,iosdev.space,Government & Policy,government_policy,false -curlicious,iosdev.space,Law & Justice,law_justice,false -curlicious,iosdev.space,Politics,politics,false -curlicious,iosdev.space,US Politics,us_politics,false -curlicious,iosdev.space,Programming,programming,true -thm,newsmast.social,AI,ai,false -thm,newsmast.social,Business,business,false -thm,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -thm,newsmast.social,Engineering,engineering,false -thm,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false -thm,newsmast.social,Markets & Finance,markets_finance,false -thm,newsmast.social,Journalism & Comment,news_comment_data,false -thm,newsmast.social,Poverty & Inequality,poverty_inequality,false -thm,newsmast.social,Programming,programming,false -thm,newsmast.social,Social Media,social_media,false -thm,newsmast.social,Technology,technology,false -thm,newsmast.social,Ukraine Invasion,ukraine_invasion,false -thm,newsmast.social,Weather,weather,false -thm,newsmast.social,Workers Rights,workers_rights,false -thm,newsmast.social,Breaking News,breaking_news,true -therfff,newsmast.social,Biology,biology,false -therfff,newsmast.social,Business,business,false -therfff,newsmast.social,Chemistry,chemistry,false -therfff,newsmast.social,Engineering,engineering,false -therfff,newsmast.social,Markets & Finance,markets_finance,false -therfff,newsmast.social,Mathematics,mathematics,false -therfff,newsmast.social,Physics,physics,false -therfff,newsmast.social,Programming,programming,false -therfff,newsmast.social,Science,science,false -therfff,newsmast.social,Space,space,false -therfff,newsmast.social,Technology,technology,false -therfff,newsmast.social,Workers Rights,workers_rights,false -therfff,newsmast.social,AI,ai,true -kristian,falk.cafe,Creative Arts,creative_arts,false -kristian,falk.cafe,Humour,humour,false -kristian,falk.cafe,Mental Health & Wellbeing,mental_health_wellbeing,false -kristian,falk.cafe,Nature & Wildlife,nature_wildlife,false -kristian,falk.cafe,Puzzles,puzzles,false -kristian,falk.cafe,AI,ai,true -hallenbeck,mastodon.social,AI,ai,false -hallenbeck,mastodon.social,Biodiversity & Rewilding,biodiversity_rewilding,false -hallenbeck,mastodon.social,Biology,biology,false -hallenbeck,mastodon.social,Books & Literature,books_literature,false -hallenbeck,mastodon.social,Breaking News,breaking_news,false -hallenbeck,mastodon.social,Business,business,false -hallenbeck,mastodon.social,Environment,environment,false -hallenbeck,mastodon.social,History,history,false -hallenbeck,mastodon.social,Journalism & Comment,news_comment_data,false -hallenbeck,mastodon.social,Philosophy,philosophy,false -hallenbeck,mastodon.social,Programming,programming,false -hallenbeck,mastodon.social,Social Media,social_media,false -hallenbeck,mastodon.social,Technology,technology,false -hallenbeck,mastodon.social,Ukraine Invasion,ukraine_invasion,false -hallenbeck,mastodon.social,Visual Arts,visual_arts,false -hallenbeck,mastodon.social,Football,football,true -nicolas_horvath,mastodon.social,AI,ai,false -nicolas_horvath,mastodon.social,Breaking News,breaking_news,false -nicolas_horvath,mastodon.social,Engineering,engineering,false -nicolas_horvath,mastodon.social,Journalism & Comment,news_comment_data,false -nicolas_horvath,mastodon.social,Programming,programming,false -nicolas_horvath,mastodon.social,Technology,technology,true -mjgardner,social.sdf.org,Weather,weather,false -BrightHalo,mastodon.social,Academia & Research,academia_research,false -BrightHalo,mastodon.social,Biology,biology,false -BrightHalo,mastodon.social,Breaking News,breaking_news,false -BrightHalo,mastodon.social,Chemistry,chemistry,false -BrightHalo,mastodon.social,Government & Policy,government_policy,false -BrightHalo,mastodon.social,Healthcare,healthcare,false -BrightHalo,mastodon.social,Law & Justice,law_justice,false -BrightHalo,mastodon.social,Mathematics,mathematics,false -BrightHalo,mastodon.social,Physics,physics,false -BrightHalo,mastodon.social,Politics,politics,false -BrightHalo,mastodon.social,Programming,programming,false -BrightHalo,mastodon.social,Science,science,false -BrightHalo,mastodon.social,Space,space,false -BrightHalo,mastodon.social,Technology,technology,false -BrightHalo,mastodon.social,Ukraine Invasion,ukraine_invasion,false -BrightHalo,mastodon.social,US Politics,us_politics,false -BrightHalo,mastodon.social,Workers Rights,workers_rights,false -BrightHalo,mastodon.social,AI,ai,true -tex,mas.to,Healthcare,healthcare,false -samuel,social.spejset.org,Biodiversity & Rewilding,biodiversity_rewilding,false -samuel,social.spejset.org,Politics,politics,false -samuel,social.spejset.org,Programming,programming,false -samuel,social.spejset.org,Science,science,false -samuel,social.spejset.org,Technology,technology,false -samuel,social.spejset.org,Climate change,climate_change,true -tex,mas.to,History,history,false -mkilby,hachyderm.io,Business,business,false -mkilby,hachyderm.io,Climate change,climate_change,false -mkilby,hachyderm.io,Democracy & Human Rights,democracy_human_rights,false -mkilby,hachyderm.io,Disabled Voices,disabled_voices,false -mkilby,hachyderm.io,Engineering,engineering,false -mkilby,hachyderm.io,Gaming,gaming,false -mkilby,hachyderm.io,Government & Policy,government_policy,false -mkilby,hachyderm.io,Healthcare,healthcare,false -mkilby,hachyderm.io,History,history,false -mkilby,hachyderm.io,Humanities,humanities,false -mkilby,hachyderm.io,Humour,humour,false -mkilby,hachyderm.io,"Hunger, Disease & Water",hunger_disease_water,false -mkilby,hachyderm.io,Immigrants Rights,immigrants_rights,false -mkilby,hachyderm.io,Indigenous Peoples,indigenous_peoples,false -mkilby,hachyderm.io,Law & Justice,law_justice,false -mkilby,hachyderm.io,LGBTQ+,lgbtq,false -mkilby,hachyderm.io,Markets & Finance,markets_finance,false -mkilby,hachyderm.io,Mathematics,mathematics,false -mkilby,hachyderm.io,Mental Health & Wellbeing,mental_health_wellbeing,false -mkilby,hachyderm.io,Movies,movies,false -mkilby,hachyderm.io,Nature & Wildlife,nature_wildlife,false -mkilby,hachyderm.io,Journalism & Comment,news_comment_data,false -mkilby,hachyderm.io,Performing Arts,performing_arts,false -mkilby,hachyderm.io,Pets,pets,false -mkilby,hachyderm.io,Philosophy,philosophy,false -mkilby,hachyderm.io,Physics,physics,false -mkilby,hachyderm.io,Politics,politics,false -mkilby,hachyderm.io,Poverty & Inequality,poverty_inequality,false -mkilby,hachyderm.io,Programming,programming,false -mkilby,hachyderm.io,Science,science,false -mkilby,hachyderm.io,Social Media,social_media,false -mkilby,hachyderm.io,Social Sciences,social_sciences,false -mkilby,hachyderm.io,Space,space,false -mkilby,hachyderm.io,Technology,technology,false -mkilby,hachyderm.io,Travel,travel,false -mkilby,hachyderm.io,TV & Radio,tv_radio,false -mkilby,hachyderm.io,Ukraine Invasion,ukraine_invasion,false -mkilby,hachyderm.io,US Politics,us_politics,false -mkilby,hachyderm.io,US Sport,us_sport,false -mkilby,hachyderm.io,Visual Arts,visual_arts,false -mkilby,hachyderm.io,Women’s Voices,women_voices,false -mkilby,hachyderm.io,Workers Rights,workers_rights,false -mkilby,hachyderm.io,AI,ai,true -zzymurgy,aus.social,Government & Policy,government_policy,false -zzymurgy,aus.social,Movies,movies,false -zzymurgy,aus.social,Music,music,false -zzymurgy,aus.social,Politics,politics,false -zzymurgy,aus.social,Philosophy,philosophy,true -cclaude,mastouille.fr,AI,ai,false -cclaude,mastouille.fr,Biodiversity & Rewilding,biodiversity_rewilding,false -cclaude,mastouille.fr,Biology,biology,false -cclaude,mastouille.fr,Breaking News,breaking_news,false -cclaude,mastouille.fr,Disabled Voices,disabled_voices,false -cclaude,mastouille.fr,Energy & Pollution,energy_pollution,false -cclaude,mastouille.fr,Healthcare,healthcare,false -cclaude,mastouille.fr,Humour,humour,false -cclaude,mastouille.fr,Mental Health & Wellbeing,mental_health_wellbeing,false -cclaude,mastouille.fr,Nature & Wildlife,nature_wildlife,false -cclaude,mastouille.fr,Physics,physics,false -cclaude,mastouille.fr,Poverty & Inequality,poverty_inequality,false -cclaude,mastouille.fr,Social Sciences,social_sciences,false -cclaude,mastouille.fr,Technology,technology,false -cclaude,mastouille.fr,Visual Arts,visual_arts,false -cclaude,mastouille.fr,Music,music,true -smux,u.fail,AI,ai,false -smux,u.fail,Biology,biology,false -smux,u.fail,Chemistry,chemistry,false -smux,u.fail,Engineering,engineering,false -smux,u.fail,Mathematics,mathematics,false -smux,u.fail,Journalism & Comment,news_comment_data,false -smux,u.fail,Physics,physics,false -smux,u.fail,Programming,programming,false -smux,u.fail,Science,science,false -smux,u.fail,Social Media,social_media,false -tex,mas.to,Humanities,humanities,false -tex,mas.to,Law & Justice,law_justice,false -tex,mas.to,Mathematics,mathematics,false -tex,mas.to,Journalism & Comment,news_comment_data,false -tex,mas.to,Philosophy,philosophy,false -tex,mas.to,Physics,physics,false -mistercharlie,indieweb.social,Photography,photography,false -mistercharlie,indieweb.social,Physics,physics,false -mistercharlie,indieweb.social,Science,science,false -mistercharlie,indieweb.social,Technology,technology,false -mistercharlie,indieweb.social,TV & Radio,tv_radio,false -mistercharlie,indieweb.social,Visual Arts,visual_arts,false -mistercharlie,indieweb.social,Books & Literature,books_literature,true -TheOneCurly,hear-me.social,Business,business,false -TheOneCurly,hear-me.social,Engineering,engineering,false -TheOneCurly,hear-me.social,Environment,environment,false -TheOneCurly,hear-me.social,Gaming,gaming,false -TheOneCurly,hear-me.social,Journalism & Comment,news_comment_data,false -TheOneCurly,hear-me.social,Programming,programming,false -TheOneCurly,hear-me.social,Science,science,false -TheOneCurly,hear-me.social,Space,space,false -TheOneCurly,hear-me.social,Technology,technology,false -TheOneCurly,hear-me.social,Weather,weather,false -TheOneCurly,hear-me.social,Breaking News,breaking_news,true -dogdoggie,mastodon.social,Academia & Research,academia_research,false -dogdoggie,mastodon.social,Biodiversity & Rewilding,biodiversity_rewilding,false -dogdoggie,mastodon.social,Biology,biology,false -dogdoggie,mastodon.social,Breaking News,breaking_news,false -cluethulhu,hachyderm.io,Activism & Civil Rights,activism_civil_rights,false -cluethulhu,hachyderm.io,Biology,biology,false -cluethulhu,hachyderm.io,Books & Literature,books_literature,false -cluethulhu,hachyderm.io,Chemistry,chemistry,false -cluethulhu,hachyderm.io,Gaming,gaming,false -cluethulhu,hachyderm.io,History,history,false -cluethulhu,hachyderm.io,Mathematics,mathematics,false -cluethulhu,hachyderm.io,Movies,movies,false -cluethulhu,hachyderm.io,Physics,physics,false -cluethulhu,hachyderm.io,Politics,politics,false -cluethulhu,hachyderm.io,Programming,programming,false -cluethulhu,hachyderm.io,Science,science,false -cluethulhu,hachyderm.io,Space,space,false -cluethulhu,hachyderm.io,Technology,technology,false -cluethulhu,hachyderm.io,US Politics,us_politics,false -cluethulhu,hachyderm.io,Breaking News,breaking_news,true -dogdoggie,mastodon.social,Chemistry,chemistry,false -dogdoggie,mastodon.social,Climate change,climate_change,false -Claire_XIV,ffxiv-mastodon.com,TV & Radio,tv_radio,false -Claire_XIV,ffxiv-mastodon.com,Gaming,gaming,true -WelchE,newsmast.social,Women’s Voices,women_voices,false -WelchE,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false -lemmnelson,mastodon.social,Music,music,false -lemmnelson,mastodon.social,Space,space,false -lemmnelson,mastodon.social,Sport,sport,false -lemmnelson,mastodon.social,Technology,technology,false -lemmnelson,mastodon.social,Breaking News,breaking_news,true -ThelesThonmor,Mastodon.social,Academia & Research,academia_research,false -ThelesThonmor,Mastodon.social,Activism & Civil Rights,activism_civil_rights,false -ThelesThonmor,Mastodon.social,AI,ai,false -ThelesThonmor,Mastodon.social,Architecture & Design,architecture_design,false -ThelesThonmor,Mastodon.social,Biodiversity & Rewilding,biodiversity_rewilding,false -ThelesThonmor,Mastodon.social,Biology,biology,false -ThelesThonmor,Mastodon.social,Black Voices,black_voices,false -ThelesThonmor,Mastodon.social,Books & Literature,books_literature,false -ThelesThonmor,Mastodon.social,Breaking News,breaking_news,false -ThelesThonmor,Mastodon.social,Business,business,false -ThelesThonmor,Mastodon.social,Chemistry,chemistry,false -ThelesThonmor,Mastodon.social,Climate change,climate_change,false -ThelesThonmor,Mastodon.social,Democracy & Human Rights,democracy_human_rights,false -ThelesThonmor,Mastodon.social,Disabled Voices,disabled_voices,false -ThelesThonmor,Mastodon.social,Energy & Pollution,energy_pollution,false -ThelesThonmor,Mastodon.social,Engineering,engineering,false -ThelesThonmor,Mastodon.social,Environment,environment,false -ThelesThonmor,Mastodon.social,Gaming,gaming,false -ThelesThonmor,Mastodon.social,Healthcare,healthcare,false -ThelesThonmor,Mastodon.social,History,history,false -ThelesThonmor,Mastodon.social,Humanities,humanities,false -ThelesThonmor,Mastodon.social,Humour,humour,false -ThelesThonmor,Mastodon.social,"Hunger, Disease & Water",hunger_disease_water,false -ThelesThonmor,Mastodon.social,Immigrants Rights,immigrants_rights,false -ThelesThonmor,Mastodon.social,Indigenous Peoples,indigenous_peoples,false -ThelesThonmor,Mastodon.social,Law & Justice,law_justice,false -ThelesThonmor,Mastodon.social,Government & Policy,government_policy,true -chrisg,aus.social,Nature & Wildlife,nature_wildlife,false -chrisg,aus.social,Journalism & Comment,news_comment_data,false -chrisg,aus.social,Performing Arts,performing_arts,false -chrisg,aus.social,Pets,pets,false -chrisg,aus.social,Philosophy,philosophy,false -chrisg,aus.social,Photography,photography,false -chrisg,aus.social,Physics,physics,false -chrisg,aus.social,Politics,politics,false -chrisg,aus.social,Poverty & Inequality,poverty_inequality,false -chrisg,aus.social,Programming,programming,false -chrisg,aus.social,Puzzles,puzzles,false -chrisg,aus.social,Science,science,false -chrisg,aus.social,Social Sciences,social_sciences,false -chrisg,aus.social,Space,space,false -chrisg,aus.social,Technology,technology,false -chrisg,aus.social,Travel,travel,false -chrisg,aus.social,TV & Radio,tv_radio,false -chrisg,aus.social,Ukraine Invasion,ukraine_invasion,false -ThelesThonmor,Mastodon.social,LGBTQ+,lgbtq,false -ThelesThonmor,Mastodon.social,Markets & Finance,markets_finance,false -ThelesThonmor,Mastodon.social,Mathematics,mathematics,false -ThelesThonmor,Mastodon.social,Mental Health & Wellbeing,mental_health_wellbeing,false -ThelesThonmor,Mastodon.social,Movies,movies,false -ThelesThonmor,Mastodon.social,Music,music,false -ThelesThonmor,Mastodon.social,Nature & Wildlife,nature_wildlife,false -ThelesThonmor,Mastodon.social,Journalism & Comment,news_comment_data,false -ThelesThonmor,Mastodon.social,Philosophy,philosophy,false -ThelesThonmor,Mastodon.social,Photography,photography,false -ThelesThonmor,Mastodon.social,Physics,physics,false -ThelesThonmor,Mastodon.social,Politics,politics,false -ThelesThonmor,Mastodon.social,Poverty & Inequality,poverty_inequality,false -ThelesThonmor,Mastodon.social,Programming,programming,false -ThelesThonmor,Mastodon.social,Puzzles,puzzles,false -ThelesThonmor,Mastodon.social,Science,science,false -ThelesThonmor,Mastodon.social,Social Media,social_media,false -ThelesThonmor,Mastodon.social,Social Sciences,social_sciences,false -ThelesThonmor,Mastodon.social,Space,space,false -ThelesThonmor,Mastodon.social,Technology,technology,false -ThelesThonmor,Mastodon.social,Travel,travel,false -ThelesThonmor,Mastodon.social,TV & Radio,tv_radio,false -ThelesThonmor,Mastodon.social,Weather,weather,false -ThelesThonmor,Mastodon.social,Women’s Voices,women_voices,false -ThelesThonmor,Mastodon.social,Workers Rights,workers_rights,false -staszek,101010.pl,Biodiversity & Rewilding,biodiversity_rewilding,false -admin,mastodon.raddemo.host,AI,ai,false -tex,mas.to,Politics,politics,false -tex,mas.to,Science,science,false -elsultan,gotosocial.elsultan.casa,Architecture & Design,architecture_design,false -elsultan,gotosocial.elsultan.casa,Biodiversity & Rewilding,biodiversity_rewilding,false -elsultan,gotosocial.elsultan.casa,Environment,environment,false -elsultan,gotosocial.elsultan.casa,Movies,movies,false -elsultan,gotosocial.elsultan.casa,Music,music,false -elsultan,gotosocial.elsultan.casa,Programming,programming,false -elsultan,gotosocial.elsultan.casa,Science,science,false -elsultan,gotosocial.elsultan.casa,Space,space,false -elsultan,gotosocial.elsultan.casa,Technology,technology,false -elsultan,gotosocial.elsultan.casa,TV & Radio,tv_radio,false -ExpertPlus,mementomori.social,AI,ai,false -ExpertPlus,mementomori.social,Creative Arts,creative_arts,false -ExpertPlus,mementomori.social,Engineering,engineering,false -ExpertPlus,mementomori.social,Humour,humour,false -msafaksari,mastodon.social,AI,ai,false -msafaksari,mastodon.social,Journalism & Comment,news_comment_data,false -msafaksari,mastodon.social,Science,science,false -msafaksari,mastodon.social,Social Sciences,social_sciences,false -msafaksari,mastodon.social,Technology,technology,true -ExpertPlus,mementomori.social,Nature & Wildlife,nature_wildlife,false -ExpertPlus,mementomori.social,Programming,programming,false -ExpertPlus,mementomori.social,Technology,technology,true -Taenarian,journa.host,Healthcare,healthcare,false -Taenarian,journa.host,History,history,false -Taenarian,journa.host,Humanities,humanities,false -Taenarian,journa.host,Law & Justice,law_justice,false -Taenarian,journa.host,Journalism & Comment,news_comment_data,false -Taenarian,journa.host,Philosophy,philosophy,false -Taenarian,journa.host,Politics,politics,false -Taenarian,journa.host,Social Sciences,social_sciences,false -Taenarian,journa.host,US Politics,us_politics,false -Taenarian,journa.host,Breaking News,breaking_news,true -lowskid,mastodon.social,Gaming,gaming,false -lowskid,mastodon.social,Music,music,false -lowskid,mastodon.social,Programming,programming,false -lowskid,mastodon.social,Technology,technology,false -lowskid,mastodon.social,Breaking News,breaking_news,true -ntnsndr,social.coop,Democracy & Human Rights,democracy_human_rights,true -bkeegan,hci.social,Breaking News,breaking_news,false -bkeegan,hci.social,Climate change,climate_change,false -bkeegan,hci.social,Journalism & Comment,news_comment_data,false -bkeegan,hci.social,Science,science,false -bkeegan,hci.social,Space,space,false -bkeegan,hci.social,Technology,technology,false -bkeegan,hci.social,US Politics,us_politics,false -bkeegan,hci.social,Academia & Research,academia_research,true -ntnsndr,social.coop,Academia & Research,academia_research,false -ntnsndr,social.coop,AI,ai,false -ntnsndr,social.coop,Breaking News,breaking_news,false -ntnsndr,social.coop,Environment,environment,false -ntnsndr,social.coop,Philosophy,philosophy,false -ntnsndr,social.coop,Poverty & Inequality,poverty_inequality,false -ntnsndr,social.coop,Social Media,social_media,false -ntnsndr,social.coop,Technology,technology,false -ntnsndr,social.coop,US Politics,us_politics,false -elsultan,gotosocial.elsultan.casa,Breaking News,breaking_news,false -elsultan,gotosocial.elsultan.casa,Gaming,gaming,true -bjoernsta,journa.host,AI,ai,false -bjoernsta,journa.host,Breaking News,breaking_news,false -bjoernsta,journa.host,Government & Policy,government_policy,false -bjoernsta,journa.host,Journalism & Comment,news_comment_data,false -bjoernsta,journa.host,Technology,technology,false -bjoernsta,journa.host,Social Media,social_media,true -FreddieJ,newsmast.social,Journalism & Comment,news_comment_data,false -FreddieJ,newsmast.social,Social Media,social_media,false -FreddieJ,newsmast.social,Ukraine Invasion,ukraine_invasion,false -tinderness,swiss.social,Climate change,climate_change,false -tinderness,swiss.social,Democracy & Human Rights,democracy_human_rights,false -tinderness,swiss.social,Environment,environment,false -tinderness,swiss.social,History,history,false -tinderness,swiss.social,Movies,movies,false -tinderness,swiss.social,Philosophy,philosophy,false -tinderness,swiss.social,Books & Literature,books_literature,true -staszek,101010.pl,Energy & Pollution,energy_pollution,false -staszek,101010.pl,Engineering,engineering,false -staszek,101010.pl,Environment,environment,false -staszek,101010.pl,Technology,technology,false -staszek,101010.pl,Democracy & Human Rights,democracy_human_rights,true -Tntgamer12341,mastodon.social,AI,ai,false -Tntgamer12341,mastodon.social,Breaking News,breaking_news,false -Tntgamer12341,mastodon.social,Environment,environment,false -Tntgamer12341,mastodon.social,Gaming,gaming,false -linudz,ecoevo.social,Biology,biology,false -linudz,ecoevo.social,Chemistry,chemistry,false -linudz,ecoevo.social,Creative Arts,creative_arts,false -linudz,ecoevo.social,Democracy & Human Rights,democracy_human_rights,false -linudz,ecoevo.social,Football,football,false -linudz,ecoevo.social,Humour,humour,false -linudz,ecoevo.social,"Hunger, Disease & Water",hunger_disease_water,false -linudz,ecoevo.social,Mathematics,mathematics,false -linudz,ecoevo.social,Journalism & Comment,news_comment_data,false -linudz,ecoevo.social,Physics,physics,false -linudz,ecoevo.social,Politics,politics,false -linudz,ecoevo.social,Poverty & Inequality,poverty_inequality,false -linudz,ecoevo.social,Science,science,false -linudz,ecoevo.social,Social Media,social_media,false -linudz,ecoevo.social,Space,space,false -linudz,ecoevo.social,Ukraine Invasion,ukraine_invasion,false -linudz,ecoevo.social,Breaking News,breaking_news,true -Tntgamer12341,mastodon.social,Science,science,false -Tntgamer12341,mastodon.social,Space,space,false -Tntgamer12341,mastodon.social,Technology,technology,true -admin,mastodon.raddemo.host,Business,business,false -fugui945,techhub.social,Engineering,engineering,false -fugui945,techhub.social,Programming,programming,false -fugui945,techhub.social,Social Media,social_media,false -fugui945,techhub.social,Ukraine Invasion,ukraine_invasion,false -fugui945,techhub.social,AI,ai,true -satnaing,newsmast.social,Journalism & Comment,news_comment_data,false -satnaing,newsmast.social,Social Media,social_media,false -satnaing,newsmast.social,Ukraine Invasion,ukraine_invasion,false -satnaing,newsmast.social,Weather,weather,false -satnaing,newsmast.social,Breaking News,breaking_news,true -jav_ppt345,mastodon.social,Journalism & Comment,news_comment_data,false -jav_ppt345,mastodon.social,Social Media,social_media,false -jav_ppt345,mastodon.social,Ukraine Invasion,ukraine_invasion,false -jav_ppt345,mastodon.social,Weather,weather,false -jav_ppt345,mastodon.social,Breaking News,breaking_news,true -orimori,mastodon.social,Books & Literature,books_literature,false -orimori,mastodon.social,Nature & Wildlife,nature_wildlife,false -sintrenton,todon.nl,Activism & Civil Rights,activism_civil_rights,false -sintrenton,todon.nl,Journalism & Comment,news_comment_data,false -sintrenton,todon.nl,Programming,programming,false -sintrenton,todon.nl,Technology,technology,false -sintrenton,todon.nl,Breaking News,breaking_news,true -Destiny,newsmast.social,Pets,pets,false -CELSET,newsmast.social,Activism & Civil Rights,activism_civil_rights,false -CELSET,newsmast.social,Women’s Voices,women_voices,false -CELSET,newsmast.social,Government & Policy,government_policy,true -meconiumhead,mastinsaan.in,Politics,politics,true -wannely,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -wannely,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false -wannely,newsmast.social,Poverty & Inequality,poverty_inequality,false -wannely,newsmast.social,Science,science,false -wannely,newsmast.social,Creative Arts,creative_arts,true -yemyatthu_cs_10,mastodon.social,Academia & Research,academia_research,false -yemyatthu_cs_10,mastodon.social,Climate change,climate_change,false -yemyatthu_cs_10,mastodon.social,Democracy & Human Rights,democracy_human_rights,false -yemyatthu_cs_10,mastodon.social,Energy & Pollution,energy_pollution,false -yemyatthu_cs_10,mastodon.social,Environment,environment,false -yemyatthu_cs_10,mastodon.social,Government & Policy,government_policy,false -yemyatthu_cs_10,mastodon.social,Healthcare,healthcare,false -yemyatthu_cs_10,mastodon.social,"Hunger, Disease & Water",hunger_disease_water,false -yemyatthu_cs_10,mastodon.social,Law & Justice,law_justice,false -yemyatthu_cs_10,mastodon.social,Politics,politics,false -yemyatthu_cs_10,mastodon.social,Poverty & Inequality,poverty_inequality,false -yemyatthu_cs_10,mastodon.social,US Politics,us_politics,false -yemyatthu_cs_10,mastodon.social,Biodiversity & Rewilding,biodiversity_rewilding,true -DadeMutphy,newsmast.social,AI,ai,false -DadeMutphy,newsmast.social,Biology,biology,false -DadeMutphy,newsmast.social,Chemistry,chemistry,false -DadeMutphy,newsmast.social,Engineering,engineering,false -DadeMutphy,newsmast.social,Mathematics,mathematics,false -DadeMutphy,newsmast.social,Journalism & Comment,news_comment_data,false -DadeMutphy,newsmast.social,Physics,physics,false -DadeMutphy,newsmast.social,Programming,programming,false -DadeMutphy,newsmast.social,Science,science,false -DadeMutphy,newsmast.social,Social Media,social_media,false -DadeMutphy,newsmast.social,Space,space,false -DadeMutphy,newsmast.social,Technology,technology,false -DadeMutphy,newsmast.social,Ukraine Invasion,ukraine_invasion,false -DadeMutphy,newsmast.social,Weather,weather,false -DadeMutphy,newsmast.social,Breaking News,breaking_news,true -ivanych,mastodon.social,Democracy & Human Rights,democracy_human_rights,false -ivanych,mastodon.social,"Hunger, Disease & Water",hunger_disease_water,false -ivanych,mastodon.social,Law & Justice,law_justice,false -ivanych,mastodon.social,Politics,politics,false -ivanych,mastodon.social,Poverty & Inequality,poverty_inequality,false -ivanych,mastodon.social,US Politics,us_politics,false -ivanych,mastodon.social,Ukraine Invasion,ukraine_invasion,true -Usten,social.vivaldi.net,AI,ai,false -Usten,social.vivaldi.net,Social Media,social_media,false -Usten,social.vivaldi.net,Technology,technology,false -Usten,social.vivaldi.net,Ukraine Invasion,ukraine_invasion,false -Usten,social.vivaldi.net,Breaking News,breaking_news,true -cjpower,mstdn.social,Environment,environment,false -cjpower,mstdn.social,Government & Policy,government_policy,false -cjpower,mstdn.social,Law & Justice,law_justice,false -cjpower,mstdn.social,Journalism & Comment,news_comment_data,false -cjpower,mstdn.social,Climate change,climate_change,true -admin,mastodon.raddemo.host,Markets & Finance,markets_finance,false -admin,mastodon.raddemo.host,Programming,programming,false -admin,mastodon.raddemo.host,Technology,technology,true -tex,mas.to,Social Media,social_media,false -eltemps,mastodon.social,Weather,weather,true -tex,mas.to,Social Sciences,social_sciences,false -ilija32,social.vivaldi.net,AI,ai,false -ilija32,social.vivaldi.net,Environment,environment,false -kieransweeney,mastodon.ie,Biodiversity & Rewilding,biodiversity_rewilding,false -kieransweeney,mastodon.ie,Energy & Pollution,energy_pollution,false -kieransweeney,mastodon.ie,Engineering,engineering,false -kieransweeney,mastodon.ie,Physics,physics,false -kieransweeney,mastodon.ie,Climate change,climate_change,true -Empiricism,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false -Empiricism,newsmast.social,Biology,biology,false -Empiricism,newsmast.social,Chemistry,chemistry,false -Empiricism,newsmast.social,Climate change,climate_change,false -Empiricism,newsmast.social,Energy & Pollution,energy_pollution,false -Empiricism,newsmast.social,Environment,environment,false -Empiricism,newsmast.social,Mathematics,mathematics,false -Empiricism,newsmast.social,Philosophy,philosophy,false -Empiricism,newsmast.social,Physics,physics,false -Empiricism,newsmast.social,Social Sciences,social_sciences,false -Empiricism,newsmast.social,Space,space,false -Empiricism,newsmast.social,Science,science,true -ahmuro,mas.to,AI,ai,false -ahmuro,mas.to,Books & Literature,books_literature,false -ahmuro,mas.to,Engineering,engineering,false -ahmuro,mas.to,Gaming,gaming,false -ahmuro,mas.to,Movies,movies,false -ahmuro,mas.to,Photography,photography,false -ahmuro,mas.to,Poverty & Inequality,poverty_inequality,false -ahmuro,mas.to,Programming,programming,false -ahmuro,mas.to,Technology,technology,true -academus,infosec.exchange,AI,ai,false -academus,infosec.exchange,Government & Policy,government_policy,false -academus,infosec.exchange,Science,science,false -academus,infosec.exchange,Technology,technology,false -academus,infosec.exchange,Breaking News,breaking_news,true -GrowingForJustice,mastodon.social,Biodiversity & Rewilding,biodiversity_rewilding,false -GrowingForJustice,mastodon.social,Biology,biology,false -GrowingForJustice,mastodon.social,Breaking News,breaking_news,false -barbmaclean,mastodon.social,Business,business,false -barbmaclean,mastodon.social,Engineering,engineering,false -barbmaclean,mastodon.social,Markets & Finance,markets_finance,false -barbmaclean,mastodon.social,Technology,technology,false -barbmaclean,mastodon.social,Breaking News,breaking_news,true -GrowingForJustice,mastodon.social,Climate change,climate_change,false -GrowingForJustice,mastodon.social,Energy & Pollution,energy_pollution,false -GrowingForJustice,mastodon.social,Environment,environment,false -GrowingForJustice,mastodon.social,Government & Policy,government_policy,false -torstenesser,mastodon.social,Business,business,false -torstenesser,mastodon.social,Government & Policy,government_policy,false -torstenesser,mastodon.social,Science,science,false -torstenesser,mastodon.social,Technology,technology,false -torstenesser,mastodon.social,Breaking News,breaking_news,true -eltemps,mastodon.social,Biodiversity & Rewilding,biodiversity_rewilding,false -eltemps,mastodon.social,Climate change,climate_change,false -eltemps,mastodon.social,Energy & Pollution,energy_pollution,false -eltemps,mastodon.social,Environment,environment,false -guzz,mastodon.social,Books & Literature,books_literature,false -guzz,mastodon.social,History,history,false -guzz,mastodon.social,Movies,movies,false -guzz,mastodon.social,Music,music,false -guzz,mastodon.social,Philosophy,philosophy,false -guzz,mastodon.social,Photography,photography,false -guzz,mastodon.social,Science,science,false -guzz,mastodon.social,Social Sciences,social_sciences,false -guzz,mastodon.social,Space,space,false -guzz,mastodon.social,Technology,technology,false -guzz,mastodon.social,Breaking News,breaking_news,true -Tylertul,universeodon.com,AI,ai,false -Tylertul,universeodon.com,Breaking News,breaking_news,false -Tylertul,universeodon.com,Engineering,engineering,false -Tylertul,universeodon.com,Government & Policy,government_policy,false -Tylertul,universeodon.com,Politics,politics,false -Tylertul,universeodon.com,Technology,technology,true -robbhoy,newsmast.social,AI,ai,false -robbhoy,newsmast.social,Architecture & Design,architecture_design,false -robbhoy,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false -robbhoy,newsmast.social,Books & Literature,books_literature,false -robbhoy,newsmast.social,Climate change,climate_change,false -robbhoy,newsmast.social,Energy & Pollution,energy_pollution,false -robbhoy,newsmast.social,Engineering,engineering,false -robbhoy,newsmast.social,Environment,environment,false -robbhoy,newsmast.social,Gaming,gaming,false -robbhoy,newsmast.social,Music,music,false -robbhoy,newsmast.social,Performing Arts,performing_arts,false -robbhoy,newsmast.social,Photography,photography,false -robbhoy,newsmast.social,Programming,programming,false -robbhoy,newsmast.social,Social Media,social_media,false -robbhoy,newsmast.social,Technology,technology,false -robbhoy,newsmast.social,TV & Radio,tv_radio,false -robbhoy,newsmast.social,Ukraine Invasion,ukraine_invasion,false -robbhoy,newsmast.social,Visual Arts,visual_arts,false -robbhoy,newsmast.social,Weather,weather,false -robbhoy,newsmast.social,Movies,movies,true -Gloomiste,ieji.de,Poverty & Inequality,poverty_inequality,false -tex,mas.to,Space,space,false -tex,mas.to,Sport,sport,false -rmdes,mstdn.social,Academia & Research,academia_research,false -rmdes,mstdn.social,Activism & Civil Rights,activism_civil_rights,false -rmdes,mstdn.social,AI,ai,false -rmdes,mstdn.social,Books & Literature,books_literature,false -DadeMurphy,newsmast.social,Breaking News,breaking_news,true -rmdes,mstdn.social,Breaking News,breaking_news,false -rmdes,mstdn.social,Climate change,climate_change,false -rmdes,mstdn.social,Democracy & Human Rights,democracy_human_rights,false -rmdes,mstdn.social,Government & Policy,government_policy,false -rmdes,mstdn.social,Humanities,humanities,false -rmdes,mstdn.social,Music,music,false -rmdes,mstdn.social,Journalism & Comment,news_comment_data,false -acxtrilla,mastodon.social,Books & Literature,books_literature,false -acxtrilla,mastodon.social,Football,football,false -acxtrilla,mastodon.social,Gaming,gaming,false -acxtrilla,mastodon.social,Movies,movies,false -acxtrilla,mastodon.social,Photography,photography,false -acxtrilla,mastodon.social,TV & Radio,tv_radio,false -acxtrilla,mastodon.social,Technology,technology,true -mariana_b,newsmast.social,Weather,weather,false -rmdes,mstdn.social,Philosophy,philosophy,false -rmdes,mstdn.social,Politics,politics,false -rmdes,mstdn.social,Programming,programming,false -rmdes,mstdn.social,Science,science,false -rmdes,mstdn.social,Social Media,social_media,false -rmdes,mstdn.social,Social Sciences,social_sciences,false -rmdes,mstdn.social,Space,space,false -smux,u.fail,Space,space,false -smux,u.fail,Technology,technology,false -smux,u.fail,Ukraine Invasion,ukraine_invasion,false -smux,u.fail,Weather,weather,false -smux,u.fail,Breaking News,breaking_news,true -rmdes,mstdn.social,Technology,technology,false -rmdes,mstdn.social,US Politics,us_politics,false -rmdes,mstdn.social,Women’s Voices,women_voices,false -rmdes,mstdn.social,Ukraine Invasion,ukraine_invasion,true -tex,mas.to,Technology,technology,false -Nyein,newsmast.social,Social Media,social_media,false -sajarose12,mastodon.social,Activism & Civil Rights,activism_civil_rights,false -sajarose12,mastodon.social,Breaking News,breaking_news,false -sajarose12,mastodon.social,Democracy & Human Rights,democracy_human_rights,false -sajarose12,mastodon.social,Humour,humour,false -sajarose12,mastodon.social,Journalism & Comment,news_comment_data,false -sajarose12,mastodon.social,Science,science,false -sajarose12,mastodon.social,Women’s Voices,women_voices,false -sajarose12,mastodon.social,LGBTQ+,lgbtq,true -natejung,mstdn.games,AI,ai,false -Alex_Y,newsmast.social,Architecture & Design,architecture_design,false -Alex_Y,newsmast.social,Breaking News,breaking_news,false -Alex_Y,newsmast.social,Movies,movies,false -Alex_Y,newsmast.social,Physics,physics,false -Alex_Y,newsmast.social,Ukraine Invasion,ukraine_invasion,true -natejung,mstdn.games,Breaking News,breaking_news,false -natejung,mstdn.games,Engineering,engineering,false -natejung,mstdn.games,Science,science,false -natejung,mstdn.games,Social Media,social_media,false -natejung,mstdn.games,Space,space,false -natejung,mstdn.games,Technology,technology,true -mastoadmin,masto.deluma.biz,Breaking News,breaking_news,true -craigcorbin,fosstodon.org,Academia & Research,academia_research,false -craigcorbin,fosstodon.org,AI,ai,false -craigcorbin,fosstodon.org,Breaking News,breaking_news,false -craigcorbin,fosstodon.org,Engineering,engineering,false -craigcorbin,fosstodon.org,Government & Policy,government_policy,false -craigcorbin,fosstodon.org,Healthcare,healthcare,false -craigcorbin,fosstodon.org,Journalism & Comment,news_comment_data,false -craigcorbin,fosstodon.org,Politics,politics,false -craigcorbin,fosstodon.org,Programming,programming,false -craigcorbin,fosstodon.org,Social Media,social_media,false -craigcorbin,fosstodon.org,Technology,technology,false -craigcorbin,fosstodon.org,Ukraine Invasion,ukraine_invasion,false -craigcorbin,fosstodon.org,US Politics,us_politics,false -craigcorbin,fosstodon.org,Weather,weather,false -craigcorbin,fosstodon.org,Law & Justice,law_justice,true -mastoadmin,masto.deluma.biz,Academia & Research,academia_research,false -mastoadmin,masto.deluma.biz,AI,ai,false -mastoadmin,masto.deluma.biz,Biodiversity & Rewilding,biodiversity_rewilding,false -mastoadmin,masto.deluma.biz,Biology,biology,false -mastoadmin,masto.deluma.biz,Business,business,false -mastoadmin,masto.deluma.biz,Chemistry,chemistry,false -mastoadmin,masto.deluma.biz,Climate change,climate_change,false -mastoadmin,masto.deluma.biz,Democracy & Human Rights,democracy_human_rights,false -mastoadmin,masto.deluma.biz,Energy & Pollution,energy_pollution,false -mastoadmin,masto.deluma.biz,Engineering,engineering,false -mastoadmin,masto.deluma.biz,Environment,environment,false -mastoadmin,masto.deluma.biz,Government & Policy,government_policy,false -mastoadmin,masto.deluma.biz,Healthcare,healthcare,false -mastoadmin,masto.deluma.biz,History,history,false -mastoadmin,masto.deluma.biz,Humanities,humanities,false -mastoadmin,masto.deluma.biz,"Hunger, Disease & Water",hunger_disease_water,false -mastoadmin,masto.deluma.biz,Law & Justice,law_justice,false -mastoadmin,masto.deluma.biz,Markets & Finance,markets_finance,false -mastoadmin,masto.deluma.biz,Mathematics,mathematics,false -mastoadmin,masto.deluma.biz,Journalism & Comment,news_comment_data,false -mastoadmin,masto.deluma.biz,Philosophy,philosophy,false -mastoadmin,masto.deluma.biz,Physics,physics,false -mastoadmin,masto.deluma.biz,Politics,politics,false -mastoadmin,masto.deluma.biz,Poverty & Inequality,poverty_inequality,false -mastoadmin,masto.deluma.biz,Programming,programming,false -mastoadmin,masto.deluma.biz,Science,science,false -mastoadmin,masto.deluma.biz,Social Media,social_media,false -mastoadmin,masto.deluma.biz,Social Sciences,social_sciences,false -mastoadmin,masto.deluma.biz,Space,space,false -mastoadmin,masto.deluma.biz,Technology,technology,false -mastoadmin,masto.deluma.biz,Ukraine Invasion,ukraine_invasion,false -mastoadmin,masto.deluma.biz,US Politics,us_politics,false -mastoadmin,masto.deluma.biz,Weather,weather,false -mastoadmin,masto.deluma.biz,Workers Rights,workers_rights,false -ilija32,social.vivaldi.net,Food & Drink,food_drink,false -owen,mementomori.social,Activism & Civil Rights,activism_civil_rights,false -owen,mementomori.social,Black Voices,black_voices,false -owen,mementomori.social,Breaking News,breaking_news,false -owen,mementomori.social,Gaming,gaming,false -owen,mementomori.social,Movies,movies,false -owen,mementomori.social,Music,music,false -owen,mementomori.social,Journalism & Comment,news_comment_data,false -owen,mementomori.social,Performing Arts,performing_arts,false -owen,mementomori.social,Photography,photography,false -owen,mementomori.social,Social Media,social_media,false -owen,mementomori.social,Technology,technology,false -owen,mementomori.social,Visual Arts,visual_arts,false -owen,mementomori.social,Women’s Voices,women_voices,false -owen,mementomori.social,Books & Literature,books_literature,true -GrowingForJustice,mastodon.social,Healthcare,healthcare,false -GrowingForJustice,mastodon.social,History,history,false -GrowingForJustice,mastodon.social,"Hunger, Disease & Water",hunger_disease_water,false -GrowingForJustice,mastodon.social,Law & Justice,law_justice,false -GrowingForJustice,mastodon.social,Music,music,false -GrowingForJustice,mastodon.social,Philosophy,philosophy,false -GrowingForJustice,mastodon.social,Politics,politics,false -GrowingForJustice,mastodon.social,Poverty & Inequality,poverty_inequality,false -GrowingForJustice,mastodon.social,Science,science,false -GrowingForJustice,mastodon.social,Social Sciences,social_sciences,false -fabiocosta0305,ursal.zone,AI,ai,false -fabiocosta0305,ursal.zone,Books & Literature,books_literature,false -fabiocosta0305,ursal.zone,Breaking News,breaking_news,false -fabiocosta0305,ursal.zone,Engineering,engineering,false -fabiocosta0305,ursal.zone,Football,football,false -fabiocosta0305,ursal.zone,Gaming,gaming,false -fabiocosta0305,ursal.zone,History,history,false -fabiocosta0305,ursal.zone,Humanities,humanities,false -fabiocosta0305,ursal.zone,Music,music,false -fabiocosta0305,ursal.zone,Philosophy,philosophy,false -fabiocosta0305,ursal.zone,Photography,photography,false -fabiocosta0305,ursal.zone,Programming,programming,false -fabiocosta0305,ursal.zone,Science,science,false -fabiocosta0305,ursal.zone,Social Sciences,social_sciences,false -fabiocosta0305,ursal.zone,Space,space,false -fabiocosta0305,ursal.zone,Sport,sport,false -fabiocosta0305,ursal.zone,Technology,technology,false -fabiocosta0305,ursal.zone,Weather,weather,true -GrowingForJustice,mastodon.social,Space,space,false -GrowingForJustice,mastodon.social,Ukraine Invasion,ukraine_invasion,false -GrowingForJustice,mastodon.social,US Politics,us_politics,false -GrowingForJustice,mastodon.social,Weather,weather,false -GrowingForJustice,mastodon.social,Democracy & Human Rights,democracy_human_rights,true -jelly427,newsmast.social,Breaking News,breaking_news,false -wwrr,mastodon.social,AI,ai,false -wwrr,mastodon.social,Government & Policy,government_policy,false -wwrr,mastodon.social,Politics,politics,false -wwrr,mastodon.social,Programming,programming,false -wwrr,mastodon.social,Technology,technology,false -wwrr,mastodon.social,US Politics,us_politics,false -wwrr,mastodon.social,Breaking News,breaking_news,true -jelly427,newsmast.social,Engineering,engineering,false -jelly427,newsmast.social,Football,football,false -jelly427,newsmast.social,Journalism & Comment,news_comment_data,false -jelly427,newsmast.social,Programming,programming,false -jelly427,newsmast.social,Social Media,social_media,false -notimefortv,mastodon.social,Architecture & Design,architecture_design,false -notimefortv,mastodon.social,Books & Literature,books_literature,false -notimefortv,mastodon.social,Music,music,false -notimefortv,mastodon.social,Visual Arts,visual_arts,false -notimefortv,mastodon.social,Photography,photography,true -rwap,mastodon.social,AI,ai,false -rwap,mastodon.social,Breaking News,breaking_news,false -rwap,mastodon.social,Democracy & Human Rights,democracy_human_rights,false -rwap,mastodon.social,"Hunger, Disease & Water",hunger_disease_water,false -rwap,mastodon.social,Mathematics,mathematics,false -rwap,mastodon.social,Journalism & Comment,news_comment_data,false -rwap,mastodon.social,Physics,physics,false -rwap,mastodon.social,Poverty & Inequality,poverty_inequality,false -rwap,mastodon.social,Science,science,false -rwap,mastodon.social,Space,space,false -rwap,mastodon.social,Technology,technology,true -datafuzz,mastodon.xyz,Biodiversity & Rewilding,biodiversity_rewilding,false -datafuzz,mastodon.xyz,Biology,biology,false -datafuzz,mastodon.xyz,Democracy & Human Rights,democracy_human_rights,false -datafuzz,mastodon.xyz,Engineering,engineering,false -datafuzz,mastodon.xyz,Environment,environment,false -datafuzz,mastodon.xyz,Humour,humour,false -datafuzz,mastodon.xyz,Puzzles,puzzles,false -datafuzz,mastodon.xyz,Science,science,false -datafuzz,mastodon.xyz,Space,space,false -datafuzz,mastodon.xyz,Travel,travel,false -datafuzz,mastodon.xyz,Technology,technology,true -wizardfrag,masto.wizardfrag.co.uk,Breaking News,breaking_news,false -wizardfrag,masto.wizardfrag.co.uk,Environment,environment,false -wizardfrag,masto.wizardfrag.co.uk,Journalism & Comment,news_comment_data,false -wizardfrag,masto.wizardfrag.co.uk,Science,science,false -wizardfrag,masto.wizardfrag.co.uk,Technology,technology,true -tex,mas.to,Ukraine Invasion,ukraine_invasion,false -tex,mas.to,US Politics,us_politics,false -grislyeye,indieweb.social,Gaming,gaming,false -grislyeye,indieweb.social,Movies,movies,false -grislyeye,indieweb.social,Programming,programming,false -grislyeye,indieweb.social,Social Media,social_media,false -grislyeye,indieweb.social,TV & Radio,tv_radio,false -grislyeye,indieweb.social,Breaking News,breaking_news,true -chris,n-odes.social,AI,ai,false -chris,n-odes.social,Architecture & Design,architecture_design,false -chris,n-odes.social,Books & Literature,books_literature,false -chris,n-odes.social,Breaking News,breaking_news,false -chris,n-odes.social,Journalism & Comment,news_comment_data,false -chris,n-odes.social,Photography,photography,false -chris,n-odes.social,Poverty & Inequality,poverty_inequality,false -chris,n-odes.social,Programming,programming,false -chris,n-odes.social,Technology,technology,false -chris,n-odes.social,Visual Arts,visual_arts,true -wickedlester,mastodon.social,Academia & Research,academia_research,false -wickedlester,mastodon.social,Activism & Civil Rights,activism_civil_rights,false -wickedlester,mastodon.social,AI,ai,false -wickedlester,mastodon.social,Architecture & Design,architecture_design,false -wickedlester,mastodon.social,Biology,biology,false -wickedlester,mastodon.social,Black Voices,black_voices,false -wickedlester,mastodon.social,Books & Literature,books_literature,false -wickedlester,mastodon.social,Chemistry,chemistry,false -wickedlester,mastodon.social,Creative Arts,creative_arts,false -wickedlester,mastodon.social,Democracy & Human Rights,democracy_human_rights,false -wickedlester,mastodon.social,Disabled Voices,disabled_voices,false -wickedlester,mastodon.social,Engineering,engineering,false -wickedlester,mastodon.social,Food & Drink,food_drink,false -wickedlester,mastodon.social,Gaming,gaming,false -wickedlester,mastodon.social,Government & Policy,government_policy,false -wickedlester,mastodon.social,Healthcare,healthcare,false -wickedlester,mastodon.social,History,history,false -wickedlester,mastodon.social,Humanities,humanities,false -wickedlester,mastodon.social,Humour,humour,false -wickedlester,mastodon.social,"Hunger, Disease & Water",hunger_disease_water,false -wickedlester,mastodon.social,Immigrants Rights,immigrants_rights,false -wickedlester,mastodon.social,Indigenous Peoples,indigenous_peoples,false -wickedlester,mastodon.social,Law & Justice,law_justice,false -wickedlester,mastodon.social,LGBTQ+,lgbtq,false -wickedlester,mastodon.social,Mathematics,mathematics,false -wickedlester,mastodon.social,Mental Health & Wellbeing,mental_health_wellbeing,false -wickedlester,mastodon.social,Movies,movies,false -wickedlester,mastodon.social,Music,music,false -wickedlester,mastodon.social,Nature & Wildlife,nature_wildlife,false -wickedlester,mastodon.social,Journalism & Comment,news_comment_data,false -wickedlester,mastodon.social,Performing Arts,performing_arts,false -wickedlester,mastodon.social,Pets,pets,false -wickedlester,mastodon.social,Philosophy,philosophy,false -wickedlester,mastodon.social,Photography,photography,false -wickedlester,mastodon.social,Physics,physics,false -wickedlester,mastodon.social,Politics,politics,false -wickedlester,mastodon.social,Poverty & Inequality,poverty_inequality,false -wickedlester,mastodon.social,Programming,programming,false -wickedlester,mastodon.social,Puzzles,puzzles,false -wickedlester,mastodon.social,Science,science,false -wickedlester,mastodon.social,Social Media,social_media,false -wickedlester,mastodon.social,Social Sciences,social_sciences,false -wickedlester,mastodon.social,Space,space,false -wickedlester,mastodon.social,Technology,technology,false -wickedlester,mastodon.social,Travel,travel,false -wickedlester,mastodon.social,TV & Radio,tv_radio,false -wickedlester,mastodon.social,Ukraine Invasion,ukraine_invasion,false -wickedlester,mastodon.social,US Politics,us_politics,false -wickedlester,mastodon.social,Visual Arts,visual_arts,false -wickedlester,mastodon.social,Weather,weather,false -wickedlester,mastodon.social,Women’s Voices,women_voices,false -wickedlester,mastodon.social,Breaking News,breaking_news,true -jelly427,newsmast.social,Sport,sport,false -jelly427,newsmast.social,Technology,technology,false -jelly427,newsmast.social,Ukraine Invasion,ukraine_invasion,false -jelly427,newsmast.social,US Sport,us_sport,false -jelly427,newsmast.social,Weather,weather,false -jelly427,newsmast.social,AI,ai,true -Nyme,chaos.social,Breaking News,breaking_news,false -Nyme,chaos.social,Government & Policy,government_policy,false -Nyme,chaos.social,Journalism & Comment,news_comment_data,false -Nyme,chaos.social,Science,science,false -Nyme,chaos.social,Gaming,gaming,true -skryking,infosec.exchange,AI,ai,false -skryking,infosec.exchange,Biology,biology,false -skryking,infosec.exchange,Breaking News,breaking_news,false -skryking,infosec.exchange,Chemistry,chemistry,false -skryking,infosec.exchange,Engineering,engineering,false -skryking,infosec.exchange,Football,football,false -skryking,infosec.exchange,Mathematics,mathematics,false -skryking,infosec.exchange,Journalism & Comment,news_comment_data,false -skryking,infosec.exchange,Physics,physics,false -skryking,infosec.exchange,Programming,programming,false -skryking,infosec.exchange,Science,science,false -skryking,infosec.exchange,Social Media,social_media,false -skryking,infosec.exchange,Space,space,false -skryking,infosec.exchange,Sport,sport,false -skryking,infosec.exchange,Ukraine Invasion,ukraine_invasion,false -skryking,infosec.exchange,US Sport,us_sport,false -skryking,infosec.exchange,Weather,weather,false -skryking,infosec.exchange,Technology,technology,true -natejung,mstdn.games,Gaming,gaming,false -chrisg,aus.social,US Politics,us_politics,false -chrisg,aus.social,Visual Arts,visual_arts,false -chrisg,aus.social,Women’s Voices,women_voices,false -chrisg,aus.social,Workers Rights,workers_rights,false -chrisg,aus.social,Breaking News,breaking_news,true -tex,mas.to,US Sport,us_sport,false -ilija32,social.vivaldi.net,Gaming,gaming,false -Occams_Beard,sunny.garden,Biology,biology,false -Occams_Beard,sunny.garden,Chemistry,chemistry,false -Occams_Beard,sunny.garden,Engineering,engineering,false -ilija32,social.vivaldi.net,Mathematics,mathematics,false -felipeorleans,mastodon.social,AI,ai,false -felipeorleans,mastodon.social,Biodiversity & Rewilding,biodiversity_rewilding,false -felipeorleans,mastodon.social,Biology,biology,false -felipeorleans,mastodon.social,Books & Literature,books_literature,false -felipeorleans,mastodon.social,Breaking News,breaking_news,false -felipeorleans,mastodon.social,Climate change,climate_change,false -felipeorleans,mastodon.social,Creative Arts,creative_arts,false -felipeorleans,mastodon.social,Democracy & Human Rights,democracy_human_rights,false -felipeorleans,mastodon.social,Energy & Pollution,energy_pollution,false -felipeorleans,mastodon.social,Environment,environment,false -felipeorleans,mastodon.social,History,history,false -felipeorleans,mastodon.social,Humour,humour,false -felipeorleans,mastodon.social,"Hunger, Disease & Water",hunger_disease_water,false -felipeorleans,mastodon.social,Mental Health & Wellbeing,mental_health_wellbeing,false -felipeorleans,mastodon.social,Movies,movies,false -felipeorleans,mastodon.social,Music,music,false -felipeorleans,mastodon.social,Nature & Wildlife,nature_wildlife,false -felipeorleans,mastodon.social,Journalism & Comment,news_comment_data,false -felipeorleans,mastodon.social,Pets,pets,false -felipeorleans,mastodon.social,Philosophy,philosophy,false -felipeorleans,mastodon.social,Photography,photography,false -felipeorleans,mastodon.social,Physics,physics,false -felipeorleans,mastodon.social,Poverty & Inequality,poverty_inequality,false -felipeorleans,mastodon.social,Science,science,false -felipeorleans,mastodon.social,Social Sciences,social_sciences,false -felipeorleans,mastodon.social,Space,space,false -felipeorleans,mastodon.social,Technology,technology,false -felipeorleans,mastodon.social,Travel,travel,false -felipeorleans,mastodon.social,TV & Radio,tv_radio,false -felipeorleans,mastodon.social,Visual Arts,visual_arts,false -felipeorleans,mastodon.social,Humanities,humanities,true -ilija32,social.vivaldi.net,Movies,movies,false -ilija32,social.vivaldi.net,Music,music,false -ilija32,social.vivaldi.net,Nature & Wildlife,nature_wildlife,false -ilija32,social.vivaldi.net,Pets,pets,false -ilija32,social.vivaldi.net,Programming,programming,false -ilija32,social.vivaldi.net,Puzzles,puzzles,false -igalmarino,mastodon.social,Programming,programming,false -igalmarino,mastodon.social,Science,science,false -igalmarino,mastodon.social,Technology,technology,false -igalmarino,mastodon.social,AI,ai,true -ilija32,social.vivaldi.net,Sport,sport,false -Occams_Beard,sunny.garden,Physics,physics,false -ilija32,social.vivaldi.net,Technology,technology,false -Occams_Beard,sunny.garden,Science,science,false -ilija32,social.vivaldi.net,Travel,travel,false -ilija32,social.vivaldi.net,TV & Radio,tv_radio,false -ilija32,social.vivaldi.net,Humour,humour,true -Occams_Beard,sunny.garden,History,history,true -caolipeng,Mastodon.social,Journalism & Comment,news_comment_data,false -caolipeng,Mastodon.social,Social Media,social_media,false -caolipeng,Mastodon.social,Ukraine Invasion,ukraine_invasion,false -caolipeng,Mastodon.social,Weather,weather,false -icastico,c.im,Journalism & Comment,news_comment_data,false -icastico,c.im,Social Media,social_media,false -icastico,c.im,Ukraine Invasion,ukraine_invasion,false -icastico,c.im,Weather,weather,false -icastico,c.im,Breaking News,breaking_news,true -caolipeng,Mastodon.social,Breaking News,breaking_news,true -bbq63304,mastodon.world,Academia & Research,academia_research,false -bbq63304,mastodon.world,AI,ai,false -silkester,mastodon.social,Academia & Research,academia_research,false -silkester,mastodon.social,AI,ai,false -silkester,mastodon.social,Architecture & Design,architecture_design,false -silkester,mastodon.social,Biodiversity & Rewilding,biodiversity_rewilding,false -silkester,mastodon.social,Biology,biology,false -silkester,mastodon.social,Books & Literature,books_literature,false -silkester,mastodon.social,Breaking News,breaking_news,false -silkester,mastodon.social,Business,business,false -silkester,mastodon.social,Chemistry,chemistry,false -silkester,mastodon.social,Climate change,climate_change,false -silkester,mastodon.social,Energy & Pollution,energy_pollution,false -silkester,mastodon.social,Environment,environment,false -silkester,mastodon.social,Government & Policy,government_policy,false -silkester,mastodon.social,Healthcare,healthcare,false -silkester,mastodon.social,Humanities,humanities,false -silkester,mastodon.social,Law & Justice,law_justice,false -silkester,mastodon.social,Mathematics,mathematics,false -silkester,mastodon.social,Movies,movies,false -silkester,mastodon.social,Music,music,false -silkester,mastodon.social,Journalism & Comment,news_comment_data,false -silkester,mastodon.social,Philosophy,philosophy,false -silkester,mastodon.social,Photography,photography,false -silkester,mastodon.social,Physics,physics,false -silkester,mastodon.social,Politics,politics,false -silkester,mastodon.social,Programming,programming,false -bbq63304,mastodon.world,Biology,biology,false -bbq63304,mastodon.world,Business,business,false -bbq63304,mastodon.world,Breaking News,breaking_news,true -quantumcog,fosstodon.org,Breaking News,breaking_news,false -quantumcog,fosstodon.org,Physics,physics,false -quantumcog,fosstodon.org,Science,science,false -quantumcog,fosstodon.org,Space,space,false -quantumcog,fosstodon.org,Technology,technology,true -silkester,mastodon.social,Science,science,false -silkester,mastodon.social,Social Media,social_media,false -silkester,mastodon.social,Technology,technology,false -silkester,mastodon.social,US Politics,us_politics,false -silkester,mastodon.social,Visual Arts,visual_arts,true -mikea,newsmast.social,Breaking News,breaking_news,false -mikea,newsmast.social,Climate change,climate_change,true -tex,mas.to,Weather,weather,false -tex,mas.to,Breaking News,breaking_news,true -bbq63304,mastodon.world,Chemistry,chemistry,false -bbq63304,mastodon.world,Engineering,engineering,false -joanna,newsie.social,AI,ai,false -joanna,newsie.social,Books & Literature,books_literature,false -joanna,newsie.social,Journalism & Comment,news_comment_data,false -joanna,newsie.social,Social Media,social_media,false -joanna,newsie.social,Technology,technology,false -joanna,newsie.social,Breaking News,breaking_news,true -bbq63304,mastodon.world,Government & Policy,government_policy,false -bbq63304,mastodon.world,Healthcare,healthcare,false -bbq63304,mastodon.world,Law & Justice,law_justice,false -bbq63304,mastodon.world,Markets & Finance,markets_finance,false -bbq63304,mastodon.world,Mathematics,mathematics,false -bbq63304,mastodon.world,Journalism & Comment,news_comment_data,false -bbq63304,mastodon.world,Physics,physics,false -bbq63304,mastodon.world,Politics,politics,false -maxtarlov,sfba.social,AI,ai,false -bbq63304,mastodon.world,Programming,programming,false -maxtarlov,sfba.social,Humanities,humanities,false -maxtarlov,sfba.social,Law & Justice,law_justice,false -maxtarlov,sfba.social,Journalism & Comment,news_comment_data,false -maxtarlov,sfba.social,Social Sciences,social_sciences,false -bbq63304,mastodon.world,Science,science,false -weblink,newsmast.social,Humour,humour,false -bbq63304,mastodon.world,Social Media,social_media,false -bbq63304,mastodon.world,Space,space,false -bbq63304,mastodon.world,Technology,technology,false -bbq63304,mastodon.world,Ukraine Invasion,ukraine_invasion,false -bbq63304,mastodon.world,US Politics,us_politics,false -bbq63304,mastodon.world,Weather,weather,false -DavidBlue,mastodon.social,Gaming,gaming,false -DavidBlue,mastodon.social,Music,music,false -DavidBlue,mastodon.social,Journalism & Comment,news_comment_data,false -DavidBlue,mastodon.social,Photography,photography,false -DavidBlue,mastodon.social,Programming,programming,false -DavidBlue,mastodon.social,Social Media,social_media,false -DavidBlue,mastodon.social,TV & Radio,tv_radio,false -DavidBlue,mastodon.social,Technology,technology,true -khabeko,techhub.social,Science,science,false -khabeko,techhub.social,Space,space,false -Xkok,universeodon.com,Law & Justice,law_justice,false -Xkok,universeodon.com,Ukraine Invasion,ukraine_invasion,false -Xkok,universeodon.com,US Politics,us_politics,false -Xkok,universeodon.com,US Sport,us_sport,false -Xkok,universeodon.com,Gaming,gaming,true -khabeko,techhub.social,Technology,technology,true -Yorick,mastodon.nl,Academia & Research,academia_research,false -Yorick,mastodon.nl,Activism & Civil Rights,activism_civil_rights,false -jensantarelli,hachyderm.io,Creative Arts,creative_arts,false -m0bi,newsmast.social,Engineering,engineering,false -mjgardner,social.sdf.org,Breaking News,breaking_news,false -Yorick,mastodon.nl,Biodiversity & Rewilding,biodiversity_rewilding,false -jrollans,mastodon.social,AI,ai,false -jrollans,mastodon.social,Breaking News,breaking_news,false -jrollans,mastodon.social,Engineering,engineering,false -jrollans,mastodon.social,Science,science,false -ultmt,mastodon.social,Architecture & Design,architecture_design,false -ultmt,mastodon.social,Books & Literature,books_literature,false -ultmt,mastodon.social,Breaking News,breaking_news,false -ultmt,mastodon.social,Creative Arts,creative_arts,false -ultmt,mastodon.social,Humour,humour,false -ultmt,mastodon.social,Nature & Wildlife,nature_wildlife,false -ultmt,mastodon.social,Photography,photography,false -ultmt,mastodon.social,Physics,physics,false -ultmt,mastodon.social,Space,space,false -ultmt,mastodon.social,Travel,travel,false -ultmt,mastodon.social,TV & Radio,tv_radio,false -ultmt,mastodon.social,Movies,movies,true -jrollans,mastodon.social,Social Media,social_media,false -jrollans,mastodon.social,Space,space,false -jrollans,mastodon.social,Technology,technology,true -esinclai,pkm.social,Books & Literature,books_literature,false -esinclai,pkm.social,Government & Policy,government_policy,false -maxtarlov,sfba.social,Technology,technology,false -maxtarlov,sfba.social,Breaking News,breaking_news,true -esinclai,pkm.social,History,history,false -esinclai,pkm.social,Journalism & Comment,news_comment_data,false -esinclai,pkm.social,Technology,technology,false -esinclai,pkm.social,Humanities,humanities,true -pogiter90,mastodon.uno,Climate change,climate_change,false -pogiter90,mastodon.uno,Democracy & Human Rights,democracy_human_rights,false -pogiter90,mastodon.uno,Energy & Pollution,energy_pollution,false -pogiter90,mastodon.uno,Engineering,engineering,false -pogiter90,mastodon.uno,Environment,environment,false -pogiter90,mastodon.uno,Government & Policy,government_policy,false -pogiter90,mastodon.uno,Mathematics,mathematics,false -pogiter90,mastodon.uno,Journalism & Comment,news_comment_data,false -pogiter90,mastodon.uno,Physics,physics,false -pogiter90,mastodon.uno,Poverty & Inequality,poverty_inequality,false -pogiter90,mastodon.uno,Space,space,false -pogiter90,mastodon.uno,Technology,technology,false -pogiter90,mastodon.uno,Breaking News,breaking_news,true -Yorick,mastodon.nl,Biology,biology,false -Yorick,mastodon.nl,Climate change,climate_change,false -Yorick,mastodon.nl,Democracy & Human Rights,democracy_human_rights,false -Yorick,mastodon.nl,Environment,environment,false -Yorick,mastodon.nl,Government & Policy,government_policy,false -eprenen,mastodon.social,AI,ai,false -eprenen,mastodon.social,Biology,biology,false -Yorick,mastodon.nl,History,history,false -eprenen,mastodon.social,Chemistry,chemistry,false -eprenen,mastodon.social,Democracy & Human Rights,democracy_human_rights,false -donald13,newsmast.social,Activism & Civil Rights,activism_civil_rights,false -donald13,newsmast.social,AI,ai,false -donald13,newsmast.social,Architecture & Design,architecture_design,false -donald13,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false -donald13,newsmast.social,Biology,biology,false -donald13,newsmast.social,Black Voices,black_voices,false -donald13,newsmast.social,Books & Literature,books_literature,false -donald13,newsmast.social,Breaking News,breaking_news,false -donald13,newsmast.social,Business,business,false -donald13,newsmast.social,Chemistry,chemistry,false -donald13,newsmast.social,Climate change,climate_change,false -donald13,newsmast.social,Creative Arts,creative_arts,false -donald13,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -donald13,newsmast.social,Disabled Voices,disabled_voices,false -donald13,newsmast.social,Energy & Pollution,energy_pollution,false -donald13,newsmast.social,Engineering,engineering,false -donald13,newsmast.social,Environment,environment,false -donald13,newsmast.social,Food & Drink,food_drink,false -donald13,newsmast.social,Football,football,false -donald13,newsmast.social,Gaming,gaming,false -donald13,newsmast.social,Government & Policy,government_policy,false -donald13,newsmast.social,Healthcare,healthcare,false -donald13,newsmast.social,History,history,false -donald13,newsmast.social,Humanities,humanities,false -donald13,newsmast.social,Humour,humour,false -donald13,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false -donald13,newsmast.social,Immigrants Rights,immigrants_rights,false -donald13,newsmast.social,Indigenous Peoples,indigenous_peoples,false -donald13,newsmast.social,Law & Justice,law_justice,false -donald13,newsmast.social,LGBTQ+,lgbtq,false -donald13,newsmast.social,Markets & Finance,markets_finance,false -donald13,newsmast.social,Mathematics,mathematics,false -donald13,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false -donald13,newsmast.social,Movies,movies,false -donald13,newsmast.social,Music,music,false -donald13,newsmast.social,Nature & Wildlife,nature_wildlife,false -donald13,newsmast.social,Journalism & Comment,news_comment_data,false -donald13,newsmast.social,Performing Arts,performing_arts,false -donald13,newsmast.social,Pets,pets,false -donald13,newsmast.social,Philosophy,philosophy,false -donald13,newsmast.social,Photography,photography,false -donald13,newsmast.social,Physics,physics,false -donald13,newsmast.social,Politics,politics,false -donald13,newsmast.social,Poverty & Inequality,poverty_inequality,false -donald13,newsmast.social,Programming,programming,false -donald13,newsmast.social,Puzzles,puzzles,false -donald13,newsmast.social,Science,science,false -donald13,newsmast.social,Social Media,social_media,false -donald13,newsmast.social,Social Sciences,social_sciences,false -donald13,newsmast.social,Space,space,false -donald13,newsmast.social,Sport,sport,false -donald13,newsmast.social,Technology,technology,false -donald13,newsmast.social,Travel,travel,false -donald13,newsmast.social,TV & Radio,tv_radio,false -donald13,newsmast.social,Ukraine Invasion,ukraine_invasion,false -donald13,newsmast.social,US Politics,us_politics,false -donald13,newsmast.social,US Sport,us_sport,false -donald13,newsmast.social,Visual Arts,visual_arts,false -donald13,newsmast.social,Weather,weather,false -donald13,newsmast.social,Women’s Voices,women_voices,false -donald13,newsmast.social,Workers Rights,workers_rights,false -donald13,newsmast.social,Academia & Research,academia_research,true -natbas,newsmast.social,Academia & Research,academia_research,false -natbas,newsmast.social,Breaking News,breaking_news,false -natbas,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -natbas,newsmast.social,Environment,environment,false -natbas,newsmast.social,Humanities,humanities,false -natbas,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false -natbas,newsmast.social,Journalism & Comment,news_comment_data,false -natbas,newsmast.social,Philosophy,philosophy,false -natbas,newsmast.social,Physics,physics,false -natbas,newsmast.social,Poverty & Inequality,poverty_inequality,false -natbas,newsmast.social,Science,science,false -natbas,newsmast.social,Social Sciences,social_sciences,false -natbas,newsmast.social,Weather,weather,false -natbas,newsmast.social,Books & Literature,books_literature,true -Tamero,dizl.de,Academia & Research,academia_research,false -Tamero,dizl.de,AI,ai,false -Tamero,dizl.de,Biology,biology,false -Tamero,dizl.de,Chemistry,chemistry,false -Tamero,dizl.de,Engineering,engineering,false -Tamero,dizl.de,History,history,false -Tamero,dizl.de,Humanities,humanities,false -Tamero,dizl.de,Philosophy,philosophy,false -Tamero,dizl.de,Physics,physics,false -Tamero,dizl.de,Politics,politics,false -Tamero,dizl.de,Programming,programming,false -Tamero,dizl.de,Science,science,false -Tamero,dizl.de,Social Sciences,social_sciences,false -Tamero,dizl.de,Technology,technology,false -Tamero,dizl.de,Government & Policy,government_policy,true -JEkis,hachyderm.io,Breaking News,breaking_news,false -JEkis,hachyderm.io,LGBTQ+,lgbtq,false -JEkis,hachyderm.io,Journalism & Comment,news_comment_data,false -JEkis,hachyderm.io,Women’s Voices,women_voices,false -JEkis,hachyderm.io,Disabled Voices,disabled_voices,true -OlPatchy2Eyes,ieji.de,AI,ai,false -OlPatchy2Eyes,ieji.de,Engineering,engineering,false -OlPatchy2Eyes,ieji.de,Football,football,false -OlPatchy2Eyes,ieji.de,"Hunger, Disease & Water",hunger_disease_water,false -OlPatchy2Eyes,ieji.de,Technology,technology,false -DrJLCLee,mastodon.green,Space,space,false -DrJLCLee,mastodon.green,Sport,sport,false -DrJLCLee,mastodon.green,Weather,weather,false -DrJLCLee,mastodon.green,Breaking News,breaking_news,true -OlPatchy2Eyes,ieji.de,US Politics,us_politics,false -OlPatchy2Eyes,ieji.de,US Sport,us_sport,false -dltj,code4lib.social,AI,ai,false -dltj,code4lib.social,Breaking News,breaking_news,false -dltj,code4lib.social,Democracy & Human Rights,democracy_human_rights,false -dltj,code4lib.social,History,history,false -dltj,code4lib.social,Journalism & Comment,news_comment_data,false -dltj,code4lib.social,Social Sciences,social_sciences,false -dltj,code4lib.social,Technology,technology,true -m0bi,newsmast.social,AI,ai,false -mjgardner,social.sdf.org,Business,business,false -eprenen,mastodon.social,Engineering,engineering,false -BennyBrown,mastodon.social,AI,ai,false -BennyBrown,mastodon.social,Biology,biology,false -BennyBrown,mastodon.social,Breaking News,breaking_news,false -BennyBrown,mastodon.social,Chemistry,chemistry,false -BennyBrown,mastodon.social,Engineering,engineering,false -BennyBrown,mastodon.social,Football,football,false -BennyBrown,mastodon.social,Mathematics,mathematics,false -BennyBrown,mastodon.social,Journalism & Comment,news_comment_data,false -BennyBrown,mastodon.social,Physics,physics,false -BennyBrown,mastodon.social,Programming,programming,false -BennyBrown,mastodon.social,Science,science,false -BennyBrown,mastodon.social,Space,space,false -BennyBrown,mastodon.social,Technology,technology,false -BennyBrown,mastodon.social,Sport,sport,true -strayegg,newsmast.social,AI,ai,false -strayegg,newsmast.social,Biology,biology,false -strayegg,newsmast.social,Chemistry,chemistry,false -strayegg,newsmast.social,Creative Arts,creative_arts,false -strayegg,newsmast.social,Engineering,engineering,false -strayegg,newsmast.social,Food & Drink,food_drink,false -strayegg,newsmast.social,History,history,false -strayegg,newsmast.social,Humanities,humanities,false -strayegg,newsmast.social,Humour,humour,false -strayegg,newsmast.social,LGBTQ+,lgbtq,false -strayegg,newsmast.social,Mathematics,mathematics,false -strayegg,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false -strayegg,newsmast.social,Nature & Wildlife,nature_wildlife,false -strayegg,newsmast.social,Pets,pets,false -strayegg,newsmast.social,Philosophy,philosophy,false -strayegg,newsmast.social,Physics,physics,false -strayegg,newsmast.social,Science,science,false -strayegg,newsmast.social,Social Sciences,social_sciences,false -strayegg,newsmast.social,Space,space,false -strayegg,newsmast.social,Technology,technology,false -strayegg,newsmast.social,Travel,travel,false -strayegg,newsmast.social,Programming,programming,true -marci,flipboard.social,Environment,environment,false -marci,flipboard.social,Law & Justice,law_justice,false -marci,flipboard.social,Social Media,social_media,false -marci,flipboard.social,US Politics,us_politics,false -marci,flipboard.social,Journalism & Comment,news_comment_data,true -bbq63304,mastodon.world,Workers Rights,workers_rights,false -spatial1,newsmast.social,AI,ai,false -spatial1,newsmast.social,Engineering,engineering,false -spatial1,newsmast.social,Markets & Finance,markets_finance,false -spatial1,newsmast.social,Technology,technology,false -spatial1,newsmast.social,Business,business,true -hrbrmstr,newsmast.social,Academia & Research,academia_research,false -hrbrmstr,newsmast.social,AI,ai,false -hrbrmstr,newsmast.social,Breaking News,breaking_news,false -hrbrmstr,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -hrbrmstr,newsmast.social,Engineering,engineering,false -hrbrmstr,newsmast.social,Government & Policy,government_policy,false -hrbrmstr,newsmast.social,Healthcare,healthcare,false -hrbrmstr,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false -hrbrmstr,newsmast.social,Law & Justice,law_justice,false -hrbrmstr,newsmast.social,Journalism & Comment,news_comment_data,false -hrbrmstr,newsmast.social,Politics,politics,false -hrbrmstr,newsmast.social,Poverty & Inequality,poverty_inequality,false -hrbrmstr,newsmast.social,Programming,programming,false -hrbrmstr,newsmast.social,Social Media,social_media,false -hrbrmstr,newsmast.social,Ukraine Invasion,ukraine_invasion,false -hrbrmstr,newsmast.social,US Politics,us_politics,false -hrbrmstr,newsmast.social,Weather,weather,false -hrbrmstr,newsmast.social,Technology,technology,true -WhiteMode,newsmast.social,Technology,technology,false -WhiteMode,newsmast.social,Programming,programming,false -boznette,wank.social,Creative Arts,creative_arts,false -boznette,wank.social,Food & Drink,food_drink,false -boznette,wank.social,Mental Health & Wellbeing,mental_health_wellbeing,false -boznette,wank.social,Nature & Wildlife,nature_wildlife,false -boznette,wank.social,Pets,pets,false -boznette,wank.social,Puzzles,puzzles,false -boznette,wank.social,Travel,travel,false -boznette,wank.social,Humour,humour,true -chrishancock,mas.to,Books & Literature,books_literature,false -jarulf,mstdn.social,Social Media,social_media,false -Yorick,mastodon.nl,Humanities,humanities,false -Yorick,mastodon.nl,Immigrants Rights,immigrants_rights,false -Yorick,mastodon.nl,Indigenous Peoples,indigenous_peoples,false -Yorick,mastodon.nl,Law & Justice,law_justice,false -Yorick,mastodon.nl,Mathematics,mathematics,false -Yorick,mastodon.nl,Music,music,false -Yorick,mastodon.nl,Philosophy,philosophy,false -Yorick,mastodon.nl,Physics,physics,false -Yorick,mastodon.nl,Poverty & Inequality,poverty_inequality,false -Yorick,mastodon.nl,Programming,programming,false -Yorick,mastodon.nl,Social Sciences,social_sciences,false -Yorick,mastodon.nl,Technology,technology,false -Yorick,mastodon.nl,Visual Arts,visual_arts,false -Yorick,mastodon.nl,Science,science,true -skk,newsmast.social,Activism & Civil Rights,activism_civil_rights,false -skk,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false -skk,newsmast.social,Biology,biology,false -linksinhetnieuws,mastodon.nl,Democracy & Human Rights,democracy_human_rights,false -linksinhetnieuws,mastodon.nl,Government & Policy,government_policy,false -linksinhetnieuws,mastodon.nl,Journalism & Comment,news_comment_data,false -wageslave64,mastodon.online,AI,ai,false -JimJQ,newsmast.social,Breaking News,breaking_news,false -JimJQ,newsmast.social,Climate change,climate_change,false -JimJQ,newsmast.social,Politics,politics,false -JimJQ,newsmast.social,Science,science,false -JimJQ,newsmast.social,Technology,technology,false -JimJQ,newsmast.social,US Politics,us_politics,true -wageslave64,mastodon.online,Democracy & Human Rights,democracy_human_rights,false -wageslave64,mastodon.online,Physics,physics,false -wageslave64,mastodon.online,Science,science,false -wageslave64,mastodon.online,Social Media,social_media,false -wageslave64,mastodon.online,Technology,technology,false -wageslave64,mastodon.online,Ukraine Invasion,ukraine_invasion,false -wageslave64,mastodon.online,Breaking News,breaking_news,true -linksinhetnieuws,mastodon.nl,Politics,politics,false -linksinhetnieuws,mastodon.nl,Breaking News,breaking_news,true -mjgardner,social.sdf.org,Engineering,engineering,false -Recently_Coco,mastodon.social,Democracy & Human Rights,democracy_human_rights,false -Recently_Coco,mastodon.social,"Hunger, Disease & Water",hunger_disease_water,false -Recently_Coco,mastodon.social,Journalism & Comment,news_comment_data,false -Recently_Coco,mastodon.social,Poverty & Inequality,poverty_inequality,false -Recently_Coco,mastodon.social,Social Media,social_media,false -Recently_Coco,mastodon.social,Ukraine Invasion,ukraine_invasion,false -Recently_Coco,mastodon.social,Weather,weather,false -Recently_Coco,mastodon.social,Breaking News,breaking_news,true -Big_AL,mastodon.social,Technology,technology,false -Big_AL,mastodon.social,Breaking News,breaking_news,false -Big_AL,mastodon.social,Markets & Finance,markets_finance,false -Big_AL,mastodon.social,Politics,politics,false -Big_AL,mastodon.social,Social Media,social_media,false -Big_AL,mastodon.social,Weather,weather,false -Big_AL,mastodon.social,US Politics,us_politics,true -instepphysio,newsmast.social,Politics,politics,false -instepphysio,newsmast.social,Poverty & Inequality,poverty_inequality,false -instepphysio,newsmast.social,US Politics,us_politics,false -instepphysio,newsmast.social,Energy & Pollution,energy_pollution,true -vianxonata,musician.social,Democracy & Human Rights,democracy_human_rights,false -vianxonata,musician.social,History,history,false -vianxonata,musician.social,Philosophy,philosophy,false -vianxonata,musician.social,Social Sciences,social_sciences,false -vianxonata,musician.social,Humanities,humanities,true -wfryer,mastodon.cloud,Books & Literature,books_literature,false -wfryer,mastodon.cloud,Breaking News,breaking_news,false -wfryer,mastodon.cloud,Democracy & Human Rights,democracy_human_rights,false -wfryer,mastodon.cloud,Journalism & Comment,news_comment_data,false -wfryer,mastodon.cloud,Poverty & Inequality,poverty_inequality,false -wfryer,mastodon.cloud,Space,space,false -wfryer,mastodon.cloud,US Politics,us_politics,false -wfryer,mastodon.cloud,Visual Arts,visual_arts,false -wfryer,mastodon.cloud,AI,ai,true -wfryer,newsmast.social,AI,ai,false -wfryer,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -wfryer,newsmast.social,Philosophy,philosophy,false -wfryer,newsmast.social,Social Sciences,social_sciences,false -wfryer,newsmast.social,History,history,true -john_90,newsmast.social,Breaking News,breaking_news,false -john_90,newsmast.social,Journalism & Comment,news_comment_data,false -john_90,newsmast.social,Ukraine Invasion,ukraine_invasion,false -john_90,newsmast.social,Weather,weather,false -john_90,newsmast.social,Social Media,social_media,true -Nelfan,mastodon.zaclys.com,Architecture & Design,architecture_design,false -Nelfan,mastodon.zaclys.com,Democracy & Human Rights,democracy_human_rights,false -Nelfan,mastodon.zaclys.com,Government & Policy,government_policy,false -Nelfan,mastodon.zaclys.com,History,history,false -Nelfan,mastodon.zaclys.com,Humanities,humanities,false -Nelfan,mastodon.zaclys.com,Law & Justice,law_justice,false -Nelfan,mastodon.zaclys.com,Music,music,false -Nelfan,mastodon.zaclys.com,Journalism & Comment,news_comment_data,false -Nelfan,mastodon.zaclys.com,Performing Arts,performing_arts,false -Nelfan,mastodon.zaclys.com,Philosophy,philosophy,false -Nelfan,mastodon.zaclys.com,Programming,programming,false -Nelfan,mastodon.zaclys.com,Social Sciences,social_sciences,false -Nelfan,mastodon.zaclys.com,Books & Literature,books_literature,true -ydydya,mastodon.social,Journalism & Comment,news_comment_data,false -ydydya,mastodon.social,Social Media,social_media,false -ydydya,mastodon.social,Ukraine Invasion,ukraine_invasion,false -ydydya,mastodon.social,Weather,weather,false -ydydya,mastodon.social,Breaking News,breaking_news,true -r_morgan,mstdn.ca,Technology,technology,false -Nelfan,mastodon.zaclys.com,Technology,technology,false -Nelfan,mastodon.zaclys.com,Ukraine Invasion,ukraine_invasion,false -Nelfan,mastodon.zaclys.com,Visual Arts,visual_arts,false -dogdoggie,mastodon.social,Democracy & Human Rights,democracy_human_rights,false -dogdoggie,mastodon.social,Energy & Pollution,energy_pollution,false -dogdoggie,mastodon.social,Engineering,engineering,false -skk,newsmast.social,Books & Literature,books_literature,false -dogdoggie,mastodon.social,Government & Policy,government_policy,false -dogdoggie,mastodon.social,Healthcare,healthcare,false -okwithmydecay,en.osm.town,Biodiversity & Rewilding,biodiversity_rewilding,false -okwithmydecay,en.osm.town,Climate change,climate_change,false -Ronnie,mastodon.social,Biology,biology,false -Ronnie,mastodon.social,Chemistry,chemistry,false -Ronnie,mastodon.social,Mathematics,mathematics,false -Ronnie,mastodon.social,Philosophy,philosophy,false -Ronnie,mastodon.social,Physics,physics,false -Ronnie,mastodon.social,Science,science,false -Ronnie,mastodon.social,Space,space,false -Ronnie,mastodon.social,Technology,technology,false -Ronnie,mastodon.social,US Sport,us_sport,false -Ronnie,mastodon.social,History,history,true -okwithmydecay,en.osm.town,Movies,movies,false -okwithmydecay,en.osm.town,Programming,programming,false -jensantarelli,hachyderm.io,Visual Arts,visual_arts,true -sardo,mastodon.social,AI,ai,false -sardo,mastodon.social,Democracy & Human Rights,democracy_human_rights,false -sardo,mastodon.social,Engineering,engineering,false -sardo,mastodon.social,Journalism & Comment,news_comment_data,false -sardo,mastodon.social,Programming,programming,false -sardo,mastodon.social,Science,science,false -sardo,mastodon.social,Technology,technology,false -sardo,mastodon.social,Ukraine Invasion,ukraine_invasion,false -sardo,mastodon.social,Breaking News,breaking_news,true -gtripsa,tech.lgbt,Mathematics,mathematics,false -gtripsa,tech.lgbt,Journalism & Comment,news_comment_data,false -gtripsa,tech.lgbt,Social Media,social_media,false -gtripsa,tech.lgbt,Ukraine Invasion,ukraine_invasion,false -gtripsa,tech.lgbt,Weather,weather,false -gtripsa,tech.lgbt,Breaking News,breaking_news,true -Natsurath,newsmast.social,Activism & Civil Rights,activism_civil_rights,false -Natsurath,newsmast.social,Biology,biology,false -Natsurath,newsmast.social,Black Voices,black_voices,false -Natsurath,newsmast.social,Chemistry,chemistry,false -Natsurath,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -Natsurath,newsmast.social,Engineering,engineering,false -Natsurath,newsmast.social,Food & Drink,food_drink,false -Natsurath,newsmast.social,Gaming,gaming,false -Natsurath,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false -Natsurath,newsmast.social,Mathematics,mathematics,false -Natsurath,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false -Natsurath,newsmast.social,Movies,movies,false -Natsurath,newsmast.social,Nature & Wildlife,nature_wildlife,false -Natsurath,newsmast.social,Performing Arts,performing_arts,false -Natsurath,newsmast.social,Physics,physics,false -Natsurath,newsmast.social,Poverty & Inequality,poverty_inequality,false -Natsurath,newsmast.social,Programming,programming,false -Natsurath,newsmast.social,Science,science,false -Natsurath,newsmast.social,Social Media,social_media,false -Natsurath,newsmast.social,Space,space,false -Natsurath,newsmast.social,Technology,technology,false -Natsurath,newsmast.social,Travel,travel,false -Natsurath,newsmast.social,TV & Radio,tv_radio,false -Natsurath,newsmast.social,Ukraine Invasion,ukraine_invasion,false -Natsurath,newsmast.social,Weather,weather,false -Natsurath,newsmast.social,Women’s Voices,women_voices,false -Natsurath,newsmast.social,LGBTQ+,lgbtq,true -guncle,mastodon.social,Mathematics,mathematics,false -guncle,mastodon.social,Physics,physics,false -guncle,mastodon.social,Space,space,false -guncle,mastodon.social,Technology,technology,false -ibrahimsert,mastodon.social,AI,ai,false -ibrahimsert,mastodon.social,Biology,biology,false -ibrahimsert,mastodon.social,Engineering,engineering,false -ibrahimsert,mastodon.social,Programming,programming,false -ibrahimsert,mastodon.social,Science,science,true -guncle,mastodon.social,Science,science,true -innocent_bystander,innocent_bystander@hessen.social,Academia & Research,academia_research,false -innocent_bystander,innocent_bystander@hessen.social,Business,business,false -innocent_bystander,innocent_bystander@hessen.social,Government & Policy,government_policy,false -innocent_bystander,innocent_bystander@hessen.social,Markets & Finance,markets_finance,false -innocent_bystander,innocent_bystander@hessen.social,Journalism & Comment,news_comment_data,false -innocent_bystander,innocent_bystander@hessen.social,Science,science,false -innocent_bystander,innocent_bystander@hessen.social,Technology,technology,false -innocent_bystander,innocent_bystander@hessen.social,Breaking News,breaking_news,true -marbletravis,mastodon.world,Breaking News,breaking_news,false -marbletravis,mastodon.world,Humanities,humanities,false -marbletravis,mastodon.world,Journalism & Comment,news_comment_data,false -marbletravis,mastodon.world,Social Sciences,social_sciences,false -marbletravis,mastodon.world,Democracy & Human Rights,democracy_human_rights,true -eatyourglory,mastodon.uno,Democracy & Human Rights,democracy_human_rights,false -eatyourglory,mastodon.uno,Government & Policy,government_policy,false -eatyourglory,mastodon.uno,Law & Justice,law_justice,false -eatyourglory,mastodon.uno,Politics,politics,false -eatyourglory,mastodon.uno,Science,science,false -eatyourglory,mastodon.uno,Space,space,false -eatyourglory,mastodon.uno,US Politics,us_politics,false -eatyourglory,mastodon.uno,Technology,technology,true -azizbnchikh,newsmast.social,AI,ai,false -azizbnchikh,newsmast.social,Engineering,engineering,false -azizbnchikh,newsmast.social,Healthcare,healthcare,false -azizbnchikh,newsmast.social,Politics,politics,false -azizbnchikh,newsmast.social,US Politics,us_politics,false -azizbnchikh,newsmast.social,Academia & Research,academia_research,true -skk,newsmast.social,Climate change,climate_change,false -skk,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -skk,newsmast.social,Energy & Pollution,energy_pollution,false -skk,newsmast.social,Environment,environment,false -zoinks,gts.scoobysnack.net,Disabled Voices,disabled_voices,false -zoinks,gts.scoobysnack.net,LGBTQ+,lgbtq,false -zoinks,gts.scoobysnack.net,Movies,movies,false -zoinks,gts.scoobysnack.net,TV & Radio,tv_radio,false -zoinks,gts.scoobysnack.net,Technology,technology,true -hypermug1,blips2.club,Breaking News,breaking_news,false -hypermug1,blips2.club,Government & Policy,government_policy,false -hypermug1,blips2.club,Law & Justice,law_justice,false -hypermug1,blips2.club,Journalism & Comment,news_comment_data,false -hypermug1,blips2.club,Technology,technology,true -skk,newsmast.social,Gaming,gaming,false -skk,newsmast.social,History,history,false -skk,newsmast.social,Humanities,humanities,false -skk,newsmast.social,Immigrants Rights,immigrants_rights,false -Tyom,newsmast.social,Architecture & Design,architecture_design,false -NorthWalesPhoto,toot.wales,AI,ai,false -NorthWalesPhoto,toot.wales,Programming,programming,false -NorthWalesPhoto,toot.wales,Space,space,false -NorthWalesPhoto,toot.wales,Technology,technology,false -NorthWalesPhoto,toot.wales,Engineering,engineering,true -WhiteMode,newsmast.social,Engineering,engineering,false -AlexiaPonchet,newsmast.social,Photography,photography,false -bbdjgfhjhhg,newsmast.social,AI,ai,false -jramompichel2023,mastodon.social,Movies,movies,false -ewangilchrist,fosstodon.org,Academia & Research,academia_research,false -ewangilchrist,fosstodon.org,AI,ai,false -ewangilchrist,fosstodon.org,Biodiversity & Rewilding,biodiversity_rewilding,false -ewangilchrist,fosstodon.org,Biology,biology,false -ewangilchrist,fosstodon.org,Breaking News,breaking_news,false -ewangilchrist,fosstodon.org,Chemistry,chemistry,false -ewangilchrist,fosstodon.org,Climate change,climate_change,false -ewangilchrist,fosstodon.org,Energy & Pollution,energy_pollution,false -ewangilchrist,fosstodon.org,Engineering,engineering,false -ewangilchrist,fosstodon.org,Environment,environment,false -ewangilchrist,fosstodon.org,Government & Policy,government_policy,false -ewangilchrist,fosstodon.org,Healthcare,healthcare,false -ewangilchrist,fosstodon.org,Law & Justice,law_justice,false -ewangilchrist,fosstodon.org,Mathematics,mathematics,false -ewangilchrist,fosstodon.org,Journalism & Comment,news_comment_data,false -ewangilchrist,fosstodon.org,Physics,physics,false -ewangilchrist,fosstodon.org,Politics,politics,false -ewangilchrist,fosstodon.org,Science,science,false -ewangilchrist,fosstodon.org,Social Media,social_media,false -ewangilchrist,fosstodon.org,Space,space,false -ewangilchrist,fosstodon.org,Technology,technology,false -ewangilchrist,fosstodon.org,Ukraine Invasion,ukraine_invasion,false -ewangilchrist,fosstodon.org,US Politics,us_politics,false -ewangilchrist,fosstodon.org,Weather,weather,false -axehandle,mastodon.social,Activism & Civil Rights,activism_civil_rights,false -ewangilchrist,fosstodon.org,Programming,programming,true -axehandle,mastodon.social,Breaking News,breaking_news,false -axehandle,mastodon.social,History,history,false -axehandle,mastodon.social,Humanities,humanities,false -axehandle,mastodon.social,Technology,technology,false -axehandle,mastodon.social,Journalism & Comment,news_comment_data,true -tenndawa,www.lindyhop.community,Journalism & Comment,news_comment_data,false -tenndawa,www.lindyhop.community,Ukraine Invasion,ukraine_invasion,false -adam,activity.kammeyer.me,Breaking News,breaking_news,false -adam,activity.kammeyer.me,Business,business,false -adam,activity.kammeyer.me,Government & Policy,government_policy,false -adam,activity.kammeyer.me,Healthcare,healthcare,false -adam,activity.kammeyer.me,Programming,programming,false -adam,activity.kammeyer.me,US Politics,us_politics,false -adam,activity.kammeyer.me,Technology,technology,true -cowboy1,social.vivaldi.net,Academia & Research,academia_research,false -cowboy1,social.vivaldi.net,Democracy & Human Rights,democracy_human_rights,false -cowboy1,social.vivaldi.net,Government & Policy,government_policy,false -cowboy1,social.vivaldi.net,Healthcare,healthcare,false -cowboy1,social.vivaldi.net,"Hunger, Disease & Water",hunger_disease_water,false -cowboy1,social.vivaldi.net,Law & Justice,law_justice,false -cowboy1,social.vivaldi.net,Poverty & Inequality,poverty_inequality,false -cowboy1,social.vivaldi.net,Social Media,social_media,false -cowboy1,social.vivaldi.net,Ukraine Invasion,ukraine_invasion,false -cowboy1,social.vivaldi.net,Weather,weather,false -cowboy1,social.vivaldi.net,Politics,politics,true -ThirdTime,newsmast.social,Creative Arts,creative_arts,false -ThirdTime,newsmast.social,Programming,programming,false -dogdoggie,mastodon.social,"Hunger, Disease & Water",hunger_disease_water,false -dogdoggie,mastodon.social,Law & Justice,law_justice,false -dogdoggie,mastodon.social,Journalism & Comment,news_comment_data,false -dogdoggie,mastodon.social,Politics,politics,false -dogdoggie,mastodon.social,Poverty & Inequality,poverty_inequality,false -dogdoggie,mastodon.social,Science,science,false -dogdoggie,mastodon.social,Social Media,social_media,false -dogdoggie,mastodon.social,Space,space,false -dogdoggie,mastodon.social,Technology,technology,false -dogdoggie,mastodon.social,Ukraine Invasion,ukraine_invasion,false -absolute_tortilla,mastodon.social,Football,football,true -dogdoggie,mastodon.social,US Politics,us_politics,false -dogdoggie,mastodon.social,Weather,weather,false -dogdoggie,mastodon.social,Environment,environment,true -dashrandom,kopiti.am,AI,ai,false -dashrandom,kopiti.am,Business,business,false -dashrandom,kopiti.am,Government & Policy,government_policy,false -dashrandom,kopiti.am,Humanities,humanities,false -dashrandom,kopiti.am,Markets & Finance,markets_finance,false -dashrandom,kopiti.am,Politics,politics,false -david,quakers.social,Academia & Research,academia_research,false -david,quakers.social,Activism & Civil Rights,activism_civil_rights,false -david,quakers.social,AI,ai,false -david,quakers.social,Architecture & Design,architecture_design,false -david,quakers.social,Biodiversity & Rewilding,biodiversity_rewilding,false -david,quakers.social,Biology,biology,false -david,quakers.social,Black Voices,black_voices,false -david,quakers.social,Books & Literature,books_literature,false -david,quakers.social,Breaking News,breaking_news,false -david,quakers.social,Business,business,false -david,quakers.social,Chemistry,chemistry,false -david,quakers.social,Climate change,climate_change,false -david,quakers.social,Democracy & Human Rights,democracy_human_rights,false -david,quakers.social,Disabled Voices,disabled_voices,false -david,quakers.social,Energy & Pollution,energy_pollution,false -david,quakers.social,Engineering,engineering,false -david,quakers.social,Environment,environment,false -david,quakers.social,Gaming,gaming,false -david,quakers.social,Government & Policy,government_policy,false -david,quakers.social,Healthcare,healthcare,false -david,quakers.social,History,history,false -david,quakers.social,Humanities,humanities,false -david,quakers.social,"Hunger, Disease & Water",hunger_disease_water,false -david,quakers.social,Immigrants Rights,immigrants_rights,false -david,quakers.social,Indigenous Peoples,indigenous_peoples,false -david,quakers.social,Law & Justice,law_justice,false -david,quakers.social,Markets & Finance,markets_finance,false -david,quakers.social,Mathematics,mathematics,false -david,quakers.social,Movies,movies,false -david,quakers.social,Music,music,false -david,quakers.social,Journalism & Comment,news_comment_data,false -david,quakers.social,Performing Arts,performing_arts,false -david,quakers.social,Philosophy,philosophy,false -david,quakers.social,Photography,photography,false -david,quakers.social,Physics,physics,false -david,quakers.social,Politics,politics,false -david,quakers.social,Poverty & Inequality,poverty_inequality,false -david,quakers.social,Programming,programming,false -david,quakers.social,Science,science,false -david,quakers.social,Social Media,social_media,false -david,quakers.social,Social Sciences,social_sciences,false -david,quakers.social,Space,space,false -david,quakers.social,Technology,technology,false -david,quakers.social,TV & Radio,tv_radio,false -david,quakers.social,Ukraine Invasion,ukraine_invasion,false -david,quakers.social,US Politics,us_politics,false -david,quakers.social,Visual Arts,visual_arts,false -david,quakers.social,Weather,weather,false -david,quakers.social,Women’s Voices,women_voices,false -david,quakers.social,Workers Rights,workers_rights,false -david,quakers.social,LGBTQ+,lgbtq,true -dashrandom,kopiti.am,Programming,programming,false -dashrandom,kopiti.am,Science,science,false -dashrandom,kopiti.am,Social Sciences,social_sciences,false -dashrandom,kopiti.am,Technology,technology,false -absolute_tortilla,mastodon.social,Biodiversity & Rewilding,biodiversity_rewilding,false -absolute_tortilla,mastodon.social,Biology,biology,false -absolute_tortilla,mastodon.social,Breaking News,breaking_news,false -tomand,toot.community,AI,ai,false -tomand,toot.community,Books & Literature,books_literature,false -tomand,toot.community,Climate change,climate_change,false -tomand,toot.community,Science,science,false -tomand,toot.community,Technology,technology,false -tomand,toot.community,Visual Arts,visual_arts,true -absolute_tortilla,mastodon.social,Business,business,false -absolute_tortilla,mastodon.social,Chemistry,chemistry,false -absolute_tortilla,mastodon.social,Climate change,climate_change,false -absolute_tortilla,mastodon.social,Creative Arts,creative_arts,false -absolute_tortilla,mastodon.social,Democracy & Human Rights,democracy_human_rights,false -absolute_tortilla,mastodon.social,Energy & Pollution,energy_pollution,false -absolute_tortilla,mastodon.social,Environment,environment,false -absolute_tortilla,mastodon.social,Food & Drink,food_drink,false -absolute_tortilla,mastodon.social,History,history,false -absolute_tortilla,mastodon.social,Humanities,humanities,false -absolute_tortilla,mastodon.social,Humour,humour,false -absolute_tortilla,mastodon.social,"Hunger, Disease & Water",hunger_disease_water,false -absolute_tortilla,mastodon.social,Markets & Finance,markets_finance,false -dashrandom,kopiti.am,Breaking News,breaking_news,true -exerra,indieweb.social,Architecture & Design,architecture_design,false -skk,newsmast.social,Indigenous Peoples,indigenous_peoples,false -absolute_tortilla,mastodon.social,Mathematics,mathematics,false -absolute_tortilla,mastodon.social,Mental Health & Wellbeing,mental_health_wellbeing,false -absolute_tortilla,mastodon.social,Nature & Wildlife,nature_wildlife,false -absolute_tortilla,mastodon.social,Journalism & Comment,news_comment_data,false -absolute_tortilla,mastodon.social,Pets,pets,false -absolute_tortilla,mastodon.social,Philosophy,philosophy,false -absolute_tortilla,mastodon.social,Physics,physics,false -absolute_tortilla,mastodon.social,Poverty & Inequality,poverty_inequality,false -absolute_tortilla,mastodon.social,Puzzles,puzzles,false -absolute_tortilla,mastodon.social,Science,science,false -absolute_tortilla,mastodon.social,Social Media,social_media,false -absolute_tortilla,mastodon.social,Social Sciences,social_sciences,false -absolute_tortilla,mastodon.social,Space,space,false -absolute_tortilla,mastodon.social,Sport,sport,false -absolute_tortilla,mastodon.social,Travel,travel,false -absolute_tortilla,mastodon.social,Ukraine Invasion,ukraine_invasion,false -absolute_tortilla,mastodon.social,US Sport,us_sport,false -absolute_tortilla,mastodon.social,Weather,weather,false -absolute_tortilla,mastodon.social,Workers Rights,workers_rights,false -okwithmydecay,en.osm.town,Technology,technology,false -okwithmydecay,en.osm.town,Music,music,true -andrew_tribe,me.dm,Business,business,false -j_zim,mastodon.uno,Social Media,social_media,false -j_zim,mastodon.uno,Technology,technology,false -j_zim,mastodon.uno,Ukraine Invasion,ukraine_invasion,false -j_zim,mastodon.uno,Weather,weather,false -bustouttheguillotines,bustouttheguillotines@mastodon.social,Academia & Research,academia_research,false -bustouttheguillotines,bustouttheguillotines@mastodon.social,Activism & Civil Rights,activism_civil_rights,false -bustouttheguillotines,bustouttheguillotines@mastodon.social,Biodiversity & Rewilding,biodiversity_rewilding,false -bustouttheguillotines,bustouttheguillotines@mastodon.social,Books & Literature,books_literature,false -downbytheseasid,mstdn.social,Biology,biology,false -downbytheseasid,mstdn.social,Activism & Civil Rights,activism_civil_rights,false -downbytheseasid,mstdn.social,AI,ai,false -downbytheseasid,mstdn.social,Black Voices,black_voices,false -downbytheseasid,mstdn.social,Architecture & Design,architecture_design,false -downbytheseasid,mstdn.social,Books & Literature,books_literature,false -downbytheseasid,mstdn.social,Biodiversity & Rewilding,biodiversity_rewilding,false -downbytheseasid,mstdn.social,Chemistry,chemistry,false -downbytheseasid,mstdn.social,Climate change,climate_change,false -downbytheseasid,mstdn.social,Biology,biology,false -downbytheseasid,mstdn.social,Black Voices,black_voices,false -downbytheseasid,mstdn.social,Democracy & Human Rights,democracy_human_rights,false -downbytheseasid,mstdn.social,Books & Literature,books_literature,false -downbytheseasid,mstdn.social,Chemistry,chemistry,false -downbytheseasid,mstdn.social,Disabled Voices,disabled_voices,false -downbytheseasid,mstdn.social,Climate change,climate_change,false -downbytheseasid,mstdn.social,Democracy & Human Rights,democracy_human_rights,false -downbytheseasid,mstdn.social,Energy & Pollution,energy_pollution,false -downbytheseasid,mstdn.social,Disabled Voices,disabled_voices,false -downbytheseasid,mstdn.social,Engineering,engineering,false -downbytheseasid,mstdn.social,Energy & Pollution,energy_pollution,false -downbytheseasid,mstdn.social,Engineering,engineering,false -downbytheseasid,mstdn.social,Environment,environment,false -downbytheseasid,mstdn.social,Environment,environment,false -downbytheseasid,mstdn.social,History,history,false -downbytheseasid,mstdn.social,History,history,false -downbytheseasid,mstdn.social,Humanities,humanities,false -downbytheseasid,mstdn.social,Humanities,humanities,false -downbytheseasid,mstdn.social,"Hunger, Disease & Water",hunger_disease_water,false -downbytheseasid,mstdn.social,Immigrants Rights,immigrants_rights,false -downbytheseasid,mstdn.social,Indigenous Peoples,indigenous_peoples,false -downbytheseasid,mstdn.social,"Hunger, Disease & Water",hunger_disease_water,false -downbytheseasid,mstdn.social,LGBTQ+,lgbtq,false -downbytheseasid,mstdn.social,Immigrants Rights,immigrants_rights,false -downbytheseasid,mstdn.social,Mathematics,mathematics,false -downbytheseasid,mstdn.social,Indigenous Peoples,indigenous_peoples,false -downbytheseasid,mstdn.social,Music,music,false -downbytheseasid,mstdn.social,LGBTQ+,lgbtq,false -downbytheseasid,mstdn.social,Journalism & Comment,news_comment_data,false -downbytheseasid,mstdn.social,Performing Arts,performing_arts,false -downbytheseasid,mstdn.social,Mathematics,mathematics,false -downbytheseasid,mstdn.social,Philosophy,philosophy,false -downbytheseasid,mstdn.social,Music,music,false -downbytheseasid,mstdn.social,Photography,photography,false -downbytheseasid,mstdn.social,Physics,physics,false -downbytheseasid,mstdn.social,Journalism & Comment,news_comment_data,false -downbytheseasid,mstdn.social,Poverty & Inequality,poverty_inequality,false -downbytheseasid,mstdn.social,Performing Arts,performing_arts,false -downbytheseasid,mstdn.social,Programming,programming,false -downbytheseasid,mstdn.social,Philosophy,philosophy,false -downbytheseasid,mstdn.social,Science,science,false -downbytheseasid,mstdn.social,Photography,photography,false -downbytheseasid,mstdn.social,Social Media,social_media,false -downbytheseasid,mstdn.social,Physics,physics,false -downbytheseasid,mstdn.social,Social Sciences,social_sciences,false -downbytheseasid,mstdn.social,Space,space,false -downbytheseasid,mstdn.social,Poverty & Inequality,poverty_inequality,false -downbytheseasid,mstdn.social,Technology,technology,false -downbytheseasid,mstdn.social,Breaking News,breaking_news,true -bustouttheguillotines,bustouttheguillotines@mastodon.social,Climate change,climate_change,false -bustouttheguillotines,bustouttheguillotines@mastodon.social,Democracy & Human Rights,democracy_human_rights,false -bustouttheguillotines,bustouttheguillotines@mastodon.social,Energy & Pollution,energy_pollution,false -bustouttheguillotines,bustouttheguillotines@mastodon.social,Environment,environment,false -bustouttheguillotines,bustouttheguillotines@mastodon.social,Government & Policy,government_policy,false -bustouttheguillotines,bustouttheguillotines@mastodon.social,Healthcare,healthcare,false -bustouttheguillotines,bustouttheguillotines@mastodon.social,Breaking News,breaking_news,true -downbytheseasid,mstdn.social,Programming,programming,false -downbytheseasid,mstdn.social,Science,science,false -downbytheseasid,mstdn.social,Social Media,social_media,false -downbytheseasid,mstdn.social,Social Sciences,social_sciences,false -downbytheseasid,mstdn.social,Space,space,false -downbytheseasid,mstdn.social,Technology,technology,false -downbytheseasid,mstdn.social,Ukraine Invasion,ukraine_invasion,false -downbytheseasid,mstdn.social,Visual Arts,visual_arts,false -downbytheseasid,mstdn.social,Weather,weather,false -downbytheseasid,mstdn.social,Women’s Voices,women_voices,false -Lampeter,mastodon.online,Breaking News,breaking_news,false -Lampeter,mastodon.online,Humanities,humanities,false -Lampeter,mastodon.online,Journalism & Comment,news_comment_data,false -Lampeter,mastodon.online,Social Sciences,social_sciences,false -Lampeter,mastodon.online,Technology,technology,false -Lampeter,mastodon.online,Philosophy,philosophy,true -jarulf,mstdn.social,Biodiversity & Rewilding,biodiversity_rewilding,false -jarulf,mstdn.social,Breaking News,breaking_news,false -jarulf,mstdn.social,Climate change,climate_change,false -jarulf,mstdn.social,History,history,false -jarulf,mstdn.social,Space,space,false -jarulf,mstdn.social,Books & Literature,books_literature,true -ewangilchrist,fosstodon.org,Academia & Research,academia_research,false -ewangilchrist,fosstodon.org,AI,ai,false -ewangilchrist,fosstodon.org,Biodiversity & Rewilding,biodiversity_rewilding,false -ewangilchrist,fosstodon.org,Biology,biology,false -ewangilchrist,fosstodon.org,Breaking News,breaking_news,false -ewangilchrist,fosstodon.org,Chemistry,chemistry,false -ewangilchrist,fosstodon.org,Climate change,climate_change,false -ewangilchrist,fosstodon.org,Energy & Pollution,energy_pollution,false -ewangilchrist,fosstodon.org,Engineering,engineering,false -ewangilchrist,fosstodon.org,Environment,environment,false -ewangilchrist,fosstodon.org,Government & Policy,government_policy,false -ewangilchrist,fosstodon.org,Healthcare,healthcare,false -ewangilchrist,fosstodon.org,Law & Justice,law_justice,false -ewangilchrist,fosstodon.org,Mathematics,mathematics,false -ewangilchrist,fosstodon.org,Journalism & Comment,news_comment_data,false -ewangilchrist,fosstodon.org,Physics,physics,false -ewangilchrist,fosstodon.org,Politics,politics,false -ewangilchrist,fosstodon.org,Programming,programming,false -ewangilchrist,fosstodon.org,Science,science,false -ewangilchrist,fosstodon.org,Social Media,social_media,false -ewangilchrist,fosstodon.org,Space,space,false -ewangilchrist,fosstodon.org,Technology,technology,false -ewangilchrist,fosstodon.org,Ukraine Invasion,ukraine_invasion,false -ewangilchrist,fosstodon.org,US Politics,us_politics,false -ewangilchrist,fosstodon.org,Weather,weather,false -CruelFate,mas.to,Climate change,climate_change,false -CruelFate,mas.to,Democracy & Human Rights,democracy_human_rights,false -CruelFate,mas.to,Environment,environment,false -CruelFate,mas.to,Technology,technology,false -CruelFate,mas.to,Science,science,true -rnp,mastodon.social,Activism & Civil Rights,activism_civil_rights,false -rnp,mastodon.social,Biology,biology,false -rnp,mastodon.social,Breaking News,breaking_news,false -rnp,mastodon.social,Chemistry,chemistry,false -rnp,mastodon.social,Climate change,climate_change,false -rnp,mastodon.social,Democracy & Human Rights,democracy_human_rights,false -rnp,mastodon.social,Environment,environment,false -rnp,mastodon.social,Mathematics,mathematics,false -rnp,mastodon.social,Physics,physics,false -rnp,mastodon.social,Science,science,false -rnp,mastodon.social,Space,space,false -rnp,mastodon.social,Technology,technology,false -rnp,mastodon.social,Programming,programming,true -06fxsts,mastodon.online,Environment,environment,false -06fxsts,mastodon.online,Social Media,social_media,false -06fxsts,mastodon.online,Sport,sport,false -06fxsts,mastodon.online,US Sport,us_sport,false -06fxsts,mastodon.online,Breaking News,breaking_news,true -ThirdTime,newsmast.social,Food & Drink,food_drink,false -ThirdTime,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -ThirdTime,newsmast.social,History,history,false -ThirdTime,newsmast.social,Social Sciences,social_sciences,false -ThirdTime,newsmast.social,Gaming,gaming,false -ThirdTime,newsmast.social,Photography,photography,false -ThirdTime,newsmast.social,US Sport,us_sport,false -JAVPPT,newsmast.social,Technology,technology,false -JAVPPT,newsmast.social,Engineering,engineering,false -JAVPPT,newsmast.social,Physics,physics,false -JAVPPT,newsmast.social,Space,space,false -JAVPPT,newsmast.social,Mathematics,mathematics,false -JAVPPT,newsmast.social,Science,science,false -JAVPPT,newsmast.social,Social Sciences,social_sciences,false -JAVPPT,newsmast.social,History,history,false -JAVPPT,newsmast.social,Philosophy,philosophy,false -JAVPPT,newsmast.social,Humanities,humanities,false -JAVPPT,newsmast.social,Programming,programming,true -ThirdTime,newsmast.social,Politics,politics,false -JAVPPT,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -JAVPPT,newsmast.social,Poverty & Inequality,poverty_inequality,false -JAVPPT,newsmast.social,Politics,politics,false -JAVPPT,newsmast.social,US Politics,us_politics,false -JAVPPT,newsmast.social,Climate change,climate_change,false -JAVPPT,newsmast.social,Environment,environment,false -JAVPPT,newsmast.social,LGBTQ+,lgbtq,false -JAVPPT,newsmast.social,Business,business,false -JAVPPT,newsmast.social,Workers Rights,workers_rights,false -JAVPPT,newsmast.social,Gaming,gaming,false -JAVPPT,newsmast.social,Sport,sport,false -JAVPPT,newsmast.social,US Sport,us_sport,false -JAVPPT,newsmast.social,Food & Drink,food_drink,false -downbytheseasid,mstdn.social,Ukraine Invasion,ukraine_invasion,false -downbytheseasid,mstdn.social,Visual Arts,visual_arts,false -downbytheseasid,mstdn.social,Weather,weather,false -downbytheseasid,mstdn.social,Women’s Voices,women_voices,false -andrew_tribe,me.dm,Government & Policy,government_policy,false -andrew_tribe,me.dm,Programming,programming,false -andrew_tribe,me.dm,Technology,technology,false -andrew_tribe,me.dm,Breaking News,breaking_news,true -exerra,indieweb.social,Engineering,engineering,false -exerra,indieweb.social,Gaming,gaming,false -eprenen,mastodon.social,History,history,false -sandropereira,mastodon.social,Academia & Research,academia_research,false -sandropereira,mastodon.social,Books & Literature,books_literature,false -sandropereira,mastodon.social,Breaking News,breaking_news,false -sandropereira,mastodon.social,Climate change,climate_change,false -sandropereira,mastodon.social,Democracy & Human Rights,democracy_human_rights,false -sandropereira,mastodon.social,Energy & Pollution,energy_pollution,false -sandropereira,mastodon.social,Environment,environment,false -sandropereira,mastodon.social,Gaming,gaming,false -sandropereira,mastodon.social,Government & Policy,government_policy,false -sandropereira,mastodon.social,History,history,false -sandropereira,mastodon.social,Law & Justice,law_justice,false -sandropereira,mastodon.social,Movies,movies,false -sandropereira,mastodon.social,Music,music,false -sandropereira,mastodon.social,Journalism & Comment,news_comment_data,false -sandropereira,mastodon.social,Philosophy,philosophy,false -sandropereira,mastodon.social,Photography,photography,false -sandropereira,mastodon.social,Politics,politics,false -sandropereira,mastodon.social,Poverty & Inequality,poverty_inequality,false -sandropereira,mastodon.social,Social Sciences,social_sciences,false -sandropereira,mastodon.social,Technology,technology,false -sandropereira,mastodon.social,TV & Radio,tv_radio,false -sandropereira,mastodon.social,Visual Arts,visual_arts,false -sandropereira,mastodon.social,Architecture & Design,architecture_design,true -mattmoehr,newsmast.social,Books & Literature,books_literature,false -mattmoehr,newsmast.social,Football,football,false -mattmoehr,newsmast.social,History,history,false -mattmoehr,newsmast.social,Humanities,humanities,false -mattmoehr,newsmast.social,Mathematics,mathematics,false -mattmoehr,newsmast.social,Philosophy,philosophy,false -mattmoehr,newsmast.social,Photography,photography,false -bamatmar,mstdn.social,Climate change,climate_change,false -mattmoehr,newsmast.social,Physics,physics,false -mattmoehr,newsmast.social,Space,space,false -mattmoehr,newsmast.social,Sport,sport,false -mattmoehr,newsmast.social,US Sport,us_sport,false -mattmoehr,newsmast.social,Visual Arts,visual_arts,false -mattmoehr,newsmast.social,Social Sciences,social_sciences,true -Sylkeweb,newsmast.social,Energy & Pollution,energy_pollution,false -HarleyWarren,newsmast.social,Books & Literature,books_literature,false -HarleyWarren,newsmast.social,Breaking News,breaking_news,false -HarleyWarren,newsmast.social,Gaming,gaming,false -HarleyWarren,newsmast.social,Movies,movies,false -HarleyWarren,newsmast.social,Music,music,false -HarleyWarren,newsmast.social,Technology,technology,false -HarleyWarren,newsmast.social,Weather,weather,false -HarleyWarren,newsmast.social,Visual Arts,visual_arts,true -bamatmar,mstdn.social,Environment,environment,false -bamatmar,mstdn.social,Biodiversity & Rewilding,biodiversity_rewilding,false -bamatmar,mstdn.social,Energy & Pollution,energy_pollution,false -yi08,mastodon.social,AI,ai,false -yi08,mastodon.social,History,history,false -yi08,mastodon.social,Humanities,humanities,false -yi08,mastodon.social,Mathematics,mathematics,false -yi08,mastodon.social,Programming,programming,false -yi08,mastodon.social,Science,science,false -yi08,mastodon.social,Social Sciences,social_sciences,false -yi08,mastodon.social,Technology,technology,true -Sylkeweb,newsmast.social,Technology,technology,false -Sylkeweb,newsmast.social,Space,space,false -bamatmar,mstdn.social,Architecture & Design,architecture_design,false -Sylkeweb,newsmast.social,History,history,false -bamatmar,mstdn.social,Technology,technology,false -bamatmar,mstdn.social,Breaking News,breaking_news,true -bamatmar,mstdn.social,Nature & Wildlife,nature_wildlife,false -chemabasanta,techhub.social,Business,business,false -chemabasanta,techhub.social,Engineering,engineering,false -chemabasanta,techhub.social,Programming,programming,false -chemabasanta,techhub.social,Science,science,false -chemabasanta,techhub.social,Space,space,false -chemabasanta,techhub.social,Technology,technology,true -Sylkeweb,newsmast.social,Breaking News,breaking_news,false -Sylkeweb,newsmast.social,Ukraine Invasion,ukraine_invasion,false -Sylkeweb,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -Sylkeweb,newsmast.social,Government & Policy,government_policy,false -Sylkeweb,newsmast.social,Climate change,climate_change,false -Sylkeweb,newsmast.social,Humanities,humanities,false -ryan,mastodon.pirate.lgbt,Academia & Research,academia_research,false -ryan,mastodon.pirate.lgbt,AI,ai,false -ryan,mastodon.pirate.lgbt,Architecture & Design,architecture_design,false -ryan,mastodon.pirate.lgbt,Breaking News,breaking_news,false -ryan,mastodon.pirate.lgbt,Business,business,false -ryan,mastodon.pirate.lgbt,Government & Policy,government_policy,false -ryan,mastodon.pirate.lgbt,Healthcare,healthcare,false -ryan,mastodon.pirate.lgbt,Humanities,humanities,false -ryan,mastodon.pirate.lgbt,LGBTQ+,lgbtq,false -ryan,mastodon.pirate.lgbt,Mental Health & Wellbeing,mental_health_wellbeing,false -ryan,mastodon.pirate.lgbt,Journalism & Comment,news_comment_data,false -ryan,mastodon.pirate.lgbt,Performing Arts,performing_arts,false -ryan,mastodon.pirate.lgbt,Social Sciences,social_sciences,false -ryan,mastodon.pirate.lgbt,Space,space,false -ryan,mastodon.pirate.lgbt,Technology,technology,false -ryan,mastodon.pirate.lgbt,US Politics,us_politics,false -ryan,mastodon.pirate.lgbt,Puzzles,puzzles,true -eprenen,mastodon.social,Humanities,humanities,false -WelchE,newsmast.social,Biology,biology,false -WelchE,newsmast.social,Physics,physics,false -Pedrovic,mastodon.social,Government & Policy,government_policy,false -Pedrovic,mastodon.social,Law & Justice,law_justice,false -Pedrovic,mastodon.social,Journalism & Comment,news_comment_data,false -Pedrovic,mastodon.social,Politics,politics,false -Pedrovic,mastodon.social,Breaking News,breaking_news,true -WelchE,newsmast.social,Science,science,false -WelchE,newsmast.social,Space,space,false -WelchE,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,true -eprenen,mastodon.social,Mathematics,mathematics,false -eprenen,mastodon.social,Journalism & Comment,news_comment_data,false -exerra,indieweb.social,Music,music,false -exerra,indieweb.social,Photography,photography,false -exerra,indieweb.social,Science,science,false -exerra,indieweb.social,Technology,technology,false -exerra,indieweb.social,Programming,programming,true -eprenen,mastodon.social,Philosophy,philosophy,false -Simon,newsmast.social,Activism & Civil Rights,activism_civil_rights,false -Simon,newsmast.social,AI,ai,false -gdchill,sueden.social,Academia & Research,academia_research,false -gdchill,sueden.social,Architecture & Design,architecture_design,false -gdchill,sueden.social,Books & Literature,books_literature,false -gdchill,sueden.social,Business,business,false -gdchill,sueden.social,Football,football,false -gdchill,sueden.social,Government & Policy,government_policy,false -gdchill,sueden.social,Law & Justice,law_justice,false -gdchill,sueden.social,Markets & Finance,markets_finance,false -gdchill,sueden.social,Movies,movies,false -gdchill,sueden.social,Photography,photography,false -gdchill,sueden.social,Technology,technology,false -gdchill,sueden.social,TV & Radio,tv_radio,false -gdchill,sueden.social,Weather,weather,false -gdchill,sueden.social,Breaking News,breaking_news,true -eprenen,mastodon.social,Physics,physics,false -HariTulsidas,newsmast.social,Journalism & Comment,news_comment_data,false -HariTulsidas,newsmast.social,Social Media,social_media,false -HariTulsidas,newsmast.social,Breaking News,breaking_news,false -HariTulsidas,newsmast.social,Government & Policy,government_policy,false -HariTulsidas,newsmast.social,Academia & Research,academia_research,false -HariTulsidas,newsmast.social,Healthcare,healthcare,false -HariTulsidas,newsmast.social,Law & Justice,law_justice,false -HariTulsidas,newsmast.social,Politics,politics,false -HariTulsidas,newsmast.social,US Politics,us_politics,false -HariTulsidas,newsmast.social,Business,business,false -HariTulsidas,newsmast.social,Markets & Finance,markets_finance,false -HariTulsidas,newsmast.social,Books & Literature,books_literature,false -HariTulsidas,newsmast.social,Movies,movies,false -HariTulsidas,newsmast.social,Creative Arts,creative_arts,false -HariTulsidas,newsmast.social,Humour,humour,false -HariTulsidas,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false -HariTulsidas,newsmast.social,Travel,travel,false -HariTulsidas,newsmast.social,Activism & Civil Rights,activism_civil_rights,false -HariTulsidas,newsmast.social,Indigenous Peoples,indigenous_peoples,false -HariTulsidas,newsmast.social,Photography,photography,false -HariTulsidas,newsmast.social,TV & Radio,tv_radio,false -HariTulsidas,newsmast.social,Performing Arts,performing_arts,false -HariTulsidas,newsmast.social,Music,music,false -HariTulsidas,newsmast.social,Architecture & Design,architecture_design,false -HariTulsidas,newsmast.social,Visual Arts,visual_arts,false -HariTulsidas,newsmast.social,Biology,biology,false -eprenen,mastodon.social,Politics,politics,false -Simon,newsmast.social,Architecture & Design,architecture_design,false -Simon,newsmast.social,Biology,biology,false -Simon,newsmast.social,Black Voices,black_voices,false -Simon,newsmast.social,Books & Literature,books_literature,false -Simon,newsmast.social,Breaking News,breaking_news,false -skk,newsmast.social,Movies,movies,false -skk,newsmast.social,Music,music,false -skk,newsmast.social,Performing Arts,performing_arts,false -skk,newsmast.social,Photography,photography,false -missioncontrol,fosstodon.org,Technology,technology,true -Simon,newsmast.social,Business,business,false -Simon,newsmast.social,Chemistry,chemistry,false -Simon,newsmast.social,Creative Arts,creative_arts,false -Simon,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -Simon,newsmast.social,Disabled Voices,disabled_voices,false -Simon,newsmast.social,Engineering,engineering,false -Simon,newsmast.social,Gaming,gaming,false -Simon,newsmast.social,History,history,false -eprenen,mastodon.social,Programming,programming,false -eprenen,mastodon.social,Science,science,false -eprenen,mastodon.social,Social Media,social_media,false -wbbdaily,newsmast.social,AI,ai,false -wbbdaily,newsmast.social,Architecture & Design,architecture_design,false -wbbdaily,newsmast.social,Books & Literature,books_literature,false -wbbdaily,newsmast.social,Creative Arts,creative_arts,false -wbbdaily,newsmast.social,Engineering,engineering,false -wbbdaily,newsmast.social,Food & Drink,food_drink,false -wbbdaily,newsmast.social,Football,football,false -wbbdaily,newsmast.social,Gaming,gaming,false -wbbdaily,newsmast.social,History,history,false -wbbdaily,newsmast.social,Humanities,humanities,false -wbbdaily,newsmast.social,Humour,humour,false -wbbdaily,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false -wbbdaily,newsmast.social,Movies,movies,false -wbbdaily,newsmast.social,Music,music,false -wbbdaily,newsmast.social,Nature & Wildlife,nature_wildlife,false -wbbdaily,newsmast.social,Performing Arts,performing_arts,false -wbbdaily,newsmast.social,Pets,pets,false -wbbdaily,newsmast.social,Philosophy,philosophy,false -wbbdaily,newsmast.social,Photography,photography,false -wbbdaily,newsmast.social,Programming,programming,false -wbbdaily,newsmast.social,Puzzles,puzzles,false -wbbdaily,newsmast.social,Social Sciences,social_sciences,false -wbbdaily,newsmast.social,Technology,technology,false -wbbdaily,newsmast.social,Travel,travel,false -wbbdaily,newsmast.social,TV & Radio,tv_radio,false -wbbdaily,newsmast.social,US Sport,us_sport,false -wbbdaily,newsmast.social,Visual Arts,visual_arts,false -wbbdaily,newsmast.social,Sport,sport,true -christopherburton,zirk.us,Books & Literature,books_literature,false -jazzup,jazztodon.com,Climate change,climate_change,false -jazzup,jazztodon.com,Democracy & Human Rights,democracy_human_rights,false -jazzup,jazztodon.com,Energy & Pollution,energy_pollution,false -jazzup,jazztodon.com,Photography,photography,false -jazzup,jazztodon.com,Technology,technology,false -jazzup,jazztodon.com,Music,music,true -christopherburton,zirk.us,Creative Arts,creative_arts,false -christopherburton,zirk.us,Food & Drink,food_drink,false -christopherburton,zirk.us,Humanities,humanities,false -christopherburton,zirk.us,Humour,humour,false -christopherburton,zirk.us,Movies,movies,false -christopherburton,zirk.us,Pets,pets,false -christopherburton,zirk.us,Travel,travel,false -reiichiroh,mastodon.social,AI,ai,false -reiichiroh,mastodon.social,Architecture & Design,architecture_design,false -reiichiroh,mastodon.social,Books & Literature,books_literature,false -reiichiroh,mastodon.social,Breaking News,breaking_news,false -reiichiroh,mastodon.social,Gaming,gaming,false -reiichiroh,mastodon.social,Mental Health & Wellbeing,mental_health_wellbeing,false -reiichiroh,mastodon.social,Movies,movies,false -reiichiroh,mastodon.social,Music,music,false -reiichiroh,mastodon.social,Journalism & Comment,news_comment_data,false -reiichiroh,mastodon.social,Photography,photography,false -reiichiroh,mastodon.social,Travel,travel,false -reiichiroh,mastodon.social,TV & Radio,tv_radio,false -reiichiroh,mastodon.social,Technology,technology,true -christopherburton,zirk.us,TV & Radio,tv_radio,false -christopherburton,zirk.us,Visual Arts,visual_arts,false -christopherburton,zirk.us,Climate change,climate_change,true -JoeyJ0J0,newsmast.social,Academia & Research,academia_research,false -JoeyJ0J0,newsmast.social,Breaking News,breaking_news,false -JoeyJ0J0,newsmast.social,Healthcare,healthcare,false -JoeyJ0J0,newsmast.social,Journalism & Comment,news_comment_data,false -JoeyJ0J0,newsmast.social,Politics,politics,false -JoeyJ0J0,newsmast.social,Technology,technology,false -JoeyJ0J0,newsmast.social,Ukraine Invasion,ukraine_invasion,true -shacqeal,freeradical.zone,Activism & Civil Rights,activism_civil_rights,false -shacqeal,freeradical.zone,Engineering,engineering,false -shacqeal,freeradical.zone,Programming,programming,false -shacqeal,freeradical.zone,Technology,technology,false -shacqeal,freeradical.zone,Black Voices,black_voices,true -Max,dju.social,Government & Policy,government_policy,false -Max,dju.social,Journalism & Comment,news_comment_data,false -Max,dju.social,Politics,politics,false -Max,dju.social,Programming,programming,false -Max,dju.social,Technology,technology,false -Max,dju.social,Breaking News,breaking_news,true -au,chaos.social,Activism & Civil Rights,activism_civil_rights,false -au,chaos.social,Architecture & Design,architecture_design,false -wrath_sedan,mastodon.social,Activism & Civil Rights,activism_civil_rights,false -wrath_sedan,mastodon.social,Architecture & Design,architecture_design,false -wrath_sedan,mastodon.social,Biodiversity & Rewilding,biodiversity_rewilding,false -wrath_sedan,mastodon.social,Black Voices,black_voices,false -wrath_sedan,mastodon.social,Books & Literature,books_literature,false -wrath_sedan,mastodon.social,Breaking News,breaking_news,false -wrath_sedan,mastodon.social,Climate change,climate_change,false -wrath_sedan,mastodon.social,Democracy & Human Rights,democracy_human_rights,false -wrath_sedan,mastodon.social,Disabled Voices,disabled_voices,false -wrath_sedan,mastodon.social,Energy & Pollution,energy_pollution,false -wrath_sedan,mastodon.social,Environment,environment,false -wrath_sedan,mastodon.social,Gaming,gaming,false -wrath_sedan,mastodon.social,Government & Policy,government_policy,false -wrath_sedan,mastodon.social,Healthcare,healthcare,false -wrath_sedan,mastodon.social,History,history,false -wrath_sedan,mastodon.social,Humanities,humanities,false -wrath_sedan,mastodon.social,"Hunger, Disease & Water",hunger_disease_water,false -au,chaos.social,Environment,environment,false -au,chaos.social,History,history,false -au,chaos.social,Humanities,humanities,false -au,chaos.social,Music,music,false -au,chaos.social,Philosophy,philosophy,false -au,chaos.social,Programming,programming,false -au,chaos.social,Social Sciences,social_sciences,false -au,chaos.social,Books & Literature,books_literature,true -rael,mastodon.gamedev.place,Breaking News,breaking_news,false -rael,mastodon.gamedev.place,Mathematics,mathematics,false -wrath_sedan,mastodon.social,Immigrants Rights,immigrants_rights,false -wrath_sedan,mastodon.social,Indigenous Peoples,indigenous_peoples,false -wrath_sedan,mastodon.social,Law & Justice,law_justice,false -wrath_sedan,mastodon.social,LGBTQ+,lgbtq,false -wrath_sedan,mastodon.social,Markets & Finance,markets_finance,false -wrath_sedan,mastodon.social,Movies,movies,false -wrath_sedan,mastodon.social,Music,music,false -wrath_sedan,mastodon.social,Journalism & Comment,news_comment_data,false -wrath_sedan,mastodon.social,Performing Arts,performing_arts,false -wrath_sedan,mastodon.social,Philosophy,philosophy,false -wrath_sedan,mastodon.social,Photography,photography,false -wrath_sedan,mastodon.social,Politics,politics,false -wrath_sedan,mastodon.social,Poverty & Inequality,poverty_inequality,false -wrath_sedan,mastodon.social,Programming,programming,false -wrath_sedan,mastodon.social,Science,science,false -wrath_sedan,mastodon.social,Social Media,social_media,false -wrath_sedan,mastodon.social,Social Sciences,social_sciences,false -wrath_sedan,mastodon.social,Space,space,false -wrath_sedan,mastodon.social,Technology,technology,false -wrath_sedan,mastodon.social,TV & Radio,tv_radio,false -wrath_sedan,mastodon.social,US Politics,us_politics,false -wrath_sedan,mastodon.social,Visual Arts,visual_arts,false -wrath_sedan,mastodon.social,Weather,weather,false -wrath_sedan,mastodon.social,Women’s Voices,women_voices,false -wrath_sedan,mastodon.social,Workers Rights,workers_rights,false -wrath_sedan,mastodon.social,Academia & Research,academia_research,true -skk,newsmast.social,Programming,programming,false -skk,newsmast.social,Science,science,false -skk,newsmast.social,Space,space,false -skk,newsmast.social,Technology,technology,false -skk,newsmast.social,Visual Arts,visual_arts,false -Cautted,pebble.social,Biology,biology,false -Cautted,pebble.social,Chemistry,chemistry,false -Cautted,pebble.social,Mathematics,mathematics,false -Cautted,pebble.social,Physics,physics,false -Cautted,pebble.social,Space,space,false -Cautted,pebble.social,Science,science,true -skk,newsmast.social,Women’s Voices,women_voices,false -skk,newsmast.social,Social Media,social_media,true -rfc2549,mastodon.social,Physics,physics,false -rfc2549,mastodon.social,Science,science,false -rfc2549,mastodon.social,Space,space,false -rfc2549,mastodon.social,Technology,technology,false -rfc2549,mastodon.social,Engineering,engineering,true -ballancier,mastodon.social,Academia & Research,academia_research,false -ballancier,mastodon.social,AI,ai,false -ballancier,mastodon.social,Biodiversity & Rewilding,biodiversity_rewilding,false -ballancier,mastodon.social,Biology,biology,false -robbhoyy,newsmast.social,Biology,biology,false -robbhoyy,newsmast.social,Breaking News,breaking_news,false -robbhoyy,newsmast.social,Chemistry,chemistry,false -robbhoyy,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -robbhoyy,newsmast.social,Government & Policy,government_policy,false -robbhoyy,newsmast.social,Healthcare,healthcare,false -ballancier,mastodon.social,Climate change,climate_change,false -ballancier,mastodon.social,Democracy & Human Rights,democracy_human_rights,false -ballancier,mastodon.social,Energy & Pollution,energy_pollution,false -ballancier,mastodon.social,Environment,environment,false -robbhoyy,newsmast.social,History,history,false -robbhoyy,newsmast.social,Humanities,humanities,false -robbhoyy,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false -robbhoyy,newsmast.social,Law & Justice,law_justice,false -robbhoyy,newsmast.social,Mathematics,mathematics,false -robbhoyy,newsmast.social,Journalism & Comment,news_comment_data,false -robbhoyy,newsmast.social,Philosophy,philosophy,false -robbhoyy,newsmast.social,Physics,physics,false -robbhoyy,newsmast.social,Politics,politics,false -robbhoyy,newsmast.social,Poverty & Inequality,poverty_inequality,false -robbhoyy,newsmast.social,Science,science,false -robbhoyy,newsmast.social,Social Media,social_media,false -robbhoyy,newsmast.social,Social Sciences,social_sciences,false -robbhoyy,newsmast.social,Space,space,false -robbhoyy,newsmast.social,Ukraine Invasion,ukraine_invasion,false -robbhoyy,newsmast.social,US Politics,us_politics,false -robbhoyy,newsmast.social,Weather,weather,false -robbhoyy,newsmast.social,Academia & Research,academia_research,true -poke,newsmast.social,AI,ai,false -poke,newsmast.social,Architecture & Design,architecture_design,false -poke,newsmast.social,Breaking News,breaking_news,false -poke,newsmast.social,Business,business,false -poke,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -poke,newsmast.social,Engineering,engineering,false -poke,newsmast.social,Government & Policy,government_policy,false -poke,newsmast.social,Law & Justice,law_justice,false -poke,newsmast.social,Markets & Finance,markets_finance,false -jswilkins,fediscience.org,Academia & Research,academia_research,false -eprenen,mastodon.social,Social Sciences,social_sciences,false -eprenen,mastodon.social,Space,space,false -eprenen,mastodon.social,Technology,technology,false -Simon,newsmast.social,Humanities,humanities,false -Simon,newsmast.social,Humour,humour,false -Simon,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false -Simon,newsmast.social,Immigrants Rights,immigrants_rights,false -Simon,newsmast.social,Indigenous Peoples,indigenous_peoples,false -Simon,newsmast.social,Markets & Finance,markets_finance,false -Simon,newsmast.social,Mathematics,mathematics,false -Simon,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false -Simon,newsmast.social,Movies,movies,false -Simon,newsmast.social,Music,music,false -Simon,newsmast.social,Nature & Wildlife,nature_wildlife,false -perelling,mastodon.online,Breaking News,breaking_news,true -eprenen,mastodon.social,Breaking News,breaking_news,true -Simon,newsmast.social,Journalism & Comment,news_comment_data,false -Simon,newsmast.social,Performing Arts,performing_arts,false -Simon,newsmast.social,Philosophy,philosophy,false -Simon,newsmast.social,Photography,photography,false -Simon,newsmast.social,Physics,physics,false -Agent_13,mastodon.social,Journalism & Comment,news_comment_data,false -Agent_13,mastodon.social,Science,science,false -Agent_13,mastodon.social,Social Media,social_media,false -Agent_13,mastodon.social,Technology,technology,false -Agent_13,mastodon.social,Humour,humour,true -Simon,newsmast.social,Technology,technology,true -Simon,newsmast.social,Poverty & Inequality,poverty_inequality,false -Simon,newsmast.social,Programming,programming,false -Simon,newsmast.social,Puzzles,puzzles,false -Simon,newsmast.social,Science,science,false -Simon,newsmast.social,Social Media,social_media,false -Simon,newsmast.social,Social Sciences,social_sciences,false -Simon,newsmast.social,Space,space,false -Simon,newsmast.social,TV & Radio,tv_radio,false -Simon,newsmast.social,Ukraine Invasion,ukraine_invasion,false -Simon,newsmast.social,Visual Arts,visual_arts,false -Simon,newsmast.social,Weather,weather,false -museumphile,glammr.us,Activism & Civil Rights,activism_civil_rights,false -museumphile,glammr.us,Black Voices,black_voices,false -museumphile,glammr.us,Breaking News,breaking_news,false -museumphile,glammr.us,Disabled Voices,disabled_voices,false -museumphile,glammr.us,Immigrants Rights,immigrants_rights,false -museumphile,glammr.us,Indigenous Peoples,indigenous_peoples,false -museumphile,glammr.us,LGBTQ+,lgbtq,false -museumphile,glammr.us,Music,music,false -museumphile,glammr.us,TV & Radio,tv_radio,false -museumphile,glammr.us,US Politics,us_politics,false -museumphile,glammr.us,Women’s Voices,women_voices,false -museumphile,glammr.us,History,history,true -DEW1970,newsmast.social,Breaking News,breaking_news,false -Simon,newsmast.social,Women’s Voices,women_voices,false -bustouttheguillotines,bustouttheguillotines@mastodon.social,Law & Justice,law_justice,false -bustouttheguillotines,bustouttheguillotines@mastodon.social,Movies,movies,false -bustouttheguillotines,bustouttheguillotines@mastodon.social,Music,music,false -bustouttheguillotines,bustouttheguillotines@mastodon.social,Journalism & Comment,news_comment_data,false -bustouttheguillotines,bustouttheguillotines@mastodon.social,Politics,politics,false -bustouttheguillotines,bustouttheguillotines@mastodon.social,Science,science,false -bustouttheguillotines,bustouttheguillotines@mastodon.social,Technology,technology,false -bustouttheguillotines,bustouttheguillotines@mastodon.social,US Politics,us_politics,false -poke,newsmast.social,Movies,movies,false -perelling,mastodon.online,Books & Literature,books_literature,false -perelling,mastodon.online,Football,football,false -perelling,mastodon.online,Movies,movies,false -perelling,mastodon.online,Music,music,false -perelling,mastodon.online,Journalism & Comment,news_comment_data,false -perelling,mastodon.online,Science,science,false -perelling,mastodon.online,Space,space,false -perelling,mastodon.online,Sport,sport,false -perelling,mastodon.online,Technology,technology,false -perelling,mastodon.online,TV & Radio,tv_radio,false -perelling,mastodon.online,Weather,weather,false -poke,newsmast.social,Music,music,false -poke,newsmast.social,Journalism & Comment,news_comment_data,false -poke,newsmast.social,Photography,photography,false -poke,newsmast.social,Programming,programming,false -poke,newsmast.social,Science,science,false -poke,newsmast.social,US Politics,us_politics,false -poke,newsmast.social,Workers Rights,workers_rights,false -poke,newsmast.social,Technology,technology,true -newsclipr,hear-me.social,Democracy & Human Rights,democracy_human_rights,false -47photography,newsmast.social,Photography,photography,true -newsclipr,hear-me.social,Government & Policy,government_policy,false -newsclipr,hear-me.social,Journalism & Comment,news_comment_data,false -newsclipr,hear-me.social,Politics,politics,false -newsclipr,hear-me.social,Breaking News,breaking_news,true -JoeGermuska,mastodon.social,Activism & Civil Rights,activism_civil_rights,false -JoeGermuska,mastodon.social,Architecture & Design,architecture_design,false -JoeGermuska,mastodon.social,Food & Drink,food_drink,false -tales_to,mstdn.social,Books & Literature,books_literature,false -tales_to,mstdn.social,Democracy & Human Rights,democracy_human_rights,false -tales_to,mstdn.social,"Hunger, Disease & Water",hunger_disease_water,false -tales_to,mstdn.social,Physics,physics,false -tales_to,mstdn.social,Ukraine Invasion,ukraine_invasion,false -tales_to,mstdn.social,Journalism & Comment,news_comment_data,true -JoeGermuska,mastodon.social,History,history,false -JoeGermuska,mastodon.social,AI,ai,true -hcj,fosstodon.org,AI,ai,false -hcj,fosstodon.org,Breaking News,breaking_news,false -hcj,fosstodon.org,Programming,programming,false -hcj,fosstodon.org,Social Media,social_media,false -hcj,fosstodon.org,Technology,technology,true -Pyae000,newsmast.social,Engineering,engineering,false -Pyae000,newsmast.social,Mathematics,mathematics,false -Pyae000,newsmast.social,Physics,physics,false -Pyae000,newsmast.social,Science,science,false -camilobotero,mstdn.dk,Academia & Research,academia_research,false -camilobotero,mstdn.dk,AI,ai,false -camilobotero,mstdn.dk,Architecture & Design,architecture_design,false -camilobotero,mstdn.dk,Books & Literature,books_literature,false -camilobotero,mstdn.dk,Breaking News,breaking_news,false -camilobotero,mstdn.dk,Climate change,climate_change,false -camilobotero,mstdn.dk,Creative Arts,creative_arts,false -camilobotero,mstdn.dk,Democracy & Human Rights,democracy_human_rights,false -camilobotero,mstdn.dk,Energy & Pollution,energy_pollution,false -camilobotero,mstdn.dk,Engineering,engineering,false -camilobotero,mstdn.dk,Environment,environment,false -camilobotero,mstdn.dk,Food & Drink,food_drink,false -camilobotero,mstdn.dk,Football,football,false -camilobotero,mstdn.dk,Government & Policy,government_policy,false -camilobotero,mstdn.dk,Healthcare,healthcare,false -camilobotero,mstdn.dk,History,history,false -camilobotero,mstdn.dk,Humanities,humanities,false -camilobotero,mstdn.dk,Humour,humour,false -camilobotero,mstdn.dk,Law & Justice,law_justice,false -camilobotero,mstdn.dk,Movies,movies,false -camilobotero,mstdn.dk,Music,music,false -camilobotero,mstdn.dk,Nature & Wildlife,nature_wildlife,false -camilobotero,mstdn.dk,Journalism & Comment,news_comment_data,false -camilobotero,mstdn.dk,Performing Arts,performing_arts,false -camilobotero,mstdn.dk,Pets,pets,false -camilobotero,mstdn.dk,Philosophy,philosophy,false -camilobotero,mstdn.dk,Photography,photography,false -camilobotero,mstdn.dk,Physics,physics,false -camilobotero,mstdn.dk,Politics,politics,false -camilobotero,mstdn.dk,Poverty & Inequality,poverty_inequality,false -camilobotero,mstdn.dk,Programming,programming,false -camilobotero,mstdn.dk,Puzzles,puzzles,false -camilobotero,mstdn.dk,Science,science,false -camilobotero,mstdn.dk,Social Media,social_media,false -camilobotero,mstdn.dk,Social Sciences,social_sciences,false -camilobotero,mstdn.dk,Space,space,false -camilobotero,mstdn.dk,Sport,sport,false -camilobotero,mstdn.dk,Technology,technology,false -camilobotero,mstdn.dk,Travel,travel,false -camilobotero,mstdn.dk,TV & Radio,tv_radio,false -camilobotero,mstdn.dk,Visual Arts,visual_arts,false -camilobotero,mstdn.dk,Gaming,gaming,true -Pyae000,newsmast.social,Technology,technology,false -Pyae000,newsmast.social,Programming,programming,true -jswilkins,fediscience.org,Breaking News,breaking_news,false -jswilkins,fediscience.org,Science,science,false -jswilkins,fediscience.org,Space,space,false -jswilkins,fediscience.org,Biology,biology,true -LostRinktink,mastodon.social,Breaking News,breaking_news,false -LostRinktink,mastodon.social,Gaming,gaming,false -LostRinktink,mastodon.social,History,history,false -LostRinktink,mastodon.social,Humanities,humanities,false -LostRinktink,mastodon.social,Photography,photography,false -LostRinktink,mastodon.social,Programming,programming,false -LostRinktink,mastodon.social,Social Media,social_media,false -LostRinktink,mastodon.social,Technology,technology,true -ManUtopiK,mastodon.social,Academia & Research,academia_research,false -ManUtopiK,mastodon.social,Activism & Civil Rights,activism_civil_rights,false -ManUtopiK,mastodon.social,Architecture & Design,architecture_design,false -ManUtopiK,mastodon.social,Climate change,climate_change,false -astromecanik,mastodon.online,Markets & Finance,markets_finance,false -astromecanik,mastodon.online,Politics,politics,false -astromecanik,mastodon.online,Space,space,false -astromecanik,mastodon.online,Technology,technology,false -astromecanik,mastodon.online,Engineering,engineering,false -JoeGermuska,mastodon.social,Programming,programming,false -JoeGermuska,mastodon.social,Puzzles,puzzles,false -JoeGermuska,mastodon.social,Music,music,false -rael,mastodon.gamedev.place,Journalism & Comment,news_comment_data,false -rael,mastodon.gamedev.place,Science,science,false -rael,mastodon.gamedev.place,Space,space,false -rael,mastodon.gamedev.place,Technology,technology,false -rael,mastodon.gamedev.place,Programming,programming,true -ThirdTime,newsmast.social,Poverty & Inequality,poverty_inequality,false -ThirdTime,newsmast.social,US Politics,us_politics,false -JAVPPT,newsmast.social,Women’s Voices,women_voices,false -JAVPPT,newsmast.social,Photography,photography,false -JAVPPT,newsmast.social,Creative Arts,creative_arts,false -MinMaungHein,newsmast.social,LGBTQ+,lgbtq,false -Nyein,newsmast.social,Gaming,gaming,false -Nyein,newsmast.social,US Sport,us_sport,false -Nyein,newsmast.social,Food & Drink,food_drink,false -MinMaungHein,newsmast.social,Academia & Research,academia_research,false -MinMaungHein,newsmast.social,Climate change,climate_change,false -kirukarki2,newsmast.social,LGBTQ+,lgbtq,false -MinMaungHein,newsmast.social,Breaking News,breaking_news,false -luffy,newsmast.social,Environment,environment,false -luffy,newsmast.social,Food & Drink,food_drink,false -hamishcampbell,mastodon.social,Biodiversity & Rewilding,biodiversity_rewilding,false -hamishcampbell,mastodon.social,Climate change,climate_change,false -hamishcampbell,mastodon.social,Energy & Pollution,energy_pollution,false -hamishcampbell,mastodon.social,Environment,environment,false -hamishcampbell,mastodon.social,Technology,technology,true -astromecanik,mastodon.online,Biology,biology,false -astromecanik,mastodon.online,Science,science,true -j_zim,mastodon.uno,Breaking News,breaking_news,true -JensLaTense,social.tchncs.de,Climate change,climate_change,false -JensLaTense,social.tchncs.de,Democracy & Human Rights,democracy_human_rights,false -JensLaTense,social.tchncs.de,Environment,environment,false -JensLaTense,social.tchncs.de,Programming,programming,false -JensLaTense,social.tchncs.de,Science,science,false -JensLaTense,social.tchncs.de,Technology,technology,false -JensLaTense,social.tchncs.de,Breaking News,breaking_news,true -minkhantkyawmdy35,mastodon.social,Democracy & Human Rights,democracy_human_rights,false -minkhantkyawmdy35,mastodon.social,"Hunger, Disease & Water",hunger_disease_water,false -aaim,newsmast.social,Climate change,climate_change,false -aaim,newsmast.social,Energy & Pollution,energy_pollution,false -aaim,newsmast.social,Mathematics,mathematics,false -aaim,newsmast.social,Poverty & Inequality,poverty_inequality,false -aaim,newsmast.social,Science,science,false -aaim,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,true -astromecanik,mastodon.online,Humour,humour,false -minkhantkyawmdy35,mastodon.social,Journalism & Comment,news_comment_data,false -minkhantkyawmdy35,mastodon.social,Poverty & Inequality,poverty_inequality,false -minkhantkyawmdy35,mastodon.social,Social Media,social_media,false -minkhantkyawmdy35,mastodon.social,Ukraine Invasion,ukraine_invasion,false -ThirdTime,newsmast.social,Environment,environment,false -ThirdTime,newsmast.social,Climate change,climate_change,false -minkhantkyawmdy35,mastodon.social,Weather,weather,false -minkhantkyawmdy35,mastodon.social,Breaking News,breaking_news,true -Nyein,newsmast.social,Sport,sport,false -Nyein,newsmast.social,Creative Arts,creative_arts,false -MinMaungHein,newsmast.social,Environment,environment,false -not_so_social,newsmast.social,AI,ai,false -not_so_social,newsmast.social,Biology,biology,false -not_so_social,newsmast.social,Chemistry,chemistry,false -not_so_social,newsmast.social,Engineering,engineering,false -not_so_social,newsmast.social,Humanities,humanities,false -not_so_social,newsmast.social,Mathematics,mathematics,false -not_so_social,newsmast.social,Physics,physics,false -not_so_social,newsmast.social,Programming,programming,false -not_so_social,newsmast.social,Science,science,false -not_so_social,newsmast.social,Social Sciences,social_sciences,false -not_so_social,newsmast.social,Space,space,false -not_so_social,newsmast.social,Technology,technology,true -ManUtopiK,mastodon.social,Energy & Pollution,energy_pollution,false -ManUtopiK,mastodon.social,Environment,environment,false -ManUtopiK,mastodon.social,Government & Policy,government_policy,false -ManUtopiK,mastodon.social,Humanities,humanities,false -ManUtopiK,mastodon.social,Law & Justice,law_justice,false -ManUtopiK,mastodon.social,Politics,politics,false -ManUtopiK,mastodon.social,Poverty & Inequality,poverty_inequality,false -Billyboy,newsmast.social,Indigenous Peoples,indigenous_peoples,false -Billyboy,newsmast.social,Law & Justice,law_justice,false -Billyboy,newsmast.social,Physics,physics,false -Billyboy,newsmast.social,Politics,politics,false -Billyboy,newsmast.social,Poverty & Inequality,poverty_inequality,false -Billyboy,newsmast.social,Science,science,false -Billyboy,newsmast.social,Technology,technology,false -Billyboy,newsmast.social,Workers Rights,workers_rights,false -ManUtopiK,mastodon.social,Programming,programming,false -ManUtopiK,mastodon.social,Technology,technology,false -ManUtopiK,mastodon.social,Democracy & Human Rights,democracy_human_rights,true -skymoo,fosstodon.org,Breaking News,breaking_news,false -skymoo,fosstodon.org,Climate change,climate_change,false -skymoo,fosstodon.org,Mathematics,mathematics,false -jamalpp,newsmast.social,Journalism & Comment,news_comment_data,false -jamalpp,newsmast.social,Social Media,social_media,false -jamalpp,newsmast.social,Ukraine Invasion,ukraine_invasion,false -jamalpp,newsmast.social,Weather,weather,false -jamalpp,newsmast.social,Breaking News,breaking_news,true -skymoo,fosstodon.org,Programming,programming,false -skymoo,fosstodon.org,Science,science,false -skymoo,fosstodon.org,Space,space,false -skymoo,fosstodon.org,Technology,technology,false -skymoo,fosstodon.org,Physics,physics,true -paingpyaethu,mstdn.social,Biology,biology,false -paingpyaethu,mstdn.social,Breaking News,breaking_news,false -paingpyaethu,mstdn.social,Journalism & Comment,news_comment_data,false -paingpyaethu,mstdn.social,Science,science,false -paingpyaethu,mstdn.social,Social Media,social_media,false -paingpyaethu,mstdn.social,Ukraine Invasion,ukraine_invasion,false -leonardogutierrez,mastodon.social,Engineering,engineering,true -darkjamal,newsmast.social,Social Media,social_media,false -darkjamal,newsmast.social,Ukraine Invasion,ukraine_invasion,false -darkjamal,newsmast.social,Weather,weather,false -darkjamal,newsmast.social,Journalism & Comment,news_comment_data,true -leonardogutierrez,mastodon.social,AI,ai,false -leonardogutierrez,mastodon.social,Architecture & Design,architecture_design,false -leonardogutierrez,mastodon.social,Biodiversity & Rewilding,biodiversity_rewilding,false -leonardogutierrez,mastodon.social,Biology,biology,false -leonardogutierrez,mastodon.social,Books & Literature,books_literature,false -leonardogutierrez,mastodon.social,Chemistry,chemistry,false -leonardogutierrez,mastodon.social,Climate change,climate_change,false -leonardogutierrez,mastodon.social,Democracy & Human Rights,democracy_human_rights,false -leonardogutierrez,mastodon.social,Energy & Pollution,energy_pollution,false -leonardogutierrez,mastodon.social,Environment,environment,false -leonardogutierrez,mastodon.social,History,history,false -leonardogutierrez,mastodon.social,Humanities,humanities,false -leonardogutierrez,mastodon.social,"Hunger, Disease & Water",hunger_disease_water,false -leonardogutierrez,mastodon.social,Mathematics,mathematics,false -leonardogutierrez,mastodon.social,Movies,movies,false -leonardogutierrez,mastodon.social,Music,music,false -leonardogutierrez,mastodon.social,Performing Arts,performing_arts,false -leonardogutierrez,mastodon.social,Philosophy,philosophy,false -leonardogutierrez,mastodon.social,Photography,photography,false -rosswood82,mastodon.scot,Biodiversity & Rewilding,biodiversity_rewilding,false -rosswood82,mastodon.scot,Climate change,climate_change,false -rosswood82,mastodon.scot,Football,football,false -Tntgamer12341,mastodon.social,Programming,programming,false -bja,hachyderm.io,Breaking News,breaking_news,false -bja,hachyderm.io,Democracy & Human Rights,democracy_human_rights,false -MysticBrew,pony.social,Activism & Civil Rights,activism_civil_rights,false -MysticBrew,pony.social,Food & Drink,food_drink,false -MysticBrew,pony.social,Immigrants Rights,immigrants_rights,false -MysticBrew,pony.social,Nature & Wildlife,nature_wildlife,false -MysticBrew,pony.social,Pets,pets,false -MysticBrew,pony.social,Programming,programming,false -bja,hachyderm.io,Journalism & Comment,news_comment_data,false -bja,hachyderm.io,Philosophy,philosophy,false -bja,hachyderm.io,Ukraine Invasion,ukraine_invasion,false -bja,hachyderm.io,Weather,weather,false -bja,hachyderm.io,Engineering,engineering,true -palmeiras,newsmast.social,Breaking News,breaking_news,false -palmeiras,newsmast.social,Disabled Voices,disabled_voices,false -palmeiras,newsmast.social,Journalism & Comment,news_comment_data,false -palmeiras,newsmast.social,Social Media,social_media,false -palmeiras,newsmast.social,Black Voices,black_voices,true -astromecanik,mastodon.online,Nature & Wildlife,nature_wildlife,false -n4z4m3,masto.ai,Democracy & Human Rights,democracy_human_rights,false -n4z4m3,masto.ai,Government & Policy,government_policy,false -n4z4m3,masto.ai,Politics,politics,false -n4z4m3,masto.ai,US Politics,us_politics,false -n4z4m3,masto.ai,Breaking News,breaking_news,true -ThirdTime,newsmast.social,LGBTQ+,lgbtq,false -ThirdTime,newsmast.social,Women’s Voices,women_voices,false -ThirdTime,newsmast.social,Business,business,false -ThirdTime,newsmast.social,Science,science,false -ThirdTime,newsmast.social,Space,space,false -bigtechpitchbot,techhub.social,AI,ai,false -bigtechpitchbot,techhub.social,Breaking News,breaking_news,false -bigtechpitchbot,techhub.social,Engineering,engineering,false -bigtechpitchbot,techhub.social,Journalism & Comment,news_comment_data,false -bigtechpitchbot,techhub.social,Programming,programming,false -bigtechpitchbot,techhub.social,Social Media,social_media,false -bigtechpitchbot,techhub.social,Ukraine Invasion,ukraine_invasion,false -bigtechpitchbot,techhub.social,Weather,weather,false -bigtechpitchbot,techhub.social,Technology,technology,true -complexmoth,aus.social,Biodiversity & Rewilding,biodiversity_rewilding,false -complexmoth,aus.social,Books & Literature,books_literature,false -complexmoth,aus.social,Breaking News,breaking_news,false -complexmoth,aus.social,Creative Arts,creative_arts,false -complexmoth,aus.social,Democracy & Human Rights,democracy_human_rights,false -complexmoth,aus.social,Energy & Pollution,energy_pollution,false -complexmoth,aus.social,Food & Drink,food_drink,false -complexmoth,aus.social,History,history,false -complexmoth,aus.social,Humanities,humanities,false -complexmoth,aus.social,Humour,humour,false -complexmoth,aus.social,Movies,movies,false -complexmoth,aus.social,Music,music,false -complexmoth,aus.social,Journalism & Comment,news_comment_data,false -complexmoth,aus.social,Performing Arts,performing_arts,false -complexmoth,aus.social,Physics,physics,false -complexmoth,aus.social,Puzzles,puzzles,false -complexmoth,aus.social,Science,science,false -complexmoth,aus.social,Technology,technology,false -complexmoth,aus.social,TV & Radio,tv_radio,false -complexmoth,aus.social,Engineering,engineering,true -johndonald,newsmast.social,History,history,false -johndonald,newsmast.social,Humanities,humanities,false -johndonald,newsmast.social,Philosophy,philosophy,false -danielmrose,writing.exchange,Breaking News,breaking_news,false -danielmrose,writing.exchange,Football,football,false -danielmrose,writing.exchange,Law & Justice,law_justice,false -danielmrose,writing.exchange,Technology,technology,false -danielmrose,writing.exchange,US Politics,us_politics,false -danielmrose,writing.exchange,Weather,weather,false -danielmrose,writing.exchange,US Sport,us_sport,true -johndonald,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false -johndonald,newsmast.social,Social Sciences,social_sciences,true -SigurdVie,mastodon.world,Academia & Research,academia_research,false -SigurdVie,mastodon.world,Activism & Civil Rights,activism_civil_rights,false -SigurdVie,mastodon.world,Biodiversity & Rewilding,biodiversity_rewilding,false -SigurdVie,mastodon.world,Biology,biology,false -SigurdVie,mastodon.world,Books & Literature,books_literature,false -SigurdVie,mastodon.world,Breaking News,breaking_news,false -SigurdVie,mastodon.world,Chemistry,chemistry,false -SigurdVie,mastodon.world,Climate change,climate_change,false -SigurdVie,mastodon.world,Democracy & Human Rights,democracy_human_rights,false -SigurdVie,mastodon.world,Energy & Pollution,energy_pollution,false -SigurdVie,mastodon.world,Engineering,engineering,false -SigurdVie,mastodon.world,Environment,environment,false -SigurdVie,mastodon.world,Gaming,gaming,false -SigurdVie,mastodon.world,Healthcare,healthcare,false -SigurdVie,mastodon.world,History,history,false -SigurdVie,mastodon.world,Humanities,humanities,false -SigurdVie,mastodon.world,"Hunger, Disease & Water",hunger_disease_water,false -SigurdVie,mastodon.world,Immigrants Rights,immigrants_rights,false -SigurdVie,mastodon.world,Law & Justice,law_justice,false -SigurdVie,mastodon.world,LGBTQ+,lgbtq,false -SigurdVie,mastodon.world,Government & Policy,government_policy,true -SigurdVie,mastodon.world,Mathematics,mathematics,false -SigurdVie,mastodon.world,Movies,movies,false -SigurdVie,mastodon.world,Journalism & Comment,news_comment_data,false -SigurdVie,mastodon.world,Philosophy,philosophy,false -SigurdVie,mastodon.world,Physics,physics,false -SigurdVie,mastodon.world,Politics,politics,false -SigurdVie,mastodon.world,Poverty & Inequality,poverty_inequality,false -SigurdVie,mastodon.world,Programming,programming,false -SigurdVie,mastodon.world,Science,science,false -SigurdVie,mastodon.world,Social Media,social_media,false -SigurdVie,mastodon.world,Social Sciences,social_sciences,false -SigurdVie,mastodon.world,Space,space,false -SigurdVie,mastodon.world,Technology,technology,false -SigurdVie,mastodon.world,TV & Radio,tv_radio,false -SigurdVie,mastodon.world,Ukraine Invasion,ukraine_invasion,false -SigurdVie,mastodon.world,Visual Arts,visual_arts,false -SigurdVie,mastodon.world,Women’s Voices,women_voices,false -SigurdVie,mastodon.world,Workers Rights,workers_rights,false -mpmilestogo,moth.social,Journalism & Comment,news_comment_data,false -xmbrst,mastodon.social,Biology,biology,false -xmbrst,mastodon.social,Books & Literature,books_literature,false -xmbrst,mastodon.social,Breaking News,breaking_news,false -xmbrst,mastodon.social,Climate change,climate_change,false -xmbrst,mastodon.social,Energy & Pollution,energy_pollution,false -xmbrst,mastodon.social,Government & Policy,government_policy,false -xmbrst,mastodon.social,Healthcare,healthcare,false -xmbrst,mastodon.social,Mathematics,mathematics,false -xmbrst,mastodon.social,Music,music,false -xmbrst,mastodon.social,Physics,physics,false -jswilkins,fediscience.org,Humanities,humanities,false -jswilkins,fediscience.org,Philosophy,philosophy,false -jswilkins,fediscience.org,Social Sciences,social_sciences,false -Hwys2Railways,newsmast.social,Academia & Research,academia_research,false -Hwys2Railways,newsmast.social,Activism & Civil Rights,activism_civil_rights,false -Hwys2Railways,newsmast.social,AI,ai,false -Hwys2Railways,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false -Hwys2Railways,newsmast.social,Biology,biology,false -Hwys2Railways,newsmast.social,Black Voices,black_voices,false -Hwys2Railways,newsmast.social,Books & Literature,books_literature,false -Hwys2Railways,newsmast.social,Breaking News,breaking_news,false -Hwys2Railways,newsmast.social,Chemistry,chemistry,false -Hwys2Railways,newsmast.social,Climate change,climate_change,false -Hwys2Railways,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -Hwys2Railways,newsmast.social,Energy & Pollution,energy_pollution,false -Hwys2Railways,newsmast.social,Engineering,engineering,false -Hwys2Railways,newsmast.social,Gaming,gaming,false -Hwys2Railways,newsmast.social,Government & Policy,government_policy,false -Hwys2Railways,newsmast.social,Healthcare,healthcare,false -Hwys2Railways,newsmast.social,History,history,false -Hwys2Railways,newsmast.social,Humanities,humanities,false -Hwys2Railways,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false -Hwys2Railways,newsmast.social,Immigrants Rights,immigrants_rights,false -Hwys2Railways,newsmast.social,Indigenous Peoples,indigenous_peoples,false -Hwys2Railways,newsmast.social,Law & Justice,law_justice,false -Hwys2Railways,newsmast.social,LGBTQ+,lgbtq,false -Hwys2Railways,newsmast.social,Mathematics,mathematics,false -Hwys2Railways,newsmast.social,Journalism & Comment,news_comment_data,false -Hwys2Railways,newsmast.social,Philosophy,philosophy,false -Hwys2Railways,newsmast.social,Physics,physics,false -Hwys2Railways,newsmast.social,Politics,politics,false -Hwys2Railways,newsmast.social,Poverty & Inequality,poverty_inequality,false -Hwys2Railways,newsmast.social,Programming,programming,false -Hwys2Railways,newsmast.social,Science,science,false -Hwys2Railways,newsmast.social,Social Sciences,social_sciences,false -Hwys2Railways,newsmast.social,Space,space,false -Hwys2Railways,newsmast.social,Technology,technology,false -Hwys2Railways,newsmast.social,Ukraine Invasion,ukraine_invasion,false -Hwys2Railways,newsmast.social,US Politics,us_politics,false -Hwys2Railways,newsmast.social,Visual Arts,visual_arts,false -Hwys2Railways,newsmast.social,Weather,weather,false -Hwys2Railways,newsmast.social,Women’s Voices,women_voices,false -Hwys2Railways,newsmast.social,Environment,environment,true -chrishancock,mas.to,Food & Drink,food_drink,false -chrishancock,mas.to,Politics,politics,false -chrishancock,mas.to,Travel,travel,false -Billyboy,newsmast.social,AI,ai,true -chrishancock,mas.to,US Politics,us_politics,false -chrishancock,mas.to,Breaking News,breaking_news,true -dan_lerch,mastodon.social,Breaking News,breaking_news,false -dan_lerch,mastodon.social,Engineering,engineering,false -dan_lerch,mastodon.social,Journalism & Comment,news_comment_data,false -dan_lerch,mastodon.social,Programming,programming,false -dan_lerch,mastodon.social,Social Media,social_media,false -dan_lerch,mastodon.social,Technology,technology,false -dan_lerch,mastodon.social,Ukraine Invasion,ukraine_invasion,false -dan_lerch,mastodon.social,Weather,weather,false -dan_lerch,mastodon.social,AI,ai,true -ThirdTime,newsmast.social,Workers Rights,workers_rights,false -ThirdTime,newsmast.social,Technology,technology,false -ThirdTime,newsmast.social,Sport,sport,false -Billyboy,newsmast.social,Academia & Research,academia_research,false -Billyboy,newsmast.social,Activism & Civil Rights,activism_civil_rights,false -Billyboy,newsmast.social,Breaking News,breaking_news,false -Billyboy,newsmast.social,Business,business,false -Billyboy,newsmast.social,Climate change,climate_change,false -Billyboy,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -Billyboy,newsmast.social,Disabled Voices,disabled_voices,false -Billyboy,newsmast.social,Energy & Pollution,energy_pollution,false -Billyboy,newsmast.social,Engineering,engineering,false -Billyboy,newsmast.social,Environment,environment,false -Billyboy,newsmast.social,Government & Policy,government_policy,false -Billyboy,newsmast.social,Healthcare,healthcare,false -Billyboy,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false -Billyboy,newsmast.social,Immigrants Rights,immigrants_rights,false -leonardogutierrez,mastodon.social,Physics,physics,false -leonardogutierrez,mastodon.social,Poverty & Inequality,poverty_inequality,false -leonardogutierrez,mastodon.social,Programming,programming,false -leonardogutierrez,mastodon.social,Science,science,false -leonardogutierrez,mastodon.social,Social Sciences,social_sciences,false -leonardogutierrez,mastodon.social,Space,space,false -leonardogutierrez,mastodon.social,Technology,technology,false -leonardogutierrez,mastodon.social,Visual Arts,visual_arts,false -xmbrst,mastodon.social,Science,science,false -xmbrst,mastodon.social,TV & Radio,tv_radio,false -xmbrst,mastodon.social,Ukraine Invasion,ukraine_invasion,false -xmbrst,mastodon.social,US Politics,us_politics,false -xmbrst,mastodon.social,Space,space,true -filippodb,mastodon.uno,Movies,movies,false -filippodb,mastodon.uno,Music,music,false -filippodb,mastodon.uno,Space,space,false -filippodb,mastodon.uno,Technology,technology,false -filippodb,mastodon.uno,Social Media,social_media,true -47photography,newsmast.social,Creative Arts,creative_arts,false -47photography,newsmast.social,Social Media,social_media,false -47photography,newsmast.social,Breaking News,breaking_news,false -PaingPyaeThu,social.vivaldi.net,Journalism & Comment,news_comment_data,false -PaingPyaeThu,social.vivaldi.net,Social Media,social_media,false -PaingPyaeThu,social.vivaldi.net,Ukraine Invasion,ukraine_invasion,false -PaingPyaeThu,social.vivaldi.net,Weather,weather,false -PaingPyaeThu,social.vivaldi.net,Breaking News,breaking_news,true -backtobella,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false -backtobella,newsmast.social,Biology,biology,false -backtobella,newsmast.social,Environment,environment,false -backtobella,newsmast.social,History,history,false -samuelAnimates,scicomm.xyz,Academia & Research,academia_research,false -samuelAnimates,scicomm.xyz,AI,ai,false -samuelAnimates,scicomm.xyz,Black Voices,black_voices,false -samuelAnimates,scicomm.xyz,Books & Literature,books_literature,false -samuelAnimates,scicomm.xyz,Creative Arts,creative_arts,false -samuelAnimates,scicomm.xyz,Democracy & Human Rights,democracy_human_rights,false -samuelAnimates,scicomm.xyz,Disabled Voices,disabled_voices,false -samuelAnimates,scicomm.xyz,Gaming,gaming,false -samuelAnimates,scicomm.xyz,Government & Policy,government_policy,false -samuelAnimates,scicomm.xyz,Humanities,humanities,false -samuelAnimates,scicomm.xyz,Indigenous Peoples,indigenous_peoples,false -samuelAnimates,scicomm.xyz,LGBTQ+,lgbtq,false -samuelAnimates,scicomm.xyz,Mental Health & Wellbeing,mental_health_wellbeing,false -samuelAnimates,scicomm.xyz,Music,music,false -samuelAnimates,scicomm.xyz,Journalism & Comment,news_comment_data,false -samuelAnimates,scicomm.xyz,Performing Arts,performing_arts,false -samuelAnimates,scicomm.xyz,Social Media,social_media,false -samuelAnimates,scicomm.xyz,Social Sciences,social_sciences,false -samuelAnimates,scicomm.xyz,TV & Radio,tv_radio,false -samuelAnimates,scicomm.xyz,Healthcare,healthcare,true -darkjamal,newsmast.social,Photography,photography,false -MinMaungHein,newsmast.social,Photography,photography,false -darkjamal,newsmast.social,Travel,travel,false -darkjamal,newsmast.social,Science,science,false -jnobles,mastodon.social,Academia & Research,academia_research,false -jnobles,mastodon.social,Activism & Civil Rights,activism_civil_rights,false -jnobles,mastodon.social,Government & Policy,government_policy,false -jnobles,mastodon.social,Healthcare,healthcare,false -jnobles,mastodon.social,Immigrants Rights,immigrants_rights,false -jnobles,mastodon.social,LGBTQ+,lgbtq,false -jnobles,mastodon.social,Journalism & Comment,news_comment_data,false -jnobles,mastodon.social,Programming,programming,false -jnobles,mastodon.social,Science,science,false -jnobles,mastodon.social,Space,space,false -jnobles,mastodon.social,Technology,technology,false -jnobles,mastodon.social,Women’s Voices,women_voices,false -jnobles,mastodon.social,Breaking News,breaking_news,true -Kicko,mstdn.social,Social Media,social_media,false -Kicko,mstdn.social,Technology,technology,false -Kicko,mstdn.social,US Sport,us_sport,false -Kicko,mstdn.social,Weather,weather,false -Kicko,mstdn.social,Breaking News,breaking_news,true -carloshr,lile.cl,Programming,programming,false -carloshr,lile.cl,Technology,technology,true -clonnee,newsmast.social,Biology,biology,false -clonnee,newsmast.social,Chemistry,chemistry,false -clonnee,newsmast.social,Engineering,engineering,false -clonnee,newsmast.social,Mathematics,mathematics,false -clonnee,newsmast.social,Physics,physics,false -clonnee,newsmast.social,Programming,programming,false -clonnee,newsmast.social,Science,science,false -clonnee,newsmast.social,Space,space,false -clonnee,newsmast.social,Technology,technology,false -clonnee,newsmast.social,AI,ai,true -caesar,indieweb.social,Biodiversity & Rewilding,biodiversity_rewilding,false -caesar,indieweb.social,Breaking News,breaking_news,false -caesar,indieweb.social,Climate change,climate_change,false -caesar,indieweb.social,Democracy & Human Rights,democracy_human_rights,false -caesar,indieweb.social,Energy & Pollution,energy_pollution,false -caesar,indieweb.social,Engineering,engineering,false -caesar,indieweb.social,Government & Policy,government_policy,false -caesar,indieweb.social,Physics,physics,false -caesar,indieweb.social,Politics,politics,false -caesar,indieweb.social,Programming,programming,false -caesar,indieweb.social,Science,science,false -caesar,indieweb.social,Space,space,false -caesar,indieweb.social,Technology,technology,false -caesar,indieweb.social,Weather,weather,false -caesar,indieweb.social,Environment,environment,true -okwithmydecay,en.osm.town,Breaking News,breaking_news,false -gurumitts,mastodon.online,Engineering,engineering,false -gurumitts,mastodon.online,Science,science,false -gurumitts,mastodon.online,Space,space,false -gurumitts,mastodon.online,Technology,technology,false -gurumitts,mastodon.online,Programming,programming,true -wwrr,mastodon.social,Humour,humour,false -PaoloParti,mastodon.uno,Journalism & Comment,news_comment_data,false -PaoloParti,mastodon.uno,Disabled Voices,disabled_voices,false -PaoloParti,mastodon.uno,Women’s Voices,women_voices,false -PaoloParti,mastodon.uno,Immigrants Rights,immigrants_rights,false -PaoloParti,mastodon.uno,Activism & Civil Rights,activism_civil_rights,false -Gnume,fosstodon.org,Breaking News,breaking_news,false -Gnume,fosstodon.org,Environment,environment,false -Gnume,fosstodon.org,Technology,technology,false -Gnume,fosstodon.org,Weather,weather,false -Gnume,fosstodon.org,Programming,programming,true -Decibels,mastodon.social,Biology,biology,false -Decibels,mastodon.social,Breaking News,breaking_news,false -Decibels,mastodon.social,Business,business,false -Decibels,mastodon.social,Chemistry,chemistry,false -Decibels,mastodon.social,Democracy & Human Rights,democracy_human_rights,false -Decibels,mastodon.social,Energy & Pollution,energy_pollution,false -Decibels,mastodon.social,Engineering,engineering,false -Decibels,mastodon.social,Government & Policy,government_policy,false -Decibels,mastodon.social,"Hunger, Disease & Water",hunger_disease_water,false -Decibels,mastodon.social,Markets & Finance,markets_finance,false -Decibels,mastodon.social,Mathematics,mathematics,false -Decibels,mastodon.social,Physics,physics,false -Decibels,mastodon.social,Politics,politics,false -Decibels,mastodon.social,Poverty & Inequality,poverty_inequality,false -Decibels,mastodon.social,Programming,programming,false -Decibels,mastodon.social,Science,science,false -Decibels,mastodon.social,Space,space,false -Decibels,mastodon.social,Technology,technology,false -Decibels,mastodon.social,AI,ai,true -Pavel,newsmast.social,AI,ai,false -islandknabo,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false -islandknabo,newsmast.social,Biology,biology,false -islandknabo,newsmast.social,Breaking News,breaking_news,false -islandknabo,newsmast.social,Chemistry,chemistry,false -islandknabo,newsmast.social,Mathematics,mathematics,false -islandknabo,newsmast.social,Journalism & Comment,news_comment_data,false -islandknabo,newsmast.social,Physics,physics,false -islandknabo,newsmast.social,Science,science,false -islandknabo,newsmast.social,Space,space,false -islandknabo,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,true -Charango,social.vivaldi.net,AI,ai,false -Charango,social.vivaldi.net,Books & Literature,books_literature,false -Charango,social.vivaldi.net,Engineering,engineering,false -Charango,social.vivaldi.net,Gaming,gaming,false -Charango,social.vivaldi.net,Physics,physics,false -Charango,social.vivaldi.net,Programming,programming,false -Charango,social.vivaldi.net,Science,science,false -Charango,social.vivaldi.net,Social Media,social_media,false -Charango,social.vivaldi.net,Technology,technology,false -Charango,social.vivaldi.net,Mathematics,mathematics,true -zippy,mas.to,AI,ai,false -zippy,mas.to,Architecture & Design,architecture_design,false -zippy,mas.to,Biodiversity & Rewilding,biodiversity_rewilding,false -zippy,mas.to,Biology,biology,false -zippy,mas.to,Books & Literature,books_literature,false -zippy,mas.to,Climate change,climate_change,false -zippy,mas.to,Environment,environment,false -zippy,mas.to,Humanities,humanities,false -zippy,mas.to,Mathematics,mathematics,false -zippy,mas.to,Philosophy,philosophy,false -zippy,mas.to,Photography,photography,false -zippy,mas.to,Physics,physics,false -zippy,mas.to,Science,science,false -zippy,mas.to,Social Sciences,social_sciences,false -zippy,mas.to,Technology,technology,false -zippy,mas.to,TV & Radio,tv_radio,false -zippy,mas.to,Breaking News,breaking_news,true -atdavec,mastodon.social,Biology,biology,false -atdavec,mastodon.social,Breaking News,breaking_news,false -atdavec,mastodon.social,Business,business,false -atdavec,mastodon.social,Chemistry,chemistry,false -atdavec,mastodon.social,Climate change,climate_change,false -atdavec,mastodon.social,Energy & Pollution,energy_pollution,false -atdavec,mastodon.social,Engineering,engineering,false -atdavec,mastodon.social,Environment,environment,false -atdavec,mastodon.social,Mathematics,mathematics,false -atdavec,mastodon.social,Physics,physics,false -atdavec,mastodon.social,Politics,politics,false -atdavec,mastodon.social,Programming,programming,false -atdavec,mastodon.social,Science,science,false -atdavec,mastodon.social,Social Media,social_media,false -atdavec,mastodon.social,Space,space,false -atdavec,mastodon.social,US Politics,us_politics,false -atdavec,mastodon.social,Technology,technology,true -zippy,mas.to,Women’s Voices,women_voices,false -PaoloParti,mastodon.uno,Democracy & Human Rights,democracy_human_rights,false -Annon,newsmast.social,Books & Literature,books_literature,false -Annon,newsmast.social,Gaming,gaming,false -Annon,newsmast.social,History,history,false -Annon,newsmast.social,Movies,movies,false -Annon,newsmast.social,Music,music,false -Annon,newsmast.social,Social Sciences,social_sciences,false -Annon,newsmast.social,Space,space,false -Lumii,masto.ai,Activism & Civil Rights,activism_civil_rights,false -Lumii,masto.ai,Physics,physics,false -Lumii,masto.ai,Programming,programming,false -Lumii,masto.ai,Science,science,false -Lumii,masto.ai,Space,space,false -Lumii,masto.ai,Technology,technology,true -Annon,newsmast.social,Technology,technology,false -Annon,newsmast.social,Visual Arts,visual_arts,false -Annon,newsmast.social,Programming,programming,true -backtobella,newsmast.social,Mathematics,mathematics,false -backtobella,newsmast.social,Movies,movies,false -oliphant,techhub.social,AI,ai,false -oliphant,techhub.social,Biodiversity & Rewilding,biodiversity_rewilding,false -oliphant,techhub.social,Breaking News,breaking_news,false -oliphant,techhub.social,Climate change,climate_change,false -oliphant,techhub.social,Environment,environment,false -oliphant,techhub.social,Food & Drink,food_drink,false -oliphant,techhub.social,History,history,false -oliphant,techhub.social,Humour,humour,false -oliphant,techhub.social,Markets & Finance,markets_finance,false -oliphant,techhub.social,Mental Health & Wellbeing,mental_health_wellbeing,false -oliphant,techhub.social,Nature & Wildlife,nature_wildlife,false -oliphant,techhub.social,Journalism & Comment,news_comment_data,false -oliphant,techhub.social,Pets,pets,false -oliphant,techhub.social,Philosophy,philosophy,false -oliphant,techhub.social,Science,science,false -oliphant,techhub.social,Technology,technology,false -oliphant,techhub.social,Travel,travel,false -oliphant,techhub.social,Weather,weather,false -oliphant,techhub.social,Workers Rights,workers_rights,false -oliphant,techhub.social,Programming,programming,true -longfried,mastodon.social,AI,ai,false -longfried,mastodon.social,Breaking News,breaking_news,false -longfried,mastodon.social,Engineering,engineering,false -longfried,mastodon.social,Football,football,false -longfried,mastodon.social,Journalism & Comment,news_comment_data,false -longfried,mastodon.social,Programming,programming,false -longfried,mastodon.social,Social Media,social_media,false -longfried,mastodon.social,Sport,sport,false -longfried,mastodon.social,Technology,technology,false -longfried,mastodon.social,Ukraine Invasion,ukraine_invasion,false -longfried,mastodon.social,Weather,weather,false -longfried,mastodon.social,US Sport,us_sport,true -aksu,infosec.exchange,Journalism & Comment,news_comment_data,false -aksu,infosec.exchange,Science,science,false -aksu,infosec.exchange,Space,space,false -aksu,infosec.exchange,Technology,technology,false -aksu,infosec.exchange,Breaking News,breaking_news,true -RowdeeG,mastodon.world,Football,football,false -RowdeeG,mastodon.world,Music,music,false -RowdeeG,mastodon.world,Sport,sport,false -RowdeeG,mastodon.world,Technology,technology,false -RowdeeG,mastodon.world,TV & Radio,tv_radio,false -RowdeeG,mastodon.world,US Sport,us_sport,true -elgosz,mastodon.social,AI,ai,false -elgosz,mastodon.social,Breaking News,breaking_news,false -elgosz,mastodon.social,Engineering,engineering,false -elgosz,mastodon.social,Programming,programming,false -elgosz,mastodon.social,Science,science,false -elgosz,mastodon.social,Space,space,false -elgosz,mastodon.social,US Politics,us_politics,false -elgosz,mastodon.social,Technology,technology,true -UltimateNoob,mastodon.social,Biology,biology,false -UltimateNoob,mastodon.social,Chemistry,chemistry,false -UltimateNoob,mastodon.social,Mathematics,mathematics,false -UltimateNoob,mastodon.social,Physics,physics,false -UltimateNoob,mastodon.social,Science,science,false -UltimateNoob,mastodon.social,Space,space,false -UltimateNoob,mastodon.social,Breaking News,breaking_news,true -Anders_S,mastodon.nu,Biodiversity & Rewilding,biodiversity_rewilding,false -Anders_S,mastodon.nu,Climate change,climate_change,false -Anders_S,mastodon.nu,Energy & Pollution,energy_pollution,false -Anders_S,mastodon.nu,Environment,environment,false -Anders_S,mastodon.nu,Programming,programming,false -Anders_S,mastodon.nu,Law & Justice,law_justice,true -doctorambient,newsmast.social,Academia & Research,academia_research,false -doctorambient,newsmast.social,Chemistry,chemistry,false -doctorambient,newsmast.social,History,history,false -doctorambient,newsmast.social,Physics,physics,false -jimkane57,mastodon.world,History,history,true -doctorambient,newsmast.social,Science,science,false -doctorambient,newsmast.social,Social Sciences,social_sciences,false -doctorambient,newsmast.social,Mathematics,mathematics,true -alanstanley,mas.to,Academia & Research,academia_research,false -alanstanley,mas.to,AI,ai,false -alanstanley,mas.to,Biodiversity & Rewilding,biodiversity_rewilding,false -alanstanley,mas.to,Biology,biology,false -alanstanley,mas.to,Chemistry,chemistry,false -alanstanley,mas.to,Climate change,climate_change,false -alanstanley,mas.to,Democracy & Human Rights,democracy_human_rights,false -alanstanley,mas.to,Energy & Pollution,energy_pollution,false -alanstanley,mas.to,Engineering,engineering,false -randulo,mastodon.social,AI,ai,false -randulo,mastodon.social,Biology,biology,false -randulo,mastodon.social,Chemistry,chemistry,false -randulo,mastodon.social,Engineering,engineering,false -randulo,mastodon.social,Mathematics,mathematics,false -randulo,mastodon.social,Physics,physics,false -randulo,mastodon.social,Programming,programming,false -randulo,mastodon.social,Space,space,false -randulo,mastodon.social,Technology,technology,false -randulo,mastodon.social,Science,science,true -Anders_S,mastodon.nu,Books & Literature,books_literature,false -Anders_S,mastodon.nu,Architecture & Design,architecture_design,false -Anders_S,mastodon.nu,Movies,movies,false -alanstanley,mas.to,Environment,environment,false -alanstanley,mas.to,Government & Policy,government_policy,false -alanstanley,mas.to,Healthcare,healthcare,false -alanstanley,mas.to,History,history,false -alanstanley,mas.to,Humanities,humanities,false -alanstanley,mas.to,"Hunger, Disease & Water",hunger_disease_water,false -alanstanley,mas.to,Law & Justice,law_justice,false -alanstanley,mas.to,Mathematics,mathematics,false -alanstanley,mas.to,Journalism & Comment,news_comment_data,false -alanstanley,mas.to,Philosophy,philosophy,false -alanstanley,mas.to,Physics,physics,false -alanstanley,mas.to,Politics,politics,false -alanstanley,mas.to,Poverty & Inequality,poverty_inequality,false -alanstanley,mas.to,Programming,programming,false -alanstanley,mas.to,Science,science,false -alanstanley,mas.to,Social Sciences,social_sciences,false -cloakthelurker,mas.to,Academia & Research,academia_research,false -cloakthelurker,mas.to,AI,ai,false -cloakthelurker,mas.to,Architecture & Design,architecture_design,false -cloakthelurker,mas.to,Books & Literature,books_literature,false -cloakthelurker,mas.to,Business,business,false -cloakthelurker,mas.to,Disabled Voices,disabled_voices,false -cloakthelurker,mas.to,Gaming,gaming,false -cloakthelurker,mas.to,Government & Policy,government_policy,false -cloakthelurker,mas.to,Law & Justice,law_justice,false -cloakthelurker,mas.to,Music,music,false -cloakthelurker,mas.to,Journalism & Comment,news_comment_data,false -cloakthelurker,mas.to,Politics,politics,false -cloakthelurker,mas.to,Technology,technology,false -cloakthelurker,mas.to,US Politics,us_politics,false -cloakthelurker,mas.to,Workers Rights,workers_rights,false -cloakthelurker,mas.to,Movies,movies,true -alanstanley,mas.to,Space,space,false -alanstanley,mas.to,Technology,technology,false -alanstanley,mas.to,Ukraine Invasion,ukraine_invasion,false -alanstanley,mas.to,US Politics,us_politics,false -alanstanley,mas.to,Weather,weather,false -alanstanley,mas.to,Breaking News,breaking_news,true -PaoloParti,mastodon.uno,Poverty & Inequality,poverty_inequality,false -mattybob,newsmast.social,Breaking News,breaking_news,false -mattybob,newsmast.social,Climate change,climate_change,false -mattybob,newsmast.social,Football,football,false -mattybob,newsmast.social,Government & Policy,government_policy,false -mattybob,newsmast.social,Politics,politics,false -mattybob,newsmast.social,Science,science,false -mattybob,newsmast.social,US Politics,us_politics,false -mattybob,newsmast.social,Biology,biology,true -Sam,newsmast.social,Breaking News,breaking_news,false -Sam,newsmast.social,Activism & Civil Rights,activism_civil_rights,true -GratianRiter,bildung.social,Food & Drink,food_drink,false -GratianRiter,bildung.social,Football,football,false -GratianRiter,bildung.social,Humour,humour,false -GratianRiter,bildung.social,Mental Health & Wellbeing,mental_health_wellbeing,false -GratianRiter,bildung.social,Nature & Wildlife,nature_wildlife,false -GratianRiter,bildung.social,Pets,pets,false -GratianRiter,bildung.social,Puzzles,puzzles,false -GratianRiter,bildung.social,Sport,sport,false -GratianRiter,bildung.social,Travel,travel,false -GratianRiter,bildung.social,US Sport,us_sport,false -GratianRiter,bildung.social,Creative Arts,creative_arts,true -fatemah,newsmast.social,Biology,biology,false -fatemah,newsmast.social,Chemistry,chemistry,false -fatemah,newsmast.social,Creative Arts,creative_arts,false -fatemah,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -fatemah,newsmast.social,Food & Drink,food_drink,false -fatemah,newsmast.social,Government & Policy,government_policy,false -fatemah,newsmast.social,Healthcare,healthcare,false -fatemah,newsmast.social,Humanities,humanities,false -fatemah,newsmast.social,Humour,humour,false -fatemah,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false -fatemah,newsmast.social,Law & Justice,law_justice,false -fatemah,newsmast.social,Mathematics,mathematics,false -fatemah,newsmast.social,Nature & Wildlife,nature_wildlife,false -fatemah,newsmast.social,Pets,pets,false -fatemah,newsmast.social,Philosophy,philosophy,false -fatemah,newsmast.social,Physics,physics,false -fatemah,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,true -fatemah,newsmast.social,Politics,politics,false -fatemah,newsmast.social,Poverty & Inequality,poverty_inequality,false -fatemah,newsmast.social,Puzzles,puzzles,false -fatemah,newsmast.social,Science,science,false -fatemah,newsmast.social,Space,space,false -fatemah,newsmast.social,Travel,travel,false -fatemah,newsmast.social,US Politics,us_politics,false -PaoloParti,mastodon.uno,LGBTQ+,lgbtq,false -bridgeteam,newsmast.social,Academia & Research,academia_research,false -bridgeteam,newsmast.social,Architecture & Design,architecture_design,false -Annon,newsmast.social,Creative Arts,creative_arts,false -Annon,newsmast.social,Nature & Wildlife,nature_wildlife,false -Annon,newsmast.social,Puzzles,puzzles,false -bridgeteam,newsmast.social,Biology,biology,false -sawilsonpoet,mastodon.social,Breaking News,breaking_news,false -sawilsonpoet,mastodon.social,History,history,false -sawilsonpoet,mastodon.social,Humanities,humanities,false -sawilsonpoet,mastodon.social,Movies,movies,false -sawilsonpoet,mastodon.social,Music,music,false -sawilsonpoet,mastodon.social,Journalism & Comment,news_comment_data,false -sawilsonpoet,mastodon.social,Philosophy,philosophy,false -sawilsonpoet,mastodon.social,Social Media,social_media,false -dfaulkner,mastodon.social,AI,ai,false -dfaulkner,mastodon.social,Business,business,false -dfaulkner,mastodon.social,Democracy & Human Rights,democracy_human_rights,false -dfaulkner,mastodon.social,Government & Policy,government_policy,false -dfaulkner,mastodon.social,Markets & Finance,markets_finance,false -dfaulkner,mastodon.social,Mathematics,mathematics,false -dfaulkner,mastodon.social,Physics,physics,false -dfaulkner,mastodon.social,Politics,politics,false -dfaulkner,mastodon.social,Science,science,false -dfaulkner,mastodon.social,Space,space,false -dfaulkner,mastodon.social,Technology,technology,false -dfaulkner,mastodon.social,Ukraine Invasion,ukraine_invasion,false -dfaulkner,mastodon.social,US Politics,us_politics,false -dfaulkner,mastodon.social,Weather,weather,false -dfaulkner,mastodon.social,Workers Rights,workers_rights,false -dfaulkner,mastodon.social,Breaking News,breaking_news,true -sawilsonpoet,mastodon.social,Social Sciences,social_sciences,false -sawilsonpoet,mastodon.social,Weather,weather,false -sawilsonpoet,mastodon.social,Books & Literature,books_literature,true -backtobella,newsmast.social,Performing Arts,performing_arts,false -backtobella,newsmast.social,Science,science,false -kylesinlynn,burma.social,Breaking News,breaking_news,false -kylesinlynn,burma.social,Journalism & Comment,news_comment_data,false -kylesinlynn,burma.social,Ukraine Invasion,ukraine_invasion,false -kylesinlynn,burma.social,Weather,weather,false -kylesinlynn,burma.social,Social Media,social_media,true -backtobella,newsmast.social,Space,space,false -bridgeteam,newsmast.social,Breaking News,breaking_news,false -bridgeteam,newsmast.social,Chemistry,chemistry,false -sebbz,newsmast.social,AI,ai,false -sebbz,newsmast.social,Breaking News,breaking_news,false -sebbz,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -sebbz,newsmast.social,Engineering,engineering,false -sebbz,newsmast.social,Humanities,humanities,false -sebbz,newsmast.social,Journalism & Comment,news_comment_data,false -sebbz,newsmast.social,Programming,programming,false -sebbz,newsmast.social,Social Sciences,social_sciences,false -sebbz,newsmast.social,Technology,technology,true -nakindda,Kolektiva.social,Creative Arts,creative_arts,false -nakindda,Kolektiva.social,Food & Drink,food_drink,false -nakindda,Kolektiva.social,Humour,humour,false -nakindda,Kolektiva.social,Mental Health & Wellbeing,mental_health_wellbeing,false -nakindda,Kolektiva.social,Pets,pets,false -nakindda,Kolektiva.social,Technology,technology,false -nakindda,Kolektiva.social,Travel,travel,false -nakindda,Kolektiva.social,Nature & Wildlife,nature_wildlife,true -GossiTheDog,cyberplace.social,Biology,biology,false -GossiTheDog,cyberplace.social,Business,business,false -GossiTheDog,cyberplace.social,Science,science,false -GossiTheDog,cyberplace.social,Space,space,false -GossiTheDog,cyberplace.social,Technology,technology,true -Gloomiste,ieji.de,Architecture & Design,architecture_design,false -Gloomiste,ieji.de,Photography,photography,false -Gloomiste,ieji.de,Social Sciences,social_sciences,false -Gloomiste,ieji.de,Visual Arts,visual_arts,false -Gloomiste,ieji.de,Music,music,true -Kovatoro,mastodon.social,Architecture & Design,architecture_design,false -Kovatoro,mastodon.social,Books & Literature,books_literature,false -Kovatoro,mastodon.social,Music,music,false -Kovatoro,mastodon.social,Journalism & Comment,news_comment_data,false -Kovatoro,mastodon.social,Photography,photography,false -Kovatoro,mastodon.social,Programming,programming,false -Kovatoro,mastodon.social,Space,space,false -Kovatoro,mastodon.social,Weather,weather,false -Kovatoro,mastodon.social,Gaming,gaming,true -seosiri,newsmast.social,Biology,biology,false -seosiri,newsmast.social,Chemistry,chemistry,false -seosiri,newsmast.social,Markets & Finance,markets_finance,false -seosiri,newsmast.social,Mathematics,mathematics,false -seosiri,newsmast.social,Physics,physics,false -seosiri,newsmast.social,Science,science,false -seosiri,newsmast.social,Space,space,false -seosiri,newsmast.social,Workers Rights,workers_rights,false -seosiri,newsmast.social,Business,business,true -bridgeteam,newsmast.social,Creative Arts,creative_arts,false -bridgeteam,newsmast.social,Food & Drink,food_drink,false -rosswood82,mastodon.scot,Government & Policy,government_policy,false -rosswood82,mastodon.scot,Politics,politics,false -rosswood82,mastodon.scot,Breaking News,breaking_news,true -bridgeteam,newsmast.social,Gaming,gaming,false -bridgeteam,newsmast.social,Government & Policy,government_policy,false -bridgeteam,newsmast.social,Healthcare,healthcare,false -bridgeteam,newsmast.social,History,history,false -bridgeteam,newsmast.social,Humanities,humanities,false -ppeeoo,mastodon.social,AI,ai,false -ppeeoo,mastodon.social,Democracy & Human Rights,democracy_human_rights,false -ppeeoo,mastodon.social,Journalism & Comment,news_comment_data,false -ppeeoo,mastodon.social,Social Media,social_media,false -juliancanellas,mastodon.social,AI,ai,false -juliancanellas,mastodon.social,Architecture & Design,architecture_design,false -juliancanellas,mastodon.social,Biodiversity & Rewilding,biodiversity_rewilding,false -juliancanellas,mastodon.social,Biology,biology,false -juliancanellas,mastodon.social,Books & Literature,books_literature,false -juliancanellas,mastodon.social,Chemistry,chemistry,false -juliancanellas,mastodon.social,Climate change,climate_change,false -juliancanellas,mastodon.social,Creative Arts,creative_arts,false -juliancanellas,mastodon.social,Democracy & Human Rights,democracy_human_rights,false -juliancanellas,mastodon.social,Energy & Pollution,energy_pollution,false -juliancanellas,mastodon.social,Engineering,engineering,false -juliancanellas,mastodon.social,Environment,environment,false -juliancanellas,mastodon.social,Food & Drink,food_drink,false -juliancanellas,mastodon.social,Gaming,gaming,false -juliancanellas,mastodon.social,History,history,false -juliancanellas,mastodon.social,Humanities,humanities,false -juliancanellas,mastodon.social,Humour,humour,false -juliancanellas,mastodon.social,"Hunger, Disease & Water",hunger_disease_water,false -juliancanellas,mastodon.social,Mathematics,mathematics,false -juliancanellas,mastodon.social,Mental Health & Wellbeing,mental_health_wellbeing,false -juliancanellas,mastodon.social,Movies,movies,false -juliancanellas,mastodon.social,Music,music,false -juliancanellas,mastodon.social,Nature & Wildlife,nature_wildlife,false -juliancanellas,mastodon.social,Performing Arts,performing_arts,false -juliancanellas,mastodon.social,Pets,pets,false -juliancanellas,mastodon.social,Philosophy,philosophy,false -juliancanellas,mastodon.social,Photography,photography,false -juliancanellas,mastodon.social,Physics,physics,false -juliancanellas,mastodon.social,Poverty & Inequality,poverty_inequality,false -juliancanellas,mastodon.social,Programming,programming,false -juliancanellas,mastodon.social,Puzzles,puzzles,false -juliancanellas,mastodon.social,Science,science,false -juliancanellas,mastodon.social,Social Sciences,social_sciences,false -juliancanellas,mastodon.social,Space,space,false -juliancanellas,mastodon.social,Technology,technology,false -juliancanellas,mastodon.social,Travel,travel,false -juliancanellas,mastodon.social,TV & Radio,tv_radio,false -juliancanellas,mastodon.social,Visual Arts,visual_arts,false -juliancanellas,mastodon.social,Workers Rights,workers_rights,false -juliancanellas,mastodon.social,Academia & Research,academia_research,true -ppeeoo,mastodon.social,Technology,technology,false -ppeeoo,mastodon.social,Ukraine Invasion,ukraine_invasion,false -ppeeoo,mastodon.social,Weather,weather,false -ppeeoo,mastodon.social,Breaking News,breaking_news,true -Annon,newsmast.social,Food & Drink,food_drink,false -Annon,newsmast.social,Pets,pets,false -bridgeteam,newsmast.social,Humour,humour,false -GraymatterNews,mastodon.social,AI,ai,false -GraymatterNews,mastodon.social,Business,business,false -GraymatterNews,mastodon.social,Engineering,engineering,false -GraymatterNews,mastodon.social,Science,science,false -GraymatterNews,mastodon.social,Technology,technology,true -backtobella,newsmast.social,TV & Radio,tv_radio,false -backtobella,newsmast.social,Visual Arts,visual_arts,true -Pavel,newsmast.social,Programming,programming,false -Pavel,newsmast.social,Social Media,social_media,false -Pavel,newsmast.social,Social Sciences,social_sciences,false -Pavel,newsmast.social,Philosophy,philosophy,true -jswilkins,fediscience.org,History,history,false -xjxjxjx,newsmast.social,Gaming,gaming,false -paulcrosby,newsmast.social,Breaking News,breaking_news,false -paulcrosby,newsmast.social,AI,ai,false -paulcrosby,newsmast.social,LGBTQ+,lgbtq,true -wakahuula,wetdry.world,Breaking News,breaking_news,false -wakahuula,wetdry.world,Climate change,climate_change,false -wakahuula,wetdry.world,Democracy & Human Rights,democracy_human_rights,false -wakahuula,wetdry.world,Energy & Pollution,energy_pollution,false -wakahuula,wetdry.world,Engineering,engineering,false -wakahuula,wetdry.world,Environment,environment,false -wakahuula,wetdry.world,Government & Policy,government_policy,false -wakahuula,wetdry.world,Law & Justice,law_justice,false -wakahuula,wetdry.world,Journalism & Comment,news_comment_data,false -wakahuula,wetdry.world,Politics,politics,false -wakahuula,wetdry.world,Science,science,false -wakahuula,wetdry.world,Space,space,false -wakahuula,wetdry.world,Technology,technology,false -wakahuula,wetdry.world,Ukraine Invasion,ukraine_invasion,false -wakahuula,wetdry.world,Programming,programming,true -Radgryd,mstdn.games,Biodiversity & Rewilding,biodiversity_rewilding,false -Radgryd,mstdn.games,Biology,biology,false -Radgryd,mstdn.games,Books & Literature,books_literature,false -Radgryd,mstdn.games,Breaking News,breaking_news,false -Radgryd,mstdn.games,LGBTQ+,lgbtq,false -Radgryd,mstdn.games,Philosophy,philosophy,false -Radgryd,mstdn.games,Gaming,gaming,true -fp,troet.cafe,Government & Policy,government_policy,false -fp,troet.cafe,Climate change,climate_change,false -Annon,newsmast.social,Humour,humour,false -MysticBrew,pony.social,Travel,travel,false -MysticBrew,pony.social,Creative Arts,creative_arts,true -Anders_S,mastodon.nu,Poverty & Inequality,poverty_inequality,false -Anders_S,mastodon.nu,Activism & Civil Rights,activism_civil_rights,false -Gloomiste,ieji.de,Humanities,humanities,false -Gloomiste,ieji.de,Books & Literature,books_literature,false -Gloomiste,ieji.de,Performing Arts,performing_arts,false -Gloomiste,ieji.de,Creative Arts,creative_arts,false -Gloomiste,ieji.de,Humour,humour,false -amerpie,social.lol,Breaking News,breaking_news,false -amerpie,social.lol,Movies,movies,false -amerpie,social.lol,Social Media,social_media,false -amerpie,social.lol,TV & Radio,tv_radio,false -amerpie,social.lol,US Politics,us_politics,false -amerpie,social.lol,Technology,technology,true -anaslm10,newsmast.social,Space,space,false -anaslm10,newsmast.social,Sport,sport,false -anaslm10,newsmast.social,US Sport,us_sport,false -anaslm10,newsmast.social,Breaking News,breaking_news,true -ballhaus,newsmast.social,History,history,false -ballhaus,newsmast.social,Mathematics,mathematics,false -ballhaus,newsmast.social,Movies,movies,false -ballhaus,newsmast.social,Performing Arts,performing_arts,false -ballhaus,newsmast.social,Philosophy,philosophy,false -ballhaus,newsmast.social,Photography,photography,false -ballhaus,newsmast.social,Science,science,false -ballhaus,newsmast.social,Social Sciences,social_sciences,false -ballhaus,newsmast.social,Space,space,false -ballhaus,newsmast.social,Visual Arts,visual_arts,false -ballhaus,newsmast.social,Music,music,true -jpinmor,mastodon.social,AI,ai,false -carlt4,hachyderm.io,Breaking News,breaking_news,false -carlt4,hachyderm.io,Democracy & Human Rights,democracy_human_rights,false -carlt4,hachyderm.io,Programming,programming,false -carlt4,hachyderm.io,US Politics,us_politics,false -carlt4,hachyderm.io,Politics,politics,true -jpinmor,mastodon.social,Biology,biology,false -jpinmor,mastodon.social,Science,science,false -jpinmor,mastodon.social,Technology,technology,false -jpinmor,mastodon.social,Space,space,true -genebean,fosstodon.org,Academia & Research,academia_research,false -genebean,fosstodon.org,Activism & Civil Rights,activism_civil_rights,false -genebean,fosstodon.org,Architecture & Design,architecture_design,false -genebean,fosstodon.org,Biodiversity & Rewilding,biodiversity_rewilding,false -genebean,fosstodon.org,Black Voices,black_voices,false -FreddieJ,newsmast.social,Photography,photography,true -belpatca,techhub.social,Engineering,engineering,false -belpatca,techhub.social,Environment,environment,false -belpatca,techhub.social,Physics,physics,false -belpatca,techhub.social,Programming,programming,false -neirda,newsmast.social,Football,football,false -neirda,newsmast.social,History,history,false -neirda,newsmast.social,Humanities,humanities,false -neirda,newsmast.social,Social Sciences,social_sciences,false -neirda,newsmast.social,Sport,sport,false -neirda,newsmast.social,US Sport,us_sport,false -neirda,newsmast.social,Philosophy,philosophy,true -luomared,masto.es,Biology,biology,false -luomared,masto.es,Chemistry,chemistry,false -luomared,masto.es,Gaming,gaming,false -luomared,masto.es,Humanities,humanities,false -luomared,masto.es,Movies,movies,false -luomared,masto.es,Music,music,false -luomared,masto.es,Philosophy,philosophy,false -luomared,masto.es,Science,science,false -luomared,masto.es,Space,space,false -luomared,masto.es,TV & Radio,tv_radio,false -luomared,masto.es,Books & Literature,books_literature,true -PrivateParrot,mstdn.social,Breaking News,breaking_news,false -PrivateParrot,mstdn.social,Climate change,climate_change,false -PrivateParrot,mstdn.social,Environment,environment,false -PrivateParrot,mstdn.social,Government & Policy,government_policy,false -PrivateParrot,mstdn.social,Politics,politics,false -PrivateParrot,mstdn.social,Science,science,false -PrivateParrot,mstdn.social,Social Media,social_media,false -PrivateParrot,mstdn.social,US Politics,us_politics,false -PrivateParrot,mstdn.social,Technology,technology,true -samsethi,podcastindex.social,Technology,technology,false -fediverso,newsmast.social,Activism & Civil Rights,activism_civil_rights,false -fediverso,newsmast.social,AI,ai,false -fediverso,newsmast.social,Biology,biology,false -fediverso,newsmast.social,Chemistry,chemistry,false -fediverso,newsmast.social,Government & Policy,government_policy,false -fediverso,newsmast.social,Humanities,humanities,false -fediverso,newsmast.social,Mathematics,mathematics,false -fediverso,newsmast.social,Physics,physics,false -fediverso,newsmast.social,Social Sciences,social_sciences,false -aproposnix,mastodon.social,Academia & Research,academia_research,false -aproposnix,mastodon.social,Government & Policy,government_policy,false -aproposnix,mastodon.social,Healthcare,healthcare,false -aproposnix,mastodon.social,History,history,false -aproposnix,mastodon.social,Humanities,humanities,false -aproposnix,mastodon.social,Law & Justice,law_justice,false -aproposnix,mastodon.social,Journalism & Comment,news_comment_data,false -aproposnix,mastodon.social,Philosophy,philosophy,false -aproposnix,mastodon.social,Politics,politics,false -aproposnix,mastodon.social,Social Media,social_media,false -aproposnix,mastodon.social,Social Sciences,social_sciences,false -aproposnix,mastodon.social,Ukraine Invasion,ukraine_invasion,false -aproposnix,mastodon.social,US Politics,us_politics,false -aproposnix,mastodon.social,Weather,weather,false -aproposnix,mastodon.social,Breaking News,breaking_news,true -jarulf,mstdn.social,Technology,technology,false -fediverso,newsmast.social,Technology,technology,false -fediverso,newsmast.social,Academia & Research,academia_research,true -samsethi,podcastindex.social,AI,ai,false -samsethi,podcastindex.social,Business,business,false -samsethi,podcastindex.social,Football,football,false -samsethi,podcastindex.social,Politics,politics,false -samsethi,podcastindex.social,Science,science,false -samsethi,podcastindex.social,Space,space,false -samsethi,podcastindex.social,US Politics,us_politics,false -samsethi,podcastindex.social,Breaking News,breaking_news,true -bridgeteam,newsmast.social,Law & Justice,law_justice,false -xjxjxjx,newsmast.social,AI,ai,false -xjxjxjx,newsmast.social,Architecture & Design,architecture_design,false -xjxjxjx,newsmast.social,Books & Literature,books_literature,false -xjxjxjx,newsmast.social,Breaking News,breaking_news,false -xjxjxjx,newsmast.social,Engineering,engineering,false -bridgeteam,newsmast.social,Mathematics,mathematics,false -xjxjxjx,newsmast.social,History,history,false -xjxjxjx,newsmast.social,Humanities,humanities,false -xjxjxjx,newsmast.social,Movies,movies,false -xjxjxjx,newsmast.social,Music,music,false -xjxjxjx,newsmast.social,Journalism & Comment,news_comment_data,false -xjxjxjx,newsmast.social,Performing Arts,performing_arts,false -xjxjxjx,newsmast.social,Philosophy,philosophy,false -xjxjxjx,newsmast.social,Programming,programming,false -xjxjxjx,newsmast.social,Social Media,social_media,false -xjxjxjx,newsmast.social,Social Sciences,social_sciences,false -xjxjxjx,newsmast.social,Technology,technology,false -xjxjxjx,newsmast.social,TV & Radio,tv_radio,false -xjxjxjx,newsmast.social,Ukraine Invasion,ukraine_invasion,false -xjxjxjx,newsmast.social,Visual Arts,visual_arts,false -xjxjxjx,newsmast.social,Photography,photography,true -bridgeteam,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false -spaduf,hachyderm.io,Biology,biology,false -spaduf,hachyderm.io,Chemistry,chemistry,false -spaduf,hachyderm.io,Government & Policy,government_policy,false -spaduf,hachyderm.io,Healthcare,healthcare,false -spaduf,hachyderm.io,Mathematics,mathematics,false -spaduf,hachyderm.io,Physics,physics,false -spaduf,hachyderm.io,Programming,programming,false -spaduf,hachyderm.io,Science,science,false -spaduf,hachyderm.io,Space,space,false -spaduf,hachyderm.io,Technology,technology,false -spaduf,hachyderm.io,Academia & Research,academia_research,true -iffy,mastodon.sdf.org,Academia & Research,academia_research,false -iffy,mastodon.sdf.org,Government & Policy,government_policy,false -iffy,mastodon.sdf.org,Healthcare,healthcare,false -iffy,mastodon.sdf.org,Law & Justice,law_justice,false -iffy,mastodon.sdf.org,US Politics,us_politics,false -iffy,mastodon.sdf.org,Politics,politics,true -dariohudon,mas.to,Activism & Civil Rights,activism_civil_rights,false -dariohudon,mas.to,History,history,false -dariohudon,mas.to,Humanities,humanities,false -dariohudon,mas.to,Visual Arts,visual_arts,false -dariohudon,mas.to,Photography,photography,true -gimulnautti,mastodon.green,AI,ai,false -gimulnautti,mastodon.green,Engineering,engineering,false -gimulnautti,mastodon.green,Programming,programming,false -gimulnautti,mastodon.green,Science,science,false -gimulnautti,mastodon.green,Space,space,false -gimulnautti,mastodon.green,Technology,technology,false -gimulnautti,mastodon.green,Academia & Research,academia_research,true -ultrabunny,mastodon.social,Architecture & Design,architecture_design,false -ultrabunny,mastodon.social,Music,music,false -ultrabunny,mastodon.social,Ukraine Invasion,ukraine_invasion,false -ultrabunny,mastodon.social,Weather,weather,false -ultrabunny,mastodon.social,Breaking News,breaking_news,true -cmyrland,tutoteket.no,AI,ai,false -cmyrland,tutoteket.no,Biodiversity & Rewilding,biodiversity_rewilding,false -cmyrland,tutoteket.no,Biology,biology,false -cmyrland,tutoteket.no,Chemistry,chemistry,false -cmyrland,tutoteket.no,Climate change,climate_change,false -cmyrland,tutoteket.no,Energy & Pollution,energy_pollution,false -cmyrland,tutoteket.no,Engineering,engineering,false -cmyrland,tutoteket.no,Environment,environment,false -cmyrland,tutoteket.no,Football,football,false -cmyrland,tutoteket.no,Mathematics,mathematics,false -cmyrland,tutoteket.no,Physics,physics,false -cmyrland,tutoteket.no,Space,space,false -cmyrland,tutoteket.no,Technology,technology,false -cmyrland,tutoteket.no,Science,science,true -bridgeteam,newsmast.social,Movies,movies,false -xjxjxjx,newsmast.social,Weather,weather,false -bieberium,infosec.exchange,Engineering,engineering,false -bieberium,infosec.exchange,Environment,environment,false -bieberium,infosec.exchange,Technology,technology,false -bieberium,infosec.exchange,Ukraine Invasion,ukraine_invasion,false -bieberium,infosec.exchange,Breaking News,breaking_news,true -Bubblefarts,newsmast.social,Biology,biology,false -harvinhentry,newsmast.social,Activism & Civil Rights,activism_civil_rights,false -harvinhentry,newsmast.social,AI,ai,false -harvinhentry,newsmast.social,Black Voices,black_voices,false -harvinhentry,newsmast.social,Disabled Voices,disabled_voices,false -harvinhentry,newsmast.social,Engineering,engineering,false -harvinhentry,newsmast.social,Immigrants Rights,immigrants_rights,false -harvinhentry,newsmast.social,Indigenous Peoples,indigenous_peoples,false -test12,newsmast.social,Academia & Research,academia_research,false -test12,newsmast.social,Activism & Civil Rights,activism_civil_rights,false -test12,newsmast.social,AI,ai,false -test12,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -test12,newsmast.social,Gaming,gaming,false -test12,newsmast.social,Government & Policy,government_policy,false -test12,newsmast.social,History,history,false -test12,newsmast.social,Humanities,humanities,false -test12,newsmast.social,Indigenous Peoples,indigenous_peoples,false -test12,newsmast.social,Law & Justice,law_justice,false -test12,newsmast.social,Movies,movies,false -test12,newsmast.social,Music,music,false -test12,newsmast.social,Journalism & Comment,news_comment_data,false -test12,newsmast.social,Social Media,social_media,false -test12,newsmast.social,Technology,technology,false -test12,newsmast.social,TV & Radio,tv_radio,false -test12,newsmast.social,US Politics,us_politics,false -test12,newsmast.social,US Sport,us_sport,false -test12,newsmast.social,Black Voices,black_voices,true -harvinhentry,newsmast.social,LGBTQ+,lgbtq,false -harvinhentry,newsmast.social,Programming,programming,false -genebean,fosstodon.org,Books & Literature,books_literature,false -genebean,fosstodon.org,Business,business,false -genebean,fosstodon.org,Climate change,climate_change,false -genebean,fosstodon.org,Democracy & Human Rights,democracy_human_rights,false -genebean,fosstodon.org,Disabled Voices,disabled_voices,false -olemd,mastodon.social,AI,ai,false -olemd,mastodon.social,Climate change,climate_change,false -olemd,mastodon.social,Democracy & Human Rights,democracy_human_rights,false -olemd,mastodon.social,Environment,environment,false -olemd,mastodon.social,Poverty & Inequality,poverty_inequality,false -olemd,mastodon.social,Programming,programming,false -olemd,mastodon.social,Science,science,false -olemd,mastodon.social,Technology,technology,false -olemd,mastodon.social,Space,space,true -genebean,fosstodon.org,Energy & Pollution,energy_pollution,false -genebean,fosstodon.org,Engineering,engineering,false -genebean,fosstodon.org,Environment,environment,false -genebean,fosstodon.org,Food & Drink,food_drink,false -genebean,fosstodon.org,Government & Policy,government_policy,false -genebean,fosstodon.org,Healthcare,healthcare,false -genebean,fosstodon.org,History,history,false -genebean,fosstodon.org,Immigrants Rights,immigrants_rights,false -genebean,fosstodon.org,Indigenous Peoples,indigenous_peoples,false -genebean,fosstodon.org,Law & Justice,law_justice,false -genebean,fosstodon.org,LGBTQ+,lgbtq,false -genebean,fosstodon.org,Nature & Wildlife,nature_wildlife,false -genebean,fosstodon.org,Journalism & Comment,news_comment_data,false -genebean,fosstodon.org,Pets,pets,false -genebean,fosstodon.org,Photography,photography,false -genebean,fosstodon.org,Politics,politics,false -genebean,fosstodon.org,Programming,programming,false -genebean,fosstodon.org,Science,science,false -genebean,fosstodon.org,Social Media,social_media,false -genebean,fosstodon.org,Space,space,false -genebean,fosstodon.org,Technology,technology,false -genebean,fosstodon.org,Travel,travel,false -hacsas,mastodon.social,Activism & Civil Rights,activism_civil_rights,false -hacsas,mastodon.social,Books & Literature,books_literature,false -hacsas,mastodon.social,Breaking News,breaking_news,false -hacsas,mastodon.social,Climate change,climate_change,false -hacsas,mastodon.social,Democracy & Human Rights,democracy_human_rights,false -hacsas,mastodon.social,Energy & Pollution,energy_pollution,false -hacsas,mastodon.social,Engineering,engineering,false -hacsas,mastodon.social,Environment,environment,false -hacsas,mastodon.social,History,history,false -hacsas,mastodon.social,Humanities,humanities,false -hacsas,mastodon.social,"Hunger, Disease & Water",hunger_disease_water,false -hacsas,mastodon.social,Movies,movies,false -hacsas,mastodon.social,Music,music,false -hacsas,mastodon.social,Philosophy,philosophy,false -hacsas,mastodon.social,Poverty & Inequality,poverty_inequality,false -hacsas,mastodon.social,Programming,programming,false -hacsas,mastodon.social,Science,science,false -hacsas,mastodon.social,Social Sciences,social_sciences,false -hacsas,mastodon.social,Space,space,false -hacsas,mastodon.social,Technology,technology,false -hacsas,mastodon.social,Biodiversity & Rewilding,biodiversity_rewilding,true -genebean,fosstodon.org,TV & Radio,tv_radio,false -genebean,fosstodon.org,Ukraine Invasion,ukraine_invasion,false -genebean,fosstodon.org,US Politics,us_politics,false -genebean,fosstodon.org,Breaking News,breaking_news,true -harvinhentry,newsmast.social,Women’s Voices,women_voices,false -harvinhentry,newsmast.social,Technology,technology,true -Bubblefarts,newsmast.social,Creative Arts,creative_arts,false -Bubblefarts,newsmast.social,Physics,physics,false -hacsas,mastodon.social,TV & Radio,tv_radio,false -bridgeteam,newsmast.social,Music,music,false -PixelRobot,neopaquita.es,Academia & Research,academia_research,false -PixelRobot,neopaquita.es,Activism & Civil Rights,activism_civil_rights,false -jonben,social.spejset.org,Academia & Research,academia_research,false -jonben,social.spejset.org,Activism & Civil Rights,activism_civil_rights,false -TotalElipse,mastodon.social,Breaking News,breaking_news,false -TotalElipse,mastodon.social,Engineering,engineering,false -TotalElipse,mastodon.social,Programming,programming,false -TotalElipse,mastodon.social,Social Media,social_media,false -TotalElipse,mastodon.social,US Sport,us_sport,true -jonben,social.spejset.org,AI,ai,false -jonben,social.spejset.org,Architecture & Design,architecture_design,false -jonben,social.spejset.org,Biodiversity & Rewilding,biodiversity_rewilding,false -jonben,social.spejset.org,Biology,biology,false -jonben,social.spejset.org,Black Voices,black_voices,false -jonben,social.spejset.org,Books & Literature,books_literature,false -jonben,social.spejset.org,Breaking News,breaking_news,false -jonben,social.spejset.org,Business,business,false -stefano_zan,mastodon.uno,Architecture & Design,architecture_design,false -stefano_zan,mastodon.uno,Breaking News,breaking_news,false -stefano_zan,mastodon.uno,Humanities,humanities,false -stefano_zan,mastodon.uno,Music,music,false -stefano_zan,mastodon.uno,Philosophy,philosophy,false -stefano_zan,mastodon.uno,Photography,photography,false -stefano_zan,mastodon.uno,Books & Literature,books_literature,true -jonben,social.spejset.org,Chemistry,chemistry,false -jonben,social.spejset.org,Climate change,climate_change,false -jonben,social.spejset.org,Democracy & Human Rights,democracy_human_rights,false -jonben,social.spejset.org,Disabled Voices,disabled_voices,false -jonben,social.spejset.org,Energy & Pollution,energy_pollution,false -jonben,social.spejset.org,Engineering,engineering,false -jonben,social.spejset.org,Environment,environment,false -jonben,social.spejset.org,Gaming,gaming,false -jonben,social.spejset.org,Government & Policy,government_policy,false -jonben,social.spejset.org,Healthcare,healthcare,false -jonben,social.spejset.org,History,history,false -jonben,social.spejset.org,Humanities,humanities,false -jonben,social.spejset.org,"Hunger, Disease & Water",hunger_disease_water,false -Bubblefarts,newsmast.social,Puzzles,puzzles,false -Bubblefarts,newsmast.social,Activism & Civil Rights,activism_civil_rights,true -PixelRobot,neopaquita.es,AI,ai,false -PixelRobot,neopaquita.es,Architecture & Design,architecture_design,false -notiska,newsmast.social,Business,business,false -emmecola,mastodon.uno,Academia & Research,academia_research,false -emmecola,mastodon.uno,AI,ai,false -emmecola,mastodon.uno,Biodiversity & Rewilding,biodiversity_rewilding,false -emmecola,mastodon.uno,Biology,biology,false -emmecola,mastodon.uno,Breaking News,breaking_news,false -emmecola,mastodon.uno,Climate change,climate_change,false -emmecola,mastodon.uno,Democracy & Human Rights,democracy_human_rights,false -emmecola,mastodon.uno,Energy & Pollution,energy_pollution,false -emmecola,mastodon.uno,Environment,environment,false -emmecola,mastodon.uno,Government & Policy,government_policy,false -emmecola,mastodon.uno,Healthcare,healthcare,false -emmecola,mastodon.uno,"Hunger, Disease & Water",hunger_disease_water,false -emmecola,mastodon.uno,Journalism & Comment,news_comment_data,false -emmecola,mastodon.uno,Politics,politics,false -emmecola,mastodon.uno,Poverty & Inequality,poverty_inequality,false -emmecola,mastodon.uno,Programming,programming,false -emmecola,mastodon.uno,Social Media,social_media,false -emmecola,mastodon.uno,Technology,technology,false -emmecola,mastodon.uno,Science,science,true -notiska,newsmast.social,Engineering,engineering,false -notiska,newsmast.social,Markets & Finance,markets_finance,false -notiska,newsmast.social,Programming,programming,false -notiska,newsmast.social,Technology,technology,false -notiska,newsmast.social,Workers Rights,workers_rights,false -governorkeagan,mastodon.social,Breaking News,breaking_news,false -governorkeagan,mastodon.social,Engineering,engineering,false -governorkeagan,mastodon.social,Programming,programming,false -governorkeagan,mastodon.social,Technology,technology,false -governorkeagan,mastodon.social,AI,ai,true -governorkeagan,mastodon.social,Humour,humour,false -governorkeagan,mastodon.social,Mental Health & Wellbeing,mental_health_wellbeing,false -notiska,newsmast.social,AI,ai,true -PixelRobot,neopaquita.es,Biodiversity & Rewilding,biodiversity_rewilding,false -PixelRobot,neopaquita.es,Biology,biology,false -PixelRobot,neopaquita.es,Black Voices,black_voices,false -PaoloParti,mastodon.uno,Architecture & Design,architecture_design,false -PaoloParti,mastodon.uno,Biodiversity & Rewilding,biodiversity_rewilding,false -PaoloParti,mastodon.uno,Climate change,climate_change,false -PaoloParti,mastodon.uno,Energy & Pollution,energy_pollution,false -PaoloParti,mastodon.uno,Engineering,engineering,false -PaoloParti,mastodon.uno,Environment,environment,false -PaoloParti,mastodon.uno,History,history,false -PaoloParti,mastodon.uno,Humanities,humanities,false -PaoloParti,mastodon.uno,Mathematics,mathematics,false -PaoloParti,mastodon.uno,Movies,movies,false -PaoloParti,mastodon.uno,Music,music,false -PaoloParti,mastodon.uno,Performing Arts,performing_arts,false -PaoloParti,mastodon.uno,Philosophy,philosophy,false -PaoloParti,mastodon.uno,Photography,photography,false -PaoloParti,mastodon.uno,Science,science,false -PaoloParti,mastodon.uno,Social Sciences,social_sciences,false -PaoloParti,mastodon.uno,Space,space,false -PaoloParti,mastodon.uno,Technology,technology,false -PaoloParti,mastodon.uno,TV & Radio,tv_radio,false -PaoloParti,mastodon.uno,Visual Arts,visual_arts,false -PaoloParti,mastodon.uno,Books & Literature,books_literature,true -PixelRobot,neopaquita.es,Books & Literature,books_literature,false -PixelRobot,neopaquita.es,Breaking News,breaking_news,false -PixelRobot,neopaquita.es,Business,business,false -PixelRobot,neopaquita.es,Chemistry,chemistry,false -PixelRobot,neopaquita.es,Climate change,climate_change,false -PixelRobot,neopaquita.es,Creative Arts,creative_arts,false -danteshango,twit.social,Breaking News,breaking_news,true -jonben,social.spejset.org,Immigrants Rights,immigrants_rights,false -Nyein,newsmast.social,Ukraine Invasion,ukraine_invasion,false -jonben,social.spejset.org,Indigenous Peoples,indigenous_peoples,false -jonben,social.spejset.org,Law & Justice,law_justice,false -jonben,social.spejset.org,LGBTQ+,lgbtq,false -jonben,social.spejset.org,Markets & Finance,markets_finance,false -jonben,social.spejset.org,Mathematics,mathematics,false -jonben,social.spejset.org,Movies,movies,false -jonben,social.spejset.org,Music,music,false -jonben,social.spejset.org,Journalism & Comment,news_comment_data,false -jonben,social.spejset.org,Performing Arts,performing_arts,false -jonben,social.spejset.org,Philosophy,philosophy,false -jonben,social.spejset.org,Photography,photography,false -jonben,social.spejset.org,Physics,physics,false -jonben,social.spejset.org,Politics,politics,false -jonben,social.spejset.org,Poverty & Inequality,poverty_inequality,false -jonben,social.spejset.org,Programming,programming,false -jonben,social.spejset.org,Science,science,false -jonben,social.spejset.org,Social Media,social_media,false -jonben,social.spejset.org,Space,space,false -jonben,social.spejset.org,Technology,technology,false -jonben,social.spejset.org,TV & Radio,tv_radio,false -jonben,social.spejset.org,Ukraine Invasion,ukraine_invasion,false -jonben,social.spejset.org,US Politics,us_politics,false -jonben,social.spejset.org,Visual Arts,visual_arts,false -jonben,social.spejset.org,Weather,weather,false -jonben,social.spejset.org,Women’s Voices,women_voices,false -jonben,social.spejset.org,Workers Rights,workers_rights,false -jonben,social.spejset.org,Social Sciences,social_sciences,true -Brenmar,nrw.social,AI,ai,false -Brenmar,nrw.social,Food & Drink,food_drink,false -kallekn,mastodonsweden.se,Democracy & Human Rights,democracy_human_rights,false -kallekn,mastodonsweden.se,History,history,false -kallekn,mastodonsweden.se,Humanities,humanities,false -kallekn,mastodonsweden.se,Journalism & Comment,news_comment_data,false -kallekn,mastodonsweden.se,Photography,photography,false -kallekn,mastodonsweden.se,Social Media,social_media,false -kallekn,mastodonsweden.se,Social Sciences,social_sciences,false -kallekn,mastodonsweden.se,Ukraine Invasion,ukraine_invasion,false -kallekn,mastodonsweden.se,Breaking News,breaking_news,true -Salexkenyon,newsmast.social,Activism & Civil Rights,activism_civil_rights,false -Salexkenyon,newsmast.social,Breaking News,breaking_news,false -Salexkenyon,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -Salexkenyon,newsmast.social,Environment,environment,false -Salexkenyon,newsmast.social,Government & Policy,government_policy,false -Salexkenyon,newsmast.social,Immigrants Rights,immigrants_rights,false -Salexkenyon,newsmast.social,Journalism & Comment,news_comment_data,false -Salexkenyon,newsmast.social,Philosophy,philosophy,false -Salexkenyon,newsmast.social,Politics,politics,false -Salexkenyon,newsmast.social,Poverty & Inequality,poverty_inequality,false -Salexkenyon,newsmast.social,US Politics,us_politics,false -Salexkenyon,newsmast.social,Women’s Voices,women_voices,false -Salexkenyon,newsmast.social,Climate change,climate_change,true -Brenmar,nrw.social,Nature & Wildlife,nature_wildlife,false -Brenmar,nrw.social,Programming,programming,false -genebean,fosstodon.org,Visual Arts,visual_arts,false -genebean,fosstodon.org,Weather,weather,false -genebean,fosstodon.org,Women’s Voices,women_voices,false -genebean,fosstodon.org,Workers Rights,workers_rights,false -bluememon,sfba.social,Law & Justice,law_justice,false -bluememon,sfba.social,LGBTQ+,lgbtq,false -bluememon,sfba.social,Mathematics,mathematics,false -bluememon,sfba.social,Movies,movies,false -bluememon,sfba.social,Music,music,false -bluememon,sfba.social,Journalism & Comment,news_comment_data,false -bluememon,sfba.social,Performing Arts,performing_arts,false -bluememon,sfba.social,Philosophy,philosophy,false -bluememon,sfba.social,Photography,photography,false -bluememon,sfba.social,Physics,physics,false -bluememon,sfba.social,Politics,politics,false -bluememon,sfba.social,Poverty & Inequality,poverty_inequality,false -bluememon,sfba.social,Programming,programming,false -bluememon,sfba.social,Science,science,false -bluememon,sfba.social,Social Media,social_media,false -bluememon,sfba.social,Social Sciences,social_sciences,false -bluememon,sfba.social,Space,space,false -bluememon,sfba.social,Sport,sport,false -bluememon,sfba.social,Technology,technology,false -bluememon,sfba.social,TV & Radio,tv_radio,false -bluememon,sfba.social,Ukraine Invasion,ukraine_invasion,false -bluememon,sfba.social,US Politics,us_politics,false -bluememon,sfba.social,US Sport,us_sport,false -bluememon,sfba.social,Visual Arts,visual_arts,false -bluememon,sfba.social,Weather,weather,false -bluememon,sfba.social,Women’s Voices,women_voices,false -headword,lingo.lol,Mathematics,mathematics,false -headword,lingo.lol,Social Sciences,social_sciences,false -headword,lingo.lol,Space,space,false -headword,lingo.lol,Technology,technology,false -headword,lingo.lol,Humanities,humanities,true -fp,troet.cafe,Healthcare,healthcare,false -fp,troet.cafe,Politics,politics,false -fp,troet.cafe,Poverty & Inequality,poverty_inequality,false -fp,troet.cafe,Social Sciences,social_sciences,false -fp,troet.cafe,Journalism & Comment,news_comment_data,true -Levicoisch,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false -ueberbildung,bildung.social,Activism & Civil Rights,activism_civil_rights,false -ueberbildung,bildung.social,Books & Literature,books_literature,false -ueberbildung,bildung.social,Democracy & Human Rights,democracy_human_rights,false -ueberbildung,bildung.social,Environment,environment,false -ueberbildung,bildung.social,Gaming,gaming,false -ueberbildung,bildung.social,Humanities,humanities,false -ueberbildung,bildung.social,Movies,movies,false -ueberbildung,bildung.social,Music,music,false -ueberbildung,bildung.social,Technology,technology,false -ueberbildung,bildung.social,Ukraine Invasion,ukraine_invasion,false -ueberbildung,bildung.social,Science,science,true -PixelRobot,neopaquita.es,Democracy & Human Rights,democracy_human_rights,false -PixelRobot,neopaquita.es,Disabled Voices,disabled_voices,false -PixelRobot,neopaquita.es,Energy & Pollution,energy_pollution,false -PixelRobot,neopaquita.es,Engineering,engineering,false -el_chacko_jr,mastodon.social,Humour,humour,true -Brenmar,nrw.social,Travel,travel,false -Brenmar,nrw.social,Social Media,social_media,true -PixelRobot,neopaquita.es,Environment,environment,false -qaqelol,toots.niark.nexus,Programming,programming,true -outer,mas.to,Biology,biology,false -technodad,cunnin.me,Breaking News,breaking_news,false -technodad,cunnin.me,Physics,physics,false -technodad,cunnin.me,Science,science,false -technodad,cunnin.me,Space,space,false -technodad,cunnin.me,Technology,technology,false -technodad,cunnin.me,Weather,weather,true -outer,mas.to,Breaking News,breaking_news,false -ShuaE,newsmast.social,AI,ai,false -ShuaE,newsmast.social,Pets,pets,false -ShuaE,newsmast.social,Programming,programming,false -ShuaE,newsmast.social,Technology,technology,false -ShuaE,newsmast.social,Engineering,engineering,true -outer,mas.to,Chemistry,chemistry,false -jd,mstdn.ca,Biodiversity & Rewilding,biodiversity_rewilding,false -jd,mstdn.ca,Biology,biology,false -jd,mstdn.ca,Democracy & Human Rights,democracy_human_rights,false -jd,mstdn.ca,Energy & Pollution,energy_pollution,false -jd,mstdn.ca,Environment,environment,false -jd,mstdn.ca,History,history,false -jd,mstdn.ca,Humanities,humanities,false -jd,mstdn.ca,Journalism & Comment,news_comment_data,false -jd,mstdn.ca,Science,science,false -jd,mstdn.ca,Social Sciences,social_sciences,false -jd,mstdn.ca,Climate change,climate_change,true -WayneDupreeShow,newsmast.social,Black Voices,black_voices,false -WayneDupreeShow,newsmast.social,Breaking News,breaking_news,false -WayneDupreeShow,newsmast.social,Food & Drink,food_drink,false -WayneDupreeShow,newsmast.social,Government & Policy,government_policy,false -WayneDupreeShow,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false -WayneDupreeShow,newsmast.social,Journalism & Comment,news_comment_data,false -WayneDupreeShow,newsmast.social,Politics,politics,false -WayneDupreeShow,newsmast.social,Social Media,social_media,false -WayneDupreeShow,newsmast.social,TV & Radio,tv_radio,false -WayneDupreeShow,newsmast.social,US Politics,us_politics,true -Levicoisch,newsmast.social,Climate change,climate_change,false -Levicoisch,newsmast.social,Energy & Pollution,energy_pollution,false -Levicoisch,newsmast.social,Environment,environment,false -Levicoisch,newsmast.social,Breaking News,breaking_news,true -qaqelol,toots.niark.nexus,Food & Drink,food_drink,false -qaqelol,toots.niark.nexus,Gaming,gaming,false -qaqelol,toots.niark.nexus,LGBTQ+,lgbtq,false -qaqelol,toots.niark.nexus,Pets,pets,false -qaqelol,toots.niark.nexus,Technology,technology,false -qaqelol,toots.niark.nexus,Visual Arts,visual_arts,false -ericdavis,mastodon.social,AI,ai,false -ericdavis,mastodon.social,Breaking News,breaking_news,false -ericdavis,mastodon.social,Government & Policy,government_policy,false -ericdavis,mastodon.social,Journalism & Comment,news_comment_data,false -ericdavis,mastodon.social,US Politics,us_politics,true -box464,shrimp.box464.social,AI,ai,false -box464,shrimp.box464.social,Creative Arts,creative_arts,false -box464,shrimp.box464.social,Humour,humour,false -box464,shrimp.box464.social,Movies,movies,false -box464,shrimp.box464.social,Music,music,false -box464,shrimp.box464.social,Pets,pets,false -box464,shrimp.box464.social,Programming,programming,false -box464,shrimp.box464.social,Travel,travel,false -box464,shrimp.box464.social,TV & Radio,tv_radio,false -box464,shrimp.box464.social,Visual Arts,visual_arts,false -box464,shrimp.box464.social,Technology,technology,true -juergen,mastodon.de,Breaking News,breaking_news,false -juergen,mastodon.de,Engineering,engineering,false -juergen,mastodon.de,Mathematics,mathematics,false -juergen,mastodon.de,Physics,physics,false -juergen,mastodon.de,Politics,politics,false -juergen,mastodon.de,Science,science,false -juergen,mastodon.de,Space,space,false -juergen,mastodon.de,Technology,technology,false -juergen,mastodon.de,LGBTQ+,lgbtq,true -derzquist,mastodon.social,Architecture & Design,architecture_design,false -derzquist,mastodon.social,Movies,movies,false -derzquist,mastodon.social,Music,music,false -derzquist,mastodon.social,Technology,technology,false -derzquist,mastodon.social,TV & Radio,tv_radio,false -derzquist,mastodon.social,Books & Literature,books_literature,true -masry,toot.community,AI,ai,false -masry,toot.community,Breaking News,breaking_news,false -masry,toot.community,Creative Arts,creative_arts,false -bridgeteam,newsmast.social,Nature & Wildlife,nature_wildlife,false -Helix,toot.community,Books & Literature,books_literature,false -Helix,toot.community,Breaking News,breaking_news,false -Helix,toot.community,History,history,false -Helix,toot.community,Philosophy,philosophy,false -Helix,toot.community,Music,music,true -iatentdead,mendeddrum.org,Academia & Research,academia_research,false -iatentdead,mendeddrum.org,AI,ai,false -iatentdead,mendeddrum.org,Architecture & Design,architecture_design,false -iatentdead,mendeddrum.org,Biodiversity & Rewilding,biodiversity_rewilding,false -iatentdead,mendeddrum.org,Biology,biology,false -bridgeteam,newsmast.social,Journalism & Comment,news_comment_data,false -iatentdead,mendeddrum.org,Breaking News,breaking_news,false -iatentdead,mendeddrum.org,Business,business,false -iatentdead,mendeddrum.org,Climate change,climate_change,false -iatentdead,mendeddrum.org,Creative Arts,creative_arts,false -talksina,mastodon.uno,Activism & Civil Rights,activism_civil_rights,false -talksina,mastodon.uno,AI,ai,false -talksina,mastodon.uno,LGBTQ+,lgbtq,false -talksina,mastodon.uno,Women’s Voices,women_voices,false -talksina,mastodon.uno,Disabled Voices,disabled_voices,true -iatentdead,mendeddrum.org,Democracy & Human Rights,democracy_human_rights,false -iatentdead,mendeddrum.org,Energy & Pollution,energy_pollution,false -iatentdead,mendeddrum.org,Environment,environment,false -iatentdead,mendeddrum.org,Food & Drink,food_drink,false -eana,s.1a23.studio,AI,ai,false -eana,s.1a23.studio,Breaking News,breaking_news,false -eana,s.1a23.studio,Engineering,engineering,false -eana,s.1a23.studio,Puzzles,puzzles,false -eana,s.1a23.studio,Science,science,false -eana,s.1a23.studio,Technology,technology,false -eana,s.1a23.studio,Weather,weather,false -eana,s.1a23.studio,Programming,programming,true -IlCava,mastodon.uno,Academia & Research,academia_research,false -IlCava,mastodon.uno,Academia & Research,academia_research,false -IlCava,mastodon.uno,Activism & Civil Rights,activism_civil_rights,false -IlCava,mastodon.uno,Activism & Civil Rights,activism_civil_rights,false -IlCava,mastodon.uno,AI,ai,false -IlCava,mastodon.uno,AI,ai,false -IlCava,mastodon.uno,Architecture & Design,architecture_design,false -IlCava,mastodon.uno,Architecture & Design,architecture_design,false -IlCava,mastodon.uno,Biology,biology,false -IlCava,mastodon.uno,Black Voices,black_voices,false -IlCava,mastodon.uno,Biology,biology,false -IlCava,mastodon.uno,Books & Literature,books_literature,false -IlCava,mastodon.uno,Black Voices,black_voices,false -IlCava,mastodon.uno,Breaking News,breaking_news,false -IlCava,mastodon.uno,Books & Literature,books_literature,false -IlCava,mastodon.uno,Chemistry,chemistry,false -IlCava,mastodon.uno,Creative Arts,creative_arts,false -IlCava,mastodon.uno,Breaking News,breaking_news,false -IlCava,mastodon.uno,Chemistry,chemistry,false -IlCava,mastodon.uno,Democracy & Human Rights,democracy_human_rights,false -IlCava,mastodon.uno,Creative Arts,creative_arts,false -IlCava,mastodon.uno,Disabled Voices,disabled_voices,false -IlCava,mastodon.uno,Democracy & Human Rights,democracy_human_rights,false -IlCava,mastodon.uno,Engineering,engineering,false -IlCava,mastodon.uno,Food & Drink,food_drink,false -IlCava,mastodon.uno,Disabled Voices,disabled_voices,false -IlCava,mastodon.uno,Football,football,false -IlCava,mastodon.uno,Engineering,engineering,false -IlCava,mastodon.uno,Gaming,gaming,false -IlCava,mastodon.uno,Food & Drink,food_drink,false -IlCava,mastodon.uno,Government & Policy,government_policy,false -IlCava,mastodon.uno,Football,football,false -IlCava,mastodon.uno,Healthcare,healthcare,false -IlCava,mastodon.uno,Gaming,gaming,false -suntorvic,mastodon.social,Music,music,false -suntorvic,mastodon.social,Architecture & Design,architecture_design,false -sebasesrad,paquita.masto.host,History,history,false -sebasesrad,paquita.masto.host,Photography,photography,false -sebasesrad,paquita.masto.host,Science,science,false -sebasesrad,paquita.masto.host,Technology,technology,false -sebasesrad,paquita.masto.host,Breaking News,breaking_news,true -bluememon,sfba.social,Academia & Research,academia_research,false -bluememon,sfba.social,Activism & Civil Rights,activism_civil_rights,false -bluememon,sfba.social,AI,ai,false -bluememon,sfba.social,Architecture & Design,architecture_design,false -bluememon,sfba.social,Biology,biology,false -bluememon,sfba.social,Black Voices,black_voices,false -bluememon,sfba.social,Books & Literature,books_literature,false -bluememon,sfba.social,Breaking News,breaking_news,false -bluememon,sfba.social,Chemistry,chemistry,false -bluememon,sfba.social,Disabled Voices,disabled_voices,false -bluememon,sfba.social,Engineering,engineering,false -bluememon,sfba.social,Football,football,false -bluememon,sfba.social,Gaming,gaming,false -bluememon,sfba.social,Government & Policy,government_policy,false -bluememon,sfba.social,Healthcare,healthcare,false -bluememon,sfba.social,History,history,false -bluememon,sfba.social,Humanities,humanities,false -bluememon,sfba.social,"Hunger, Disease & Water",hunger_disease_water,false -bluememon,sfba.social,Immigrants Rights,immigrants_rights,false -bluememon,sfba.social,Indigenous Peoples,indigenous_peoples,false -bluememon,sfba.social,Democracy & Human Rights,democracy_human_rights,true -gregorykorte,journa.host,Academia & Research,academia_research,false -gregorykorte,journa.host,Breaking News,breaking_news,false -gregorykorte,journa.host,Democracy & Human Rights,democracy_human_rights,false -gregorykorte,journa.host,Government & Policy,government_policy,false -gregorykorte,journa.host,Healthcare,healthcare,false -gregorykorte,journa.host,"Hunger, Disease & Water",hunger_disease_water,false -gregorykorte,journa.host,Law & Justice,law_justice,false -gregorykorte,journa.host,Politics,politics,false -gregorykorte,journa.host,Poverty & Inequality,poverty_inequality,false -gregorykorte,journa.host,Social Media,social_media,false -masry,toot.community,Environment,environment,false -masry,toot.community,Food & Drink,food_drink,false -masry,toot.community,Football,football,false -masry,toot.community,Humour,humour,false -masry,toot.community,Nature & Wildlife,nature_wildlife,false -masry,toot.community,Journalism & Comment,news_comment_data,false -masry,toot.community,Politics,politics,false -masry,toot.community,Programming,programming,false -masry,toot.community,Technology,technology,false -masry,toot.community,Travel,travel,true -iatentdead,mendeddrum.org,Gaming,gaming,false -iatentdead,mendeddrum.org,Government & Policy,government_policy,false -iatentdead,mendeddrum.org,Healthcare,healthcare,false -iatentdead,mendeddrum.org,History,history,false -iatentdead,mendeddrum.org,Humanities,humanities,false -iatentdead,mendeddrum.org,Humour,humour,false -iatentdead,mendeddrum.org,"Hunger, Disease & Water",hunger_disease_water,false -PixelRobot,neopaquita.es,Food & Drink,food_drink,false -PixelRobot,neopaquita.es,Gaming,gaming,false -wsrphoto,sfba.social,Biodiversity & Rewilding,biodiversity_rewilding,false -wsrphoto,sfba.social,Climate change,climate_change,false -wsrphoto,sfba.social,Democracy & Human Rights,democracy_human_rights,false -wsrphoto,sfba.social,Energy & Pollution,energy_pollution,false -wsrphoto,sfba.social,Environment,environment,false -wsrphoto,sfba.social,Law & Justice,law_justice,false -wsrphoto,sfba.social,Politics,politics,false -wsrphoto,sfba.social,US Politics,us_politics,false -wsrphoto,sfba.social,Government & Policy,government_policy,true -PixelRobot,neopaquita.es,Government & Policy,government_policy,false -scharfnado,newsmast.social,Academia & Research,academia_research,false -scharfnado,newsmast.social,Government & Policy,government_policy,false -scharfnado,newsmast.social,Physics,physics,false -scharfnado,newsmast.social,Space,space,false -scharfnado,newsmast.social,Breaking News,breaking_news,true -scharfnado,newsmast.social,Technology,technology,false -scharfnado,newsmast.social,Travel,travel,false -scharfnado,newsmast.social,Energy & Pollution,energy_pollution,false -suntorvic,mastodon.social,Visual Arts,visual_arts,false -arossp,mastodon.social,Academia & Research,academia_research,false -arossp,mastodon.social,Activism & Civil Rights,activism_civil_rights,false -arossp,mastodon.social,Government & Policy,government_policy,false -arossp,mastodon.social,History,history,false -arossp,mastodon.social,Humanities,humanities,false -arossp,mastodon.social,LGBTQ+,lgbtq,false -arossp,mastodon.social,Journalism & Comment,news_comment_data,false -arossp,mastodon.social,Philosophy,philosophy,false -arossp,mastodon.social,Social Sciences,social_sciences,false -arossp,mastodon.social,Technology,technology,false -arossp,mastodon.social,Politics,politics,true -Tms12,newsmast.social,Creative Arts,creative_arts,false -Tms12,newsmast.social,Science,science,false -Tms12,newsmast.social,Visual Arts,visual_arts,false -Tms12,newsmast.social,Performing Arts,performing_arts,true -Tms12,newsmast.social,Markets & Finance,markets_finance,false -Tms12,newsmast.social,Workers Rights,workers_rights,false -gregorykorte,journa.host,Ukraine Invasion,ukraine_invasion,false -gregorykorte,journa.host,US Politics,us_politics,false -gregorykorte,journa.host,Weather,weather,false -gregorykorte,journa.host,Journalism & Comment,news_comment_data,true -twezmyr,101010.pl,AI,ai,false -twezmyr,101010.pl,Breaking News,breaking_news,false -twezmyr,101010.pl,Democracy & Human Rights,democracy_human_rights,false -twezmyr,101010.pl,History,history,false -twezmyr,101010.pl,Humanities,humanities,false -twezmyr,101010.pl,Philosophy,philosophy,false -twezmyr,101010.pl,Politics,politics,false -twezmyr,101010.pl,Social Sciences,social_sciences,false -twezmyr,101010.pl,Space,space,false -twezmyr,101010.pl,Technology,technology,false -twezmyr,101010.pl,Ukraine Invasion,ukraine_invasion,false -twezmyr,101010.pl,Science,science,true -group,newsmast.social,Breaking News,breaking_news,true -ReRockman,wetdry.world,AI,ai,false -ReRockman,wetdry.world,Science,science,false -ReRockman,wetdry.world,Space,space,false -ReRockman,wetdry.world,Technology,technology,false -ReRockman,wetdry.world,Programming,programming,true -OlPatchy2Eyes,ieji.de,Journalism & Comment,news_comment_data,true -SithuBo,newsmast.social,Private Community,private-community,false -kuietk,corteximplant.com,Activism & Civil Rights,activism_civil_rights,false -kuietk,corteximplant.com,Democracy & Human Rights,democracy_human_rights,false -kuietk,corteximplant.com,"Hunger, Disease & Water",hunger_disease_water,false -kuietk,corteximplant.com,Indigenous Peoples,indigenous_peoples,false -kuietk,corteximplant.com,LGBTQ+,lgbtq,false -kuietk,corteximplant.com,Technology,technology,false -kuietk,corteximplant.com,Programming,programming,true -KrackenJack,mas.to,Biology,biology,false -KrackenJack,mas.to,Chemistry,chemistry,false -KrackenJack,mas.to,Engineering,engineering,false -KrackenJack,mas.to,Physics,physics,false -KrackenJack,mas.to,Space,space,false -KrackenJack,mas.to,Science,science,true -srijan,indieweb.social,Engineering,engineering,false -srijan,indieweb.social,Physics,physics,false -srijan,indieweb.social,Programming,programming,false -srijan,indieweb.social,Science,science,false -srijan,indieweb.social,Space,space,false -RebecaM67,newsmast.social,AI,ai,false -RebecaM67,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -RebecaM67,newsmast.social,Government & Policy,government_policy,false -RebecaM67,newsmast.social,History,history,false -RebecaM67,newsmast.social,Humanities,humanities,false -RebecaM67,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false -RebecaM67,newsmast.social,Law & Justice,law_justice,false -RebecaM67,newsmast.social,Philosophy,philosophy,false -RebecaM67,newsmast.social,Politics,politics,false -RebecaM67,newsmast.social,Technology,technology,false -RebecaM67,newsmast.social,Breaking News,breaking_news,true -iatentdead,mendeddrum.org,Law & Justice,law_justice,false -iatentdead,mendeddrum.org,Mathematics,mathematics,false -alternative,uri.life,Visual Arts,visual_arts,false -alternative,uri.life,AI,ai,false -alternative,uri.life,Architecture & Design,architecture_design,false -alternative,uri.life,Books & Literature,books_literature,false -alternative,uri.life,Engineering,engineering,false -alternative,uri.life,Gaming,gaming,false -alternative,uri.life,Movies,movies,false -alternative,uri.life,Music,music,false -alternative,uri.life,Performing Arts,performing_arts,false -alternative,uri.life,Photography,photography,false -alternative,uri.life,Programming,programming,false -alternative,uri.life,TV & Radio,tv_radio,false -alternative,uri.life,Technology,technology,true -iatentdead,mendeddrum.org,Mental Health & Wellbeing,mental_health_wellbeing,false -xxiaobaimic,xxiaobaimic@mastodon.social,Food & Drink,food_drink,true -iatentdead,mendeddrum.org,Movies,movies,false -iatentdead,mendeddrum.org,Music,music,false -iatentdead,mendeddrum.org,Nature & Wildlife,nature_wildlife,false -iatentdead,mendeddrum.org,Journalism & Comment,news_comment_data,false -iatentdead,mendeddrum.org,Pets,pets,false -iatentdead,mendeddrum.org,Philosophy,philosophy,false -iatentdead,mendeddrum.org,Photography,photography,false -dgc,mstdn.social,Breaking News,breaking_news,false -dgc,mstdn.social,Programming,programming,false -dgc,mstdn.social,Science,science,false -dgc,mstdn.social,Space,space,false -dgc,mstdn.social,Technology,technology,true -iatentdead,mendeddrum.org,Physics,physics,false -iatentdead,mendeddrum.org,Politics,politics,false -kamalaharris,newsmast.social,Journalism & Comment,news_comment_data,false -kamalaharris,newsmast.social,Social Media,social_media,false -kamalaharris,newsmast.social,Ukraine Invasion,ukraine_invasion,false -kamalaharris,newsmast.social,Weather,weather,false -kamalaharris,newsmast.social,Breaking News,breaking_news,true -iatentdead,mendeddrum.org,Poverty & Inequality,poverty_inequality,false -iatentdead,mendeddrum.org,Programming,programming,false -iatentdead,mendeddrum.org,Puzzles,puzzles,false -iatentdead,mendeddrum.org,Social Sciences,social_sciences,false -iatentdead,mendeddrum.org,Space,space,false -iatentdead,mendeddrum.org,Technology,technology,false -iatentdead,mendeddrum.org,Travel,travel,false -iatentdead,mendeddrum.org,US Politics,us_politics,false -iatentdead,mendeddrum.org,Visual Arts,visual_arts,false -iatentdead,mendeddrum.org,Weather,weather,false -iatentdead,mendeddrum.org,Women’s Voices,women_voices,false -iatentdead,mendeddrum.org,Workers Rights,workers_rights,false -iatentdead,mendeddrum.org,Books & Literature,books_literature,true -martialjob,toot.io,Activism & Civil Rights,activism_civil_rights,false -martialjob,toot.io,AI,ai,false -martialjob,toot.io,Biodiversity & Rewilding,biodiversity_rewilding,false -martialjob,toot.io,Biology,biology,false -martialjob,toot.io,Books & Literature,books_literature,false -martialjob,toot.io,Chemistry,chemistry,false -martialjob,toot.io,Climate change,climate_change,false -martialjob,toot.io,Democracy & Human Rights,democracy_human_rights,false -martialjob,toot.io,Energy & Pollution,energy_pollution,false -martialjob,toot.io,Engineering,engineering,false -martialjob,toot.io,Environment,environment,false -martialjob,toot.io,Healthcare,healthcare,false -martialjob,toot.io,Humanities,humanities,false -martialjob,toot.io,LGBTQ+,lgbtq,false -martialjob,toot.io,Physics,physics,false -martialjob,toot.io,Politics,politics,false -martialjob,toot.io,Poverty & Inequality,poverty_inequality,false -martialjob,toot.io,Programming,programming,false -martialjob,toot.io,Science,science,false -martialjob,toot.io,Social Sciences,social_sciences,false -FreddieJ,newsmast.social,Private Community,private-community,false -martialjob,toot.io,Space,space,false -martialjob,toot.io,Sport,sport,false -martialjob,toot.io,Technology,technology,false -emsquared,mastodon.social,LGBTQ+,lgbtq,false -martialjob,toot.io,TV & Radio,tv_radio,false -martialjob,toot.io,Academia & Research,academia_research,true -outer,mas.to,Humanities,humanities,false -outer,mas.to,Mathematics,mathematics,false -Serious_Feather,newsmast.social,Movies,movies,false -zoinks,gts.scoobysnack.net,Social Media,social_media,false -quentinnield,mastodonapp.uk,Journalism & Comment,news_comment_data,false -ruslan,indieweb.social,Music,music,true -yethiha_codigo,newsmast.social,Journalism & Comment,news_comment_data,false -yethiha_codigo,newsmast.social,Social Media,social_media,false -yethiha_codigo,newsmast.social,Ukraine Invasion,ukraine_invasion,false -yethiha_codigo,newsmast.social,Weather,weather,false -yethiha_codigo,newsmast.social,Breaking News,breaking_news,true -MML9,mastodon.social,Activism & Civil Rights,activism_civil_rights,false -MML9,mastodon.social,AI,ai,false -MML9,mastodon.social,Architecture & Design,architecture_design,false -MML9,mastodon.social,Black Voices,black_voices,false -MML9,mastodon.social,Books & Literature,books_literature,false -MML9,mastodon.social,Business,business,false -MML9,mastodon.social,Creative Arts,creative_arts,false -MML9,mastodon.social,Disabled Voices,disabled_voices,false -MML9,mastodon.social,Engineering,engineering,false -MML9,mastodon.social,Food & Drink,food_drink,false -MML9,mastodon.social,Gaming,gaming,false -MML9,mastodon.social,Humour,humour,false -MML9,mastodon.social,Immigrants Rights,immigrants_rights,false -MML9,mastodon.social,Indigenous Peoples,indigenous_peoples,false -MML9,mastodon.social,LGBTQ+,lgbtq,false -MML9,mastodon.social,Markets & Finance,markets_finance,false -MML9,mastodon.social,Mental Health & Wellbeing,mental_health_wellbeing,false -MML9,mastodon.social,Movies,movies,false -MML9,mastodon.social,Nature & Wildlife,nature_wildlife,false -MML9,mastodon.social,Performing Arts,performing_arts,false -MML9,mastodon.social,Pets,pets,false -MML9,mastodon.social,Photography,photography,false -MML9,mastodon.social,Programming,programming,false -MML9,mastodon.social,Puzzles,puzzles,false -MML9,mastodon.social,Technology,technology,false -MML9,mastodon.social,Travel,travel,false -MML9,mastodon.social,TV & Radio,tv_radio,false -MML9,mastodon.social,Visual Arts,visual_arts,false -MML9,mastodon.social,Women’s Voices,women_voices,false -MML9,mastodon.social,Workers Rights,workers_rights,false -MML9,mastodon.social,Music,music,true -bridgeteam,newsmast.social,Performing Arts,performing_arts,false -bridgeteam,newsmast.social,Pets,pets,false -bridgeteam,newsmast.social,Philosophy,philosophy,false -bridgeteam,newsmast.social,Photography,photography,false -bridgeteam,newsmast.social,Physics,physics,false -bridgeteam,newsmast.social,Politics,politics,false -bridgeteam,newsmast.social,Puzzles,puzzles,false -bridgeteam,newsmast.social,Science,science,false -timaeus,nrw.social,Biology,biology,false -timaeus,nrw.social,Chemistry,chemistry,false -blindbbq,hachyderm.io,Activism & Civil Rights,activism_civil_rights,false -blindbbq,hachyderm.io,AI,ai,false -blindbbq,hachyderm.io,Biology,biology,false -blindbbq,hachyderm.io,Chemistry,chemistry,false -blindbbq,hachyderm.io,Climate change,climate_change,false -blindbbq,hachyderm.io,Democracy & Human Rights,democracy_human_rights,false -blindbbq,hachyderm.io,Engineering,engineering,false -blindbbq,hachyderm.io,Government & Policy,government_policy,false -blindbbq,hachyderm.io,Mathematics,mathematics,false -blindbbq,hachyderm.io,Journalism & Comment,news_comment_data,false -blindbbq,hachyderm.io,Physics,physics,false -blindbbq,hachyderm.io,Politics,politics,false -blindbbq,hachyderm.io,Science,science,false -blindbbq,hachyderm.io,Space,space,false -blindbbq,hachyderm.io,Technology,technology,false -blindbbq,hachyderm.io,US Politics,us_politics,false -blindbbq,hachyderm.io,Women’s Voices,women_voices,false -blindbbq,hachyderm.io,Programming,programming,true -timaeus,nrw.social,Climate change,climate_change,false -timaeus,nrw.social,Energy & Pollution,energy_pollution,false -timaeus,nrw.social,Environment,environment,false -timaeus,nrw.social,Mathematics,mathematics,false -timaeus,nrw.social,Physics,physics,false -timaeus,nrw.social,Science,science,false -timaeus,nrw.social,Space,space,false -timaeus,nrw.social,Technology,technology,false -timaeus,nrw.social,Biodiversity & Rewilding,biodiversity_rewilding,true -michael,newsmast.social,Private Community,private-community,false -AutisticMumTo3,leftist.network,Activism & Civil Rights,activism_civil_rights,false -AutisticMumTo3,leftist.network,Biodiversity & Rewilding,biodiversity_rewilding,false -AutisticMumTo3,leftist.network,Biology,biology,false -AutisticMumTo3,leftist.network,Chemistry,chemistry,false -AutisticMumTo3,leftist.network,Climate change,climate_change,false -AutisticMumTo3,leftist.network,Democracy & Human Rights,democracy_human_rights,false -AutisticMumTo3,leftist.network,Disabled Voices,disabled_voices,false -AutisticMumTo3,leftist.network,Energy & Pollution,energy_pollution,false -AutisticMumTo3,leftist.network,Engineering,engineering,false -AutisticMumTo3,leftist.network,Environment,environment,false -AutisticMumTo3,leftist.network,Food & Drink,food_drink,false -AutisticMumTo3,leftist.network,Government & Policy,government_policy,false -paulkite,mastodon.social,Academia & Research,academia_research,false -paulkite,mastodon.social,AI,ai,false -paulkite,mastodon.social,Biodiversity & Rewilding,biodiversity_rewilding,false -paulkite,mastodon.social,Biology,biology,false -paulkite,mastodon.social,Breaking News,breaking_news,false -paulkite,mastodon.social,Chemistry,chemistry,false -paulkite,mastodon.social,Climate change,climate_change,false -paulkite,mastodon.social,Democracy & Human Rights,democracy_human_rights,false -paulkite,mastodon.social,Energy & Pollution,energy_pollution,false -paulkite,mastodon.social,Engineering,engineering,false -paulkite,mastodon.social,Environment,environment,false -paulkite,mastodon.social,Government & Policy,government_policy,false -paulkite,mastodon.social,Healthcare,healthcare,false -paulkite,mastodon.social,History,history,false -paulkite,mastodon.social,Humanities,humanities,false -paulkite,mastodon.social,"Hunger, Disease & Water",hunger_disease_water,false -paulkite,mastodon.social,Law & Justice,law_justice,false -paulkite,mastodon.social,Mathematics,mathematics,false -paulkite,mastodon.social,Journalism & Comment,news_comment_data,false -paulkite,mastodon.social,Philosophy,philosophy,false -paulkite,mastodon.social,Physics,physics,false -paulkite,mastodon.social,Politics,politics,false -paulkite,mastodon.social,Poverty & Inequality,poverty_inequality,false -AutisticMumTo3,leftist.network,Healthcare,healthcare,false -paulkite,mastodon.social,Science,science,false -paulkite,mastodon.social,Social Media,social_media,false -paulkite,mastodon.social,Social Sciences,social_sciences,false -paulkite,mastodon.social,Space,space,false -paulkite,mastodon.social,Technology,technology,false -paulkite,mastodon.social,Ukraine Invasion,ukraine_invasion,false -paulkite,mastodon.social,US Politics,us_politics,false -paulkite,mastodon.social,Weather,weather,false -paulkite,mastodon.social,Programming,programming,true -PixelRobot,neopaquita.es,Healthcare,healthcare,false -FreddieJ,newsmast.social,US Politics,us_politics,false -natbas,newsmast.social,Politics,politics,false -ToposInstitute,newsmast.social,Programming,programming,false -ToposInstitute,newsmast.social,Humanities,humanities,false -ToposInstitute,newsmast.social,Social Sciences,social_sciences,false -ToposInstitute,newsmast.social,Philosophy,philosophy,false -PixelRobot,neopaquita.es,History,history,false -Nyein,newsmast.social,Photography,photography,false -kat,is.burntout.org,Biology,biology,false -kat,is.burntout.org,Chemistry,chemistry,false -kat,is.burntout.org,Physics,physics,false -kat,is.burntout.org,Science,science,false -kat,is.burntout.org,Space,space,false -kat,is.burntout.org,Mathematics,mathematics,true -outer,mas.to,Journalism & Comment,news_comment_data,false -outer,mas.to,Philosophy,philosophy,false -outer,mas.to,Physics,physics,false -outer,mas.to,Science,science,false -creatinglake,mastodon.social,AI,ai,false -creatinglake,mastodon.social,Energy & Pollution,energy_pollution,false -creatinglake,mastodon.social,Government & Policy,government_policy,false -creatinglake,mastodon.social,Technology,technology,false -creatinglake,mastodon.social,US Politics,us_politics,false -creatinglake,mastodon.social,Politics,politics,true -outer,mas.to,Social Media,social_media,false -outer,mas.to,Social Sciences,social_sciences,false -outer,mas.to,Space,space,false -outer,mas.to,Ukraine Invasion,ukraine_invasion,false -outer,mas.to,Weather,weather,false -outer,mas.to,History,history,true -srijan,indieweb.social,Technology,technology,false -srijan,indieweb.social,Travel,travel,false -srijan,indieweb.social,Breaking News,breaking_news,true -Loukas,newsmast.social,Activism & Civil Rights,activism_civil_rights,false -Loukas,newsmast.social,Breaking News,breaking_news,false -cutts,social.lol,Football,football,false -cutts,social.lol,Mathematics,mathematics,false -cutts,social.lol,Physics,physics,false -cutts,social.lol,Technology,technology,false -cutts,social.lol,Programming,programming,true -Loukas,newsmast.social,Journalism & Comment,news_comment_data,false -Loukas,newsmast.social,Politics,politics,false -KamalaHarrisWin,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false -KamalaHarrisWin,newsmast.social,Climate change,climate_change,false -KamalaHarrisWin,newsmast.social,Energy & Pollution,energy_pollution,false -KamalaHarrisWin,newsmast.social,Environment,environment,false -KamalaHarrisWin,newsmast.social,Journalism & Comment,news_comment_data,false -KamalaHarrisWin,newsmast.social,Social Media,social_media,false -KamalaHarrisWin,newsmast.social,Ukraine Invasion,ukraine_invasion,false -KamalaHarrisWin,newsmast.social,Weather,weather,false -KamalaHarrisWin,newsmast.social,Breaking News,breaking_news,true -pch,s3th.me,AI,ai,false -pch,s3th.me,Biology,biology,false -pch,s3th.me,Breaking News,breaking_news,false -pch,s3th.me,Business,business,false -pch,s3th.me,Chemistry,chemistry,false -pch,s3th.me,Democracy & Human Rights,democracy_human_rights,false -pch,s3th.me,Engineering,engineering,false -pch,s3th.me,History,history,false -pch,s3th.me,Humanities,humanities,false -pch,s3th.me,Markets & Finance,markets_finance,false -pch,s3th.me,Mathematics,mathematics,false -pch,s3th.me,Journalism & Comment,news_comment_data,false -pch,s3th.me,Philosophy,philosophy,false -pch,s3th.me,Physics,physics,false -pch,s3th.me,Poverty & Inequality,poverty_inequality,false -pch,s3th.me,Programming,programming,false -pch,s3th.me,Science,science,false -pch,s3th.me,Social Media,social_media,false -pch,s3th.me,Social Sciences,social_sciences,false -pch,s3th.me,Space,space,false -aminda,sauna.social,Activism & Civil Rights,activism_civil_rights,false -aminda,sauna.social,AI,ai,false -aminda,sauna.social,Biodiversity & Rewilding,biodiversity_rewilding,false -aminda,sauna.social,Books & Literature,books_literature,false -aminda,sauna.social,Climate change,climate_change,false -aminda,sauna.social,Disabled Voices,disabled_voices,false -aminda,sauna.social,Energy & Pollution,energy_pollution,false -aminda,sauna.social,Engineering,engineering,false -aminda,sauna.social,Environment,environment,false -aminda,sauna.social,Gaming,gaming,false -aminda,sauna.social,Mental Health & Wellbeing,mental_health_wellbeing,false -aminda,sauna.social,Music,music,false -aminda,sauna.social,Nature & Wildlife,nature_wildlife,false -aminda,sauna.social,Pets,pets,false -aminda,sauna.social,Programming,programming,false -aminda,sauna.social,Technology,technology,false -aminda,sauna.social,Travel,travel,false -aminda,sauna.social,Ukraine Invasion,ukraine_invasion,false -aminda,sauna.social,Weather,weather,false -aminda,sauna.social,Women’s Voices,women_voices,false -aminda,sauna.social,Workers Rights,workers_rights,false -aminda,sauna.social,LGBTQ+,lgbtq,true -pch,s3th.me,Ukraine Invasion,ukraine_invasion,false -pch,s3th.me,Weather,weather,false -pch,s3th.me,Workers Rights,workers_rights,false -pch,s3th.me,Technology,technology,true -bridgeteam,newsmast.social,Social Media,social_media,false -Question,newsmast.social,AI,ai,false -Question,newsmast.social,Football,football,false -Question,newsmast.social,Government & Policy,government_policy,false -Question,newsmast.social,Journalism & Comment,news_comment_data,false -Question,newsmast.social,Technology,technology,false -Question,newsmast.social,US Politics,us_politics,false -Question,newsmast.social,Weather,weather,false -Question,newsmast.social,Breaking News,breaking_news,true -Humocefalo,masto.es,Academia & Research,academia_research,false -dmitri,social.coop,Academia & Research,academia_research,false -dmitri,social.coop,Breaking News,breaking_news,false -dmitri,social.coop,Democracy & Human Rights,democracy_human_rights,false -dmitri,social.coop,Engineering,engineering,false -dmitri,social.coop,Government & Policy,government_policy,false -dmitri,social.coop,Healthcare,healthcare,false -dmitri,social.coop,"Hunger, Disease & Water",hunger_disease_water,false -dmitri,social.coop,Law & Justice,law_justice,false -dmitri,social.coop,Politics,politics,false -dmitri,social.coop,Programming,programming,false -dmitri,social.coop,Technology,technology,false -dmitri,social.coop,Ukraine Invasion,ukraine_invasion,false -dmitri,social.coop,Weather,weather,false -dmitri,social.coop,US Politics,us_politics,true -Humocefalo,masto.es,Activism & Civil Rights,activism_civil_rights,false -Humocefalo,masto.es,AI,ai,false -Humocefalo,masto.es,Biodiversity & Rewilding,biodiversity_rewilding,false -Humocefalo,masto.es,Biology,biology,false -Humocefalo,masto.es,Black Voices,black_voices,false -Humocefalo,masto.es,Breaking News,breaking_news,false -Humocefalo,masto.es,Chemistry,chemistry,false -Humocefalo,masto.es,Democracy & Human Rights,democracy_human_rights,false -Draco_WI,mastodon.world,Engineering,engineering,false -Draco_WI,mastodon.world,Physics,physics,false -Draco_WI,mastodon.world,Programming,programming,false -Draco_WI,mastodon.world,Science,science,false -Draco_WI,mastodon.world,Space,space,false -Draco_WI,mastodon.world,Sport,sport,false -Draco_WI,mastodon.world,Technology,technology,false -Draco_WI,mastodon.world,Breaking News,breaking_news,true -Humocefalo,masto.es,Disabled Voices,disabled_voices,false -Humocefalo,masto.es,Environment,environment,false -Humocefalo,masto.es,Humanities,humanities,false -Humocefalo,masto.es,Immigrants Rights,immigrants_rights,false -Humocefalo,masto.es,Indigenous Peoples,indigenous_peoples,false -Humocefalo,masto.es,LGBTQ+,lgbtq,false -Humocefalo,masto.es,Mathematics,mathematics,false -Humocefalo,masto.es,Philosophy,philosophy,false -toaskoas,sueden.social,AI,ai,false -toaskoas,sueden.social,Breaking News,breaking_news,false -toaskoas,sueden.social,Engineering,engineering,false -toaskoas,sueden.social,Journalism & Comment,news_comment_data,false -toaskoas,sueden.social,Poverty & Inequality,poverty_inequality,false -toaskoas,sueden.social,Programming,programming,false -toaskoas,sueden.social,Social Media,social_media,false -toaskoas,sueden.social,Technology,technology,true -Humocefalo,masto.es,Photography,photography,false -Humocefalo,masto.es,Physics,physics,false -Humocefalo,masto.es,Science,science,false -Humocefalo,masto.es,Visual Arts,visual_arts,false -lawyerjsd,mastodon.social,Academia & Research,academia_research,false -lawyerjsd,mastodon.social,Biology,biology,false -lawyerjsd,mastodon.social,Chemistry,chemistry,false -lawyerjsd,mastodon.social,Government & Policy,government_policy,false -cbn_photography,cbn_photography@stranger.social,Academia & Research,academia_research,false -cbn_photography,cbn_photography@stranger.social,AI,ai,false -cbn_photography,cbn_photography@stranger.social,Breaking News,breaking_news,false -cbn_photography,cbn_photography@stranger.social,Democracy & Human Rights,democracy_human_rights,false -cbn_photography,cbn_photography@stranger.social,Engineering,engineering,false -cbn_photography,cbn_photography@stranger.social,Government & Policy,government_policy,false -cbn_photography,cbn_photography@stranger.social,Mathematics,mathematics,false -cbn_photography,cbn_photography@stranger.social,Journalism & Comment,news_comment_data,false -cbn_photography,cbn_photography@stranger.social,Physics,physics,false -cbn_photography,cbn_photography@stranger.social,Politics,politics,false -cbn_photography,cbn_photography@stranger.social,Science,science,false -cbn_photography,cbn_photography@stranger.social,Space,space,false -cbn_photography,cbn_photography@stranger.social,Technology,technology,true -tiddings,mastodon.social,Journalism & Comment,news_comment_data,false -tiddings,mastodon.social,Social Media,social_media,false -tiddings,mastodon.social,Ukraine Invasion,ukraine_invasion,false -tiddings,mastodon.social,Weather,weather,false -tiddings,mastodon.social,Breaking News,breaking_news,true -jankjon,newsmast.social,Breaking News,breaking_news,false -jankjon,newsmast.social,Climate change,climate_change,false -jankjon,newsmast.social,Energy & Pollution,energy_pollution,false -jankjon,newsmast.social,Environment,environment,false -jankjon,newsmast.social,Journalism & Comment,news_comment_data,false -jankjon,newsmast.social,Social Media,social_media,false -jankjon,newsmast.social,Ukraine Invasion,ukraine_invasion,false -jankjon,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,true -julietchen,mastodon.world,Biodiversity & Rewilding,biodiversity_rewilding,false -julietchen,mastodon.world,Climate change,climate_change,false -julietchen,mastodon.world,Democracy & Human Rights,democracy_human_rights,false -julietchen,mastodon.world,Energy & Pollution,energy_pollution,false -julietchen,mastodon.world,Environment,environment,true -julietchen,mastodon.world,Social Media,social_media,false -julietchen,mastodon.world,Breaking News,breaking_news,false -julietchen,mastodon.world,Government & Policy,government_policy,false -julietchen,mastodon.world,Politics,politics,false -julietchen,mastodon.world,AI,ai,false -julietchen,mastodon.world,Technology,technology,false -bridgeteam,newsmast.social,Social Sciences,social_sciences,false -bridgeteam,newsmast.social,Space,space,false -bridgeteam,newsmast.social,Travel,travel,false -bridgeteam,newsmast.social,TV & Radio,tv_radio,false -lawyerjsd,mastodon.social,Healthcare,healthcare,false -lawyerjsd,mastodon.social,Law & Justice,law_justice,false -lawyerjsd,mastodon.social,Mathematics,mathematics,false -lawyerjsd,mastodon.social,Physics,physics,false -lawyerjsd,mastodon.social,Politics,politics,false -lawyerjsd,mastodon.social,Science,science,false -lawyerjsd,mastodon.social,Space,space,false -lawyerjsd,mastodon.social,US Politics,us_politics,false -lawyerjsd,mastodon.social,US Sport,us_sport,false -lawyerjsd,mastodon.social,Breaking News,breaking_news,true -bridgeteam,newsmast.social,Ukraine Invasion,ukraine_invasion,false -bridgeteam,newsmast.social,US Politics,us_politics,false -Loukas,newsmast.social,Government & Policy,government_policy,true -belpatca,techhub.social,Energy & Pollution,energy_pollution,true -bridgeteam,newsmast.social,Visual Arts,visual_arts,false -bridgeteam,newsmast.social,Weather,weather,false -paingpyaethu,mstdn.social,Weather,weather,false -paingpyaethu,mstdn.social,Football,football,true -bridgeteam,newsmast.social,Books & Literature,books_literature,true -PixelRobot,neopaquita.es,Humanities,humanities,false -AutisticMumTo3,leftist.network,History,history,false -AutisticMumTo3,leftist.network,Humanities,humanities,false -AutisticMumTo3,leftist.network,"Hunger, Disease & Water",hunger_disease_water,false -AutisticMumTo3,leftist.network,Immigrants Rights,immigrants_rights,false -AutisticMumTo3,leftist.network,Indigenous Peoples,indigenous_peoples,false -AutisticMumTo3,leftist.network,Law & Justice,law_justice,false -AutisticMumTo3,leftist.network,LGBTQ+,lgbtq,false -AutisticMumTo3,leftist.network,Mathematics,mathematics,false -AutisticMumTo3,leftist.network,Mental Health & Wellbeing,mental_health_wellbeing,false -AutisticMumTo3,leftist.network,Nature & Wildlife,nature_wildlife,false -AutisticMumTo3,leftist.network,Journalism & Comment,news_comment_data,false -AutisticMumTo3,leftist.network,Pets,pets,false -AutisticMumTo3,leftist.network,Physics,physics,false -AutisticMumTo3,leftist.network,Politics,politics,false -AutisticMumTo3,leftist.network,Poverty & Inequality,poverty_inequality,false -AutisticMumTo3,leftist.network,Science,science,false -AutisticMumTo3,leftist.network,Social Media,social_media,false -AutisticMumTo3,leftist.network,Social Sciences,social_sciences,false -AutisticMumTo3,leftist.network,Space,space,false -AutisticMumTo3,leftist.network,Technology,technology,false -AutisticMumTo3,leftist.network,Ukraine Invasion,ukraine_invasion,false -AutisticMumTo3,leftist.network,US Politics,us_politics,false -AutisticMumTo3,leftist.network,Weather,weather,false -AutisticMumTo3,leftist.network,Women’s Voices,women_voices,false -AutisticMumTo3,leftist.network,Workers Rights,workers_rights,false -AutisticMumTo3,leftist.network,Breaking News,breaking_news,true -GuyDudeman,beige.party,Immigrants Rights,immigrants_rights,false -emsquared,mastodon.social,AI,ai,false -emsquared,mastodon.social,Architecture & Design,architecture_design,false -emsquared,mastodon.social,Energy & Pollution,energy_pollution,false -emsquared,mastodon.social,Environment,environment,false -emsquared,mastodon.social,Movies,movies,false -emsquared,mastodon.social,Music,music,false -emsquared,mastodon.social,Performing Arts,performing_arts,false -emsquared,mastodon.social,Philosophy,philosophy,false -emsquared,mastodon.social,Technology,technology,false -emsquared,mastodon.social,TV & Radio,tv_radio,false -emsquared,mastodon.social,Visual Arts,visual_arts,false -GuyDudeman,beige.party,Law & Justice,law_justice,false -GuyDudeman,beige.party,Mental Health & Wellbeing,mental_health_wellbeing,false -GuyDudeman,beige.party,Movies,movies,false -GuyDudeman,beige.party,Music,music,false -GuyDudeman,beige.party,Nature & Wildlife,nature_wildlife,false -GuyDudeman,beige.party,Performing Arts,performing_arts,false -GuyDudeman,beige.party,Philosophy,philosophy,false -GuyDudeman,beige.party,Politics,politics,false -smootnyclown,pol.social,Academia & Research,academia_research,false -smootnyclown,pol.social,AI,ai,false -smootnyclown,pol.social,Architecture & Design,architecture_design,false -smootnyclown,pol.social,Biodiversity & Rewilding,biodiversity_rewilding,false -smootnyclown,pol.social,Biology,biology,false -smootnyclown,pol.social,Books & Literature,books_literature,false -smootnyclown,pol.social,Chemistry,chemistry,false -smootnyclown,pol.social,Climate change,climate_change,false -smootnyclown,pol.social,Democracy & Human Rights,democracy_human_rights,false -smootnyclown,pol.social,Energy & Pollution,energy_pollution,false -smootnyclown,pol.social,Engineering,engineering,false -smootnyclown,pol.social,Environment,environment,false -smootnyclown,pol.social,Gaming,gaming,false -smootnyclown,pol.social,Breaking News,breaking_news,true -GuyDudeman,beige.party,Poverty & Inequality,poverty_inequality,false -emsquared,mastodon.social,Photography,photography,true -GuyDudeman,beige.party,Science,science,false -GuyDudeman,beige.party,Social Sciences,social_sciences,false -GuyDudeman,beige.party,Technology,technology,false -GuyDudeman,beige.party,Travel,travel,false -GuyDudeman,beige.party,TV & Radio,tv_radio,false -GuyDudeman,beige.party,US Politics,us_politics,false -GuyDudeman,beige.party,US Sport,us_sport,false -GuyDudeman,beige.party,Visual Arts,visual_arts,false -GuyDudeman,beige.party,Workers Rights,workers_rights,false -AlexiaPonchet,newsmast.social,History,history,false -AlexiaPonchet,newsmast.social,Movies,movies,false -AlexiaPonchet,newsmast.social,Business,business,true -bbdjgfhjhhg,newsmast.social,Technology,technology,false -bbdjgfhjhhg,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -PixelRobot,neopaquita.es,Humour,humour,false -exahamza,mastodon.social,Gaming,gaming,false -exahamza,mastodon.social,Movies,movies,false -exahamza,mastodon.social,Music,music,false -exahamza,mastodon.social,Technology,technology,false -exahamza,mastodon.social,Football,football,true -vlp00,newsmast.social,Weather,weather,false -vlp00,newsmast.social,AI,ai,true -Petinder,newsmast.social,Environment,environment,false -Petinder,newsmast.social,Humanities,humanities,false -Petinder,newsmast.social,Journalism & Comment,news_comment_data,false -Petinder,newsmast.social,Social Media,social_media,false -stevetheboxer,c.im,Biology,biology,false -stevetheboxer,c.im,Breaking News,breaking_news,false -stevetheboxer,c.im,Chemistry,chemistry,false -stevetheboxer,c.im,Climate change,climate_change,false -stevetheboxer,c.im,Engineering,engineering,false -stevetheboxer,c.im,Environment,environment,false -stevetheboxer,c.im,Mathematics,mathematics,false -stevetheboxer,c.im,Physics,physics,false -stevetheboxer,c.im,Programming,programming,false -stevetheboxer,c.im,Science,science,false -stevetheboxer,c.im,Social Media,social_media,false -stevetheboxer,c.im,Space,space,false -stevetheboxer,c.im,Sport,sport,false -stevetheboxer,c.im,US Sport,us_sport,false -stevetheboxer,c.im,Weather,weather,false -stevetheboxer,c.im,AI,ai,true -Petinder,newsmast.social,Social Sciences,social_sciences,true -iqruds,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false -iqruds,newsmast.social,Breaking News,breaking_news,false -iqruds,newsmast.social,Creative Arts,creative_arts,false -iqruds,newsmast.social,Environment,environment,false -iqruds,newsmast.social,Food & Drink,food_drink,false -iqruds,newsmast.social,Humour,humour,false -iqruds,newsmast.social,Journalism & Comment,news_comment_data,false -iqruds,newsmast.social,Social Media,social_media,false -iqruds,newsmast.social,Sport,sport,false -iqruds,newsmast.social,Travel,travel,false -iqruds,newsmast.social,Nature & Wildlife,nature_wildlife,true -a4r,mas.to,Democracy & Human Rights,democracy_human_rights,false -a4r,mas.to,Journalism & Comment,news_comment_data,false -a4r,mas.to,Programming,programming,false -daniele_Hesse,mstdn.party,Academia & Research,academia_research,false -blkdevcon,Mastodon.online,Activism & Civil Rights,activism_civil_rights,false -mpmilestogo,cupoftea.social,Books & Literature,books_literature,false -mpmilestogo,cupoftea.social,Food & Drink,food_drink,false -mpmilestogo,cupoftea.social,History,history,false -mpmilestogo,cupoftea.social,Humanities,humanities,false -mpmilestogo,cupoftea.social,Mental Health & Wellbeing,mental_health_wellbeing,false -mpmilestogo,cupoftea.social,Photography,photography,false -mpmilestogo,cupoftea.social,Social Media,social_media,false -mpmilestogo,cupoftea.social,Social Sciences,social_sciences,false -mpmilestogo,cupoftea.social,Technology,technology,false -mpmilestogo,cupoftea.social,Travel,travel,false -mpmilestogo,cupoftea.social,Breaking News,breaking_news,true -hobybrenner,mastodon.social,Food & Drink,food_drink,false -hobybrenner,mastodon.social,Humour,humour,false -hobybrenner,mastodon.social,Journalism & Comment,news_comment_data,false -hobybrenner,mastodon.social,Social Media,social_media,false -hobybrenner,mastodon.social,Technology,technology,false -hobybrenner,mastodon.social,Weather,weather,false -hobybrenner,mastodon.social,Breaking News,breaking_news,true -FreddieJ,newsmast.social,TV & Radio,tv_radio,false -meatlotion,mas.erb.pw,Mathematics,mathematics,false -meatlotion,mas.erb.pw,Physics,physics,false -meatlotion,mas.erb.pw,Science,science,false -meatlotion,mas.erb.pw,Technology,technology,false -meatlotion,mas.erb.pw,Programming,programming,true -YNDA,newsmast.social,Architecture & Design,architecture_design,false -YNDA,newsmast.social,Books & Literature,books_literature,false -YNDA,newsmast.social,Creative Arts,creative_arts,false -YNDA,newsmast.social,Food & Drink,food_drink,false -YNDA,newsmast.social,Gaming,gaming,false -YNDA,newsmast.social,Humour,humour,false -YNDA,newsmast.social,Markets & Finance,markets_finance,false -YNDA,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false -YNDA,newsmast.social,Movies,movies,false -YNDA,newsmast.social,Music,music,false -kerkko,mas.to,AI,ai,false -kerkko,mas.to,Business,business,false -kerkko,mas.to,Democracy & Human Rights,democracy_human_rights,false -kerkko,mas.to,Government & Policy,government_policy,false -kerkko,mas.to,Markets & Finance,markets_finance,false -kerkko,mas.to,Journalism & Comment,news_comment_data,false -kerkko,mas.to,Politics,politics,false -kerkko,mas.to,Social Media,social_media,false -kerkko,mas.to,Technology,technology,false -kerkko,mas.to,Ukraine Invasion,ukraine_invasion,false -kerkko,mas.to,US Politics,us_politics,false -kerkko,mas.to,Workers Rights,workers_rights,false -kerkko,mas.to,Breaking News,breaking_news,true -bpingry,social.vivaldi.net,Activism & Civil Rights,activism_civil_rights,false -bpingry,social.vivaldi.net,Biodiversity & Rewilding,biodiversity_rewilding,false -bpingry,social.vivaldi.net,Black Voices,black_voices,false -bpingry,social.vivaldi.net,Books & Literature,books_literature,false -bpingry,social.vivaldi.net,Breaking News,breaking_news,false -bpingry,social.vivaldi.net,Chemistry,chemistry,false -bpingry,social.vivaldi.net,Democracy & Human Rights,democracy_human_rights,false -bpingry,social.vivaldi.net,Energy & Pollution,energy_pollution,false -bpingry,social.vivaldi.net,Environment,environment,false -bpingry,social.vivaldi.net,Government & Policy,government_policy,false -bpingry,social.vivaldi.net,Immigrants Rights,immigrants_rights,false -bpingry,social.vivaldi.net,Indigenous Peoples,indigenous_peoples,false -bpingry,social.vivaldi.net,Law & Justice,law_justice,false -bpingry,social.vivaldi.net,LGBTQ+,lgbtq,false -bpingry,social.vivaldi.net,Music,music,false -bpingry,social.vivaldi.net,Performing Arts,performing_arts,false -bpingry,social.vivaldi.net,Physics,physics,false -bpingry,social.vivaldi.net,Programming,programming,false -bpingry,social.vivaldi.net,Science,science,false -bpingry,social.vivaldi.net,Space,space,false -bpingry,social.vivaldi.net,Technology,technology,false -bpingry,social.vivaldi.net,Ukraine Invasion,ukraine_invasion,false -bpingry,social.vivaldi.net,US Politics,us_politics,false -bpingry,social.vivaldi.net,Weather,weather,false -bpingry,social.vivaldi.net,Women’s Voices,women_voices,false -bpingry,social.vivaldi.net,Gaming,gaming,true -Paulywood,mstdn.party,Books & Literature,books_literature,false -Paulywood,mstdn.party,Food & Drink,food_drink,false -Paulywood,mstdn.party,Gaming,gaming,false -Paulywood,mstdn.party,Humour,humour,false -Paulywood,mstdn.party,Movies,movies,false -Paulywood,mstdn.party,Music,music,false -Paulywood,mstdn.party,Puzzles,puzzles,false -Paulywood,mstdn.party,Science,science,false -Paulywood,mstdn.party,Social Media,social_media,false -Paulywood,mstdn.party,Space,space,false -Paulywood,mstdn.party,Technology,technology,false -Paulywood,mstdn.party,Breaking News,breaking_news,true -GafferMan,universeodon.com,Breaking News,breaking_news,false -GafferMan,universeodon.com,Climate change,climate_change,false -GafferMan,universeodon.com,Energy & Pollution,energy_pollution,false -GafferMan,universeodon.com,Engineering,engineering,false -GafferMan,universeodon.com,Mathematics,mathematics,false -GafferMan,universeodon.com,Journalism & Comment,news_comment_data,false -GafferMan,universeodon.com,Physics,physics,false -GafferMan,universeodon.com,Programming,programming,false -GafferMan,universeodon.com,Science,science,false -GafferMan,universeodon.com,Space,space,false -GafferMan,universeodon.com,Technology,technology,true -Mgzallp,mastodon.social,Journalism & Comment,news_comment_data,false -Mgzallp,mastodon.social,Social Media,social_media,false -Mgzallp,mastodon.social,Ukraine Invasion,ukraine_invasion,false -Mgzallp,mastodon.social,Weather,weather,false -Mgzallp,mastodon.social,Breaking News,breaking_news,true -blkdevcon,Mastodon.online,AI,ai,false -kevindreher,mastodon.design,Breaking News,breaking_news,false -kevindreher,mastodon.design,Creative Arts,creative_arts,false -kevindreher,mastodon.design,Gaming,gaming,false -kevindreher,mastodon.design,Movies,movies,false -kevindreher,mastodon.design,Photography,photography,false -kevindreher,mastodon.design,Politics,politics,false -kevindreher,mastodon.design,Sport,sport,false -kevindreher,mastodon.design,Technology,technology,false -kevindreher,mastodon.design,Travel,travel,false -kevindreher,mastodon.design,Visual Arts,visual_arts,false -kevindreher,mastodon.design,Architecture & Design,architecture_design,true -PixelRobot,neopaquita.es,"Hunger, Disease & Water",hunger_disease_water,false -blkdevcon,Mastodon.online,Engineering,engineering,false -blkdevcon,Mastodon.online,Government & Policy,government_policy,false -kirukarki2,newsmast.social,Private Community,private-community,false -blkdevcon,Mastodon.online,Law & Justice,law_justice,false -johnglass,ohai.social,Democracy & Human Rights,democracy_human_rights,false -johnglass,ohai.social,Gaming,gaming,false -johnglass,ohai.social,Humanities,humanities,false -johnglass,ohai.social,Sport,sport,false -johnglass,ohai.social,Music,music,true -daniele_Hesse,mstdn.party,Breaking News,breaking_news,false -daniele_Hesse,mstdn.party,Government & Policy,government_policy,false -daniele_Hesse,mstdn.party,Healthcare,healthcare,false -daniele_Hesse,mstdn.party,Law & Justice,law_justice,false -hello_buckers,mastodonapp.uk,AI,ai,false -daniele_Hesse,mstdn.party,Journalism & Comment,news_comment_data,false -daniele_Hesse,mstdn.party,Politics,politics,false -daniele_Hesse,mstdn.party,Ukraine Invasion,ukraine_invasion,false -daniele_Hesse,mstdn.party,US Politics,us_politics,false -hello_buckers,mastodonapp.uk,Politics,politics,false -hello_buckers,mastodonapp.uk,Climate change,climate_change,false -hello_buckers,mastodonapp.uk,Science,science,false -hello_buckers,mastodonapp.uk,Gaming,gaming,false -hello_buckers,mastodonapp.uk,Movies,movies,false -hello_buckers,mastodonapp.uk,Humour,humour,false -daniele_Hesse,mstdn.party,Social Media,social_media,true -hello_buckers,mastodonapp.uk,Weather,weather,false -hello_buckers,mastodonapp.uk,Technology,technology,true -valeriadepaiva,newsmast.social,AI,ai,false -valeriadepaiva,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false -valeriadepaiva,newsmast.social,Poverty & Inequality,poverty_inequality,false -valeriadepaiva,newsmast.social,Programming,programming,false -valeriadepaiva,newsmast.social,Mathematics,mathematics,true -knechtomat,chaos.social,Biodiversity & Rewilding,biodiversity_rewilding,false -knechtomat,chaos.social,Biology,biology,false -knechtomat,chaos.social,Chemistry,chemistry,false -knechtomat,chaos.social,Climate change,climate_change,false -knechtomat,chaos.social,Democracy & Human Rights,democracy_human_rights,false -knechtomat,chaos.social,Energy & Pollution,energy_pollution,false -knechtomat,chaos.social,Environment,environment,false -knechtomat,chaos.social,Government & Policy,government_policy,false -knechtomat,chaos.social,Healthcare,healthcare,false -knechtomat,chaos.social,"Hunger, Disease & Water",hunger_disease_water,false -knechtomat,chaos.social,Law & Justice,law_justice,false -knechtomat,chaos.social,Mathematics,mathematics,false -knechtomat,chaos.social,Physics,physics,false -knechtomat,chaos.social,Politics,politics,false -knechtomat,chaos.social,Poverty & Inequality,poverty_inequality,false -knechtomat,chaos.social,Science,science,false -knechtomat,chaos.social,Space,space,false -knechtomat,chaos.social,US Politics,us_politics,false -knechtomat,chaos.social,Academia & Research,academia_research,true -Frode77,mastodon.social,Breaking News,breaking_news,false -Frode77,mastodon.social,Football,football,false -Frode77,mastodon.social,Social Media,social_media,false -Frode77,mastodon.social,US Sport,us_sport,false -Frode77,mastodon.social,Sport,sport,true -orgaknown,mastodon.social,Biology,biology,false -orgaknown,mastodon.social,Breaking News,breaking_news,false -orgaknown,mastodon.social,Chemistry,chemistry,false -orgaknown,mastodon.social,Physics,physics,false -orgaknown,mastodon.social,Science,science,false -orgaknown,mastodon.social,Technology,technology,true -FTWynn,fosstodon.org,AI,ai,false -FTWynn,fosstodon.org,Breaking News,breaking_news,false -FTWynn,fosstodon.org,Business,business,false -FTWynn,fosstodon.org,Government & Policy,government_policy,false -FTWynn,fosstodon.org,Journalism & Comment,news_comment_data,false -FTWynn,fosstodon.org,US Politics,us_politics,false -FTWynn,fosstodon.org,Technology,technology,true -nia,fadingstar.net,AI,ai,false -nia,fadingstar.net,Breaking News,breaking_news,false -nia,fadingstar.net,Engineering,engineering,false -nia,fadingstar.net,LGBTQ+,lgbtq,false -nia,fadingstar.net,Journalism & Comment,news_comment_data,false -nia,fadingstar.net,Programming,programming,false -nia,fadingstar.net,Social Media,social_media,false -nia,fadingstar.net,Technology,technology,true -prapa,newsmast.social,Biology,biology,false -prapa,newsmast.social,Breaking News,breaking_news,false -prapa,newsmast.social,Chemistry,chemistry,false -prapa,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -prapa,newsmast.social,Engineering,engineering,false -prapa,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false -prapa,newsmast.social,Mathematics,mathematics,false -prapa,newsmast.social,Physics,physics,false -prapa,newsmast.social,Poverty & Inequality,poverty_inequality,false -prapa,newsmast.social,Programming,programming,false -prapa,newsmast.social,Science,science,false -prapa,newsmast.social,Space,space,false -prapa,newsmast.social,Technology,technology,false -prapa,newsmast.social,AI,ai,true -blkdevcon,Mastodon.online,LGBTQ+,lgbtq,false -blkdevcon,Mastodon.online,Programming,programming,false -blkdevcon,Mastodon.online,Social Media,social_media,false -Humocefalo,masto.es,Women’s Voices,women_voices,true -blkdevcon,Mastodon.online,Technology,technology,false -jnzd,mastodon.social,Breaking News,breaking_news,false -jnzd,mastodon.social,Gaming,gaming,false -jnzd,mastodon.social,Politics,politics,false -jnzd,mastodon.social,Ukraine Invasion,ukraine_invasion,false -jnzd,mastodon.social,US Politics,us_politics,false -jnzd,mastodon.social,Programming,programming,true -shoq,mastodon.social,Activism & Civil Rights,activism_civil_rights,false -shoq,mastodon.social,Activism & Civil Rights,activism_civil_rights,false -shoq,mastodon.social,Breaking News,breaking_news,false -shoq,mastodon.social,Government & Policy,government_policy,false -shoq,mastodon.social,Breaking News,breaking_news,false -shoq,mastodon.social,Journalism & Comment,news_comment_data,false -shoq,mastodon.social,Government & Policy,government_policy,false -shoq,mastodon.social,Technology,technology,false -shoq,mastodon.social,Journalism & Comment,news_comment_data,false -shoq,mastodon.social,Technology,technology,false -shoq,mastodon.social,US Politics,us_politics,false -shoq,mastodon.social,US Politics,us_politics,true -freelix,layer8.space,Biodiversity & Rewilding,biodiversity_rewilding,false -freelix,layer8.space,Democracy & Human Rights,democracy_human_rights,false -freelix,layer8.space,Environment,environment,false -freelix,layer8.space,Football,football,false -freelix,layer8.space,Programming,programming,false -freelix,layer8.space,Energy & Pollution,energy_pollution,true -michael,newsmast.social,Visual Arts,visual_arts,false -michael,newsmast.social,Women’s Voices,women_voices,false -michael,newsmast.social,Academia & Research,academia_research,false -michael,newsmast.social,Activism & Civil Rights,activism_civil_rights,false -michael,newsmast.social,Architecture & Design,architecture_design,false -michael,newsmast.social,Books & Literature,books_literature,false -michael,newsmast.social,Climate change,climate_change,false -michael,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -michael,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false -michael,newsmast.social,Indigenous Peoples,indigenous_peoples,false -michael,newsmast.social,Music,music,false -michael,newsmast.social,Nature & Wildlife,nature_wildlife,false -michael,newsmast.social,Journalism & Comment,news_comment_data,false -michael,newsmast.social,Photography,photography,false -michael,newsmast.social,Politics,politics,false -michael,newsmast.social,Poverty & Inequality,poverty_inequality,false -michael,newsmast.social,Space,space,false -michael,newsmast.social,US Politics,us_politics,false -michael,newsmast.social,Visual Arts,visual_arts,false -michael,newsmast.social,Women’s Voices,women_voices,false -michael,newsmast.social,Social Media,social_media,true -hanubeki,social.vivaldi.net,Music,music,false -hanubeki,social.vivaldi.net,Photography,photography,false -hanubeki,social.vivaldi.net,Social Media,social_media,false -DemocracyAlarm,newsmast.social,Activism & Civil Rights,activism_civil_rights,false -DemocracyAlarm,newsmast.social,Breaking News,breaking_news,false -hanubeki,social.vivaldi.net,Gaming,gaming,false -hanubeki,social.vivaldi.net,Technology,technology,true -DemocracyAlarm,newsmast.social,Government & Policy,government_policy,false -DemocracyAlarm,newsmast.social,Law & Justice,law_justice,false -DemocracyAlarm,newsmast.social,Social Media,social_media,false -DemocracyAlarm,newsmast.social,US Politics,us_politics,false -DemocracyAlarm,newsmast.social,Journalism & Comment,news_comment_data,true -tom2022,newsmast.social,Black Voices,black_voices,false -tom2022,newsmast.social,Indigenous Peoples,indigenous_peoples,false -tom2022,newsmast.social,Nature & Wildlife,nature_wildlife,false -tom2022,newsmast.social,Social Media,social_media,false -tom2022,newsmast.social,LGBTQ+,lgbtq,true -Serious_Feather,newsmast.social,Music,music,false -Serious_Feather,newsmast.social,Performing Arts,performing_arts,false -democracyalarm,mastodon.social,Academia & Research,academia_research,false -democracyalarm,mastodon.social,Democracy & Human Rights,democracy_human_rights,false -democracyalarm,mastodon.social,Government & Policy,government_policy,false -democracyalarm,mastodon.social,Healthcare,healthcare,false -democracyalarm,mastodon.social,"Hunger, Disease & Water",hunger_disease_water,false -democracyalarm,mastodon.social,Law & Justice,law_justice,false -democracyalarm,mastodon.social,Journalism & Comment,news_comment_data,false -democracyalarm,mastodon.social,Politics,politics,false -democracyalarm,mastodon.social,Poverty & Inequality,poverty_inequality,false -democracyalarm,mastodon.social,Social Media,social_media,false -democracyalarm,mastodon.social,Ukraine Invasion,ukraine_invasion,false -democracyalarm,mastodon.social,US Politics,us_politics,false -democracyalarm,mastodon.social,Weather,weather,false -democracyalarm,mastodon.social,Breaking News,breaking_news,true -zoinks,gts.scoobysnack.net,Humour,humour,false -zoinks,gts.scoobysnack.net,Pets,pets,false -quentinnield,mastodonapp.uk,LGBTQ+,lgbtq,false -quentinnield,mastodonapp.uk,Business,business,false -kleinheld,pixelig.social,Football,football,false -kleinheld,pixelig.social,Politics,politics,false -kleinheld,pixelig.social,Sport,sport,false -kleinheld,pixelig.social,Technology,technology,false -kleinheld,pixelig.social,Breaking News,breaking_news,true -paing89,newsmast.social,Journalism & Comment,news_comment_data,false -paing89,newsmast.social,Social Media,social_media,false -paing89,newsmast.social,Technology,technology,false -paing89,newsmast.social,Ukraine Invasion,ukraine_invasion,false -paing89,newsmast.social,Weather,weather,false -paing89,newsmast.social,Breaking News,breaking_news,true -mbrailer,mstdn.social,Climate change,climate_change,false -mbrailer,mstdn.social,Humour,humour,false -mbrailer,mstdn.social,Pets,pets,false -mbrailer,mstdn.social,US Politics,us_politics,false -blkdevcon,Mastodon.online,US Politics,us_politics,false -blkdevcon,Mastodon.online,Breaking News,breaking_news,true -PixelRobot,neopaquita.es,Immigrants Rights,immigrants_rights,false -jadejitsu,mastodon.social,Academia & Research,academia_research,false -jadejitsu,mastodon.social,Activism & Civil Rights,activism_civil_rights,false -jadejitsu,mastodon.social,AI,ai,false -jadejitsu,mastodon.social,Architecture & Design,architecture_design,false -jadejitsu,mastodon.social,Biodiversity & Rewilding,biodiversity_rewilding,false -jadejitsu,mastodon.social,Biology,biology,false -jadejitsu,mastodon.social,Black Voices,black_voices,false -jadejitsu,mastodon.social,Books & Literature,books_literature,false -jadejitsu,mastodon.social,Breaking News,breaking_news,false -jadejitsu,mastodon.social,Business,business,false -jadejitsu,mastodon.social,Chemistry,chemistry,false -jadejitsu,mastodon.social,Climate change,climate_change,false -jadejitsu,mastodon.social,Democracy & Human Rights,democracy_human_rights,false -jadejitsu,mastodon.social,Disabled Voices,disabled_voices,false -jadejitsu,mastodon.social,Energy & Pollution,energy_pollution,false -jadejitsu,mastodon.social,Engineering,engineering,false -jadejitsu,mastodon.social,Environment,environment,false -jadejitsu,mastodon.social,Food & Drink,food_drink,false -jadejitsu,mastodon.social,Football,football,false -jadejitsu,mastodon.social,Gaming,gaming,false -jadejitsu,mastodon.social,Government & Policy,government_policy,false -jadejitsu,mastodon.social,Healthcare,healthcare,false -jadejitsu,mastodon.social,History,history,false -jadejitsu,mastodon.social,Humanities,humanities,false -jadejitsu,mastodon.social,Humour,humour,false -jadejitsu,mastodon.social,"Hunger, Disease & Water",hunger_disease_water,false -jadejitsu,mastodon.social,Immigrants Rights,immigrants_rights,false -jadejitsu,mastodon.social,Indigenous Peoples,indigenous_peoples,false -jadejitsu,mastodon.social,Law & Justice,law_justice,false -jadejitsu,mastodon.social,LGBTQ+,lgbtq,false -jadejitsu,mastodon.social,Markets & Finance,markets_finance,false -jadejitsu,mastodon.social,Mathematics,mathematics,false -jadejitsu,mastodon.social,Mental Health & Wellbeing,mental_health_wellbeing,false -jadejitsu,mastodon.social,Movies,movies,false -jadejitsu,mastodon.social,Music,music,false -jadejitsu,mastodon.social,Nature & Wildlife,nature_wildlife,false -jadejitsu,mastodon.social,Journalism & Comment,news_comment_data,false -jadejitsu,mastodon.social,Performing Arts,performing_arts,false -jadejitsu,mastodon.social,Pets,pets,false -jadejitsu,mastodon.social,Philosophy,philosophy,false -jadejitsu,mastodon.social,Photography,photography,false -jadejitsu,mastodon.social,Physics,physics,false -jadejitsu,mastodon.social,Politics,politics,false -jadejitsu,mastodon.social,Poverty & Inequality,poverty_inequality,false -jadejitsu,mastodon.social,Programming,programming,false -jadejitsu,mastodon.social,Puzzles,puzzles,false -jadejitsu,mastodon.social,Science,science,false -jadejitsu,mastodon.social,Social Media,social_media,false -jadejitsu,mastodon.social,Social Sciences,social_sciences,false -jadejitsu,mastodon.social,Space,space,false -jadejitsu,mastodon.social,Sport,sport,false -jadejitsu,mastodon.social,Technology,technology,false -jadejitsu,mastodon.social,Travel,travel,false -jadejitsu,mastodon.social,TV & Radio,tv_radio,false -jadejitsu,mastodon.social,Ukraine Invasion,ukraine_invasion,false -jadejitsu,mastodon.social,US Politics,us_politics,false -jadejitsu,mastodon.social,US Sport,us_sport,false -jadejitsu,mastodon.social,Visual Arts,visual_arts,false -jadejitsu,mastodon.social,Weather,weather,false -jadejitsu,mastodon.social,Women’s Voices,women_voices,false -jadejitsu,mastodon.social,Workers Rights,workers_rights,false -jadejitsu,mastodon.social,Creative Arts,creative_arts,true -curiocritters,ecoevo.social,Books & Literature,books_literature,false -curiocritters,ecoevo.social,Gaming,gaming,false -curiocritters,ecoevo.social,Movies,movies,false -curiocritters,ecoevo.social,Programming,programming,false -curiocritters,ecoevo.social,Science,science,false -curiocritters,ecoevo.social,Technology,technology,false -curiocritters,ecoevo.social,TV & Radio,tv_radio,false -curiocritters,ecoevo.social,Biology,biology,true -smootnyclown,pol.social,Government & Policy,government_policy,false -smootnyclown,pol.social,Healthcare,healthcare,false -smootnyclown,pol.social,History,history,false -smootnyclown,pol.social,Humanities,humanities,false -smootnyclown,pol.social,"Hunger, Disease & Water",hunger_disease_water,false -smootnyclown,pol.social,Law & Justice,law_justice,false -smootnyclown,pol.social,Mathematics,mathematics,false -smootnyclown,pol.social,Movies,movies,false -smootnyclown,pol.social,Journalism & Comment,news_comment_data,false -smootnyclown,pol.social,Philosophy,philosophy,false -smootnyclown,pol.social,Photography,photography,false -smootnyclown,pol.social,Physics,physics,false -smootnyclown,pol.social,Politics,politics,false -smootnyclown,pol.social,Poverty & Inequality,poverty_inequality,false -smootnyclown,pol.social,Science,science,false -smootnyclown,pol.social,Social Media,social_media,false -smootnyclown,pol.social,Social Sciences,social_sciences,false -smootnyclown,pol.social,Space,space,false -smootnyclown,pol.social,Technology,technology,false -smootnyclown,pol.social,Ukraine Invasion,ukraine_invasion,false -smootnyclown,pol.social,US Politics,us_politics,false -smootnyclown,pol.social,Weather,weather,false -jcblautomoto,newsmast.social,AI,ai,false -jcblautomoto,newsmast.social,Architecture & Design,architecture_design,false -jcblautomoto,newsmast.social,Books & Literature,books_literature,false -jcblautomoto,newsmast.social,Creative Arts,creative_arts,false -jcblautomoto,newsmast.social,Engineering,engineering,false -jcblautomoto,newsmast.social,Food & Drink,food_drink,false -jcblautomoto,newsmast.social,Gaming,gaming,false -jcblautomoto,newsmast.social,Humour,humour,false -jcblautomoto,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false -jcblautomoto,newsmast.social,Movies,movies,false -jcblautomoto,newsmast.social,Music,music,false -cgerrish,sfba.social,AI,ai,false -cgerrish,sfba.social,Architecture & Design,architecture_design,false -cgerrish,sfba.social,Biodiversity & Rewilding,biodiversity_rewilding,false -cgerrish,sfba.social,Biology,biology,false -cgerrish,sfba.social,Books & Literature,books_literature,false -cgerrish,sfba.social,Breaking News,breaking_news,false -cgerrish,sfba.social,Chemistry,chemistry,false -cgerrish,sfba.social,Climate change,climate_change,false -cgerrish,sfba.social,Democracy & Human Rights,democracy_human_rights,false -cgerrish,sfba.social,Energy & Pollution,energy_pollution,false -cgerrish,sfba.social,Engineering,engineering,false -cgerrish,sfba.social,Environment,environment,false -cgerrish,sfba.social,Football,football,false -cgerrish,sfba.social,Gaming,gaming,false -cgerrish,sfba.social,History,history,false -cgerrish,sfba.social,Humanities,humanities,false -cgerrish,sfba.social,"Hunger, Disease & Water",hunger_disease_water,false -cgerrish,sfba.social,Mathematics,mathematics,false -cgerrish,sfba.social,Movies,movies,false -cgerrish,sfba.social,Music,music,false -cgerrish,sfba.social,Journalism & Comment,news_comment_data,false -cgerrish,sfba.social,Performing Arts,performing_arts,false -cgerrish,sfba.social,Photography,photography,false -cgerrish,sfba.social,Physics,physics,false -cgerrish,sfba.social,Poverty & Inequality,poverty_inequality,false -cgerrish,sfba.social,Programming,programming,false -cgerrish,sfba.social,Science,science,false -cgerrish,sfba.social,Social Media,social_media,false -cgerrish,sfba.social,Social Sciences,social_sciences,false -cgerrish,sfba.social,Space,space,false -cgerrish,sfba.social,Sport,sport,false -cgerrish,sfba.social,Technology,technology,false -cgerrish,sfba.social,TV & Radio,tv_radio,false -cgerrish,sfba.social,Ukraine Invasion,ukraine_invasion,false -cgerrish,sfba.social,US Sport,us_sport,false -cgerrish,sfba.social,Visual Arts,visual_arts,false -cgerrish,sfba.social,Weather,weather,false -cgerrish,sfba.social,Philosophy,philosophy,true -Magda,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false -puk4_heart,newsmast.social,AI,ai,false -puk4_heart,newsmast.social,Creative Arts,creative_arts,false -puk4_heart,newsmast.social,Engineering,engineering,false -puk4_heart,newsmast.social,Food & Drink,food_drink,false -puk4_heart,newsmast.social,Weather,weather,false -puk4_heart,newsmast.social,Social Media,social_media,true -jcblautomoto,newsmast.social,Nature & Wildlife,nature_wildlife,false -jcblautomoto,newsmast.social,Performing Arts,performing_arts,false -jcblautomoto,newsmast.social,Pets,pets,false -jcblautomoto,newsmast.social,Photography,photography,false -jcblautomoto,newsmast.social,Programming,programming,false -jcblautomoto,newsmast.social,Puzzles,puzzles,false -shoqv4,newsmast.social,Breaking News,breaking_news,false -shoqv4,newsmast.social,Government & Policy,government_policy,false -shoqv4,newsmast.social,Journalism & Comment,news_comment_data,false -shoqv4,newsmast.social,Science,science,false -shoqv4,newsmast.social,Social Media,social_media,false -shoqv4,newsmast.social,Space,space,false -shoqv4,newsmast.social,US Politics,us_politics,true -jcblautomoto,newsmast.social,Travel,travel,false -jcblautomoto,newsmast.social,TV & Radio,tv_radio,false -jcblautomoto,newsmast.social,Visual Arts,visual_arts,false -jcblautomoto,newsmast.social,Technology,technology,true -Magda,newsmast.social,Books & Literature,books_literature,false -minkkyaw,newsmast.social,Journalism & Comment,news_comment_data,false -minkkyaw,newsmast.social,Social Media,social_media,false -minkkyaw,newsmast.social,Ukraine Invasion,ukraine_invasion,false -minkkyaw,newsmast.social,Weather,weather,false -minkkyaw,newsmast.social,Breaking News,breaking_news,true -Magda,newsmast.social,Business,business,false -IEF_FIE,newsmast.social,Activism & Civil Rights,activism_civil_rights,false -IEF_FIE,newsmast.social,Black Voices,black_voices,false -IEF_FIE,newsmast.social,Government & Policy,government_policy,false -IEF_FIE,newsmast.social,Healthcare,healthcare,false -IEF_FIE,newsmast.social,Immigrants Rights,immigrants_rights,false -IEF_FIE,newsmast.social,Indigenous Peoples,indigenous_peoples,false -IEF_FIE,newsmast.social,Women’s Voices,women_voices,false -IEF_FIE,newsmast.social,US Politics,us_politics,true -IEF_FIE,newsmast.social,Politics,politics,true -jcblhandtools,newsmast.social,Biology,biology,false -jcblhandtools,newsmast.social,Chemistry,chemistry,false -jcblhandtools,newsmast.social,Markets & Finance,markets_finance,false -mkk001,newsmast.social,Activism & Civil Rights,activism_civil_rights,false -mkk001,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false -mkk001,newsmast.social,Black Voices,black_voices,false -mkk001,newsmast.social,Climate change,climate_change,false -mkk001,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -mkk001,newsmast.social,Disabled Voices,disabled_voices,false -mkk001,newsmast.social,Energy & Pollution,energy_pollution,false -mkk001,newsmast.social,Environment,environment,false -mkk001,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false -mkk001,newsmast.social,Immigrants Rights,immigrants_rights,false -mkk001,newsmast.social,Breaking News,breaking_news,true -jcblhandtools,newsmast.social,Mathematics,mathematics,false -jcblhandtools,newsmast.social,Physics,physics,false -jcblhandtools,newsmast.social,Science,science,false -jcblhandtools,newsmast.social,Space,space,false -jcblhandtools,newsmast.social,Workers Rights,workers_rights,false -jcblhandtools,newsmast.social,Business,business,true -robtruman,glammr.us,Academia & Research,academia_research,false -robtruman,glammr.us,Environment,environment,false -robtruman,glammr.us,Law & Justice,law_justice,false -robtruman,glammr.us,Science,science,false -AlexiaPonchet,newsmast.social,Markets & Finance,markets_finance,false -AlexiaPonchet,newsmast.social,Philosophy,philosophy,false -AlexiaPonchet,newsmast.social,Travel,travel,false -mkk001,newsmast.social,Indigenous Peoples,indigenous_peoples,false -mkk001,newsmast.social,LGBTQ+,lgbtq,false -mkk001,newsmast.social,Journalism & Comment,news_comment_data,false -mkk001,newsmast.social,Poverty & Inequality,poverty_inequality,false -mkk001,newsmast.social,Social Media,social_media,false -mkk001,newsmast.social,Women’s Voices,women_voices,false -PixelRobot,neopaquita.es,Indigenous Peoples,indigenous_peoples,false -jejord,flipboard.social,Architecture & Design,architecture_design,false -min2k09,newsmast.social,Social Media,social_media,false -min2k09,newsmast.social,Ukraine Invasion,ukraine_invasion,false -min2k09,newsmast.social,Weather,weather,false -min2k09,newsmast.social,Breaking News,breaking_news,true -jejord,flipboard.social,Books & Literature,books_literature,false -jejord,flipboard.social,Climate change,climate_change,false -jejord,flipboard.social,Philosophy,philosophy,false -jejord,flipboard.social,Technology,technology,true -a4r,mas.to,Technology,technology,false -minkhant,mastodon.social,Democracy & Human Rights,democracy_human_rights,false -minkhant,mastodon.social,"Hunger, Disease & Water",hunger_disease_water,false -minkhant,mastodon.social,Journalism & Comment,news_comment_data,false -minkhant,mastodon.social,Poverty & Inequality,poverty_inequality,false -minkhant,mastodon.social,Social Media,social_media,false -minkhant,mastodon.social,Ukraine Invasion,ukraine_invasion,false -minkhant,mastodon.social,Weather,weather,false -minkhant,mastodon.social,Breaking News,breaking_news,true -a4r,mas.to,Breaking News,breaking_news,true -IEF_FIE,newsmast.social,Healthcare,healthcare,false -IEF_FIE,newsmast.social,Immigrants Rights,immigrants_rights,false -IEF_FIE,newsmast.social,Indigenous Peoples,indigenous_peoples,false -akp2,mastodon.social,Journalism & Comment,news_comment_data,false -akp2,mastodon.social,Social Media,social_media,false -akp2,mastodon.social,Ukraine Invasion,ukraine_invasion,false -akp2,mastodon.social,Weather,weather,false -akp2,mastodon.social,Breaking News,breaking_news,true -akp3,mastodon.social,Journalism & Comment,news_comment_data,false -akp3,mastodon.social,Social Media,social_media,false -akp3,mastodon.social,Ukraine Invasion,ukraine_invasion,false -akp3,mastodon.social,Weather,weather,false -akp3,mastodon.social,Breaking News,breaking_news,true -arunshah,flipboard.social,Democracy & Human Rights,democracy_human_rights,false -arunshah,flipboard.social,"Hunger, Disease & Water",hunger_disease_water,false -arunshah,flipboard.social,Journalism & Comment,news_comment_data,false -arunshah,flipboard.social,Poverty & Inequality,poverty_inequality,false -arunshah,flipboard.social,Social Media,social_media,false -arunshah,flipboard.social,Ukraine Invasion,ukraine_invasion,false -arunshah,flipboard.social,Weather,weather,false -arunshah,flipboard.social,Breaking News,breaking_news,true -nklatt,techhub.social,Democracy & Human Rights,democracy_human_rights,false -nklatt,techhub.social,Environment,environment,false -nklatt,techhub.social,Government & Policy,government_policy,false -nklatt,techhub.social,"Hunger, Disease & Water",hunger_disease_water,false -nklatt,techhub.social,Politics,politics,false -nklatt,techhub.social,Poverty & Inequality,poverty_inequality,false -nklatt,techhub.social,US Politics,us_politics,false -nklatt,techhub.social,Climate change,climate_change,true -max,newsmast.social,Academia & Research,academia_research,false -max,newsmast.social,AI,ai,false -max,newsmast.social,Breaking News,breaking_news,false -max,newsmast.social,Environment,environment,false -max,newsmast.social,Government & Policy,government_policy,false -max,newsmast.social,Programming,programming,false -max,newsmast.social,Science,science,false -max,newsmast.social,Technology,technology,true -jon,henshaw.social,Architecture & Design,architecture_design,false -jon,henshaw.social,Biology,biology,false -jon,henshaw.social,Books & Literature,books_literature,false -jon,henshaw.social,Breaking News,breaking_news,false -jon,henshaw.social,Business,business,false -jon,henshaw.social,Climate change,climate_change,false -jon,henshaw.social,Energy & Pollution,energy_pollution,false -jon,henshaw.social,Environment,environment,false -jon,henshaw.social,History,history,false -jon,henshaw.social,Humanities,humanities,false -jon,henshaw.social,Music,music,false -jon,henshaw.social,Journalism & Comment,news_comment_data,false -jon,henshaw.social,Philosophy,philosophy,false -jon,henshaw.social,Photography,photography,false -jon,henshaw.social,Science,science,false -jon,henshaw.social,Social Media,social_media,false -jon,henshaw.social,Social Sciences,social_sciences,false -jon,henshaw.social,Visual Arts,visual_arts,false -jon,henshaw.social,Technology,technology,true -owelleopard,toot.community,Biodiversity & Rewilding,biodiversity_rewilding,false -owelleopard,toot.community,Black Voices,black_voices,false -owelleopard,toot.community,Breaking News,breaking_news,false -owelleopard,toot.community,Disabled Voices,disabled_voices,false -owelleopard,toot.community,History,history,false -owelleopard,toot.community,Indigenous Peoples,indigenous_peoples,false -owelleopard,toot.community,LGBTQ+,lgbtq,false -owelleopard,toot.community,Movies,movies,false -owelleopard,toot.community,Politics,politics,false -owelleopard,toot.community,Poverty & Inequality,poverty_inequality,false -owelleopard,toot.community,Technology,technology,false -owelleopard,toot.community,Visual Arts,visual_arts,true -HomerNotSimpson,mastodon.social,Books & Literature,books_literature,false -HomerNotSimpson,mastodon.social,Football,football,false -HomerNotSimpson,mastodon.social,Gaming,gaming,false -HomerNotSimpson,mastodon.social,Technology,technology,false -HomerNotSimpson,mastodon.social,Ukraine Invasion,ukraine_invasion,false -HomerNotSimpson,mastodon.social,Breaking News,breaking_news,true -Stregabor,newsmast.social,Academia & Research,academia_research,false -Stregabor,newsmast.social,Activism & Civil Rights,activism_civil_rights,false -Stregabor,newsmast.social,AI,ai,false -Stregabor,newsmast.social,Black Voices,black_voices,false -Stregabor,newsmast.social,Breaking News,breaking_news,false -Stregabor,newsmast.social,Business,business,false -Stregabor,newsmast.social,Disabled Voices,disabled_voices,false -Stregabor,newsmast.social,Engineering,engineering,false -Stregabor,newsmast.social,Environment,environment,false -Stregabor,newsmast.social,Government & Policy,government_policy,false -Stregabor,newsmast.social,Healthcare,healthcare,false -Stregabor,newsmast.social,Immigrants Rights,immigrants_rights,false -Stregabor,newsmast.social,Indigenous Peoples,indigenous_peoples,false -Stregabor,newsmast.social,Law & Justice,law_justice,false -Stregabor,newsmast.social,LGBTQ+,lgbtq,false -Stregabor,newsmast.social,Photography,photography,false -Stregabor,newsmast.social,Politics,politics,false -Stregabor,newsmast.social,Programming,programming,false -Stregabor,newsmast.social,Social Media,social_media,false -Stregabor,newsmast.social,Technology,technology,false -Stregabor,newsmast.social,US Politics,us_politics,false -Stregabor,newsmast.social,Women’s Voices,women_voices,false -Stregabor,newsmast.social,Workers Rights,workers_rights,false -Stregabor,newsmast.social,Climate change,climate_change,true -vlp00,newsmast.social,US Politics,us_politics,false -vlp00,newsmast.social,Government & Policy,government_policy,false -vlp00,newsmast.social,Politics,politics,false -vlp00,newsmast.social,Academia & Research,academia_research,false -klemens,mastodon.social,Biodiversity & Rewilding,biodiversity_rewilding,false -klemens,mastodon.social,Energy & Pollution,energy_pollution,false -klemens,mastodon.social,Technology,technology,false -vlp00,newsmast.social,Healthcare,healthcare,false -klemens,mastodon.social,Ukraine Invasion,ukraine_invasion,false -vlp00,newsmast.social,Law & Justice,law_justice,false -klemens,mastodon.social,Social Media,social_media,true -tseckler,universeodon.com,Academia & Research,academia_research,false -tseckler,universeodon.com,Biology,biology,false -tseckler,universeodon.com,Breaking News,breaking_news,false -tseckler,universeodon.com,Chemistry,chemistry,false -tseckler,universeodon.com,Government & Policy,government_policy,false -tseckler,universeodon.com,Healthcare,healthcare,false -CTUGhost,twit.social,Academia & Research,academia_research,false -allistelling,scholar.social,AI,ai,false -allistelling,scholar.social,Humanities,humanities,false -allistelling,scholar.social,Law & Justice,law_justice,false -allistelling,scholar.social,Social Sciences,social_sciences,false -allistelling,scholar.social,US Politics,us_politics,false -allistelling,scholar.social,Academia & Research,academia_research,true -CTUGhost,twit.social,Black Voices,black_voices,false -CTUGhost,twit.social,Democracy & Human Rights,democracy_human_rights,false -CTUGhost,twit.social,Disabled Voices,disabled_voices,false -CTUGhost,twit.social,Government & Policy,government_policy,false -CTUGhost,twit.social,History,history,false -CTUGhost,twit.social,Humanities,humanities,false -CTUGhost,twit.social,"Hunger, Disease & Water",hunger_disease_water,false -CTUGhost,twit.social,Immigrants Rights,immigrants_rights,false -CTUGhost,twit.social,Indigenous Peoples,indigenous_peoples,false -CTUGhost,twit.social,Law & Justice,law_justice,false -CTUGhost,twit.social,Activism & Civil Rights,activism_civil_rights,true -tseckler,universeodon.com,Law & Justice,law_justice,false -tseckler,universeodon.com,Mathematics,mathematics,false -tseckler,universeodon.com,Journalism & Comment,news_comment_data,false -tseckler,universeodon.com,Politics,politics,false -tseckler,universeodon.com,Physics,physics,true -stevebownan,newsmast.social,AI,ai,false -stevebownan,newsmast.social,Books & Literature,books_literature,false -stevebownan,newsmast.social,Breaking News,breaking_news,false -stevebownan,newsmast.social,Food & Drink,food_drink,false -stevebownan,newsmast.social,Football,football,false -stevebownan,newsmast.social,Movies,movies,false -stevebownan,newsmast.social,Music,music,false -stevebownan,newsmast.social,Nature & Wildlife,nature_wildlife,false -stevebownan,newsmast.social,Journalism & Comment,news_comment_data,false -stevebownan,newsmast.social,Physics,physics,false -stevebownan,newsmast.social,Politics,politics,false -stevebownan,newsmast.social,Poverty & Inequality,poverty_inequality,false -stevebownan,newsmast.social,Programming,programming,false -stevebownan,newsmast.social,Science,science,false -stevebownan,newsmast.social,Space,space,false -stevebownan,newsmast.social,Technology,technology,false -stevebownan,newsmast.social,Travel,travel,false -stevebownan,newsmast.social,Democracy & Human Rights,democracy_human_rights,true -MaxPe,scholar.social,Academia & Research,academia_research,false -MaxPe,scholar.social,Biodiversity & Rewilding,biodiversity_rewilding,false -MaxPe,scholar.social,Business,business,false -MaxPe,scholar.social,Law & Justice,law_justice,false -MaxPe,scholar.social,Markets & Finance,markets_finance,false -MaxPe,scholar.social,Climate change,climate_change,true -claasdev,mastodon.social,Breaking News,breaking_news,false -claasdev,mastodon.social,Engineering,engineering,false -claasdev,mastodon.social,Journalism & Comment,news_comment_data,false -claasdev,mastodon.social,Technology,technology,false -claasdev,mastodon.social,Programming,programming,true -killthefish,tech.lgbt,Architecture & Design,architecture_design,false -killthefish,tech.lgbt,Biology,biology,false -killthefish,tech.lgbt,Books & Literature,books_literature,false -killthefish,tech.lgbt,Breaking News,breaking_news,false -killthefish,tech.lgbt,Chemistry,chemistry,false -killthefish,tech.lgbt,Democracy & Human Rights,democracy_human_rights,false -killthefish,tech.lgbt,Engineering,engineering,false -killthefish,tech.lgbt,Environment,environment,false -killthefish,tech.lgbt,Gaming,gaming,false -killthefish,tech.lgbt,History,history,false -killthefish,tech.lgbt,Humanities,humanities,false -killthefish,tech.lgbt,LGBTQ+,lgbtq,false -killthefish,tech.lgbt,Mathematics,mathematics,false -killthefish,tech.lgbt,Movies,movies,false -killthefish,tech.lgbt,Music,music,false -killthefish,tech.lgbt,Philosophy,philosophy,false -killthefish,tech.lgbt,Physics,physics,false -killthefish,tech.lgbt,Programming,programming,false -killthefish,tech.lgbt,Science,science,false -killthefish,tech.lgbt,Social Media,social_media,false -killthefish,tech.lgbt,Social Sciences,social_sciences,false -killthefish,tech.lgbt,Space,space,false -killthefish,tech.lgbt,Visual Arts,visual_arts,false -killthefish,tech.lgbt,Technology,technology,true -johnluther,fosstodon.org,AI,ai,false -johnluther,fosstodon.org,Architecture & Design,architecture_design,false -johnluther,fosstodon.org,Books & Literature,books_literature,false -johnluther,fosstodon.org,Breaking News,breaking_news,false -johnluther,fosstodon.org,Engineering,engineering,false -johnluther,fosstodon.org,Gaming,gaming,false -sabrina,blackrocks.social,Academia & Research,academia_research,false -sabrina,blackrocks.social,Biodiversity & Rewilding,biodiversity_rewilding,false -sabrina,blackrocks.social,Climate change,climate_change,false -sabrina,blackrocks.social,Energy & Pollution,energy_pollution,false -sabrina,blackrocks.social,Law & Justice,law_justice,false -sabrina,blackrocks.social,Programming,programming,true -johnluther,fosstodon.org,Movies,movies,false -johnluther,fosstodon.org,Music,music,false -johnluther,fosstodon.org,Journalism & Comment,news_comment_data,false -johnluther,fosstodon.org,Performing Arts,performing_arts,false -PixelRobot,neopaquita.es,Law & Justice,law_justice,false -PixelRobot,neopaquita.es,LGBTQ+,lgbtq,false -Tyom,newsmast.social,Breaking News,breaking_news,false -Tyom,newsmast.social,Disabled Voices,disabled_voices,false -tseckler,universeodon.com,Science,science,false -tseckler,universeodon.com,Social Media,social_media,false -igorette,layer8.space,Books & Literature,books_literature,false -igorette,layer8.space,Mathematics,mathematics,false -igorette,layer8.space,Movies,movies,false -igorette,layer8.space,Physics,physics,false -igorette,layer8.space,Programming,programming,false -igorette,layer8.space,Science,science,false -igorette,layer8.space,Technology,technology,false -igorette,layer8.space,TV & Radio,tv_radio,false -igorette,layer8.space,Music,music,true -tseckler,universeodon.com,Space,space,false -tseckler,universeodon.com,Ukraine Invasion,ukraine_invasion,false -tseckler,universeodon.com,US Politics,us_politics,false -tseckler,universeodon.com,Weather,weather,false -Tyom,newsmast.social,Humanities,humanities,false -Tyom,newsmast.social,Philosophy,philosophy,false -pixelstick,noc.social,Breaking News,breaking_news,false -pixelstick,noc.social,Journalism & Comment,news_comment_data,false -pixelstick,noc.social,Programming,programming,false -pixelstick,noc.social,Technology,technology,false -pixelstick,noc.social,Engineering,engineering,true -Tyom,newsmast.social,Social Sciences,social_sciences,true -jwalsh2,masto.drydenhouse.org,History,history,false -jwalsh2,masto.drydenhouse.org,Science,science,false -jwalsh2,masto.drydenhouse.org,Space,space,false -jwalsh2,masto.drydenhouse.org,Technology,technology,false -jwalsh2,masto.drydenhouse.org,Breaking News,breaking_news,true -acxtrilla,mastodon.social,Music,music,false -TheBestLeiya,newsmast.social,Activism & Civil Rights,activism_civil_rights,false -TheBestLeiya,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false -TheBestLeiya,newsmast.social,Breaking News,breaking_news,false -TheBestLeiya,newsmast.social,Climate change,climate_change,false -TheBestLeiya,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -TheBestLeiya,newsmast.social,Disabled Voices,disabled_voices,false -TheBestLeiya,newsmast.social,Energy & Pollution,energy_pollution,false -TheBestLeiya,newsmast.social,Environment,environment,false -TheBestLeiya,newsmast.social,Healthcare,healthcare,false -TheBestLeiya,newsmast.social,Humanities,humanities,false -TheBestLeiya,newsmast.social,Journalism & Comment,news_comment_data,false -TheBestLeiya,newsmast.social,Politics,politics,false -TheBestLeiya,newsmast.social,Poverty & Inequality,poverty_inequality,false -TheBestLeiya,newsmast.social,Social Sciences,social_sciences,false -TheBestLeiya,newsmast.social,Women’s Voices,women_voices,false -TheBestLeiya,newsmast.social,LGBTQ+,lgbtq,true -newsmast,mastodon.social,Breaking News,breaking_news,false -newsmast,mastodon.social,Democracy & Human Rights,democracy_human_rights,false -newsmast,mastodon.social,Journalism & Comment,news_comment_data,false -newsmast,mastodon.social,Politics,politics,false -newsmast,mastodon.social,Ukraine Invasion,ukraine_invasion,false -newsmast,mastodon.social,Weather,weather,false -newsmast,mastodon.social,Social Media,social_media,true -suntorvic,mastodon.social,Creative Arts,creative_arts,false -suntorvic,mastodon.social,Food & Drink,food_drink,false -suntorvic,mastodon.social,Nature & Wildlife,nature_wildlife,false -suntorvic,mastodon.social,Pets,pets,false -suntorvic,mastodon.social,Travel,travel,false -suntorvic,mastodon.social,Photography,photography,true -TheSandman,universeodon.com,Football,football,false -TheSandman,universeodon.com,Government & Policy,government_policy,false -TheSandman,universeodon.com,Science,science,false -TheSandman,universeodon.com,Technology,technology,false -TheSandman,universeodon.com,US Politics,us_politics,false -TheSandman,universeodon.com,Weather,weather,false -TheSandman,universeodon.com,Breaking News,breaking_news,true -johnluther,fosstodon.org,Photography,photography,false -johnluther,fosstodon.org,Programming,programming,false -johnluther,fosstodon.org,Social Media,social_media,false -johnluther,fosstodon.org,TV & Radio,tv_radio,false -johnluther,fosstodon.org,Ukraine Invasion,ukraine_invasion,false -johnluther,fosstodon.org,Visual Arts,visual_arts,false -johnluther,fosstodon.org,Weather,weather,false -rzelnik,mastodon.sk,AI,ai,false -rzelnik,mastodon.sk,Biodiversity & Rewilding,biodiversity_rewilding,false -rzelnik,mastodon.sk,Climate change,climate_change,false -rzelnik,mastodon.sk,Energy & Pollution,energy_pollution,false -rzelnik,mastodon.sk,Environment,environment,false -rzelnik,mastodon.sk,Programming,programming,false -rzelnik,mastodon.sk,Science,science,false -rzelnik,mastodon.sk,Technology,technology,true -johnluther,fosstodon.org,Technology,technology,true -DisneyMichael,mastodon.social,Programming,programming,false -DisneyMichael,mastodon.social,Science,science,false -DisneyMichael,mastodon.social,Social Media,social_media,false -DisneyMichael,mastodon.social,Technology,technology,false -IEF_FIE,newsmast.social,Politics,politics,false -IEF_FIE,newsmast.social,US Politics,us_politics,false -IEF_FIE,newsmast.social,Women’s Voices,women_voices,false -robtruman,glammr.us,Space,space,false -robtruman,glammr.us,Technology,technology,false -robtruman,glammr.us,Ukraine Invasion,ukraine_invasion,false -robtruman,glammr.us,Breaking News,breaking_news,true -zoinks,gts.scoobysnack.net,Breaking News,breaking_news,false -quentinnield,mastodonapp.uk,Markets & Finance,markets_finance,false -quentinnield,mastodonapp.uk,Science,science,false -quentinnield,mastodonapp.uk,Space,space,false -quentinnield,mastodonapp.uk,Biology,biology,false -quentinnield,mastodonapp.uk,Technology,technology,false -quentinnield,mastodonapp.uk,Photography,photography,false -quentinnield,mastodonapp.uk,Movies,movies,false -mbrailer,mstdn.social,Breaking News,breaking_news,true -DisneyMichael,mastodon.social,US Politics,us_politics,false -DisneyMichael,mastodon.social,Breaking News,breaking_news,true -TJHob,homestead.social,Climate change,climate_change,false -TJHob,homestead.social,Energy & Pollution,energy_pollution,false -TJHob,homestead.social,Engineering,engineering,false -TJHob,homestead.social,Environment,environment,false -vmatt,fosstodon.org,Books & Literature,books_literature,false -vmatt,fosstodon.org,Engineering,engineering,false -vmatt,fosstodon.org,Football,football,false -vmatt,fosstodon.org,Politics,politics,false -vmatt,fosstodon.org,TV & Radio,tv_radio,false -vmatt,fosstodon.org,Visual Arts,visual_arts,false -vmatt,fosstodon.org,Programming,programming,true -ruslan,newsmast.social,AI,ai,false -ruslan,newsmast.social,Architecture & Design,architecture_design,false -ruslan,newsmast.social,Biology,biology,false -ruslan,newsmast.social,Books & Literature,books_literature,false -ruslan,newsmast.social,Business,business,false -ruslan,newsmast.social,Chemistry,chemistry,false -ruslan,newsmast.social,Creative Arts,creative_arts,false -ruslan,newsmast.social,Engineering,engineering,false -ruslan,newsmast.social,Food & Drink,food_drink,false -ruslan,newsmast.social,Gaming,gaming,false -ruslan,newsmast.social,History,history,false -ruslan,newsmast.social,Humanities,humanities,false -ruslan,newsmast.social,Humour,humour,false -ruslan,newsmast.social,Markets & Finance,markets_finance,false -ruslan,newsmast.social,Mathematics,mathematics,false -ruslan,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false -ruslan,newsmast.social,Movies,movies,false -ruslan,newsmast.social,Nature & Wildlife,nature_wildlife,false -ruslan,newsmast.social,Performing Arts,performing_arts,false -ruslan,newsmast.social,Pets,pets,false -ruslan,newsmast.social,Philosophy,philosophy,false -ruslan,newsmast.social,Photography,photography,false -ruslan,newsmast.social,Physics,physics,false -ruslan,newsmast.social,Programming,programming,false -ruslan,newsmast.social,Puzzles,puzzles,false -ruslan,newsmast.social,Science,science,false -ruslan,newsmast.social,Social Sciences,social_sciences,false -ruslan,newsmast.social,Space,space,false -ruslan,newsmast.social,Technology,technology,false -ruslan,newsmast.social,Travel,travel,false -ruslan,newsmast.social,TV & Radio,tv_radio,false -ruslan,newsmast.social,Ukraine Invasion,ukraine_invasion,false -ruslan,newsmast.social,Visual Arts,visual_arts,false -ruslan,newsmast.social,Workers Rights,workers_rights,false -ruslan,newsmast.social,Music,music,true -Jarhead2029,newsmast.social,AI,ai,false -Jarhead2029,newsmast.social,Biology,biology,false -Jarhead2029,newsmast.social,Breaking News,breaking_news,false -Jarhead2029,newsmast.social,Chemistry,chemistry,false -Jarhead2029,newsmast.social,Government & Policy,government_policy,false -Jarhead2029,newsmast.social,Healthcare,healthcare,false -Jarhead2029,newsmast.social,Humanities,humanities,false -Jarhead2029,newsmast.social,Humour,humour,false -Jarhead2029,newsmast.social,Immigrants Rights,immigrants_rights,false -Jarhead2029,newsmast.social,Law & Justice,law_justice,false -Jarhead2029,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false -Jarhead2029,newsmast.social,Nature & Wildlife,nature_wildlife,false -Jarhead2029,newsmast.social,Pets,pets,false -Jarhead2029,newsmast.social,Philosophy,philosophy,false -Jarhead2029,newsmast.social,Physics,physics,false -Jarhead2029,newsmast.social,Politics,politics,false -Jarhead2029,newsmast.social,Democracy & Human Rights,democracy_human_rights,true -vlp00,newsmast.social,Markets & Finance,markets_finance,false -TJHob,homestead.social,Programming,programming,false -TJHob,homestead.social,Science,science,false -CTUGhost,twit.social,LGBTQ+,lgbtq,false -CTUGhost,twit.social,Philosophy,philosophy,false -CTUGhost,twit.social,Politics,politics,false -CTUGhost,twit.social,Poverty & Inequality,poverty_inequality,false -CTUGhost,twit.social,Social Sciences,social_sciences,false -CTUGhost,twit.social,Technology,technology,false -CTUGhost,twit.social,US Politics,us_politics,false -CTUGhost,twit.social,Women’s Voices,women_voices,false -TJHob,homestead.social,Biodiversity & Rewilding,biodiversity_rewilding,true -bengenn,aus.social,Breaking News,breaking_news,false -bengenn,aus.social,Engineering,engineering,false -quentinnield,mastodonapp.uk,Physics,physics,false -quentinnield,mastodonapp.uk,Chemistry,chemistry,false -quentinnield,mastodonapp.uk,Engineering,engineering,false -quentinnield,mastodonapp.uk,TV & Radio,tv_radio,false -quentinnield,mastodonapp.uk,Music,music,false -quentinnield,mastodonapp.uk,Architecture & Design,architecture_design,false -ruslan,indieweb.social,Architecture & Design,architecture_design,false -ruslan,indieweb.social,Books & Literature,books_literature,false -ruslan,indieweb.social,Creative Arts,creative_arts,false -ruslan,indieweb.social,Food & Drink,food_drink,false -ruslan,indieweb.social,Gaming,gaming,false -ruslan,indieweb.social,History,history,false -ruslan,indieweb.social,Humanities,humanities,false -ruslan,indieweb.social,Humour,humour,false -ruslan,indieweb.social,Mental Health & Wellbeing,mental_health_wellbeing,false -ruslan,indieweb.social,Movies,movies,false -ruslan,indieweb.social,Nature & Wildlife,nature_wildlife,false -ruslan,indieweb.social,Performing Arts,performing_arts,false -ruslan,indieweb.social,Pets,pets,false -ruslan,indieweb.social,Philosophy,philosophy,false -ruslan,indieweb.social,Photography,photography,false -ruslan,indieweb.social,Programming,programming,false -ruslan,indieweb.social,Science,science,false -ruslan,indieweb.social,Social Media,social_media,false -ruslan,indieweb.social,Social Sciences,social_sciences,false -ruslan,indieweb.social,Travel,travel,false -ruslan,indieweb.social,Visual Arts,visual_arts,false -ruslan,indieweb.social,Breaking News,breaking_news,false -Jarhead2029,newsmast.social,Poverty & Inequality,poverty_inequality,false -Jarhead2029,newsmast.social,Puzzles,puzzles,false -Jarhead2029,newsmast.social,Science,science,false -Jarhead2029,newsmast.social,Social Media,social_media,false -Jarhead2029,newsmast.social,Social Sciences,social_sciences,false -Jarhead2029,newsmast.social,Sport,sport,false -Jarhead2029,newsmast.social,Technology,technology,false -Jarhead2029,newsmast.social,Travel,travel,false -Jarhead2029,newsmast.social,Ukraine Invasion,ukraine_invasion,false -Jarhead2029,newsmast.social,US Politics,us_politics,false -Jarhead2029,newsmast.social,US Sport,us_sport,false -Jarhead2029,newsmast.social,Weather,weather,false -riiku,mastodon.social,Activism & Civil Rights,activism_civil_rights,false -dalai,toots.ch,Academia & Research,academia_research,false -dalai,toots.ch,Activism & Civil Rights,activism_civil_rights,false -dalai,toots.ch,AI,ai,false -dalai,toots.ch,Architecture & Design,architecture_design,false -dalai,toots.ch,Biodiversity & Rewilding,biodiversity_rewilding,false -dalai,toots.ch,Biology,biology,false -dalai,toots.ch,Black Voices,black_voices,false -dalai,toots.ch,Books & Literature,books_literature,false -dalai,toots.ch,Breaking News,breaking_news,false -dalai,toots.ch,Business,business,false -dalai,toots.ch,Chemistry,chemistry,false -dalai,toots.ch,Climate change,climate_change,false -dalai,toots.ch,Creative Arts,creative_arts,false -dalai,toots.ch,Democracy & Human Rights,democracy_human_rights,false -dalai,toots.ch,Disabled Voices,disabled_voices,false -dalai,toots.ch,Energy & Pollution,energy_pollution,false -dalai,toots.ch,Engineering,engineering,false -dalai,toots.ch,Environment,environment,false -dalai,toots.ch,Food & Drink,food_drink,false -dalai,toots.ch,Football,football,false -dalai,toots.ch,Gaming,gaming,false -dalai,toots.ch,Government & Policy,government_policy,false -dalai,toots.ch,Healthcare,healthcare,false -dalai,toots.ch,History,history,false -dalai,toots.ch,Humanities,humanities,false -dalai,toots.ch,Humour,humour,false -dalai,toots.ch,"Hunger, Disease & Water",hunger_disease_water,false -dalai,toots.ch,Immigrants Rights,immigrants_rights,false -dalai,toots.ch,Indigenous Peoples,indigenous_peoples,false -dalai,toots.ch,Law & Justice,law_justice,false -dalai,toots.ch,LGBTQ+,lgbtq,false -dalai,toots.ch,Markets & Finance,markets_finance,false -dalai,toots.ch,Mathematics,mathematics,false -dalai,toots.ch,Mental Health & Wellbeing,mental_health_wellbeing,false -dalai,toots.ch,Movies,movies,false -dalai,toots.ch,Music,music,false -dalai,toots.ch,Nature & Wildlife,nature_wildlife,false -dalai,toots.ch,Performing Arts,performing_arts,false -dalai,toots.ch,Pets,pets,false -dalai,toots.ch,Philosophy,philosophy,false -dalai,toots.ch,Photography,photography,false -dalai,toots.ch,Physics,physics,false -xlrobot,mastodon.social,Disabled Voices,disabled_voices,false -xlrobot,mastodon.social,Indigenous Peoples,indigenous_peoples,false -xlrobot,mastodon.social,LGBTQ+,lgbtq,false -xlrobot,mastodon.social,Space,space,false -xlrobot,mastodon.social,Technology,technology,false -xlrobot,mastodon.social,Women’s Voices,women_voices,false -xlrobot,mastodon.social,Science,science,true -dalai,toots.ch,Politics,politics,false -dalai,toots.ch,Poverty & Inequality,poverty_inequality,false -dalai,toots.ch,Programming,programming,false -dalai,toots.ch,Puzzles,puzzles,false -dalai,toots.ch,Science,science,false -dalai,toots.ch,Social Media,social_media,false -dalai,toots.ch,Social Sciences,social_sciences,false -dalai,toots.ch,Space,space,false -dalai,toots.ch,Sport,sport,false -dalai,toots.ch,Technology,technology,false -dalai,toots.ch,Travel,travel,false -dalai,toots.ch,TV & Radio,tv_radio,false -dalai,toots.ch,Ukraine Invasion,ukraine_invasion,false -dalai,toots.ch,US Politics,us_politics,false -dalai,toots.ch,US Sport,us_sport,false -dalai,toots.ch,Visual Arts,visual_arts,false -dalai,toots.ch,Weather,weather,false -dalai,toots.ch,Women’s Voices,women_voices,false -dalai,toots.ch,Workers Rights,workers_rights,false -dalai,toots.ch,Journalism & Comment,news_comment_data,true -vlp00,newsmast.social,Business,business,false -vlp00,newsmast.social,Workers Rights,workers_rights,false -PixelRobot,neopaquita.es,Markets & Finance,markets_finance,false -IEF_FIE,newsmast.social,Activism & Civil Rights,activism_civil_rights,false -IEF_FIE,newsmast.social,Black Voices,black_voices,false -IEF_FIE,newsmast.social,Government & Policy,government_policy,false -Ks6suzgdjss,aus.social,Biodiversity & Rewilding,biodiversity_rewilding,false -Ks6suzgdjss,aus.social,Business,business,false -Ks6suzgdjss,aus.social,Climate change,climate_change,false -Ks6suzgdjss,aus.social,Environment,environment,false -Ks6suzgdjss,aus.social,Markets & Finance,markets_finance,false -LiamGilmartin,mastodon.ie,Academia & Research,academia_research,false -LiamGilmartin,mastodon.ie,Biology,biology,false -LiamGilmartin,mastodon.ie,Breaking News,breaking_news,false -LiamGilmartin,mastodon.ie,Chemistry,chemistry,false -LiamGilmartin,mastodon.ie,Government & Policy,government_policy,false -LiamGilmartin,mastodon.ie,Mathematics,mathematics,false -LiamGilmartin,mastodon.ie,Journalism & Comment,news_comment_data,false -LiamGilmartin,mastodon.ie,Physics,physics,false -LiamGilmartin,mastodon.ie,Politics,politics,false -LiamGilmartin,mastodon.ie,Programming,programming,false -LiamGilmartin,mastodon.ie,Science,science,false -LiamGilmartin,mastodon.ie,Social Media,social_media,false -LiamGilmartin,mastodon.ie,Technology,technology,false -LiamGilmartin,mastodon.ie,Space,space,true -Ks6suzgdjss,aus.social,Workers Rights,workers_rights,false -DodoTheDev,front-end.social,Breaking News,breaking_news,false -DodoTheDev,front-end.social,Science,science,false -DodoTheDev,front-end.social,Space,space,false -DodoTheDev,front-end.social,Technology,technology,false -DodoTheDev,front-end.social,Programming,programming,true -kb9ens,mastodon.radio,Chemistry,chemistry,false -kb9ens,mastodon.radio,Engineering,engineering,false -kb9ens,mastodon.radio,Government & Policy,government_policy,false -kb9ens,mastodon.radio,History,history,false -kb9ens,mastodon.radio,Humanities,humanities,false -kb9ens,mastodon.radio,Law & Justice,law_justice,false -kb9ens,mastodon.radio,Philosophy,philosophy,false -kb9ens,mastodon.radio,Physics,physics,false -kb9ens,mastodon.radio,Science,science,false -kb9ens,mastodon.radio,Social Sciences,social_sciences,false -kb9ens,mastodon.radio,Space,space,false -kb9ens,mastodon.radio,Technology,technology,false -kb9ens,mastodon.radio,Ukraine Invasion,ukraine_invasion,false -kb9ens,mastodon.radio,Breaking News,breaking_news,true -GlasWolf,mastodon.scot,Science,science,false -GlasWolf,mastodon.scot,Engineering,engineering,false -GlasWolf,mastodon.scot,Football,football,false -GlasWolf,mastodon.scot,Government & Policy,government_policy,false -GlasWolf,mastodon.scot,Politics,politics,false -GlasWolf,mastodon.scot,Space,space,false -GlasWolf,mastodon.scot,Technology,technology,false -GlasWolf,mastodon.scot,US Sport,us_sport,false -GlasWolf,mastodon.scot,Physics,physics,true -andresortizmasso,xarxa.cloud,Climate change,climate_change,false -andresortizmasso,xarxa.cloud,History,history,false -andresortizmasso,xarxa.cloud,Movies,movies,false -andresortizmasso,xarxa.cloud,Music,music,false -andresortizmasso,xarxa.cloud,Journalism & Comment,news_comment_data,false -andresortizmasso,xarxa.cloud,Politics,politics,false -andresortizmasso,xarxa.cloud,Programming,programming,false -andresortizmasso,xarxa.cloud,Space,space,false -andresortizmasso,xarxa.cloud,Breaking News,breaking_news,true -shawncarter,mastodon.online,Science,science,false -shawncarter,mastodon.online,Space,space,false -shawncarter,mastodon.online,Technology,technology,false -shawncarter,mastodon.online,Weather,weather,false -shawncarter,mastodon.online,Journalism & Comment,news_comment_data,true -rgallery,newsmast.social,Humanities,humanities,false -rgallery,newsmast.social,Politics,politics,false -rgallery,newsmast.social,Social Media,social_media,false -rgallery,newsmast.social,Social Sciences,social_sciences,false -rgallery,newsmast.social,Journalism & Comment,news_comment_data,true -quentinnield,mastodonapp.uk,Biodiversity & Rewilding,biodiversity_rewilding,false -quentinnield,mastodonapp.uk,Breaking News,breaking_news,false -quentinnield,mastodonapp.uk,Climate change,climate_change,false -quentinnield,mastodonapp.uk,Democracy & Human Rights,democracy_human_rights,false -quentinnield,mastodonapp.uk,Energy & Pollution,energy_pollution,false -quentinnield,mastodonapp.uk,Environment,environment,false -quentinnield,mastodonapp.uk,Government & Policy,government_policy,false -quentinnield,mastodonapp.uk,Law & Justice,law_justice,false -quentinnield,mastodonapp.uk,Ukraine Invasion,ukraine_invasion,false -quentinnield,mastodonapp.uk,US Politics,us_politics,false -quentinnield,mastodonapp.uk,Politics,politics,true -mati,moth.social,Music,music,false -mati,moth.social,Breaking News,breaking_news,true -matt,isfeeling.social,Academia & Research,academia_research,false -matt,isfeeling.social,Breaking News,breaking_news,false -matt,isfeeling.social,Government & Policy,government_policy,false -matt,isfeeling.social,Healthcare,healthcare,false -matt,isfeeling.social,Movies,movies,false -matt,isfeeling.social,Technology,technology,false -matt,isfeeling.social,Gaming,gaming,true -safenetwork,mastodon.social,AI,ai,false -bbmin7b5,techhub.social,AI,ai,false -bbmin7b5,techhub.social,Biology,biology,false -bbmin7b5,techhub.social,Breaking News,breaking_news,false -bbmin7b5,techhub.social,Democracy & Human Rights,democracy_human_rights,false -bbmin7b5,techhub.social,Engineering,engineering,false -bbmin7b5,techhub.social,Government & Policy,government_policy,false -bbmin7b5,techhub.social,Markets & Finance,markets_finance,false -bbmin7b5,techhub.social,Programming,programming,false -bbmin7b5,techhub.social,Science,science,false -bbmin7b5,techhub.social,Space,space,false -bbmin7b5,techhub.social,Technology,technology,true -safenetwork,mastodon.social,Books & Literature,books_literature,false -Geboelders,mastodon.nl,Music,music,false -Geboelders,mastodon.nl,Journalism & Comment,news_comment_data,false -Geboelders,mastodon.nl,Science,science,false -Geboelders,mastodon.nl,Technology,technology,false -Geboelders,mastodon.nl,Breaking News,breaking_news,true -safenetwork,mastodon.social,Engineering,engineering,false -safenetwork,mastodon.social,Science,science,false -safenetwork,mastodon.social,Technology,technology,true -MarieLouise,mastodon.social,Journalism & Comment,news_comment_data,false -MarieLouise,mastodon.social,Social Media,social_media,false -MarieLouise,mastodon.social,Ukraine Invasion,ukraine_invasion,false -MarieLouise,mastodon.social,Weather,weather,false -MarieLouise,mastodon.social,Breaking News,breaking_news,true -snoopy,newsmast.social,Mathematics,mathematics,false -snoopy,newsmast.social,Movies,movies,false -snoopy,newsmast.social,Photography,photography,false -snoopy,newsmast.social,Physics,physics,false -snoopy,newsmast.social,Science,science,false -jaapklaver,mastodon.art,Healthcare,healthcare,false -jaapklaver,mastodon.art,"Hunger, Disease & Water",hunger_disease_water,false -jaapklaver,mastodon.art,Politics,politics,false -jaapklaver,mastodon.art,Social Sciences,social_sciences,false -jaapklaver,mastodon.art,Science,science,true -snoopy,newsmast.social,Social Sciences,social_sciences,false -snoopy,newsmast.social,Space,space,false -snoopy,newsmast.social,Visual Arts,visual_arts,false -snoopy,newsmast.social,Gaming,gaming,true -snoopy,newsmast.social,Disabled Voices,disabled_voices,false -fresseng,fediscience.org,AI,ai,false -fresseng,fediscience.org,Climate change,climate_change,false -fresseng,fediscience.org,Democracy & Human Rights,democracy_human_rights,false -fresseng,fediscience.org,Physics,physics,false -fresseng,fediscience.org,Science,science,false -fresseng,fediscience.org,Social Media,social_media,false -fresseng,fediscience.org,Space,space,false -fresseng,fediscience.org,Ukraine Invasion,ukraine_invasion,false -fresseng,fediscience.org,Academia & Research,academia_research,true -riiku,mastodon.social,AI,ai,false -riiku,mastodon.social,Books & Literature,books_literature,false -ssweeny,fosstodon.org,Books & Literature,books_literature,false -ssweeny,fosstodon.org,Engineering,engineering,false -ssweeny,fosstodon.org,Movies,movies,false -ssweeny,fosstodon.org,Music,music,false -ssweeny,fosstodon.org,Philosophy,philosophy,false -ssweeny,fosstodon.org,Social Media,social_media,false -ssweeny,fosstodon.org,Technology,technology,false -ssweeny,fosstodon.org,US Politics,us_politics,false -ssweeny,fosstodon.org,Programming,programming,true -riiku,mastodon.social,Engineering,engineering,false -riiku,mastodon.social,History,history,false -riiku,mastodon.social,Humanities,humanities,false -riiku,mastodon.social,LGBTQ+,lgbtq,false -pem,oslo.town,Democracy & Human Rights,democracy_human_rights,false -pem,oslo.town,Football,football,false -pem,oslo.town,Programming,programming,false -pem,oslo.town,Sport,sport,false -pem,oslo.town,Technology,technology,true -riiku,mastodon.social,Movies,movies,false -riiku,mastodon.social,Music,music,false -riiku,mastodon.social,Journalism & Comment,news_comment_data,false -riiku,mastodon.social,Philosophy,philosophy,false -riiku,mastodon.social,Photography,photography,false -riiku,mastodon.social,Programming,programming,false -mati,moth.social,AI,ai,false -mati,moth.social,Democracy & Human Rights,democracy_human_rights,false -mati,moth.social,Movies,movies,false -mati,moth.social,Technology,technology,false -riiku,mastodon.social,Science,science,false -riiku,mastodon.social,Social Media,social_media,false -riiku,mastodon.social,Social Sciences,social_sciences,false -riiku,mastodon.social,Space,space,false -riiku,mastodon.social,Technology,technology,false -riiku,mastodon.social,TV & Radio,tv_radio,false -riiku,mastodon.social,Gaming,gaming,true -kabtohin2020,newsmast.social,Climate change,climate_change,false -kabtohin2020,newsmast.social,Energy & Pollution,energy_pollution,false -kabtohin2020,newsmast.social,Environment,environment,false -kabtohin2020,newsmast.social,Football,football,false -kabtohin2020,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false -kabtohin2020,newsmast.social,Technology,technology,false -kabtohin2020,newsmast.social,AI,ai,true -PixelRobot,neopaquita.es,Mathematics,mathematics,false -petite_etoile,mastodon.social,Academia & Research,academia_research,false -arunshah,pebble.social,Biodiversity & Rewilding,biodiversity_rewilding,false -arunshah,pebble.social,Climate change,climate_change,false -arunshah,pebble.social,Energy & Pollution,energy_pollution,false -arunshah,pebble.social,Engineering,engineering,false -arunshah,pebble.social,Environment,environment,false -arunshah,pebble.social,Programming,programming,false -arunshah,pebble.social,Technology,technology,false -arunshah,pebble.social,AI,ai,true -edintone,mastodon.green,Humanities,humanities,true -baslow,social.coop,Social Sciences,social_sciences,false -baslow,social.coop,Academia & Research,academia_research,false -baslow,social.coop,Activism & Civil Rights,activism_civil_rights,false -baslow,social.coop,AI,ai,false -baslow,social.coop,Biodiversity & Rewilding,biodiversity_rewilding,false -baslow,social.coop,Biology,biology,false -baslow,social.coop,Black Voices,black_voices,false -baslow,social.coop,Breaking News,breaking_news,false -baslow,social.coop,Chemistry,chemistry,false -baslow,social.coop,Climate change,climate_change,false -baslow,social.coop,Democracy & Human Rights,democracy_human_rights,false -baslow,social.coop,Disabled Voices,disabled_voices,false -baslow,social.coop,Energy & Pollution,energy_pollution,false -baslow,social.coop,Engineering,engineering,false -baslow,social.coop,Environment,environment,false -baslow,social.coop,Government & Policy,government_policy,false -baslow,social.coop,Healthcare,healthcare,false -baslow,social.coop,History,history,false -baslow,social.coop,Humanities,humanities,false -baslow,social.coop,"Hunger, Disease & Water",hunger_disease_water,false -baslow,social.coop,Immigrants Rights,immigrants_rights,false -baslow,social.coop,Indigenous Peoples,indigenous_peoples,false -baslow,social.coop,Law & Justice,law_justice,false -baslow,social.coop,LGBTQ+,lgbtq,false -baslow,social.coop,Mathematics,mathematics,false -baslow,social.coop,Philosophy,philosophy,false -baslow,social.coop,Physics,physics,false -baslow,social.coop,Politics,politics,false -baslow,social.coop,Poverty & Inequality,poverty_inequality,false -baslow,social.coop,Programming,programming,false -baslow,social.coop,Science,science,false -baslow,social.coop,Social Media,social_media,false -baslow,social.coop,Space,space,false -baslow,social.coop,Technology,technology,false -baslow,social.coop,US Politics,us_politics,false -baslow,social.coop,Women’s Voices,women_voices,false -baslow,social.coop,Journalism & Comment,news_comment_data,true -FreddieJ,newsmast.social,Performing Arts,performing_arts,false -yu1ia,ohai.social,Engineering,engineering,false -yu1ia,ohai.social,Music,music,false -yu1ia,ohai.social,Sport,sport,false -yu1ia,ohai.social,Technology,technology,false -yu1ia,ohai.social,Programming,programming,true -tgirl_696,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false -tgirl_696,newsmast.social,Performing Arts,performing_arts,false -tgirl_696,newsmast.social,Travel,travel,false -tgirl_696,newsmast.social,Visual Arts,visual_arts,false -tgirl_696,newsmast.social,Humour,humour,true -YNDA,newsmast.social,Nature & Wildlife,nature_wildlife,false -YNDA,newsmast.social,Performing Arts,performing_arts,false -YNDA,newsmast.social,Pets,pets,false -YNDA,newsmast.social,Photography,photography,false -edintone,mastodon.green,Activism & Civil Rights,activism_civil_rights,false -edintone,mastodon.green,Architecture & Design,architecture_design,false -edintone,mastodon.green,Black Voices,black_voices,false -edintone,mastodon.green,Books & Literature,books_literature,false -edintone,mastodon.green,History,history,false -edintone,mastodon.green,Immigrants Rights,immigrants_rights,false -edintone,mastodon.green,LGBTQ+,lgbtq,false -belfora,newsie.social,Climate change,climate_change,false -belfora,newsie.social,Energy & Pollution,energy_pollution,false -belfora,newsie.social,Environment,environment,false -belfora,newsie.social,History,history,false -belfora,newsie.social,Humanities,humanities,false -belfora,newsie.social,Social Sciences,social_sciences,false -belfora,newsie.social,Biodiversity & Rewilding,biodiversity_rewilding,true -Edwin085,mastodon.nl,Academia & Research,academia_research,false -Edwin085,mastodon.nl,Democracy & Human Rights,democracy_human_rights,false -Edwin085,mastodon.nl,Government & Policy,government_policy,false -Edwin085,mastodon.nl,Healthcare,healthcare,false -Edwin085,mastodon.nl,"Hunger, Disease & Water",hunger_disease_water,false -Edwin085,mastodon.nl,Law & Justice,law_justice,false -Edwin085,mastodon.nl,Politics,politics,false -Edwin085,mastodon.nl,Poverty & Inequality,poverty_inequality,false -Edwin085,mastodon.nl,US Politics,us_politics,true -daniellean,mastodon.green,Breaking News,breaking_news,true -Serious_Feather,newsmast.social,Books & Literature,books_literature,false -Serious_Feather,newsmast.social,Humanities,humanities,false -Serious_Feather,newsmast.social,Creative Arts,creative_arts,false -reynish,mastodon.social,AI,ai,true -OFMagazine,newsmast.social,Business,business,false -Miaa,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false -Miaa,newsmast.social,Climate change,climate_change,false -Miaa,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -Miaa,newsmast.social,Environment,environment,false -Miaa,newsmast.social,Breaking News,breaking_news,true -Fr4n_C0,mastodon.ie,Movies,movies,false -Fr4n_C0,mastodon.ie,Music,music,false -Fr4n_C0,mastodon.ie,Technology,technology,false -Fr4n_C0,mastodon.ie,Workers Rights,workers_rights,false -Fr4n_C0,mastodon.ie,Breaking News,breaking_news,true -PixelRobot,neopaquita.es,Mental Health & Wellbeing,mental_health_wellbeing,false -PixelRobot,neopaquita.es,Movies,movies,false -PixelRobot,neopaquita.es,Music,music,false -PixelRobot,neopaquita.es,Nature & Wildlife,nature_wildlife,false -PixelRobot,neopaquita.es,Journalism & Comment,news_comment_data,false -PixelRobot,neopaquita.es,Performing Arts,performing_arts,false -PixelRobot,neopaquita.es,Pets,pets,false -majdal,social.coop,Climate change,climate_change,false -majdal,social.coop,Energy & Pollution,energy_pollution,false -majdal,social.coop,History,history,false -majdal,social.coop,Humanities,humanities,false -majdal,social.coop,Philosophy,philosophy,false -majdal,social.coop,Social Sciences,social_sciences,false -majdal,social.coop,Academia & Research,academia_research,true -PixelRobot,neopaquita.es,Philosophy,philosophy,false -Ks6suzgdjss,aus.social,Energy & Pollution,energy_pollution,true -PixelRobot,neopaquita.es,Photography,photography,false -PixelRobot,neopaquita.es,Physics,physics,false -AlexiaPonchet,newsmast.social,Workers Rights,workers_rights,false -PixelRobot,neopaquita.es,Politics,politics,false -bbdjgfhjhhg,newsmast.social,Engineering,engineering,false -PixelRobot,neopaquita.es,Poverty & Inequality,poverty_inequality,false -admin,channel.org,Breaking News,breaking_news,true -PixelRobot,neopaquita.es,Puzzles,puzzles,false -PixelRobot,neopaquita.es,Science,science,false -Magda,newsmast.social,Climate change,climate_change,false -Magda,newsmast.social,Creative Arts,creative_arts,false -Magda,newsmast.social,Energy & Pollution,energy_pollution,false -Magda,newsmast.social,Environment,environment,false -Magda,newsmast.social,Government & Policy,government_policy,false -Magda,newsmast.social,History,history,false -Magda,newsmast.social,Movies,movies,false -Magda,newsmast.social,Nature & Wildlife,nature_wildlife,false -Magda,newsmast.social,Journalism & Comment,news_comment_data,false -Magda,newsmast.social,Philosophy,philosophy,false -Magda,newsmast.social,Photography,photography,false -Magda,newsmast.social,Poverty & Inequality,poverty_inequality,false -Magda,newsmast.social,Technology,technology,false -Magda,newsmast.social,Travel,travel,false -Magda,newsmast.social,Workers Rights,workers_rights,false -Magda,newsmast.social,Architecture & Design,architecture_design,true -PixelRobot,neopaquita.es,Social Media,social_media,false -PixelRobot,neopaquita.es,Social Sciences,social_sciences,false -PixelRobot,neopaquita.es,Space,space,false -emeraldskycreative,twaddle.social,Activism & Civil Rights,activism_civil_rights,false -emeraldskycreative,twaddle.social,Breaking News,breaking_news,false -emeraldskycreative,twaddle.social,History,history,false -emeraldskycreative,twaddle.social,Immigrants Rights,immigrants_rights,false -emeraldskycreative,twaddle.social,Indigenous Peoples,indigenous_peoples,false -emeraldskycreative,twaddle.social,LGBTQ+,lgbtq,false -emeraldskycreative,twaddle.social,Nature & Wildlife,nature_wildlife,false -FreddieJ,newsmast.social,Music,music,false -FreddieJ,newsmast.social,Performing Arts,performing_arts,false -thegardendude,regenerate.social,Breaking News,breaking_news,false -thegardendude,regenerate.social,Climate change,climate_change,false -thegardendude,regenerate.social,Environment,environment,false -thegardendude,regenerate.social,Government & Policy,government_policy,false -thegardendude,regenerate.social,Law & Justice,law_justice,false -thegardendude,regenerate.social,US Politics,us_politics,false -thegardendude,regenerate.social,Biodiversity & Rewilding,biodiversity_rewilding,true -emeraldskycreative,twaddle.social,Pets,pets,false -emeraldskycreative,twaddle.social,Creative Arts,creative_arts,true -PixelRobot,neopaquita.es,Technology,technology,false -PixelRobot,neopaquita.es,Travel,travel,false -YNDA,newsmast.social,Puzzles,puzzles,false -YNDA,newsmast.social,Travel,travel,false -YNDA,newsmast.social,TV & Radio,tv_radio,false -YNDA,newsmast.social,Visual Arts,visual_arts,false -YNDA,newsmast.social,Workers Rights,workers_rights,false -YNDA,newsmast.social,Business,business,true -PixelRobot,neopaquita.es,TV & Radio,tv_radio,false -sophia_robeet,newsmast.social,Business,business,false -sophia_robeet,newsmast.social,Government & Policy,government_policy,false -sophia_robeet,newsmast.social,Science,science,false -sophia_robeet,newsmast.social,Sport,sport,false -akp,channel.org,Journalism & Comment,news_comment_data,false -akp,channel.org,Social Media,social_media,false -akp,channel.org,Ukraine Invasion,ukraine_invasion,false -akp,channel.org,Weather,weather,false -akp,channel.org,Breaking News,breaking_news,true -admin,channel.org,Democracy & Human Rights,democracy_human_rights,false -admin,channel.org,"Hunger, Disease & Water",hunger_disease_water,false -admin,channel.org,Journalism & Comment,news_comment_data,false -admin,channel.org,Poverty & Inequality,poverty_inequality,false -admin,channel.org,Social Media,social_media,false -admin,channel.org,Ukraine Invasion,ukraine_invasion,false -admin,channel.org,Weather,weather,false -sophia_robeet,newsmast.social,Technology,technology,true -r_morgan,mstdn.ca,Gaming,gaming,false -yanmoenaing,newsmast.social,AI,ai,true -snoots,channel.org,Architecture & Design,architecture_design,false -snoots,channel.org,Biodiversity & Rewilding,biodiversity_rewilding,false -snoots,channel.org,Books & Literature,books_literature,false -snoots,channel.org,Climate change,climate_change,false -snoots,channel.org,Creative Arts,creative_arts,false -snoots,channel.org,Energy & Pollution,energy_pollution,false -snoots,channel.org,Environment,environment,false -snoots,channel.org,Food & Drink,food_drink,false -snoots,channel.org,Gaming,gaming,false -snoots,channel.org,Humour,humour,false -Dame_,mastodon.social,Activism & Civil Rights,activism_civil_rights,false -Dame_,mastodon.social,Black Voices,black_voices,false -Dame_,mastodon.social,Books & Literature,books_literature,false -Dame_,mastodon.social,Breaking News,breaking_news,false -Dame_,mastodon.social,Democracy & Human Rights,democracy_human_rights,false -Dame_,mastodon.social,Engineering,engineering,false -Dame_,mastodon.social,Gaming,gaming,false -Dame_,mastodon.social,Government & Policy,government_policy,false -Dame_,mastodon.social,History,history,false -Dame_,mastodon.social,Humanities,humanities,false -Dame_,mastodon.social,Indigenous Peoples,indigenous_peoples,false -Dame_,mastodon.social,Law & Justice,law_justice,false -Dame_,mastodon.social,Music,music,false -Dame_,mastodon.social,Journalism & Comment,news_comment_data,false -Dame_,mastodon.social,Photography,photography,false -Dame_,mastodon.social,Politics,politics,false -Dame_,mastodon.social,Social Media,social_media,false -Dame_,mastodon.social,Sport,sport,false -Dame_,mastodon.social,Technology,technology,false -Dame_,mastodon.social,US Politics,us_politics,false -Dame_,mastodon.social,US Sport,us_sport,false -Dame_,mastodon.social,AI,ai,true -PixelRobot,neopaquita.es,Ukraine Invasion,ukraine_invasion,false -PixelRobot,neopaquita.es,US Politics,us_politics,false -FreddieJ,newsmast.social,Gaming,gaming,false -FreddieJ,newsmast.social,Architecture & Design,architecture_design,false -darnell,one.darnell.one,AI,ai,false -darnell,one.darnell.one,Biology,biology,false -darnell,one.darnell.one,Business,business,false -darnell,one.darnell.one,Chemistry,chemistry,false -darnell,one.darnell.one,Creative Arts,creative_arts,false -darnell,one.darnell.one,Democracy & Human Rights,democracy_human_rights,false -darnell,one.darnell.one,Engineering,engineering,false -darnell,one.darnell.one,Food & Drink,food_drink,false -darnell,one.darnell.one,Humour,humour,false -darnell,one.darnell.one,"Hunger, Disease & Water",hunger_disease_water,false -darnell,one.darnell.one,Markets & Finance,markets_finance,false -darnell,one.darnell.one,Mathematics,mathematics,false -darnell,one.darnell.one,Mental Health & Wellbeing,mental_health_wellbeing,false -darnell,one.darnell.one,Nature & Wildlife,nature_wildlife,false -darnell,one.darnell.one,Journalism & Comment,news_comment_data,false -darnell,one.darnell.one,Pets,pets,false -darnell,one.darnell.one,Physics,physics,false -darnell,one.darnell.one,Poverty & Inequality,poverty_inequality,false -darnell,one.darnell.one,Programming,programming,false -darnell,one.darnell.one,Puzzles,puzzles,false -darnell,one.darnell.one,Science,science,false -darnell,one.darnell.one,Social Media,social_media,false -darnell,one.darnell.one,Space,space,false -darnell,one.darnell.one,Technology,technology,false -darnell,one.darnell.one,Travel,travel,false -darnell,one.darnell.one,Ukraine Invasion,ukraine_invasion,false -darnell,one.darnell.one,Weather,weather,false -darnell,one.darnell.one,Workers Rights,workers_rights,false -darnell,one.darnell.one,Breaking News,breaking_news,true -tuckerm,newsmast.social,Pets,pets,false -Downes,newsmast.social,Academia & Research,academia_research,false -Downes,newsmast.social,AI,ai,false -Downes,newsmast.social,Breaking News,breaking_news,false -Downes,newsmast.social,Philosophy,philosophy,false -Downes,newsmast.social,Programming,programming,false -Downes,newsmast.social,Science,science,false -Downes,newsmast.social,Social Media,social_media,false -Downes,newsmast.social,Space,space,false -Downes,newsmast.social,Technology,technology,false -Downes,newsmast.social,Journalism & Comment,news_comment_data,true -olympusmoans,newsmast.social,Academia & Research,academia_research,false -olympusmoans,newsmast.social,AI,ai,false -olympusmoans,newsmast.social,Breaking News,breaking_news,false -olympusmoans,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -channyeintun,newsmast.social,Academia & Research,academia_research,false -channyeintun,newsmast.social,AI,ai,false -channyeintun,newsmast.social,Creative Arts,creative_arts,false -channyeintun,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -channyeintun,newsmast.social,Engineering,engineering,false -channyeintun,newsmast.social,Food & Drink,food_drink,false -channyeintun,newsmast.social,Government & Policy,government_policy,false -channyeintun,newsmast.social,Healthcare,healthcare,false -channyeintun,newsmast.social,Humour,humour,false -channyeintun,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false -channyeintun,newsmast.social,Law & Justice,law_justice,false -channyeintun,newsmast.social,Nature & Wildlife,nature_wildlife,false -channyeintun,newsmast.social,Pets,pets,false -channyeintun,newsmast.social,Politics,politics,false -channyeintun,newsmast.social,Poverty & Inequality,poverty_inequality,false -channyeintun,newsmast.social,Programming,programming,false -channyeintun,newsmast.social,Puzzles,puzzles,false -channyeintun,newsmast.social,Technology,technology,false -channyeintun,newsmast.social,Travel,travel,false -channyeintun,newsmast.social,US Politics,us_politics,false -channyeintun,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,true -olympusmoans,newsmast.social,Engineering,engineering,false -olympusmoans,newsmast.social,Government & Policy,government_policy,false -olympusmoans,newsmast.social,Healthcare,healthcare,false -olympusmoans,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false -olympusmoans,newsmast.social,Law & Justice,law_justice,false -olympusmoans,newsmast.social,Journalism & Comment,news_comment_data,false -olympusmoans,newsmast.social,Poverty & Inequality,poverty_inequality,false -olympusmoans,newsmast.social,Programming,programming,false -olympusmoans,newsmast.social,Social Media,social_media,false -olympusmoans,newsmast.social,Technology,technology,false -olympusmoans,newsmast.social,Ukraine Invasion,ukraine_invasion,false -olympusmoans,newsmast.social,US Politics,us_politics,false -olympusmoans,newsmast.social,Weather,weather,false -olympusmoans,newsmast.social,Politics,politics,true -johnleonard,mastodon.social,AI,ai,false -johnleonard,mastodon.social,Breaking News,breaking_news,false -johnleonard,mastodon.social,Climate change,climate_change,false -bengenn,aus.social,Markets & Finance,markets_finance,false -bengenn,aus.social,Technology,technology,false -bengenn,aus.social,Travel,travel,true -tuckerm,newsmast.social,Biology,biology,false -tuckerm,newsmast.social,Breaking News,breaking_news,false -tuckerm,newsmast.social,Chemistry,chemistry,false -tuckerm,newsmast.social,History,history,false -tuckerm,newsmast.social,Humanities,humanities,false -tuckerm,newsmast.social,Mathematics,mathematics,false -tuckerm,newsmast.social,Philosophy,philosophy,false -tuckerm,newsmast.social,Physics,physics,false -tuckerm,newsmast.social,Science,science,false -tuckerm,newsmast.social,Social Media,social_media,false -tuckerm,newsmast.social,Social Sciences,social_sciences,false -tuckerm,newsmast.social,Space,space,false -tuckerm,newsmast.social,Ukraine Invasion,ukraine_invasion,false -tuckerm,newsmast.social,US Sport,us_sport,false -tuckerm,newsmast.social,Weather,weather,false -tuckerm,newsmast.social,Journalism & Comment,news_comment_data,true -johnleonard,mastodon.social,Journalism & Comment,news_comment_data,false -johnleonard,mastodon.social,Technology,technology,true -r_morgan,mstdn.ca,Breaking News,breaking_news,false -r_morgan,mstdn.ca,Journalism & Comment,news_comment_data,false -r_morgan,mstdn.ca,Science,science,false -r_morgan,mstdn.ca,Programming,programming,true -wmclark,publishing.social,Activism & Civil Rights,activism_civil_rights,false -wmclark,publishing.social,Black Voices,black_voices,false -wmclark,publishing.social,Breaking News,breaking_news,false -wmclark,publishing.social,Creative Arts,creative_arts,false -tuckerm,newsmast.social,Puzzles,puzzles,false -wmclark,publishing.social,Democracy & Human Rights,democracy_human_rights,false -wmclark,publishing.social,Food & Drink,food_drink,false -wmclark,publishing.social,Humanities,humanities,false -wmclark,publishing.social,Music,music,false -wmclark,publishing.social,Journalism & Comment,news_comment_data,false -wmclark,publishing.social,Photography,photography,false -wmclark,publishing.social,Social Media,social_media,false -wmclark,publishing.social,Technology,technology,false -wmclark,publishing.social,Visual Arts,visual_arts,false -wmclark,publishing.social,Books & Literature,books_literature,true -yanmoenaing,newsmast.social,Biology,biology,false -lilythelonelygirl,hear-me.social,Social Sciences,social_sciences,false -AlexiaPonchet,newsmast.social,Humanities,humanities,false -AlexiaPonchet,newsmast.social,Books & Literature,books_literature,false -AlexiaPonchet,newsmast.social,Visual Arts,visual_arts,false -AlexiaPonchet,newsmast.social,Humour,humour,false -AlexiaPonchet,newsmast.social,Nature & Wildlife,nature_wildlife,false -AlexiaPonchet,newsmast.social,Programming,programming,false -bbdjgfhjhhg,newsmast.social,Breaking News,breaking_news,false -bbdjgfhjhhg,newsmast.social,Journalism & Comment,news_comment_data,false -bbdjgfhjhhg,newsmast.social,Ukraine Invasion,ukraine_invasion,false -bbdjgfhjhhg,newsmast.social,Weather,weather,false -bbdjgfhjhhg,newsmast.social,Social Media,social_media,true -bbdjgfhjhhg,newsmast.social,Programming,programming,false -bbdjgfhjhhg,newsmast.social,Poverty & Inequality,poverty_inequality,false -sarampion,masto.es,Academia & Research,academia_research,false -sarampion,masto.es,AI,ai,false -sarampion,masto.es,Architecture & Design,architecture_design,false -sarampion,masto.es,Books & Literature,books_literature,false -sarampion,masto.es,Breaking News,breaking_news,false -sarampion,masto.es,Democracy & Human Rights,democracy_human_rights,false -sarampion,masto.es,Environment,environment,false -sarampion,masto.es,History,history,false -sarampion,masto.es,Humanities,humanities,false -sarampion,masto.es,"Hunger, Disease & Water",hunger_disease_water,false -sarampion,masto.es,Movies,movies,false -sarampion,masto.es,Music,music,false -sarampion,masto.es,Journalism & Comment,news_comment_data,false -sarampion,masto.es,Philosophy,philosophy,false -sarampion,masto.es,Politics,politics,false -sarampion,masto.es,Activism & Civil Rights,activism_civil_rights,false -mofahmawi,mastodon.social,Engineering,engineering,false -mofahmawi,mastodon.social,Programming,programming,false -mofahmawi,mastodon.social,Technology,technology,false -mofahmawi,mastodon.social,Weather,weather,false -mofahmawi,mastodon.social,AI,ai,true -tredford01,retro.pizza,Architecture & Design,architecture_design,false -tredford01,retro.pizza,Books & Literature,books_literature,false -tredford01,retro.pizza,Environment,environment,false -tredford01,retro.pizza,Gaming,gaming,false -tredford01,retro.pizza,History,history,false -tredford01,retro.pizza,Technology,technology,true -teowawki,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false -teowawki,newsmast.social,Biology,biology,false -teowawki,newsmast.social,Climate change,climate_change,false -teowawki,newsmast.social,Energy & Pollution,energy_pollution,false -teowawki,newsmast.social,Environment,environment,false -teowawki,newsmast.social,Government & Policy,government_policy,false -teowawki,newsmast.social,History,history,false -teowawki,newsmast.social,Philosophy,philosophy,false -teowawki,newsmast.social,Science,science,false -teowawki,newsmast.social,Social Sciences,social_sciences,false -teowawki,newsmast.social,Space,space,false -teowawki,newsmast.social,Technology,technology,false -teowawki,newsmast.social,US Politics,us_politics,false -teowawki,newsmast.social,Breaking News,breaking_news,true -snoots,channel.org,Mental Health & Wellbeing,mental_health_wellbeing,false -snoots,channel.org,Movies,movies,false -snoots,channel.org,Music,music,false -snoots,channel.org,Nature & Wildlife,nature_wildlife,false -petite_etoile,mastodon.social,Activism & Civil Rights,activism_civil_rights,false -petite_etoile,mastodon.social,Books & Literature,books_literature,false -petite_etoile,mastodon.social,Breaking News,breaking_news,false -petite_etoile,mastodon.social,Climate change,climate_change,false -PixelRobot,neopaquita.es,Visual Arts,visual_arts,false -petite_etoile,mastodon.social,Environment,environment,false -petite_etoile,mastodon.social,Government & Policy,government_policy,false -petite_etoile,mastodon.social,History,history,false -petite_etoile,mastodon.social,Humanities,humanities,false -petite_etoile,mastodon.social,LGBTQ+,lgbtq,false -petite_etoile,mastodon.social,Music,music,false -petite_etoile,mastodon.social,Journalism & Comment,news_comment_data,false -petite_etoile,mastodon.social,Philosophy,philosophy,false -PixelRobot,neopaquita.es,Weather,weather,false -PixelRobot,neopaquita.es,Women’s Voices,women_voices,false -PixelRobot,neopaquita.es,Workers Rights,workers_rights,false -PixelRobot,neopaquita.es,Programming,programming,true -rajeshaithala4153,rajeshaithala4153@mastodon.social,Academia & Research,academia_research,false -rajeshaithala4153,rajeshaithala4153@mastodon.social,Activism & Civil Rights,activism_civil_rights,false -rajeshaithala4153,rajeshaithala4153@mastodon.social,Architecture & Design,architecture_design,false -rajeshaithala4153,rajeshaithala4153@mastodon.social,Biodiversity & Rewilding,biodiversity_rewilding,false -rajeshaithala4153,rajeshaithala4153@mastodon.social,Biology,biology,false -rajeshaithala4153,rajeshaithala4153@mastodon.social,Black Voices,black_voices,false -rajeshaithala4153,rajeshaithala4153@mastodon.social,Books & Literature,books_literature,false -rajeshaithala4153,rajeshaithala4153@mastodon.social,Breaking News,breaking_news,false -rajeshaithala4153,rajeshaithala4153@mastodon.social,Business,business,false -rajeshaithala4153,rajeshaithala4153@mastodon.social,Chemistry,chemistry,false -rajeshaithala4153,rajeshaithala4153@mastodon.social,Climate change,climate_change,false -rajeshaithala4153,rajeshaithala4153@mastodon.social,Creative Arts,creative_arts,false -rajeshaithala4153,rajeshaithala4153@mastodon.social,Democracy & Human Rights,democracy_human_rights,false -rajeshaithala4153,rajeshaithala4153@mastodon.social,Disabled Voices,disabled_voices,false -rajeshaithala4153,rajeshaithala4153@mastodon.social,Energy & Pollution,energy_pollution,false -rajeshaithala4153,rajeshaithala4153@mastodon.social,Engineering,engineering,false -rajeshaithala4153,rajeshaithala4153@mastodon.social,Environment,environment,false -rajeshaithala4153,rajeshaithala4153@mastodon.social,Food & Drink,food_drink,false -rajeshaithala4153,rajeshaithala4153@mastodon.social,Football,football,false -rajeshaithala4153,rajeshaithala4153@mastodon.social,Gaming,gaming,false -rajeshaithala4153,rajeshaithala4153@mastodon.social,Government & Policy,government_policy,false -rajeshaithala4153,rajeshaithala4153@mastodon.social,Healthcare,healthcare,false -rajeshaithala4153,rajeshaithala4153@mastodon.social,History,history,false -rajeshaithala4153,rajeshaithala4153@mastodon.social,Humanities,humanities,false -rajeshaithala4153,rajeshaithala4153@mastodon.social,Humour,humour,false -rajeshaithala4153,rajeshaithala4153@mastodon.social,"Hunger, Disease & Water",hunger_disease_water,false -rajeshaithala4153,rajeshaithala4153@mastodon.social,Immigrants Rights,immigrants_rights,false -rajeshaithala4153,rajeshaithala4153@mastodon.social,Indigenous Peoples,indigenous_peoples,false -rajeshaithala4153,rajeshaithala4153@mastodon.social,Law & Justice,law_justice,false -rajeshaithala4153,rajeshaithala4153@mastodon.social,LGBTQ+,lgbtq,false -rajeshaithala4153,rajeshaithala4153@mastodon.social,Markets & Finance,markets_finance,false -rajeshaithala4153,rajeshaithala4153@mastodon.social,Mathematics,mathematics,false -rajeshaithala4153,rajeshaithala4153@mastodon.social,Mental Health & Wellbeing,mental_health_wellbeing,false -rajeshaithala4153,rajeshaithala4153@mastodon.social,Movies,movies,false -rajeshaithala4153,rajeshaithala4153@mastodon.social,Music,music,false -rajeshaithala4153,rajeshaithala4153@mastodon.social,Nature & Wildlife,nature_wildlife,false -rajeshaithala4153,rajeshaithala4153@mastodon.social,Journalism & Comment,news_comment_data,false -rajeshaithala4153,rajeshaithala4153@mastodon.social,Performing Arts,performing_arts,false -rajeshaithala4153,rajeshaithala4153@mastodon.social,Pets,pets,false -rajeshaithala4153,rajeshaithala4153@mastodon.social,Philosophy,philosophy,false -rajeshaithala4153,rajeshaithala4153@mastodon.social,Photography,photography,false -rajeshaithala4153,rajeshaithala4153@mastodon.social,Physics,physics,false -rajeshaithala4153,rajeshaithala4153@mastodon.social,Politics,politics,false -rajeshaithala4153,rajeshaithala4153@mastodon.social,Poverty & Inequality,poverty_inequality,false -rajeshaithala4153,rajeshaithala4153@mastodon.social,Programming,programming,false -rajeshaithala4153,rajeshaithala4153@mastodon.social,Puzzles,puzzles,false -rajeshaithala4153,rajeshaithala4153@mastodon.social,Science,science,false -rajeshaithala4153,rajeshaithala4153@mastodon.social,Social Media,social_media,false -rajeshaithala4153,rajeshaithala4153@mastodon.social,Social Sciences,social_sciences,false -rajeshaithala4153,rajeshaithala4153@mastodon.social,Space,space,false -rajeshaithala4153,rajeshaithala4153@mastodon.social,Sport,sport,false -rajeshaithala4153,rajeshaithala4153@mastodon.social,Technology,technology,false -rajeshaithala4153,rajeshaithala4153@mastodon.social,Travel,travel,false -rajeshaithala4153,rajeshaithala4153@mastodon.social,TV & Radio,tv_radio,false -rajeshaithala4153,rajeshaithala4153@mastodon.social,Ukraine Invasion,ukraine_invasion,false -rajeshaithala4153,rajeshaithala4153@mastodon.social,US Politics,us_politics,false -rajeshaithala4153,rajeshaithala4153@mastodon.social,US Sport,us_sport,false -rajeshaithala4153,rajeshaithala4153@mastodon.social,Visual Arts,visual_arts,false -rajeshaithala4153,rajeshaithala4153@mastodon.social,Weather,weather,false -rajeshaithala4153,rajeshaithala4153@mastodon.social,Women’s Voices,women_voices,false -rajeshaithala4153,rajeshaithala4153@mastodon.social,Workers Rights,workers_rights,false -rajeshaithala4153,rajeshaithala4153@mastodon.social,AI,ai,true -enough_jainil,mastodon.social,Biology,biology,false -enough_jainil,mastodon.social,Chemistry,chemistry,false -enough_jainil,mastodon.social,Engineering,engineering,false -enough_jainil,mastodon.social,Mathematics,mathematics,false -enough_jainil,mastodon.social,Physics,physics,false -enough_jainil,mastodon.social,Programming,programming,false -enough_jainil,mastodon.social,Science,science,false -enough_jainil,mastodon.social,Social Media,social_media,false -enough_jainil,mastodon.social,Space,space,false -enough_jainil,mastodon.social,Technology,technology,false -enough_jainil,mastodon.social,AI,ai,true -gbrrrl,mas.to,Engineering,engineering,false -gbrrrl,mas.to,Philosophy,philosophy,false -gbrrrl,mas.to,Physics,physics,false -gbrrrl,mas.to,Programming,programming,false -gbrrrl,mas.to,Technology,technology,true -gbrrrl,mas.to,Movies,movies,false -gbrrrl,mas.to,Music,music,false -gbrrrl,mas.to,Visual Arts,visual_arts,false -gbrrrl,mas.to,Biodiversity & Rewilding,biodiversity_rewilding,false -gbrrrl,mas.to,Academia & Research,academia_research,false -gbrrrl,mas.to,Democracy & Human Rights,democracy_human_rights,false -Yunandar,newsmast.social,Climate change,climate_change,false -Yunandar,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -petite_etoile,mastodon.social,Photography,photography,false -YellowDrone,mas.to,Architecture & Design,architecture_design,false -YellowDrone,mas.to,Breaking News,breaking_news,false -YellowDrone,mas.to,Journalism & Comment,news_comment_data,false -YellowDrone,mas.to,Social Media,social_media,false -YellowDrone,mas.to,Ukraine Invasion,ukraine_invasion,true -min_thu_kyaw,burma.social,Academia & Research,academia_research,false -min_thu_kyaw,burma.social,AI,ai,false -min_thu_kyaw,burma.social,Biology,biology,false -min_thu_kyaw,burma.social,Chemistry,chemistry,false -min_thu_kyaw,burma.social,Democracy & Human Rights,democracy_human_rights,false -min_thu_kyaw,burma.social,Engineering,engineering,false -min_thu_kyaw,burma.social,Government & Policy,government_policy,false -min_thu_kyaw,burma.social,Healthcare,healthcare,false -min_thu_kyaw,burma.social,Law & Justice,law_justice,false -min_thu_kyaw,burma.social,Mathematics,mathematics,false -min_thu_kyaw,burma.social,Physics,physics,false -min_thu_kyaw,burma.social,Politics,politics,false -min_thu_kyaw,burma.social,Poverty & Inequality,poverty_inequality,false -min_thu_kyaw,burma.social,Programming,programming,false -min_thu_kyaw,burma.social,Science,science,false -min_thu_kyaw,burma.social,Space,space,false -min_thu_kyaw,burma.social,Technology,technology,false -min_thu_kyaw,burma.social,US Politics,us_politics,false -min_thu_kyaw,burma.social,"Hunger, Disease & Water",hunger_disease_water,true -petite_etoile,mastodon.social,Poverty & Inequality,poverty_inequality,false -petite_etoile,mastodon.social,Social Sciences,social_sciences,false -petite_etoile,mastodon.social,Weather,weather,false -petite_etoile,mastodon.social,Women’s Voices,women_voices,false -PetRock,newsmast.social,Nature & Wildlife,nature_wildlife,true -PetRock,newsmast.social,Music,music,false -jramompichel2023,mastodon.social,Travel,travel,false -skry,mastodon.social,Academia & Research,academia_research,false -skry,mastodon.social,Biodiversity & Rewilding,biodiversity_rewilding,false -skry,mastodon.social,Space,space,false -skry,mastodon.social,US Politics,us_politics,false -skry,mastodon.social,Breaking News,breaking_news,true -keithramsey,newsmast.social,Environment,environment,false -keithramsey,newsmast.social,Journalism & Comment,news_comment_data,false -keithramsey,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -keithramsey,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false -keithramsey,newsmast.social,Poverty & Inequality,poverty_inequality,false -keithramsey,newsmast.social,Activism & Civil Rights,activism_civil_rights,false -keithramsey,newsmast.social,Women’s Voices,women_voices,false -keithramsey,newsmast.social,LGBTQ+,lgbtq,false -keithramsey,newsmast.social,Indigenous Peoples,indigenous_peoples,false -keithramsey,newsmast.social,Immigrants Rights,immigrants_rights,false -keithramsey,newsmast.social,Disabled Voices,disabled_voices,false -keithramsey,newsmast.social,Black Voices,black_voices,false -keithramsey,newsmast.social,Architecture & Design,architecture_design,false -keithramsey,newsmast.social,Visual Arts,visual_arts,false -keithramsey,newsmast.social,Creative Arts,creative_arts,false -keithramsey,newsmast.social,Nature & Wildlife,nature_wildlife,false -itzme,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -itzme,newsmast.social,Environment,environment,false -itzme,newsmast.social,Law & Justice,law_justice,false -itzme,newsmast.social,Science,science,false -itzme,newsmast.social,Breaking News,breaking_news,true -martynjparker,mastodon.social,Sport,sport,false -martynjparker,mastodon.social,Technology,technology,false -martynjparker,mastodon.social,US Sport,us_sport,false -martynjparker,mastodon.social,Weather,weather,false -martynjparker,mastodon.social,Breaking News,breaking_news,true -ommo,newsmast.social,Engineering,engineering,false -ommo,newsmast.social,Science,science,false -ommo,newsmast.social,Technology,technology,false -ommo,newsmast.social,Weather,weather,false -ommo,newsmast.social,Space,space,true -martinlentink,mastodon.social,Biodiversity & Rewilding,biodiversity_rewilding,false -martinlentink,mastodon.social,Biology,biology,false -martinlentink,mastodon.social,Energy & Pollution,energy_pollution,false -martinlentink,mastodon.social,Government & Policy,government_policy,false -martinlentink,mastodon.social,Physics,physics,false -martinlentink,mastodon.social,Science,science,false -martinlentink,mastodon.social,Space,space,false -martinlentink,mastodon.social,US Politics,us_politics,false -martinlentink,mastodon.social,Climate change,climate_change,true -martinlentink,mastodon.social,Ukraine Invasion,ukraine_invasion,false -martinlentink,mastodon.social,Breaking News,breaking_news,false -martinlentink,mastodon.social,Environment,environment,false -MMaK,Feuerwehr.social,Sport,sport,true -yosoybartsolo,superhappy.social,Academia & Research,academia_research,false -yosoybartsolo,superhappy.social,Activism & Civil Rights,activism_civil_rights,false -yosoybartsolo,superhappy.social,AI,ai,false -yosoybartsolo,superhappy.social,Black Voices,black_voices,false -yosoybartsolo,superhappy.social,Breaking News,breaking_news,false -yosoybartsolo,superhappy.social,Democracy & Human Rights,democracy_human_rights,false -yosoybartsolo,superhappy.social,Disabled Voices,disabled_voices,false -yosoybartsolo,superhappy.social,Engineering,engineering,false -yosoybartsolo,superhappy.social,Government & Policy,government_policy,false -yosoybartsolo,superhappy.social,Healthcare,healthcare,false -yosoybartsolo,superhappy.social,History,history,false -yosoybartsolo,superhappy.social,Humanities,humanities,false -yosoybartsolo,superhappy.social,"Hunger, Disease & Water",hunger_disease_water,false -yosoybartsolo,superhappy.social,Immigrants Rights,immigrants_rights,false -yosoybartsolo,superhappy.social,Indigenous Peoples,indigenous_peoples,false -yosoybartsolo,superhappy.social,Law & Justice,law_justice,false -yosoybartsolo,superhappy.social,LGBTQ+,lgbtq,false -yosoybartsolo,superhappy.social,Journalism & Comment,news_comment_data,false -yosoybartsolo,superhappy.social,Philosophy,philosophy,false -yosoybartsolo,superhappy.social,Politics,politics,false -yosoybartsolo,superhappy.social,Poverty & Inequality,poverty_inequality,false -yosoybartsolo,superhappy.social,Programming,programming,false -yosoybartsolo,superhappy.social,Social Media,social_media,false -yosoybartsolo,superhappy.social,Social Sciences,social_sciences,false -yosoybartsolo,superhappy.social,Ukraine Invasion,ukraine_invasion,false -yosoybartsolo,superhappy.social,US Politics,us_politics,false -yosoybartsolo,superhappy.social,Weather,weather,false -yosoybartsolo,superhappy.social,Women’s Voices,women_voices,false -yosoybartsolo,superhappy.social,Technology,technology,true -petite_etoile,mastodon.social,Democracy & Human Rights,democracy_human_rights,true -Sahqon,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false -Sahqon,newsmast.social,Biology,biology,false -Sahqon,newsmast.social,Breaking News,breaking_news,false -Sahqon,newsmast.social,Climate change,climate_change,false -Sahqon,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -Sahqon,newsmast.social,Energy & Pollution,energy_pollution,false -Sahqon,newsmast.social,Environment,environment,false -Sahqon,newsmast.social,Government & Policy,government_policy,false -Sahqon,newsmast.social,Physics,physics,false -Sahqon,newsmast.social,Science,science,true -AlexiaPonchet,newsmast.social,Social Sciences,social_sciences,false -bbdjgfhjhhg,newsmast.social,Business,business,false -bbdjgfhjhhg,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false -KarenKeiller,indieweb.social,Journalism & Comment,news_comment_data,false -KarenKeiller,indieweb.social,Social Media,social_media,false -KarenKeiller,indieweb.social,Ukraine Invasion,ukraine_invasion,false -KarenKeiller,indieweb.social,Weather,weather,false -KarenKeiller,indieweb.social,Breaking News,breaking_news,true -ste_pal,mastodon.uno,Activism & Civil Rights,activism_civil_rights,false -ste_pal,mastodon.uno,Democracy & Human Rights,democracy_human_rights,false -ste_pal,mastodon.uno,Music,music,false -ste_pal,mastodon.uno,Science,science,false -jrotermund,mastodon.social,Activism & Civil Rights,activism_civil_rights,false -jrotermund,mastodon.social,Environment,environment,false -jrotermund,mastodon.social,Humanities,humanities,false -jrotermund,mastodon.social,Social Media,social_media,false -jrotermund,mastodon.social,Democracy & Human Rights,democracy_human_rights,true -nesieslonk,mastodon.social,Academia & Research,academia_research,false -nesieslonk,mastodon.social,AI,ai,false -nesieslonk,mastodon.social,Biology,biology,false -nesieslonk,mastodon.social,Breaking News,breaking_news,false -nesieslonk,mastodon.social,Business,business,false -nesieslonk,mastodon.social,Chemistry,chemistry,false -aendra,hackers.town,Activism & Civil Rights,activism_civil_rights,false -aendra,hackers.town,AI,ai,false -aendra,hackers.town,Architecture & Design,architecture_design,false -aendra,hackers.town,Biology,biology,false -aendra,hackers.town,Black Voices,black_voices,false -aendra,hackers.town,Books & Literature,books_literature,false -nesieslonk,mastodon.social,Engineering,engineering,false -aendra,hackers.town,Business,business,false -aendra,hackers.town,Chemistry,chemistry,false -aendra,hackers.town,Climate change,climate_change,false -aendra,hackers.town,Creative Arts,creative_arts,false -aendra,hackers.town,Democracy & Human Rights,democracy_human_rights,false -aendra,hackers.town,Engineering,engineering,false -aendra,hackers.town,Environment,environment,false -aendra,hackers.town,Food & Drink,food_drink,false -aendra,hackers.town,Gaming,gaming,false -aendra,hackers.town,Government & Policy,government_policy,false -aendra,hackers.town,Healthcare,healthcare,false -aendra,hackers.town,History,history,false -nesieslonk,mastodon.social,Government & Policy,government_policy,false -nesieslonk,mastodon.social,Healthcare,healthcare,false -nesieslonk,mastodon.social,History,history,false -nesieslonk,mastodon.social,Humanities,humanities,false -nesieslonk,mastodon.social,Law & Justice,law_justice,false -nesieslonk,mastodon.social,Markets & Finance,markets_finance,false -nesieslonk,mastodon.social,Mathematics,mathematics,false -nesieslonk,mastodon.social,Journalism & Comment,news_comment_data,false -nesieslonk,mastodon.social,Physics,physics,false -nesieslonk,mastodon.social,Philosophy,philosophy,true -ste_pal,mastodon.uno,Breaking News,breaking_news,true -swingtimeSeppe,www.lindyhop.community,Pets,pets,false -swingtimeSeppe,www.lindyhop.community,Photography,photography,false -swingtimeSeppe,www.lindyhop.community,Puzzles,puzzles,false -swingtimeSeppe,www.lindyhop.community,Science,science,false -swingtimeSeppe,www.lindyhop.community,Technology,technology,false -swingtimeSeppe,www.lindyhop.community,Space,space,true -snoots,channel.org,Performing Arts,performing_arts,false -snoots,channel.org,Photography,photography,false -snoots,channel.org,Puzzles,puzzles,false -snoots,channel.org,Travel,travel,false -snoots,channel.org,TV & Radio,tv_radio,false -snoots,channel.org,Visual Arts,visual_arts,false -snoots,channel.org,Pets,pets,true -aendra,hackers.town,Humanities,humanities,false -aendra,hackers.town,Humour,humour,false -aendra,hackers.town,LGBTQ+,lgbtq,false -aendra,hackers.town,Mathematics,mathematics,false -aendra,hackers.town,Mental Health & Wellbeing,mental_health_wellbeing,false -aendra,hackers.town,Movies,movies,false -aendra,hackers.town,Music,music,false -aendra,hackers.town,Nature & Wildlife,nature_wildlife,false -aendra,hackers.town,Journalism & Comment,news_comment_data,false -aendra,hackers.town,Performing Arts,performing_arts,false -aendra,hackers.town,Pets,pets,false -aendra,hackers.town,Philosophy,philosophy,false -aendra,hackers.town,Photography,photography,false -aendra,hackers.town,Physics,physics,false -aendra,hackers.town,Politics,politics,false -aendra,hackers.town,Poverty & Inequality,poverty_inequality,false -aendra,hackers.town,Programming,programming,false -aendra,hackers.town,Puzzles,puzzles,false -aendra,hackers.town,Science,science,false -aendra,hackers.town,Social Media,social_media,false -aendra,hackers.town,Social Sciences,social_sciences,false -aendra,hackers.town,Space,space,false -aendra,hackers.town,Technology,technology,false -aendra,hackers.town,Travel,travel,false -aendra,hackers.town,TV & Radio,tv_radio,false -aendra,hackers.town,Visual Arts,visual_arts,false -aendra,hackers.town,Women’s Voices,women_voices,false -aendra,hackers.town,Breaking News,breaking_news,true -ballancier,mastodon.social,Healthcare,healthcare,false -ballancier,mastodon.social,Law & Justice,law_justice,false -Blacktiger,newsmast.social,Food & Drink,food_drink,false -ballancier,mastodon.social,Physics,physics,false -moonmehta,mastodon.social,Books & Literature,books_literature,false -moonmehta,mastodon.social,Physics,physics,false -DarkAlomox,newsmast.social,Books & Literature,books_literature,false -DarkAlomox,newsmast.social,Gaming,gaming,false -DarkAlomox,newsmast.social,Movies,movies,false -DarkAlomox,newsmast.social,Music,music,false -DarkAlomox,newsmast.social,Architecture & Design,architecture_design,true -moonmehta,mastodon.social,Science,science,false -moonmehta,mastodon.social,Technology,technology,false -moonmehta,mastodon.social,Space,space,true -jramompichel2023,mastodon.social,History,history,true -Alomox,newsmast.social,Books & Literature,books_literature,false -Alomox,newsmast.social,Gaming,gaming,false -Alomox,newsmast.social,Movies,movies,false -Alomox,newsmast.social,Music,music,false -Alomox,newsmast.social,Architecture & Design,architecture_design,true -jramompichel2023,mastodon.social,Climate change,climate_change,false -jramompichel2023,mastodon.social,Humanities,humanities,false -jramompichel2023,mastodon.social,Social Sciences,social_sciences,false -jramompichel2023,mastodon.social,Music,music,false -jramompichel2023,mastodon.social,Photography,photography,false -jramompichel2023,mastodon.social,Nature & Wildlife,nature_wildlife,false -jramompichel2023,mastodon.social,Mental Health & Wellbeing,mental_health_wellbeing,false -jramompichel2023,mastodon.social,Humour,humour,false -jramompichel2023,mastodon.social,Food & Drink,food_drink,false -mauriciobc,ursal.zone,Books & Literature,books_literature,false -PetRock,mastodon.art,Breaking News,breaking_news,false -PetRock,mastodon.art,Social Media,social_media,false -PetRock,mastodon.art,Ukraine Invasion,ukraine_invasion,false -PetRock,mastodon.art,Weather,weather,false -PetRock,mastodon.art,Journalism & Comment,news_comment_data,true -jvanvinkenroye,higher-edu.social,AI,ai,false -jvanvinkenroye,higher-edu.social,Books & Literature,books_literature,false -jvanvinkenroye,higher-edu.social,Engineering,engineering,false -jvanvinkenroye,higher-edu.social,Gaming,gaming,false -jvanvinkenroye,higher-edu.social,Government & Policy,government_policy,false -jvanvinkenroye,higher-edu.social,Humanities,humanities,false -jvanvinkenroye,higher-edu.social,Movies,movies,false -jvanvinkenroye,higher-edu.social,Poverty & Inequality,poverty_inequality,false -jvanvinkenroye,higher-edu.social,Programming,programming,false -jvanvinkenroye,higher-edu.social,Social Sciences,social_sciences,false -jvanvinkenroye,higher-edu.social,Technology,technology,false -jvanvinkenroye,higher-edu.social,Academia & Research,academia_research,true -heimoshuiyu,newsmast.social,Journalism & Comment,news_comment_data,false -heimoshuiyu,newsmast.social,Social Media,social_media,false -heimoshuiyu,newsmast.social,Ukraine Invasion,ukraine_invasion,false -heimoshuiyu,newsmast.social,Weather,weather,false -heimoshuiyu,newsmast.social,Breaking News,breaking_news,true -FreddieJ,newsmast.social,Technology,technology,false -FreddieJ,newsmast.social,Programming,programming,false -FreddieJ,newsmast.social,Engineering,engineering,false -nifta,icosahedron.website,Architecture & Design,architecture_design,false -nifta,icosahedron.website,Books & Literature,books_literature,false -nifta,icosahedron.website,Breaking News,breaking_news,false -nifta,icosahedron.website,History,history,false -nifta,icosahedron.website,Humanities,humanities,false -nifta,icosahedron.website,Music,music,false -nifta,icosahedron.website,Philosophy,philosophy,false -nifta,icosahedron.website,Photography,photography,false -nifta,icosahedron.website,TV & Radio,tv_radio,false -nifta,icosahedron.website,Visual Arts,visual_arts,false -nifta,icosahedron.website,Weather,weather,false -nifta,icosahedron.website,Movies,movies,true -raulmagdalena,mastodont.cat,Architecture & Design,architecture_design,false -raulmagdalena,mastodont.cat,Books & Literature,books_literature,false -raulmagdalena,mastodont.cat,History,history,false -raulmagdalena,mastodont.cat,Philosophy,philosophy,false -raulmagdalena,mastodont.cat,Photography,photography,false -raulmagdalena,mastodont.cat,Programming,programming,false -raulmagdalena,mastodont.cat,Science,science,false -raulmagdalena,mastodont.cat,Social Sciences,social_sciences,false -raulmagdalena,mastodont.cat,Humanities,humanities,true -ballancier,mastodon.social,Politics,politics,false -greenskyvai,social.politicaconciencia.org,Breaking News,breaking_news,false -greenskyvai,social.politicaconciencia.org,History,history,false -greenskyvai,social.politicaconciencia.org,Humanities,humanities,false -greenskyvai,social.politicaconciencia.org,Music,music,false -pboehler,mastodon.social,AI,ai,false -pboehler,mastodon.social,Breaking News,breaking_news,false -pboehler,mastodon.social,Democracy & Human Rights,democracy_human_rights,false -pboehler,mastodon.social,Technology,technology,false -pboehler,mastodon.social,Journalism & Comment,news_comment_data,true -greenskyvai,social.politicaconciencia.org,Journalism & Comment,news_comment_data,false -greenskyvai,social.politicaconciencia.org,Photography,photography,false -greenskyvai,social.politicaconciencia.org,Visual Arts,visual_arts,false -greenskyvai,social.politicaconciencia.org,Weather,weather,false -greenskyvai,social.politicaconciencia.org,Philosophy,philosophy,true -ballancier,mastodon.social,Space,space,false -ballancier,mastodon.social,Technology,technology,false -tyom,mastodon.zaclys.com,Biology,biology,false -tyom,mastodon.zaclys.com,Books & Literature,books_literature,false -tyom,mastodon.zaclys.com,Humanities,humanities,false -tyom,mastodon.zaclys.com,Visual Arts,visual_arts,false -tyom,mastodon.zaclys.com,Music,music,true -ballancier,mastodon.social,Science,science,true -ahmed90,newsmast.social,AI,ai,false -ahmed90,newsmast.social,Business,business,false -johannesalbretch,mastodon.social,History,history,false -johannesalbretch,mastodon.social,Humanities,humanities,false -johannesalbretch,mastodon.social,Humour,humour,false -johannesalbretch,mastodon.social,Mental Health & Wellbeing,mental_health_wellbeing,false -johannesalbretch,mastodon.social,Music,music,false -johannesalbretch,mastodon.social,Journalism & Comment,news_comment_data,false -johannesalbretch,mastodon.social,Philosophy,philosophy,false -johannesalbretch,mastodon.social,Photography,photography,false -johannesalbretch,mastodon.social,Science,science,false -johannesalbretch,mastodon.social,Social Media,social_media,false -johannesalbretch,mastodon.social,Social Sciences,social_sciences,false -johannesalbretch,mastodon.social,Space,space,false -johannesalbretch,mastodon.social,Technology,technology,false -johannesalbretch,mastodon.social,Visual Arts,visual_arts,false -johannesalbretch,mastodon.social,Weather,weather,false -johannesalbretch,mastodon.social,Movies,movies,true -ahmed90,newsmast.social,Engineering,engineering,false -ahmed90,newsmast.social,Government & Policy,government_policy,false -ahmed90,newsmast.social,Healthcare,healthcare,false -ahmed90,newsmast.social,Markets & Finance,markets_finance,false -ahmed90,newsmast.social,Programming,programming,false -ahmed90,newsmast.social,Technology,technology,true -mathewi,journa.host,Academia & Research,academia_research,false -mathewi,journa.host,Activism & Civil Rights,activism_civil_rights,false -mathewi,journa.host,AI,ai,false -mathewi,journa.host,Architecture & Design,architecture_design,false -mathewi,journa.host,Black Voices,black_voices,false -mathewi,journa.host,Books & Literature,books_literature,false -RuticaCL_74,mastodon.cr,Books & Literature,books_literature,false -RuticaCL_74,mastodon.cr,Creative Arts,creative_arts,false -RuticaCL_74,mastodon.cr,Food & Drink,food_drink,false -RuticaCL_74,mastodon.cr,Nature & Wildlife,nature_wildlife,false -RuticaCL_74,mastodon.cr,Pets,pets,false -RuticaCL_74,mastodon.cr,Photography,photography,false -RuticaCL_74,mastodon.cr,AI,ai,true -P_FrankCojedor,mastodon.la,Movies,movies,false -P_FrankCojedor,mastodon.la,TV & Radio,tv_radio,false -P_FrankCojedor,mastodon.la,Visual Arts,visual_arts,false -P_FrankCojedor,mastodon.la,Weather,weather,false -P_FrankCojedor,mastodon.la,Space,space,true -emsquared,mastodon.social,Mental Health & Wellbeing,mental_health_wellbeing,false -Nyein,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false -Nyein,newsmast.social,Poverty & Inequality,poverty_inequality,false -RuthCL,mast.lat,AI,ai,false -RuthCL,mast.lat,Biology,biology,false -RuthCL,mast.lat,Space,space,false -RuthCL,mast.lat,Technology,technology,false -RuthCL,mast.lat,Science,science,true -templarknight,ieji.de,AI,ai,false -templarknight,ieji.de,Food & Drink,food_drink,false -templarknight,ieji.de,Technology,technology,false -templarknight,ieji.de,Travel,travel,false -templarknight,ieji.de,Breaking News,breaking_news,true -Lioh,social.anoxinon.de,Architecture & Design,architecture_design,true -GlennMarlowe,sfba.social,Activism & Civil Rights,activism_civil_rights,false -GlennMarlowe,sfba.social,AI,ai,false -GlennMarlowe,sfba.social,Architecture & Design,architecture_design,false -GlennMarlowe,sfba.social,Biodiversity & Rewilding,biodiversity_rewilding,false -GlennMarlowe,sfba.social,Black Voices,black_voices,false -GlennMarlowe,sfba.social,Breaking News,breaking_news,false -GlennMarlowe,sfba.social,Climate change,climate_change,false -GlennMarlowe,sfba.social,Democracy & Human Rights,democracy_human_rights,false -GlennMarlowe,sfba.social,Disabled Voices,disabled_voices,false -GlennMarlowe,sfba.social,Environment,environment,false -GlennMarlowe,sfba.social,Government & Policy,government_policy,false -GlennMarlowe,sfba.social,History,history,false -GlennMarlowe,sfba.social,Humanities,humanities,false -GlennMarlowe,sfba.social,Immigrants Rights,immigrants_rights,false -GlennMarlowe,sfba.social,Indigenous Peoples,indigenous_peoples,false -GlennMarlowe,sfba.social,LGBTQ+,lgbtq,false -emsquared,mastodon.social,Creative Arts,creative_arts,false -GlennMarlowe,sfba.social,Movies,movies,false -GlennMarlowe,sfba.social,Music,music,false -GlennMarlowe,sfba.social,Journalism & Comment,news_comment_data,false -GlennMarlowe,sfba.social,Performing Arts,performing_arts,false -GlennMarlowe,sfba.social,Science,science,false -GlennMarlowe,sfba.social,Social Media,social_media,false -GlennMarlowe,sfba.social,Space,space,false -GlennMarlowe,sfba.social,Technology,technology,false -GlennMarlowe,sfba.social,TV & Radio,tv_radio,false -GlennMarlowe,sfba.social,US Politics,us_politics,false -GlennMarlowe,sfba.social,Visual Arts,visual_arts,false -GlennMarlowe,sfba.social,Women’s Voices,women_voices,false -GlennMarlowe,sfba.social,Photography,photography,true -egc25,newsmast.social,Academia & Research,academia_research,false -egc25,newsmast.social,Activism & Civil Rights,activism_civil_rights,false -fedired,fedired.com,Black Voices,black_voices,false -fedired,fedired.com,Disabled Voices,disabled_voices,false -fedired,fedired.com,Engineering,engineering,false -fedired,fedired.com,Technology,technology,false -fedired,fedired.com,AI,ai,true -TechNieuws,newsmast.social,Business,business,false -TechNieuws,newsmast.social,Journalism & Comment,news_comment_data,false -TechNieuws,newsmast.social,Programming,programming,false -TechNieuws,newsmast.social,Social Media,social_media,false -TechNieuws,newsmast.social,Technology,technology,false -TechNieuws,newsmast.social,Breaking News,breaking_news,true -tkruck6,newsmast.social,AI,ai,false -nesieslonk,mastodon.social,Politics,politics,false -nesieslonk,mastodon.social,Programming,programming,false -nesieslonk,mastodon.social,Science,science,false -nesieslonk,mastodon.social,Social Media,social_media,false -nesieslonk,mastodon.social,Social Sciences,social_sciences,false -nesieslonk,mastodon.social,Space,space,false -nesieslonk,mastodon.social,Technology,technology,false -nesieslonk,mastodon.social,Ukraine Invasion,ukraine_invasion,false -nesieslonk,mastodon.social,US Politics,us_politics,false -nesieslonk,mastodon.social,Weather,weather,false -nesieslonk,mastodon.social,Workers Rights,workers_rights,false -5poox,mastodon.nu,Breaking News,breaking_news,false -5poox,mastodon.nu,Government & Policy,government_policy,false -5poox,mastodon.nu,Politics,politics,false -5poox,mastodon.nu,Ukraine Invasion,ukraine_invasion,false -5poox,mastodon.nu,Poverty & Inequality,poverty_inequality,true -tkruck6,newsmast.social,Biology,biology,false -tkruck6,newsmast.social,Breaking News,breaking_news,false -tkruck6,newsmast.social,Chemistry,chemistry,false -Clarke617,newsmast.social,Academia & Research,academia_research,false -Clarke617,newsmast.social,Creative Arts,creative_arts,false -Clarke617,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -Clarke617,newsmast.social,Food & Drink,food_drink,false -Clarke617,newsmast.social,Government & Policy,government_policy,false -Clarke617,newsmast.social,Healthcare,healthcare,false -Clarke617,newsmast.social,Humour,humour,false -Clarke617,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false -Clarke617,newsmast.social,Law & Justice,law_justice,false -Clarke617,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false -Clarke617,newsmast.social,Nature & Wildlife,nature_wildlife,false -Clarke617,newsmast.social,Journalism & Comment,news_comment_data,false -Clarke617,newsmast.social,Pets,pets,false -Clarke617,newsmast.social,Politics,politics,false -Clarke617,newsmast.social,Poverty & Inequality,poverty_inequality,false -Clarke617,newsmast.social,Puzzles,puzzles,false -Clarke617,newsmast.social,Social Media,social_media,false -Clarke617,newsmast.social,Travel,travel,false -Clarke617,newsmast.social,Ukraine Invasion,ukraine_invasion,false -Clarke617,newsmast.social,US Politics,us_politics,false -Clarke617,newsmast.social,Weather,weather,false -Clarke617,newsmast.social,Breaking News,breaking_news,true -tkruck6,newsmast.social,Engineering,engineering,false -tkruck6,newsmast.social,Healthcare,healthcare,false -sarampion,masto.es,Poverty & Inequality,poverty_inequality,false -sarampion,masto.es,Social Media,social_media,false -sarampion,masto.es,Social Sciences,social_sciences,false -sarampion,masto.es,Technology,technology,false -gbrrrl,mas.to,Creative Arts,creative_arts,false -gbrrrl,mas.to,LGBTQ+,lgbtq,false -Yunandar,newsmast.social,Energy & Pollution,energy_pollution,false -Yunandar,newsmast.social,Environment,environment,false -Yunandar,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false -Yunandar,newsmast.social,Poverty & Inequality,poverty_inequality,false -Yunandar,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,true -sev,burma.social,Activism & Civil Rights,activism_civil_rights,false -sev,burma.social,Business,business,false -sev,burma.social,Creative Arts,creative_arts,false -sev,burma.social,Environment,environment,false -sev,burma.social,Food & Drink,food_drink,false -sev,burma.social,Markets & Finance,markets_finance,false -sev,burma.social,Mental Health & Wellbeing,mental_health_wellbeing,false -sev,burma.social,Movies,movies,false -sev,burma.social,Music,music,false -sev,burma.social,Nature & Wildlife,nature_wildlife,false -sev,burma.social,Performing Arts,performing_arts,false -sev,burma.social,Travel,travel,false -sev,burma.social,Visual Arts,visual_arts,false -sev,burma.social,TV & Radio,tv_radio,true -Blacktiger,newsmast.social,Photography,photography,false -sicolan,mamot.fr,Visual Arts,visual_arts,false -sicolan,mamot.fr,Photography,photography,true -CaptainAyeAye,universeodon.com,Academia & Research,academia_research,false -CaptainAyeAye,universeodon.com,Breaking News,breaking_news,false -CaptainAyeAye,universeodon.com,Engineering,engineering,false -CaptainAyeAye,universeodon.com,Government & Policy,government_policy,false -CaptainAyeAye,universeodon.com,Healthcare,healthcare,false -CaptainAyeAye,universeodon.com,Humanities,humanities,false -CaptainAyeAye,universeodon.com,Law & Justice,law_justice,false -CaptainAyeAye,universeodon.com,Journalism & Comment,news_comment_data,false -CaptainAyeAye,universeodon.com,Philosophy,philosophy,false -CaptainAyeAye,universeodon.com,Politics,politics,false -CaptainAyeAye,universeodon.com,Science,science,false -CaptainAyeAye,universeodon.com,Social Sciences,social_sciences,false -CaptainAyeAye,universeodon.com,Technology,technology,false -CaptainAyeAye,universeodon.com,US Politics,us_politics,false -CaptainAyeAye,universeodon.com,Programming,programming,true -dob0,techhub.social,Business,business,false -dob0,techhub.social,Engineering,engineering,false -dob0,techhub.social,Markets & Finance,markets_finance,false -dob0,techhub.social,Programming,programming,false -aunghtetnay,newsmast.social,Academia & Research,academia_research,false -aunghtetnay,newsmast.social,AI,ai,false -aunghtetnay,newsmast.social,AI,ai,false -aunghtetnay,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false -aunghtetnay,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false -aunghtetnay,newsmast.social,Breaking News,breaking_news,false -aunghtetnay,newsmast.social,Breaking News,breaking_news,false -aunghtetnay,newsmast.social,Climate change,climate_change,false -aunghtetnay,newsmast.social,Climate change,climate_change,false -aunghtetnay,newsmast.social,Energy & Pollution,energy_pollution,false -aunghtetnay,newsmast.social,Energy & Pollution,energy_pollution,false -aunghtetnay,newsmast.social,Engineering,engineering,false -aunghtetnay,newsmast.social,Engineering,engineering,false -aunghtetnay,newsmast.social,Environment,environment,false -aunghtetnay,newsmast.social,Environment,environment,false -aunghtetnay,newsmast.social,Government & Policy,government_policy,false -aunghtetnay,newsmast.social,Government & Policy,government_policy,false -aunghtetnay,newsmast.social,Healthcare,healthcare,false -aunghtetnay,newsmast.social,Healthcare,healthcare,false -aunghtetnay,newsmast.social,Law & Justice,law_justice,false -aunghtetnay,newsmast.social,Law & Justice,law_justice,false -aunghtetnay,newsmast.social,Journalism & Comment,news_comment_data,false -aunghtetnay,newsmast.social,Journalism & Comment,news_comment_data,false -aunghtetnay,newsmast.social,Politics,politics,false -aunghtetnay,newsmast.social,Politics,politics,false -aunghtetnay,newsmast.social,Programming,programming,false -aunghtetnay,newsmast.social,Programming,programming,false -aunghtetnay,newsmast.social,Social Media,social_media,false -aunghtetnay,newsmast.social,Social Media,social_media,false -aunghtetnay,newsmast.social,Technology,technology,false -aunghtetnay,newsmast.social,Technology,technology,false -aunghtetnay,newsmast.social,Ukraine Invasion,ukraine_invasion,false -aunghtetnay,newsmast.social,US Politics,us_politics,false -aunghtetnay,newsmast.social,Ukraine Invasion,ukraine_invasion,false -aunghtetnay,newsmast.social,Weather,weather,false -aunghtetnay,newsmast.social,US Politics,us_politics,false -aunghtetnay,newsmast.social,Weather,weather,false -aunghtetnay,newsmast.social,Academia & Research,academia_research,true -tou89,mastodon.social,Football,football,false -tou89,mastodon.social,Humour,humour,false -tou89,mastodon.social,Pets,pets,false -tou89,mastodon.social,US Sport,us_sport,false -tou89,mastodon.social,Sport,sport,true -joaoalberto9009,bolha.us,Music,music,false -joaoalberto9009,bolha.us,Poverty & Inequality,poverty_inequality,false -joaoalberto9009,bolha.us,Science,science,false -joaoalberto9009,bolha.us,Social Media,social_media,false -joaoalberto9009,bolha.us,Space,space,false -joaoalberto9009,bolha.us,Technology,technology,false -joaoalberto9009,bolha.us,Visual Arts,visual_arts,false -joaoalberto9009,bolha.us,Movies,movies,true -rcg,twit.social,AI,ai,false -rcg,twit.social,Government & Policy,government_policy,false -rcg,twit.social,Journalism & Comment,news_comment_data,false -rcg,twit.social,Technology,technology,false -rcg,twit.social,Breaking News,breaking_news,true -sylphrenetic,newsmast.social,Academia & Research,academia_research,false -sylphrenetic,newsmast.social,Philosophy,philosophy,false -sylphrenetic,newsmast.social,Science,science,false -sylphrenetic,newsmast.social,Social Sciences,social_sciences,false -sylphrenetic,newsmast.social,Technology,technology,false -sylphrenetic,newsmast.social,US Politics,us_politics,false -sylphrenetic,newsmast.social,Programming,programming,true -John90,newsmast.social,Breaking News,breaking_news,false -John90,newsmast.social,Climate change,climate_change,false -John90,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -John90,newsmast.social,Environment,environment,false -John90,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,true -sev,newsmast.social,Philosophy,philosophy,false -Blacktiger,newsmast.social,Sport,sport,false -mauriciobc,ursal.zone,Creative Arts,creative_arts,false -schmegs,retro.pizza,Breaking News,breaking_news,false -schmegs,retro.pizza,Environment,environment,false -schmegs,retro.pizza,Movies,movies,false -schmegs,retro.pizza,Music,music,false -schmegs,retro.pizza,Performing Arts,performing_arts,false -schmegs,retro.pizza,Photography,photography,false -schmegs,retro.pizza,Science,science,false -schmegs,retro.pizza,Technology,technology,false -schmegs,retro.pizza,TV & Radio,tv_radio,true -mauriciobc,ursal.zone,Food & Drink,food_drink,false -mauriciobc,ursal.zone,Gaming,gaming,false -mauriciobc,ursal.zone,History,history,false -mauriciobc,ursal.zone,Humanities,humanities,false -Johan,newsmast.social,Academia & Research,academia_research,false -Johan,newsmast.social,Business,business,false -Johan,newsmast.social,Engineering,engineering,false -Johan,newsmast.social,Government & Policy,government_policy,false -Johan,newsmast.social,Healthcare,healthcare,false -Johan,newsmast.social,Law & Justice,law_justice,false -Johan,newsmast.social,Markets & Finance,markets_finance,false -Johan,newsmast.social,Politics,politics,false -Johan,newsmast.social,Programming,programming,false -Johan,newsmast.social,Technology,technology,false -Johan,newsmast.social,US Politics,us_politics,false -Johan,newsmast.social,Workers Rights,workers_rights,false -Johan,newsmast.social,AI,ai,true -tatkotel,newsmast.social,AI,ai,false -tatkotel,newsmast.social,Architecture & Design,architecture_design,false -tatkotel,newsmast.social,Books & Literature,books_literature,false -tatkotel,newsmast.social,Engineering,engineering,false -tatkotel,newsmast.social,Gaming,gaming,false -tatkotel,newsmast.social,Movies,movies,false -tatkotel,newsmast.social,Music,music,false -tatkotel,newsmast.social,Journalism & Comment,news_comment_data,false -tatkotel,newsmast.social,Performing Arts,performing_arts,false -tatkotel,newsmast.social,Photography,photography,false -tatkotel,newsmast.social,Programming,programming,false -tatkotel,newsmast.social,Social Media,social_media,false -tatkotel,newsmast.social,Technology,technology,false -tatkotel,newsmast.social,TV & Radio,tv_radio,false -tatkotel,newsmast.social,Ukraine Invasion,ukraine_invasion,false -tatkotel,newsmast.social,Visual Arts,visual_arts,false -tatkotel,newsmast.social,Weather,weather,false -tatkotel,newsmast.social,Breaking News,breaking_news,true -theridgebikedaily,mastodon.world,Books & Literature,books_literature,false -theridgebikedaily,mastodon.world,Humanities,humanities,false -theridgebikedaily,mastodon.world,Photography,photography,false -theridgebikedaily,mastodon.world,Technology,technology,false -theridgebikedaily,mastodon.world,Visual Arts,visual_arts,true -familyphysio,newsmast.social,Academia & Research,academia_research,false -familyphysio,newsmast.social,Breaking News,breaking_news,false -familyphysio,newsmast.social,Government & Policy,government_policy,false -familyphysio,newsmast.social,Healthcare,healthcare,false -familyphysio,newsmast.social,Journalism & Comment,news_comment_data,false -familyphysio,newsmast.social,Politics,politics,false -familyphysio,newsmast.social,Social Media,social_media,false -familyphysio,newsmast.social,Ukraine Invasion,ukraine_invasion,false -familyphysio,newsmast.social,US Politics,us_politics,false -familyphysio,newsmast.social,Weather,weather,false -familyphysio,newsmast.social,Law & Justice,law_justice,true -impactphysio,newsmast.social,Breaking News,breaking_news,false -impactphysio,newsmast.social,Journalism & Comment,news_comment_data,false -impactphysio,newsmast.social,Ukraine Invasion,ukraine_invasion,false -impactphysio,newsmast.social,Weather,weather,false -impactphysio,newsmast.social,Social Media,social_media,true -momentumphysio,newsmast.social,Journalism & Comment,news_comment_data,false -momentumphysio,newsmast.social,Social Media,social_media,false -momentumphysio,newsmast.social,Ukraine Invasion,ukraine_invasion,false -momentumphysio,newsmast.social,Weather,weather,false -momentumphysio,newsmast.social,Breaking News,breaking_news,true -junctionpoint,newsmast.social,AI,ai,false -junctionpoint,newsmast.social,Engineering,engineering,false -junctionpoint,newsmast.social,Football,football,false -junctionpoint,newsmast.social,Markets & Finance,markets_finance,false -junctionpoint,newsmast.social,Programming,programming,false -junctionpoint,newsmast.social,Sport,sport,false -junctionpoint,newsmast.social,Technology,technology,false -junctionpoint,newsmast.social,US Sport,us_sport,false -junctionpoint,newsmast.social,Workers Rights,workers_rights,false -junctionpoint,newsmast.social,Business,business,true -gppainphysio,newsmast.social,AI,ai,false -gppainphysio,newsmast.social,Engineering,engineering,false -gppainphysio,newsmast.social,Football,football,false -gppainphysio,newsmast.social,Markets & Finance,markets_finance,false -gppainphysio,newsmast.social,Programming,programming,false -gppainphysio,newsmast.social,Sport,sport,false -gppainphysio,newsmast.social,Technology,technology,false -gppainphysio,newsmast.social,US Sport,us_sport,false -gppainphysio,newsmast.social,Workers Rights,workers_rights,false -gppainphysio,newsmast.social,Business,business,true -emeraldphysio,newsmast.social,Breaking News,breaking_news,false -emeraldphysio,newsmast.social,Journalism & Comment,news_comment_data,false -emeraldphysio,newsmast.social,Social Media,social_media,false -emeraldphysio,newsmast.social,Weather,weather,false -emeraldphysio,newsmast.social,Ukraine Invasion,ukraine_invasion,true -physioedmonton,newsmast.social,Journalism & Comment,news_comment_data,false -physioedmonton,newsmast.social,Social Media,social_media,false -physioedmonton,newsmast.social,Ukraine Invasion,ukraine_invasion,false -physioedmonton,newsmast.social,Weather,weather,false -physioedmonton,newsmast.social,Breaking News,breaking_news,true -Blacktiger,newsmast.social,TV & Radio,tv_radio,false -Blacktiger,newsmast.social,Music,music,true -mauriciobc,ursal.zone,Movies,movies,false -mauriciobc,ursal.zone,Music,music,false -sunrisephysio,newsmast.social,Football,football,false -sunrisephysio,newsmast.social,History,history,false -sunrisephysio,newsmast.social,Humanities,humanities,false -sunrisephysio,newsmast.social,Markets & Finance,markets_finance,false -sunrisephysio,newsmast.social,Philosophy,philosophy,false -sunrisephysio,newsmast.social,Social Sciences,social_sciences,false -sunrisephysio,newsmast.social,Sport,sport,false -sunrisephysio,newsmast.social,US Sport,us_sport,false -sunrisephysio,newsmast.social,Workers Rights,workers_rights,false -sunrisephysio,newsmast.social,Business,business,true -mauriciobc,ursal.zone,Pets,pets,false -mauriciobc,ursal.zone,Philosophy,philosophy,false -mauriciobc,ursal.zone,Photography,photography,false -mauriciobc,ursal.zone,Programming,programming,false -mauriciobc,ursal.zone,Science,science,false -mauriciobc,ursal.zone,Social Sciences,social_sciences,false -mauriciobc,ursal.zone,Space,space,false -mauriciobc,ursal.zone,Technology,technology,false -mauriciobc,ursal.zone,TV & Radio,tv_radio,false -mauriciobc,ursal.zone,Football,football,true -mathewi,journa.host,Breaking News,breaking_news,false -mathewi,journa.host,Climate change,climate_change,false -mathewi,journa.host,Democracy & Human Rights,democracy_human_rights,false -mathewi,journa.host,History,history,false -mathewi,journa.host,Humanities,humanities,false -mathewi,journa.host,"Hunger, Disease & Water",hunger_disease_water,false -mathewi,journa.host,Indigenous Peoples,indigenous_peoples,false -nexstepphysio,newsmast.social,Business,business,false -nexstepphysio,newsmast.social,Markets & Finance,markets_finance,false -nexstepphysio,newsmast.social,Journalism & Comment,news_comment_data,false -nexstepphysio,newsmast.social,Social Media,social_media,false -nexstepphysio,newsmast.social,Ukraine Invasion,ukraine_invasion,false -nexstepphysio,newsmast.social,Weather,weather,false -nexstepphysio,newsmast.social,Workers Rights,workers_rights,false -nexstepphysio,newsmast.social,Breaking News,breaking_news,true -healthylifetips,newsmast.social,Social Media,social_media,false -mathewi,journa.host,Markets & Finance,markets_finance,false -mathewi,journa.host,Music,music,false -mathewi,journa.host,Journalism & Comment,news_comment_data,false -mathewi,journa.host,Philosophy,philosophy,false -mathewi,journa.host,Photography,photography,false -mathewi,journa.host,Physics,physics,false -mathewi,journa.host,Poverty & Inequality,poverty_inequality,false -yesterdaybye777,mastodon.social,Business,business,false -yesterdaybye777,mastodon.social,Humanities,humanities,false -yesterdaybye777,mastodon.social,Philosophy,philosophy,false -yesterdaybye777,mastodon.social,Science,science,false -yesterdaybye777,mastodon.social,Social Sciences,social_sciences,false -yesterdaybye777,mastodon.social,History,history,true -mathewi,journa.host,Science,science,false -mathewi,journa.host,Social Media,social_media,false -mathewi,journa.host,Social Sciences,social_sciences,false -mathewi,journa.host,Space,space,false -mathewi,journa.host,US Politics,us_politics,false -mathewi,journa.host,Women’s Voices,women_voices,false -mathewi,journa.host,Technology,technology,true -dob0,techhub.social,Technology,technology,false -dob0,techhub.social,Workers Rights,workers_rights,false -dob0,techhub.social,AI,ai,true -egc25,newsmast.social,Architecture & Design,architecture_design,false -egc25,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false -egc25,newsmast.social,Black Voices,black_voices,false -egc25,newsmast.social,Books & Literature,books_literature,false -kkobo,mastodon.social,Breaking News,breaking_news,false -kkobo,mastodon.social,Business,business,false -kkobo,mastodon.social,Markets & Finance,markets_finance,false -kkobo,mastodon.social,Programming,programming,false -kkobo,mastodon.social,Technology,technology,true -gbrrrl,mas.to,Architecture & Design,architecture_design,false -gbrrrl,mas.to,Mental Health & Wellbeing,mental_health_wellbeing,false -sigimund,101010.pl,Books & Literature,books_literature,false -sigimund,101010.pl,Breaking News,breaking_news,false -sigimund,101010.pl,Sport,sport,false -sigimund,101010.pl,Technology,technology,false -sigimund,101010.pl,Journalism & Comment,news_comment_data,true -sassyboi,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -sassyboi,newsmast.social,Government & Policy,government_policy,false -sassyboi,newsmast.social,Journalism & Comment,news_comment_data,false -sassyboi,newsmast.social,Poverty & Inequality,poverty_inequality,false -chafafa,newsmast.social,AI,ai,false -chafafa,newsmast.social,Architecture & Design,architecture_design,false -chafafa,newsmast.social,Books & Literature,books_literature,false -chafafa,newsmast.social,Chemistry,chemistry,false -chafafa,newsmast.social,Engineering,engineering,false -chafafa,newsmast.social,History,history,false -chafafa,newsmast.social,Humanities,humanities,false -chafafa,newsmast.social,Mathematics,mathematics,false -chafafa,newsmast.social,Philosophy,philosophy,false -chafafa,newsmast.social,Photography,photography,false -chafafa,newsmast.social,Physics,physics,false -chafafa,newsmast.social,Programming,programming,false -chafafa,newsmast.social,Science,science,false -chafafa,newsmast.social,Technology,technology,false -chafafa,newsmast.social,TV & Radio,tv_radio,false -chafafa,newsmast.social,Visual Arts,visual_arts,false -chafafa,newsmast.social,Weather,weather,false -chafafa,newsmast.social,Breaking News,breaking_news,true -captnmnemo,newsmast.social,AI,ai,false -captnmnemo,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false -captnmnemo,newsmast.social,Books & Literature,books_literature,false -captnmnemo,newsmast.social,Gaming,gaming,false -captnmnemo,newsmast.social,Journalism & Comment,news_comment_data,false -captnmnemo,newsmast.social,Programming,programming,false -captnmnemo,newsmast.social,Science,science,false -captnmnemo,newsmast.social,Visual Arts,visual_arts,false -captnmnemo,newsmast.social,Women’s Voices,women_voices,false -captnmnemo,newsmast.social,Disabled Voices,disabled_voices,true -Kira,hear-me.social,Architecture & Design,architecture_design,false -Kira,hear-me.social,Books & Literature,books_literature,false -Kira,hear-me.social,Breaking News,breaking_news,false -Kira,hear-me.social,Gaming,gaming,false -Kira,hear-me.social,History,history,false -Kira,hear-me.social,Humanities,humanities,false -Kira,hear-me.social,Movies,movies,false -Kira,hear-me.social,Music,music,false -Kira,hear-me.social,Journalism & Comment,news_comment_data,false -Kira,hear-me.social,Performing Arts,performing_arts,false -GuyDudeman,beige.party,Creative Arts,creative_arts,true -egc25,newsmast.social,Breaking News,breaking_news,false -rydercashnews,newsmast.social,Activism & Civil Rights,activism_civil_rights,false -rydercashnews,newsmast.social,AI,ai,false -rydercashnews,newsmast.social,Engineering,engineering,false -rydercashnews,newsmast.social,Programming,programming,false -rydercashnews,newsmast.social,Technology,technology,false -rydercashnews,newsmast.social,Law & Justice,law_justice,true -egc25,newsmast.social,Climate change,climate_change,false -Kira,hear-me.social,Philosophy,philosophy,false -egc25,newsmast.social,Disabled Voices,disabled_voices,false -egc25,newsmast.social,Energy & Pollution,energy_pollution,false -emsquared,mastodon.social,Books & Literature,books_literature,false -egc25,newsmast.social,Environment,environment,false -GuyDudeman,beige.party,Academia & Research,academia_research,false -GuyDudeman,beige.party,Activism & Civil Rights,activism_civil_rights,false -GuyDudeman,beige.party,Architecture & Design,architecture_design,false -GuyDudeman,beige.party,Biodiversity & Rewilding,biodiversity_rewilding,false -Levi1594,mastodon.social,Breaking News,breaking_news,false -Levi1594,mastodon.social,Government & Policy,government_policy,false -Levi1594,mastodon.social,Journalism & Comment,news_comment_data,false -Levi1594,mastodon.social,Social Media,social_media,false -Levi1594,mastodon.social,Technology,technology,true -06fxsts,mastodon.online,Humour,humour,false -healthylifetips,newsmast.social,Climate change,climate_change,false -GuyDudeman,beige.party,Biology,biology,false -GuyDudeman,beige.party,Breaking News,breaking_news,false -GuyDudeman,beige.party,Climate change,climate_change,false -GuyDudeman,beige.party,Democracy & Human Rights,democracy_human_rights,false -GuyDudeman,beige.party,Energy & Pollution,energy_pollution,false -GuyDudeman,beige.party,Engineering,engineering,false -GuyDudeman,beige.party,Environment,environment,false -GuyDudeman,beige.party,Government & Policy,government_policy,false -GuyDudeman,beige.party,Healthcare,healthcare,false -GuyDudeman,beige.party,History,history,false -GuyDudeman,beige.party,Humanities,humanities,false -GuyDudeman,beige.party,Humour,humour,false -GuyDudeman,beige.party,"Hunger, Disease & Water",hunger_disease_water,false -egc25,newsmast.social,Gaming,gaming,false -egc25,newsmast.social,Government & Policy,government_policy,false -egc25,newsmast.social,Healthcare,healthcare,false -egc25,newsmast.social,History,history,false -egc25,newsmast.social,Humanities,humanities,false -egc25,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false -egc25,newsmast.social,Immigrants Rights,immigrants_rights,false -egc25,newsmast.social,Indigenous Peoples,indigenous_peoples,false -egc25,newsmast.social,LGBTQ+,lgbtq,false -egc25,newsmast.social,Journalism & Comment,news_comment_data,false -egc25,newsmast.social,Philosophy,philosophy,false -egc25,newsmast.social,Photography,photography,false -egc25,newsmast.social,Poverty & Inequality,poverty_inequality,false -egc25,newsmast.social,Social Media,social_media,false -egc25,newsmast.social,Social Sciences,social_sciences,false -egc25,newsmast.social,Ukraine Invasion,ukraine_invasion,false -egc25,newsmast.social,Weather,weather,false -Kira,hear-me.social,Photography,photography,false -Kira,hear-me.social,Social Sciences,social_sciences,false -Kira,hear-me.social,TV & Radio,tv_radio,false -Kira,hear-me.social,Ukraine Invasion,ukraine_invasion,false -Kira,hear-me.social,Visual Arts,visual_arts,false -Kira,hear-me.social,Weather,weather,false -Kira,hear-me.social,Social Media,social_media,true +thosgood,newsmast.social,Social Sciences,social_sciences,false +thosgood,newsmast.social,Books & Literature,books_literature,false +thosgood,newsmast.social,History,history,false +thosgood,newsmast.social,Humanities,humanities,false +thosgood,newsmast.social,Mathematics,mathematics,true +thosgood,newsmast.social,Philosophy,philosophy,false +theblogofdimi,newsmast.social,US Politics,us_politics,false +theblogofdimi,newsmast.social,Weather,weather,false +theblogofdimi,newsmast.social,History,history,true +theblogofdimi,newsmast.social,AI,ai,false +theblogofdimi,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false +theblogofdimi,newsmast.social,Biology,biology,false +theblogofdimi,newsmast.social,Books & Literature,books_literature,false +theblogofdimi,newsmast.social,Breaking News,breaking_news,false +theblogofdimi,newsmast.social,Business,business,false +theblogofdimi,newsmast.social,Chemistry,chemistry,false +theblogofdimi,newsmast.social,Climate change,climate_change,false +theblogofdimi,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +theblogofdimi,newsmast.social,Energy & Pollution,energy_pollution,false +theblogofdimi,newsmast.social,Engineering,engineering,false +theblogofdimi,newsmast.social,Environment,environment,false +theblogofdimi,newsmast.social,Government & Policy,government_policy,false +theblogofdimi,newsmast.social,Humanities,humanities,false +theblogofdimi,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false +theblogofdimi,newsmast.social,Law & Justice,law_justice,false +theblogofdimi,newsmast.social,Markets & Finance,markets_finance,false +theblogofdimi,newsmast.social,Mathematics,mathematics,false +theblogofdimi,newsmast.social,Music,music,false +theblogofdimi,newsmast.social,Journalism & Comment,news_comment_data,false +theblogofdimi,newsmast.social,Philosophy,philosophy,false +theblogofdimi,newsmast.social,Photography,photography,false +theblogofdimi,newsmast.social,Physics,physics,false +theblogofdimi,newsmast.social,Politics,politics,false +theblogofdimi,newsmast.social,Poverty & Inequality,poverty_inequality,false +theblogofdimi,newsmast.social,Science,science,false +theblogofdimi,newsmast.social,Social Media,social_media,false +theblogofdimi,newsmast.social,Social Sciences,social_sciences,false +theblogofdimi,newsmast.social,Space,space,false +theblogofdimi,newsmast.social,Technology,technology,false +theblogofdimi,newsmast.social,Ukraine Invasion,ukraine_invasion,false +bryancollins,newsmast.social,Markets & Finance,markets_finance,false +bryancollins,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false +bryancollins,newsmast.social,Movies,movies,false +bryancollins,newsmast.social,Music,music,false +bryancollins,newsmast.social,Nature & Wildlife,nature_wildlife,false +bryancollins,newsmast.social,Performing Arts,performing_arts,false +bryancollins,newsmast.social,Pets,pets,false +bryancollins,newsmast.social,Architecture & Design,architecture_design,false +bryancollins,newsmast.social,Photography,photography,false +bryancollins,newsmast.social,Books & Literature,books_literature,true +bryancollins,newsmast.social,Puzzles,puzzles,false +bryancollins,newsmast.social,Travel,travel,false +bryancollins,newsmast.social,Business,business,false +bryancollins,newsmast.social,TV & Radio,tv_radio,false +bryancollins,newsmast.social,Creative Arts,creative_arts,false +bryancollins,newsmast.social,Visual Arts,visual_arts,false +bryancollins,newsmast.social,Workers Rights,workers_rights,false +bryancollins,newsmast.social,Food & Drink,food_drink,false +bryancollins,newsmast.social,Gaming,gaming,false +bryancollins,newsmast.social,Humour,humour,false +bryancollins,newsmast.social,Markets & Finance,markets_finance,false +bryancollins,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false +bryancollins,newsmast.social,Movies,movies,false +bryancollins,newsmast.social,Music,music,false +bryancollins,newsmast.social,Nature & Wildlife,nature_wildlife,false +bryancollins,newsmast.social,Performing Arts,performing_arts,false +bryancollins,newsmast.social,Pets,pets,false +bryancollins,newsmast.social,Photography,photography,false +bryancollins,newsmast.social,Puzzles,puzzles,false +bryancollins,newsmast.social,Travel,travel,false +bryancollins,newsmast.social,TV & Radio,tv_radio,false +bryancollins,newsmast.social,Visual Arts,visual_arts,false +bryancollins,newsmast.social,Workers Rights,workers_rights,false +adanvers,newsmast.social,Academia & Research,academia_research,false +adanvers,newsmast.social,Biology,biology,false +adanvers,newsmast.social,Breaking News,breaking_news,false +adanvers,newsmast.social,Climate change,climate_change,false +adanvers,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +adanvers,newsmast.social,Government & Policy,government_policy,false +adanvers,newsmast.social,Healthcare,healthcare,false +adanvers,newsmast.social,History,history,false +adanvers,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false +adanvers,newsmast.social,Law & Justice,law_justice,false +adanvers,newsmast.social,Journalism & Comment,news_comment_data,false +adanvers,newsmast.social,Philosophy,philosophy,false +adanvers,newsmast.social,Politics,politics,false +adanvers,newsmast.social,Poverty & Inequality,poverty_inequality,false +adanvers,newsmast.social,Science,science,false +adanvers,newsmast.social,Technology,technology,false +adanvers,newsmast.social,US Politics,us_politics,false +adanvers,newsmast.social,Social Sciences,social_sciences,true +paing89,newsmast.social,Breaking News,breaking_news,true +paing89,newsmast.social,Journalism & Comment,news_comment_data,false +paing89,newsmast.social,Social Media,social_media,false +paing89,newsmast.social,Technology,technology,false +paing89,newsmast.social,Ukraine Invasion,ukraine_invasion,false +paing89,newsmast.social,Weather,weather,false +DemocracyAlarm,newsmast.social,Activism & Civil Rights,activism_civil_rights,false +DemocracyAlarm,newsmast.social,Breaking News,breaking_news,false +DemocracyAlarm,newsmast.social,Government & Policy,government_policy,false +DemocracyAlarm,newsmast.social,Law & Justice,law_justice,false +DemocracyAlarm,newsmast.social,Journalism & Comment,news_comment_data,true +DemocracyAlarm,newsmast.social,Social Media,social_media,false +DemocracyAlarm,newsmast.social,US Politics,us_politics,false +ekonomism,newsmast.social,Breaking News,breaking_news,true +ekonomism,newsmast.social,Government & Policy,government_policy,false +ekonomism,newsmast.social,Healthcare,healthcare,false +ekonomism,newsmast.social,Politics,politics,false +ekonomism,newsmast.social,Social Sciences,social_sciences,false +ekonomism,newsmast.social,Ukraine Invasion,ukraine_invasion,false +ekaasha,newsmast.social,AI,ai,false +ekaasha,newsmast.social,Business,business,false +ekaasha,newsmast.social,Creative Arts,creative_arts,false +ekaasha,newsmast.social,Engineering,engineering,false +ekaasha,newsmast.social,Food & Drink,food_drink,false +ekaasha,newsmast.social,Humour,humour,false +ekaasha,newsmast.social,Markets & Finance,markets_finance,true +ekaasha,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false +ekaasha,newsmast.social,Nature & Wildlife,nature_wildlife,false +ekaasha,newsmast.social,Pets,pets,false +ekaasha,newsmast.social,Programming,programming,false +ekaasha,newsmast.social,Puzzles,puzzles,false +ekaasha,newsmast.social,Technology,technology,false +ekaasha,newsmast.social,Travel,travel,false +ekaasha,newsmast.social,Workers Rights,workers_rights,false +Thiha,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false +Thiha,newsmast.social,AI,ai,false +Thiha,newsmast.social,Architecture & Design,architecture_design,false +Thiha,newsmast.social,Creative Arts,creative_arts,false +Thiha,newsmast.social,Food & Drink,food_drink,false +Thiha,newsmast.social,Football,football,false +Thiha,newsmast.social,Gaming,gaming,false +Thiha,newsmast.social,Humour,humour,false +Thiha,newsmast.social,Movies,movies,false +Thiha,newsmast.social,Music,music,false +Thiha,newsmast.social,Nature & Wildlife,nature_wildlife,false +Thiha,newsmast.social,Journalism & Comment,news_comment_data,false +Thiha,newsmast.social,Performing Arts,performing_arts,false +Thiha,newsmast.social,Pets,pets,false +Thiha,newsmast.social,Photography,photography,false +Thiha,newsmast.social,Politics,politics,false +Thiha,newsmast.social,Puzzles,puzzles,false +Thiha,newsmast.social,Social Sciences,social_sciences,false +Thiha,newsmast.social,Sport,sport,false +Thiha,newsmast.social,Technology,technology,true +Thiha,newsmast.social,Travel,travel,false +Thiha,newsmast.social,TV & Radio,tv_radio,false +Thiha,newsmast.social,Ukraine Invasion,ukraine_invasion,false +Thiha,newsmast.social,Visual Arts,visual_arts,false +Thiha,newsmast.social,Weather,weather,false +EMcParland,newsmast.social,Breaking News,breaking_news,false +EMcParland,newsmast.social,Government & Policy,government_policy,false +EMcParland,newsmast.social,Journalism & Comment,news_comment_data,false +EMcParland,newsmast.social,Politics,politics,false +EMcParland,newsmast.social,Social Media,social_media,false +EMcParland,newsmast.social,Ukraine Invasion,ukraine_invasion,true +PowellsParadigm,newsmast.social,Energy & Pollution,energy_pollution,false +PowellsParadigm,newsmast.social,AI,ai,false +PowellsParadigm,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false +PowellsParadigm,newsmast.social,Climate change,climate_change,false +PowellsParadigm,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +PowellsParadigm,newsmast.social,Environment,environment,false +PowellsParadigm,newsmast.social,History,history,false +PowellsParadigm,newsmast.social,Humanities,humanities,false +PowellsParadigm,newsmast.social,Journalism & Comment,news_comment_data,false +PowellsParadigm,newsmast.social,Philosophy,philosophy,false +PowellsParadigm,newsmast.social,Programming,programming,false +PowellsParadigm,newsmast.social,Science,science,false +PowellsParadigm,newsmast.social,Social Sciences,social_sciences,false +PowellsParadigm,newsmast.social,Space,space,false +PowellsParadigm,newsmast.social,Technology,technology,false +PowellsParadigm,newsmast.social,Ukraine Invasion,ukraine_invasion,false +PowellsParadigm,newsmast.social,Breaking News,breaking_news,true +ericovarjao,newsmast.social,AI,ai,false +ericovarjao,newsmast.social,Architecture & Design,architecture_design,false +ericovarjao,newsmast.social,Books & Literature,books_literature,false +ericovarjao,newsmast.social,Business,business,false +ericovarjao,newsmast.social,Creative Arts,creative_arts,false +ericovarjao,newsmast.social,Energy & Pollution,energy_pollution,false +ericovarjao,newsmast.social,Food & Drink,food_drink,false +ericovarjao,newsmast.social,History,history,false +ericovarjao,newsmast.social,Humanities,humanities,false +ericovarjao,newsmast.social,Law & Justice,law_justice,true +ericovarjao,newsmast.social,Markets & Finance,markets_finance,false +ericovarjao,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false +ericovarjao,newsmast.social,Movies,movies,false +ericovarjao,newsmast.social,Music,music,false +ericovarjao,newsmast.social,Philosophy,philosophy,false +ericovarjao,newsmast.social,Politics,politics,false +ericovarjao,newsmast.social,Social Sciences,social_sciences,false +ericovarjao,newsmast.social,Technology,technology,false +ericovarjao,newsmast.social,TV & Radio,tv_radio,false +ericovarjao,newsmast.social,Visual Arts,visual_arts,false +parben,newsmast.social,Breaking News,breaking_news,true +parben,newsmast.social,Journalism & Comment,news_comment_data,false +parben,newsmast.social,Social Media,social_media,false +parben,newsmast.social,Ukraine Invasion,ukraine_invasion,false +parben,newsmast.social,Weather,weather,false +sassyboi,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +sassyboi,newsmast.social,Government & Policy,government_policy,false +sassyboi,newsmast.social,Journalism & Comment,news_comment_data,false +sassyboi,newsmast.social,Poverty & Inequality,poverty_inequality,false sassyboi,newsmast.social,Breaking News,breaking_news,true -egc25,newsmast.social,Women’s Voices,women_voices,false -egc25,newsmast.social,Democracy & Human Rights,democracy_human_rights,true -AlexiaPonchet,newsmast.social,Environment,environment,false -AlexiaPonchet,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false -antix7602,antix7602@mastodon.social,AI,ai,false -antix7602,antix7602@mastodon.social,Physics,physics,false -antix7602,antix7602@mastodon.social,Space,space,false -antix7602,antix7602@mastodon.social,Weather,weather,false -antix7602,antix7602@mastodon.social,Technology,technology,true -hanubeki,fedibird.com,Engineering,engineering,false -hanubeki,fedibird.com,Programming,programming,false -hanubeki,fedibird.com,Space,space,false -hanubeki,fedibird.com,Weather,weather,false -hanubeki,fedibird.com,Technology,technology,true -OurSkyHaven,newsmast.social,Architecture & Design,architecture_design,false -OurSkyHaven,newsmast.social,Books & Literature,books_literature,false -OurSkyHaven,newsmast.social,Breaking News,breaking_news,false -OurSkyHaven,newsmast.social,Gaming,gaming,false -OurSkyHaven,newsmast.social,Movies,movies,false -OurSkyHaven,newsmast.social,Music,music,false -OurSkyHaven,newsmast.social,Performing Arts,performing_arts,false -OurSkyHaven,newsmast.social,Photography,photography,false -OurSkyHaven,newsmast.social,Sport,sport,false -OurSkyHaven,newsmast.social,TV & Radio,tv_radio,false -OurSkyHaven,newsmast.social,US Sport,us_sport,false -OurSkyHaven,newsmast.social,Visual Arts,visual_arts,false -OurSkyHaven,newsmast.social,Football,football,true -mrnail,mastodon.social,Activism & Civil Rights,activism_civil_rights,false -mrnail,mastodon.social,Biology,biology,false -mrnail,mastodon.social,Chemistry,chemistry,false -mrnail,mastodon.social,Climate change,climate_change,false -mrnail,mastodon.social,History,history,false -mrnail,mastodon.social,Humanities,humanities,false -mrnail,mastodon.social,Immigrants Rights,immigrants_rights,false -mrnail,mastodon.social,Indigenous Peoples,indigenous_peoples,false -mrnail,mastodon.social,Mathematics,mathematics,false -mrnail,mastodon.social,Journalism & Comment,news_comment_data,false -mrnail,mastodon.social,Philosophy,philosophy,false -mrnail,mastodon.social,Physics,physics,false -mrnail,mastodon.social,Politics,politics,false -mrnail,mastodon.social,Poverty & Inequality,poverty_inequality,false -mrnail,mastodon.social,Programming,programming,false -mrnail,mastodon.social,Science,science,false -mrnail,mastodon.social,Social Sciences,social_sciences,false -mrnail,mastodon.social,Space,space,false -mrnail,mastodon.social,Technology,technology,false -mrnail,mastodon.social,Democracy & Human Rights,democracy_human_rights,true -BobH,newsmast.social,Journalism & Comment,news_comment_data,false -BobH,newsmast.social,Social Media,social_media,false -BobH,newsmast.social,Ukraine Invasion,ukraine_invasion,false -BobH,newsmast.social,Weather,weather,false -BobH,newsmast.social,Breaking News,breaking_news,true -internetross,social.coop,Biodiversity & Rewilding,biodiversity_rewilding,true -physioemerald,newsmast.social,Biology,biology,false -physioemerald,newsmast.social,Creative Arts,creative_arts,false -physioemerald,newsmast.social,Food & Drink,food_drink,false -physioemerald,newsmast.social,Football,football,false -physioemerald,newsmast.social,History,history,false -physioemerald,newsmast.social,Humanities,humanities,false -physioemerald,newsmast.social,Humour,humour,false -physioemerald,newsmast.social,Mathematics,mathematics,false -physioemerald,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false -physioemerald,newsmast.social,Nature & Wildlife,nature_wildlife,false -physioemerald,newsmast.social,Pets,pets,false -physioemerald,newsmast.social,Philosophy,philosophy,false -physioemerald,newsmast.social,Physics,physics,false -physioemerald,newsmast.social,Puzzles,puzzles,false -physioemerald,newsmast.social,Science,science,false -physioemerald,newsmast.social,Social Sciences,social_sciences,false -physioemerald,newsmast.social,Space,space,false -physioemerald,newsmast.social,Sport,sport,false -physioemerald,newsmast.social,Travel,travel,false -physioemerald,newsmast.social,US Sport,us_sport,false -physioemerald,newsmast.social,Chemistry,chemistry,true -internetross,social.coop,Activism & Civil Rights,activism_civil_rights,false -internetross,social.coop,Engineering,engineering,false -internetross,social.coop,Gaming,gaming,false -internetross,social.coop,Music,music,false -internetross,social.coop,Programming,programming,false -internetross,social.coop,Technology,technology,false -internetross,social.coop,Visual Arts,visual_arts,false -Kitchensimply,mastodon.social,Business,business,false -Kitchensimply,mastodon.social,Humanities,humanities,false -Kitchensimply,mastodon.social,Markets & Finance,markets_finance,false -Kitchensimply,mastodon.social,Social Sciences,social_sciences,false -Kitchensimply,mastodon.social,Workers Rights,workers_rights,false -Kitchensimply,mastodon.social,History,history,true -ritesh,newsmast.social,Biology,biology,false -ritesh,newsmast.social,Food & Drink,food_drink,false -ritesh,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false -ritesh,newsmast.social,Social Media,social_media,false -ritesh,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,true -AlexiaPonchet,newsmast.social,Poverty & Inequality,poverty_inequality,false -AlexiaPonchet,newsmast.social,Technology,technology,false -AlexiaPonchet,newsmast.social,Architecture & Design,architecture_design,false -AlexiaPonchet,newsmast.social,TV & Radio,tv_radio,false -AlexiaPonchet,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false -AlexiaPonchet,newsmast.social,Puzzles,puzzles,false -AlexiaPonchet,newsmast.social,Energy & Pollution,energy_pollution,false -BlesthThySoul,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -BlesthThySoul,newsmast.social,Government & Policy,government_policy,false -BlesthThySoul,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false -BlesthThySoul,newsmast.social,Law & Justice,law_justice,false -BlesthThySoul,newsmast.social,Journalism & Comment,news_comment_data,false -BlesthThySoul,newsmast.social,Politics,politics,false -BlesthThySoul,newsmast.social,Poverty & Inequality,poverty_inequality,false -BlesthThySoul,newsmast.social,Ukraine Invasion,ukraine_invasion,false -BlesthThySoul,newsmast.social,US Politics,us_politics,false -BlesthThySoul,newsmast.social,Breaking News,breaking_news,true -BlesthThySoul,newsmast.social,Programming,programming,false -sarampion,masto.es,Visual Arts,visual_arts,true -sarampion,masto.es,Government & Policy,government_policy,false -sarampion,masto.es,Biodiversity & Rewilding,biodiversity_rewilding,false -sarampion,masto.es,Climate change,climate_change,false -sarampion,masto.es,Energy & Pollution,energy_pollution,false -tkruck6,newsmast.social,Mathematics,mathematics,false -tkruck6,newsmast.social,Physics,physics,false -tkruck6,newsmast.social,Politics,politics,false -tkruck6,newsmast.social,Programming,programming,false -tkruck6,newsmast.social,Science,science,false -tkruck6,newsmast.social,Space,space,false -tkruck6,newsmast.social,Technology,technology,false -tkruck6,newsmast.social,Weather,weather,false -tkruck6,newsmast.social,Social Media,social_media,true -martin3456,newsmast.social,Architecture & Design,architecture_design,false -martin3456,newsmast.social,Biology,biology,false -martin3456,newsmast.social,Books & Literature,books_literature,false -martin3456,newsmast.social,Breaking News,breaking_news,false -martin3456,newsmast.social,Business,business,false -martin3456,newsmast.social,Chemistry,chemistry,false -martin3456,newsmast.social,Creative Arts,creative_arts,false -martin3456,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -martin3456,newsmast.social,Food & Drink,food_drink,false -martin3456,newsmast.social,Football,football,false -martin3456,newsmast.social,Gaming,gaming,false -martin3456,newsmast.social,History,history,false -martin3456,newsmast.social,Humanities,humanities,false -martin3456,newsmast.social,Humour,humour,false -martin3456,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false -martin3456,newsmast.social,Markets & Finance,markets_finance,false -martin3456,newsmast.social,Mathematics,mathematics,false -martin3456,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false -martin3456,newsmast.social,Movies,movies,false -martin3456,newsmast.social,Music,music,false -martin3456,newsmast.social,Nature & Wildlife,nature_wildlife,false -martin3456,newsmast.social,Journalism & Comment,news_comment_data,false -martin3456,newsmast.social,Performing Arts,performing_arts,false -martin3456,newsmast.social,Pets,pets,false -martin3456,newsmast.social,Philosophy,philosophy,false -martin3456,newsmast.social,Photography,photography,false -martin3456,newsmast.social,Physics,physics,false -martin3456,newsmast.social,Poverty & Inequality,poverty_inequality,false -martin3456,newsmast.social,Puzzles,puzzles,false -martin3456,newsmast.social,Science,science,false -martin3456,newsmast.social,Social Media,social_media,false -martin3456,newsmast.social,Social Sciences,social_sciences,false -martin3456,newsmast.social,Space,space,false -martin3456,newsmast.social,Sport,sport,false -martin3456,newsmast.social,Travel,travel,false -martin3456,newsmast.social,TV & Radio,tv_radio,false -martin3456,newsmast.social,Ukraine Invasion,ukraine_invasion,false -martin3456,newsmast.social,US Sport,us_sport,false -martin3456,newsmast.social,Visual Arts,visual_arts,false -martin3456,newsmast.social,Weather,weather,false -martin3456,newsmast.social,Workers Rights,workers_rights,true -nicholasyliu,mastodon.social,Architecture & Design,architecture_design,false -nicholasyliu,mastodon.social,Books & Literature,books_literature,false -nicholasyliu,mastodon.social,Creative Arts,creative_arts,false -nicholasyliu,mastodon.social,Democracy & Human Rights,democracy_human_rights,false -nicholasyliu,mastodon.social,Food & Drink,food_drink,false -nicholasyliu,mastodon.social,Government & Policy,government_policy,false -nicholasyliu,mastodon.social,Humour,humour,false -nicholasyliu,mastodon.social,Law & Justice,law_justice,false -nicholasyliu,mastodon.social,Movies,movies,false -nicholasyliu,mastodon.social,Music,music,false -nicholasyliu,mastodon.social,Nature & Wildlife,nature_wildlife,false -nicholasyliu,mastodon.social,Journalism & Comment,news_comment_data,false -nicholasyliu,mastodon.social,Performing Arts,performing_arts,false -nicholasyliu,mastodon.social,Pets,pets,false -nicholasyliu,mastodon.social,Photography,photography,false -nicholasyliu,mastodon.social,Politics,politics,false -nicholasyliu,mastodon.social,Poverty & Inequality,poverty_inequality,false -nicholasyliu,mastodon.social,Social Media,social_media,false -nicholasyliu,mastodon.social,Breaking News,breaking_news,true -nicholasyliu,mastodon.social,Travel,travel,false -nicholasyliu,mastodon.social,US Politics,us_politics,false -nicholasyliu,mastodon.social,Visual Arts,visual_arts,false -AlexiaPonchet,newsmast.social,Gaming,gaming,false -AlexiaPonchet,newsmast.social,Music,music,false -AlexiaPonchet,newsmast.social,Creative Arts,creative_arts,false -AlexiaPonchet,newsmast.social,Pets,pets,false -AlexiaPonchet,newsmast.social,Engineering,engineering,false -vimalgoel,sfba.social,Environment,environment,false -vimalgoel,sfba.social,Humour,humour,false -vimalgoel,sfba.social,Indigenous Peoples,indigenous_peoples,false -vimalgoel,sfba.social,Movies,movies,false -vimalgoel,sfba.social,TV & Radio,tv_radio,false -vimalgoel,sfba.social,Breaking News,breaking_news,true -fotiskarioris,mastodon.social,Disabled Voices,disabled_voices,true -desertdog,mastoart.social,Architecture & Design,architecture_design,false -desertdog,mastoart.social,Books & Literature,books_literature,false -desertdog,mastoart.social,Democracy & Human Rights,democracy_human_rights,false -desertdog,mastoart.social,History,history,false -desertdog,mastoart.social,Humanities,humanities,false -desertdog,mastoart.social,Music,music,false -desertdog,mastoart.social,Journalism & Comment,news_comment_data,false -desertdog,mastoart.social,Performing Arts,performing_arts,false -desertdog,mastoart.social,Philosophy,philosophy,false -desertdog,mastoart.social,Photography,photography,false -desertdog,mastoart.social,Politics,politics,false -desertdog,mastoart.social,Social Sciences,social_sciences,false -desertdog,mastoart.social,TV & Radio,tv_radio,false -desertdog,mastoart.social,Visual Arts,visual_arts,false -josaimaging,newsmast.social,AI,ai,false -josaimaging,newsmast.social,Engineering,engineering,false -josaimaging,newsmast.social,Markets & Finance,markets_finance,false -josaimaging,newsmast.social,Programming,programming,false -josaimaging,newsmast.social,Technology,technology,false -josaimaging,newsmast.social,Workers Rights,workers_rights,false -josaimaging,newsmast.social,Business,business,true -desertdog,mastoart.social,Movies,movies,true -stepwinder,newsie.social,Breaking News,breaking_news,false -stepwinder,newsie.social,Government & Policy,government_policy,false -stepwinder,newsie.social,History,history,false -stepwinder,newsie.social,Law & Justice,law_justice,false -stepwinder,newsie.social,Philosophy,philosophy,false -stepwinder,newsie.social,Social Sciences,social_sciences,false -stepwinder,newsie.social,Humanities,humanities,true -bernardjensen,newsmast.social,Academia & Research,academia_research,false -bernardjensen,newsmast.social,Activism & Civil Rights,activism_civil_rights,false -bernardjensen,newsmast.social,Architecture & Design,architecture_design,false -bernardjensen,newsmast.social,Books & Literature,books_literature,false -bernardjensen,newsmast.social,Business,business,false -bernardjensen,newsmast.social,Creative Arts,creative_arts,false -bernardjensen,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -bernardjensen,newsmast.social,Disabled Voices,disabled_voices,false -bernardjensen,newsmast.social,Food & Drink,food_drink,false -bernardjensen,newsmast.social,Gaming,gaming,false -bernardjensen,newsmast.social,Government & Policy,government_policy,false -bernardjensen,newsmast.social,Healthcare,healthcare,false -fotiskarioris,mastodon.social,Activism & Civil Rights,activism_civil_rights,false -fotiskarioris,mastodon.social,AI,ai,false -fotiskarioris,mastodon.social,Books & Literature,books_literature,false -fotiskarioris,mastodon.social,Breaking News,breaking_news,false -fotiskarioris,mastodon.social,Business,business,false -fotiskarioris,mastodon.social,Democracy & Human Rights,democracy_human_rights,false -fotiskarioris,mastodon.social,History,history,false -fotiskarioris,mastodon.social,Humanities,humanities,false -fotiskarioris,mastodon.social,"Hunger, Disease & Water",hunger_disease_water,false -fotiskarioris,mastodon.social,LGBTQ+,lgbtq,false -fotiskarioris,mastodon.social,Philosophy,philosophy,false -fotiskarioris,mastodon.social,Photography,photography,false -fotiskarioris,mastodon.social,Poverty & Inequality,poverty_inequality,false -bernardjensen,newsmast.social,Humanities,humanities,false -bernardjensen,newsmast.social,Humour,humour,false -bernardjensen,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false -bernardjensen,newsmast.social,Law & Justice,law_justice,false -bernardjensen,newsmast.social,Breaking News,breaking_news,true -fotiskarioris,mastodon.social,Programming,programming,false -fotiskarioris,mastodon.social,Social Media,social_media,false -fotiskarioris,mastodon.social,Social Sciences,social_sciences,false -fotiskarioris,mastodon.social,Technology,technology,false -fotiskarioris,mastodon.social,Visual Arts,visual_arts,false -AlexiaPonchet,newsmast.social,Performing Arts,performing_arts,false -AlexiaPonchet,newsmast.social,Sport,sport,false -AlexiaPonchet,newsmast.social,Food & Drink,food_drink,false -desertdog,mastoart.social,Mathematics,mathematics,false -AlexiaPonchet,newsmast.social,AI,ai,false -HeyPappagena,mstdn.social,Breaking News,breaking_news,false -HeyPappagena,mstdn.social,Mathematics,mathematics,false -HeyPappagena,mstdn.social,Physics,physics,false -HeyPappagena,mstdn.social,Programming,programming,false -HeyPappagena,mstdn.social,Science,science,false -HeyPappagena,mstdn.social,Space,space,false -HeyPappagena,mstdn.social,Technology,technology,false -HeyPappagena,mstdn.social,Engineering,engineering,true -qlp,linh.social,Activism & Civil Rights,activism_civil_rights,false -qlp,linh.social,Democracy & Human Rights,democracy_human_rights,false -qlp,linh.social,History,history,false -qlp,linh.social,Humanities,humanities,false -qlp,linh.social,"Hunger, Disease & Water",hunger_disease_water,false -iop5,newsmast.social,Academia & Research,academia_research,false -iop5,newsmast.social,Government & Policy,government_policy,false -iop5,newsmast.social,Healthcare,healthcare,false -iop5,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false -iop5,newsmast.social,Poverty & Inequality,poverty_inequality,false -iop5,newsmast.social,Democracy & Human Rights,democracy_human_rights,true -emsquared,mastodon.social,Poverty & Inequality,poverty_inequality,false -emsquared,mastodon.social,Democracy & Human Rights,democracy_human_rights,false -emsquared,mastodon.social,Activism & Civil Rights,activism_civil_rights,false -emsquared,mastodon.social,Disabled Voices,disabled_voices,false -emsquared,mastodon.social,Women’s Voices,women_voices,false -emsquared,mastodon.social,Food & Drink,food_drink,false -emsquared,mastodon.social,Humour,humour,false -emsquared,mastodon.social,Nature & Wildlife,nature_wildlife,false -WestWifey,newsmast.social,Humour,humour,false -WestWifey,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false -WestWifey,newsmast.social,Social Sciences,social_sciences,false -WestWifey,newsmast.social,Travel,travel,false -WestWifey,newsmast.social,Food & Drink,food_drink,true -2night,newsmast.social,Social Media,social_media,false -2night,newsmast.social,Business,business,true -lunarvalleys,mstdn.ca,Climate change,climate_change,false -lunarvalleys,mstdn.ca,Movies,movies,false -lunarvalleys,mstdn.ca,Journalism & Comment,news_comment_data,false -lunarvalleys,mstdn.ca,TV & Radio,tv_radio,false -lunarvalleys,mstdn.ca,Breaking News,breaking_news,true -ivanovabr,mastodon.social,Biology,biology,false -ivanovabr,mastodon.social,Books & Literature,books_literature,false -0fj0,newsmast.social,Markets & Finance,markets_finance,false -0fj0,newsmast.social,Journalism & Comment,news_comment_data,false -0fj0,newsmast.social,Social Media,social_media,false -0fj0,newsmast.social,Technology,technology,false -0fj0,newsmast.social,Ukraine Invasion,ukraine_invasion,false -0fj0,newsmast.social,Breaking News,breaking_news,true -jrotermund,mastodon.social,Philosophy,philosophy,false -jrotermund,mastodon.social,Social Sciences,social_sciences,false -jrotermund,mastodon.social,Women’s Voices,women_voices,false -jrotermund,mastodon.social,AI,ai,false -ivanovabr,mastodon.social,Music,music,false -ivanovabr,mastodon.social,Science,science,false -ivanovabr,mastodon.social,Space,space,false -ivanovabr,mastodon.social,TV & Radio,tv_radio,false +dreamingawake09,newsmast.social,AI,ai,false +dreamingawake09,newsmast.social,Breaking News,breaking_news,false +dreamingawake09,newsmast.social,Creative Arts,creative_arts,false +dreamingawake09,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +dreamingawake09,newsmast.social,Engineering,engineering,false +dreamingawake09,newsmast.social,Food & Drink,food_drink,false +dreamingawake09,newsmast.social,Football,football,false +dreamingawake09,newsmast.social,History,history,false +dreamingawake09,newsmast.social,Humanities,humanities,false +dreamingawake09,newsmast.social,Humour,humour,false +dreamingawake09,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false +dreamingawake09,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false +dreamingawake09,newsmast.social,Nature & Wildlife,nature_wildlife,false +dreamingawake09,newsmast.social,Journalism & Comment,news_comment_data,false +dreamingawake09,newsmast.social,Pets,pets,false +dreamingawake09,newsmast.social,Philosophy,philosophy,false +dreamingawake09,newsmast.social,Poverty & Inequality,poverty_inequality,false +dreamingawake09,newsmast.social,Programming,programming,false +dreamingawake09,newsmast.social,Puzzles,puzzles,false +dreamingawake09,newsmast.social,Social Media,social_media,false +dreamingawake09,newsmast.social,Social Sciences,social_sciences,false +dreamingawake09,newsmast.social,Sport,sport,false +dreamingawake09,newsmast.social,Technology,technology,true +dreamingawake09,newsmast.social,Travel,travel,false +dreamingawake09,newsmast.social,Ukraine Invasion,ukraine_invasion,false +dreamingawake09,newsmast.social,US Sport,us_sport,false +dreamingawake09,newsmast.social,Weather,weather,false +DocumentingReal,newsmast.social,Academia & Research,academia_research,false +DocumentingReal,newsmast.social,Breaking News,breaking_news,false +DocumentingReal,newsmast.social,Government & Policy,government_policy,false +DocumentingReal,newsmast.social,Law & Justice,law_justice,false +DocumentingReal,newsmast.social,Journalism & Comment,news_comment_data,false +DocumentingReal,newsmast.social,Politics,politics,false +DocumentingReal,newsmast.social,Social Media,social_media,false +DocumentingReal,newsmast.social,Ukraine Invasion,ukraine_invasion,false +DocumentingReal,newsmast.social,US Politics,us_politics,true +DocumentingReal,newsmast.social,Weather,weather,false +dawnie,newsmast.social,Breaking News,breaking_news,false +dawnie,newsmast.social,Creative Arts,creative_arts,false +dawnie,newsmast.social,Food & Drink,food_drink,false +dawnie,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false +dawnie,newsmast.social,Nature & Wildlife,nature_wildlife,true +dawnie,newsmast.social,Pets,pets,false +dawnie,newsmast.social,Puzzles,puzzles,false +jayasax,newsmast.social,Activism & Civil Rights,activism_civil_rights,false +jayasax,newsmast.social,Architecture & Design,architecture_design,false +jayasax,newsmast.social,Black Voices,black_voices,false +jayasax,newsmast.social,Books & Literature,books_literature,false +jayasax,newsmast.social,Creative Arts,creative_arts,false +jayasax,newsmast.social,Disabled Voices,disabled_voices,false +jayasax,newsmast.social,Gaming,gaming,false +jayasax,newsmast.social,Humour,humour,false +jayasax,newsmast.social,Immigrants Rights,immigrants_rights,false +jayasax,newsmast.social,Indigenous Peoples,indigenous_peoples,false +jayasax,newsmast.social,LGBTQ+,lgbtq,false +jayasax,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false +jayasax,newsmast.social,Movies,movies,false +jayasax,newsmast.social,Music,music,false +jayasax,newsmast.social,Nature & Wildlife,nature_wildlife,false +jayasax,newsmast.social,Performing Arts,performing_arts,false +jayasax,newsmast.social,Pets,pets,false +jayasax,newsmast.social,Photography,photography,false +jayasax,newsmast.social,Puzzles,puzzles,false +jayasax,newsmast.social,Travel,travel,false +jayasax,newsmast.social,TV & Radio,tv_radio,false +jayasax,newsmast.social,Visual Arts,visual_arts,false +jayasax,newsmast.social,Women’s Voices,women_voices,false +jayasax,newsmast.social,Food & Drink,food_drink,true +kamalaharris,newsmast.social,Breaking News,breaking_news,true +kamalaharris,newsmast.social,Journalism & Comment,news_comment_data,false +kamalaharris,newsmast.social,Social Media,social_media,false +kamalaharris,newsmast.social,Ukraine Invasion,ukraine_invasion,false +kamalaharris,newsmast.social,Weather,weather,false +uobadam,newsmast.social,Academia & Research,academia_research,false +uobadam,newsmast.social,AI,ai,false +uobadam,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false +uobadam,newsmast.social,Biology,biology,false +uobadam,newsmast.social,Breaking News,breaking_news,true +uobadam,newsmast.social,Business,business,false +uobadam,newsmast.social,Chemistry,chemistry,false +uobadam,newsmast.social,Climate change,climate_change,false +uobadam,newsmast.social,Creative Arts,creative_arts,false +uobadam,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +uobadam,newsmast.social,Energy & Pollution,energy_pollution,false +uobadam,newsmast.social,Engineering,engineering,false +uobadam,newsmast.social,Environment,environment,false +uobadam,newsmast.social,Food & Drink,food_drink,false +uobadam,newsmast.social,Government & Policy,government_policy,false +uobadam,newsmast.social,Healthcare,healthcare,false +uobadam,newsmast.social,Humour,humour,false +uobadam,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false +uobadam,newsmast.social,Law & Justice,law_justice,false +uobadam,newsmast.social,Markets & Finance,markets_finance,false +uobadam,newsmast.social,Mathematics,mathematics,false +uobadam,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false +uobadam,newsmast.social,Nature & Wildlife,nature_wildlife,false +uobadam,newsmast.social,Journalism & Comment,news_comment_data,false +uobadam,newsmast.social,Pets,pets,false +uobadam,newsmast.social,Physics,physics,false +uobadam,newsmast.social,Politics,politics,false +uobadam,newsmast.social,Poverty & Inequality,poverty_inequality,false +uobadam,newsmast.social,Programming,programming,false +uobadam,newsmast.social,Puzzles,puzzles,false +uobadam,newsmast.social,Science,science,false +uobadam,newsmast.social,Social Media,social_media,false +uobadam,newsmast.social,Space,space,false +uobadam,newsmast.social,Technology,technology,false +uobadam,newsmast.social,Travel,travel,false +uobadam,newsmast.social,Ukraine Invasion,ukraine_invasion,false +uobadam,newsmast.social,US Politics,us_politics,false +uobadam,newsmast.social,Weather,weather,false +uobadam,newsmast.social,Workers Rights,workers_rights,false +Greenarchist,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false +Greenarchist,newsmast.social,Breaking News,breaking_news,false +Greenarchist,newsmast.social,Energy & Pollution,energy_pollution,false +Greenarchist,newsmast.social,Environment,environment,true +Greenarchist,newsmast.social,Science,science,false +beergeek,newsmast.social,AI,ai,true +beergeek,newsmast.social,Energy & Pollution,energy_pollution,false +beergeek,newsmast.social,Programming,programming,false +beergeek,newsmast.social,Technology,technology,false +beergeek,newsmast.social,Workers Rights,workers_rights,false +beergeek,newsmast.social,Gaming,gaming,false +beergeek,newsmast.social,Movies,movies,false +beergeek,newsmast.social,Music,music,false +beergeek,newsmast.social,Photography,photography,false +beergeek,newsmast.social,TV & Radio,tv_radio,false +beergeek,newsmast.social,Food & Drink,food_drink,false +beergeek,newsmast.social,Humour,humour,false +beergeek,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false +beergeek,newsmast.social,Puzzles,puzzles,false +beergeek,newsmast.social,Travel,travel,false +nijicat,newsmast.social,Academia & Research,academia_research,false +nijicat,newsmast.social,Activism & Civil Rights,activism_civil_rights,false +nijicat,newsmast.social,AI,ai,true +nijicat,newsmast.social,Architecture & Design,architecture_design,false +nijicat,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false +nijicat,newsmast.social,Biology,biology,false +nijicat,newsmast.social,Black Voices,black_voices,false +nijicat,newsmast.social,Books & Literature,books_literature,false +nijicat,newsmast.social,Breaking News,breaking_news,false +nijicat,newsmast.social,Business,business,false +nijicat,newsmast.social,Chemistry,chemistry,false +nijicat,newsmast.social,Climate change,climate_change,false +nijicat,newsmast.social,Creative Arts,creative_arts,false +nijicat,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +nijicat,newsmast.social,Disabled Voices,disabled_voices,false +nijicat,newsmast.social,Energy & Pollution,energy_pollution,false +nijicat,newsmast.social,Engineering,engineering,false +nijicat,newsmast.social,Environment,environment,false +nijicat,newsmast.social,Food & Drink,food_drink,false +nijicat,newsmast.social,Football,football,false +nijicat,newsmast.social,Gaming,gaming,false +nijicat,newsmast.social,Government & Policy,government_policy,false +nijicat,newsmast.social,Healthcare,healthcare,false +nijicat,newsmast.social,History,history,false +nijicat,newsmast.social,Humanities,humanities,false +nijicat,newsmast.social,Humour,humour,false +nijicat,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false +nijicat,newsmast.social,Immigrants Rights,immigrants_rights,false +nijicat,newsmast.social,Indigenous Peoples,indigenous_peoples,false +nijicat,newsmast.social,Law & Justice,law_justice,false +nijicat,newsmast.social,LGBTQ+,lgbtq,false +nijicat,newsmast.social,Markets & Finance,markets_finance,false +nijicat,newsmast.social,Mathematics,mathematics,false +nijicat,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false +nijicat,newsmast.social,Movies,movies,false +nijicat,newsmast.social,Music,music,false +nijicat,newsmast.social,Nature & Wildlife,nature_wildlife,false +nijicat,newsmast.social,Journalism & Comment,news_comment_data,false +nijicat,newsmast.social,Performing Arts,performing_arts,false +nijicat,newsmast.social,Pets,pets,false +nijicat,newsmast.social,Philosophy,philosophy,false +nijicat,newsmast.social,Photography,photography,false +nijicat,newsmast.social,Physics,physics,false +nijicat,newsmast.social,Politics,politics,false +nijicat,newsmast.social,Poverty & Inequality,poverty_inequality,false +nijicat,newsmast.social,Programming,programming,false +nijicat,newsmast.social,Puzzles,puzzles,false +nijicat,newsmast.social,Science,science,false +nijicat,newsmast.social,Social Media,social_media,false +nijicat,newsmast.social,Social Sciences,social_sciences,false +nijicat,newsmast.social,Space,space,false +nijicat,newsmast.social,Sport,sport,false +nijicat,newsmast.social,Technology,technology,false +nijicat,newsmast.social,Travel,travel,false +nijicat,newsmast.social,TV & Radio,tv_radio,false +nijicat,newsmast.social,Ukraine Invasion,ukraine_invasion,false +nijicat,newsmast.social,US Politics,us_politics,false +nijicat,newsmast.social,US Sport,us_sport,false +nijicat,newsmast.social,Visual Arts,visual_arts,false +nijicat,newsmast.social,Weather,weather,false +nijicat,newsmast.social,Women’s Voices,women_voices,false +nijicat,newsmast.social,Workers Rights,workers_rights,false +Capt_Canadia,newsmast.social,AI,ai,false +Capt_Canadia,newsmast.social,Biology,biology,false +Capt_Canadia,newsmast.social,Breaking News,breaking_news,false +Capt_Canadia,newsmast.social,Chemistry,chemistry,false +Capt_Canadia,newsmast.social,Engineering,engineering,false +Capt_Canadia,newsmast.social,Mathematics,mathematics,false +Capt_Canadia,newsmast.social,Journalism & Comment,news_comment_data,false +Capt_Canadia,newsmast.social,Physics,physics,false +Capt_Canadia,newsmast.social,Programming,programming,false +Capt_Canadia,newsmast.social,Science,science,false +Capt_Canadia,newsmast.social,Social Media,social_media,false +Capt_Canadia,newsmast.social,Space,space,false +Capt_Canadia,newsmast.social,Technology,technology,true +Capt_Canadia,newsmast.social,Ukraine Invasion,ukraine_invasion,false +Capt_Canadia,newsmast.social,Weather,weather,false +abc35,newsmast.social,Academia & Research,academia_research,false +abc35,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +abc35,newsmast.social,Healthcare,healthcare,false +abc35,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false +abc35,newsmast.social,Law & Justice,law_justice,false +abc35,newsmast.social,Politics,politics,false +abc35,newsmast.social,Poverty & Inequality,poverty_inequality,false +abc35,newsmast.social,US Politics,us_politics,false +abc35,newsmast.social,Government & Policy,government_policy,true +CameronOrdSmith,newsmast.social,AI,ai,false +CameronOrdSmith,newsmast.social,Climate change,climate_change,false +CameronOrdSmith,newsmast.social,Energy & Pollution,energy_pollution,true +CameronOrdSmith,newsmast.social,Programming,programming,false +CameronOrdSmith,newsmast.social,Ukraine Invasion,ukraine_invasion,false +hoer356,newsmast.social,Biology,biology,false +hoer356,newsmast.social,Chemistry,chemistry,true +hoer356,newsmast.social,History,history,false +hoer356,newsmast.social,Humanities,humanities,false +hoer356,newsmast.social,Mathematics,mathematics,false +hoer356,newsmast.social,Philosophy,philosophy,false +hoer356,newsmast.social,Physics,physics,false +hoer356,newsmast.social,Science,science,false +hoer356,newsmast.social,Social Sciences,social_sciences,false +hoer356,newsmast.social,Space,space,false +ThomasSixt,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +ThomasSixt,newsmast.social,Food & Drink,food_drink,true +ThomasSixt,newsmast.social,Journalism & Comment,news_comment_data,false +ThomasSixt,newsmast.social,Social Media,social_media,false +ThomasSixt,newsmast.social,Travel,travel,false +bret,newsmast.social,AI,ai,false +bret,newsmast.social,Breaking News,breaking_news,false +bret,newsmast.social,Business,business,false +bret,newsmast.social,Climate change,climate_change,false +bret,newsmast.social,Energy & Pollution,energy_pollution,false +bret,newsmast.social,Government & Policy,government_policy,false +bret,newsmast.social,Markets & Finance,markets_finance,false +bret,newsmast.social,Politics,politics,false +bret,newsmast.social,Social Media,social_media,false +bret,newsmast.social,Technology,technology,true +bret,newsmast.social,Ukraine Invasion,ukraine_invasion,false +bret,newsmast.social,US Politics,us_politics,false +breakingnews,newsmast.social,Breaking News,breaking_news,true +breakingnews,newsmast.social,Journalism & Comment,news_comment_data,false +breakingnews,newsmast.social,Social Media,social_media,false +breakingnews,newsmast.social,Ukraine Invasion,ukraine_invasion,false +breakingnews,newsmast.social,Weather,weather,false +blurredbylines,newsmast.social,Activism & Civil Rights,activism_civil_rights,false +blurredbylines,newsmast.social,Black Voices,black_voices,false +blurredbylines,newsmast.social,Disabled Voices,disabled_voices,false +blurredbylines,newsmast.social,Government & Policy,government_policy,false +blurredbylines,newsmast.social,Humanities,humanities,false +blurredbylines,newsmast.social,Immigrants Rights,immigrants_rights,false +blurredbylines,newsmast.social,Indigenous Peoples,indigenous_peoples,false +blurredbylines,newsmast.social,Law & Justice,law_justice,false +blurredbylines,newsmast.social,LGBTQ+,lgbtq,true +blurredbylines,newsmast.social,Journalism & Comment,news_comment_data,false +blurredbylines,newsmast.social,Politics,politics,false +blurredbylines,newsmast.social,Social Sciences,social_sciences,false +blurredbylines,newsmast.social,Women’s Voices,women_voices,false +bothuthesi,newsmast.social,AI,ai,false +bothuthesi,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false +bothuthesi,newsmast.social,Biology,biology,false +bothuthesi,newsmast.social,Breaking News,breaking_news,false +bothuthesi,newsmast.social,Chemistry,chemistry,false +bothuthesi,newsmast.social,Climate change,climate_change,false +bothuthesi,newsmast.social,Energy & Pollution,energy_pollution,false +bothuthesi,newsmast.social,Engineering,engineering,false +bothuthesi,newsmast.social,Environment,environment,false +bothuthesi,newsmast.social,Mathematics,mathematics,false +bothuthesi,newsmast.social,Journalism & Comment,news_comment_data,false +bothuthesi,newsmast.social,Physics,physics,false +bothuthesi,newsmast.social,Science,science,false +bothuthesi,newsmast.social,Social Media,social_media,false +bothuthesi,newsmast.social,Space,space,false +bothuthesi,newsmast.social,Technology,technology,false +bothuthesi,newsmast.social,Ukraine Invasion,ukraine_invasion,false +bothuthesi,newsmast.social,Weather,weather,false +bothuthesi,newsmast.social,Programming,programming,true +Caughtlight,newsmast.social,Breaking News,breaking_news,false +Caughtlight,newsmast.social,Football,football,true +Caughtlight,newsmast.social,Journalism & Comment,news_comment_data,false +Caughtlight,newsmast.social,Sport,sport,false +Caughtlight,newsmast.social,US Sport,us_sport,false +hanism,newsmast.social,AI,ai,false +hanism,newsmast.social,Biology,biology,false +hanism,newsmast.social,Breaking News,breaking_news,false +hanism,newsmast.social,Chemistry,chemistry,false +hanism,newsmast.social,Engineering,engineering,false +hanism,newsmast.social,Mathematics,mathematics,false +hanism,newsmast.social,Journalism & Comment,news_comment_data,false +hanism,newsmast.social,Physics,physics,false +hanism,newsmast.social,Programming,programming,false +hanism,newsmast.social,Science,science,false +hanism,newsmast.social,Space,space,true +hanism,newsmast.social,Technology,technology,false +palmeiras,newsmast.social,Black Voices,black_voices,true +palmeiras,newsmast.social,Breaking News,breaking_news,false +palmeiras,newsmast.social,Disabled Voices,disabled_voices,false +palmeiras,newsmast.social,Journalism & Comment,news_comment_data,false +palmeiras,newsmast.social,Social Media,social_media,false +mervecaldiran,newsmast.social,Nature & Wildlife,nature_wildlife,false +mervecaldiran,newsmast.social,Journalism & Comment,news_comment_data,false +mervecaldiran,newsmast.social,Performing Arts,performing_arts,false +mervecaldiran,newsmast.social,Philosophy,philosophy,false +mervecaldiran,newsmast.social,Activism & Civil Rights,activism_civil_rights,false +mervecaldiran,newsmast.social,Architecture & Design,architecture_design,false +mervecaldiran,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false +mervecaldiran,newsmast.social,Black Voices,black_voices,false +mervecaldiran,newsmast.social,Books & Literature,books_literature,false +mervecaldiran,newsmast.social,Breaking News,breaking_news,false +mervecaldiran,newsmast.social,Climate change,climate_change,false +mervecaldiran,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +mervecaldiran,newsmast.social,Energy & Pollution,energy_pollution,false +mervecaldiran,newsmast.social,Environment,environment,true +mervecaldiran,newsmast.social,Government & Policy,government_policy,false +mervecaldiran,newsmast.social,History,history,false +mervecaldiran,newsmast.social,Humanities,humanities,false +mervecaldiran,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false +mervecaldiran,newsmast.social,Immigrants Rights,immigrants_rights,false +mervecaldiran,newsmast.social,Indigenous Peoples,indigenous_peoples,false +mervecaldiran,newsmast.social,Poverty & Inequality,poverty_inequality,false +mervecaldiran,newsmast.social,Law & Justice,law_justice,false +mervecaldiran,newsmast.social,LGBTQ+,lgbtq,false +mervecaldiran,newsmast.social,Movies,movies,false +mervecaldiran,newsmast.social,Music,music,false +mervecaldiran,newsmast.social,Photography,photography,false +mervecaldiran,newsmast.social,Politics,politics,false +mervecaldiran,newsmast.social,Social Sciences,social_sciences,false +mervecaldiran,newsmast.social,Sport,sport,false +mervecaldiran,newsmast.social,TV & Radio,tv_radio,false +mervecaldiran,newsmast.social,Ukraine Invasion,ukraine_invasion,false +mervecaldiran,newsmast.social,Visual Arts,visual_arts,false +mervecaldiran,newsmast.social,Women’s Voices,women_voices,false +mervecaldiran,newsmast.social,Workers Rights,workers_rights,false +sas_test,newsmast.social,Breaking News,breaking_news,false +sas_test,newsmast.social,Social Media,social_media,false +sas_test,newsmast.social,Ukraine Invasion,ukraine_invasion,false +sas_test,newsmast.social,Weather,weather,false +sas_test,newsmast.social,Journalism & Comment,news_comment_data,true +sofiahvillar,newsmast.social,History,history,true +sofiahvillar,newsmast.social,Markets & Finance,markets_finance,false +sofiahvillar,newsmast.social,Philosophy,philosophy,false +sofiahvillar,newsmast.social,Politics,politics,false +sofiahvillar,newsmast.social,Social Sciences,social_sciences,false +Dineshvd,newsmast.social,Food & Drink,food_drink,false +Dineshvd,newsmast.social,Football,football,true +Dineshvd,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false +Dineshvd,newsmast.social,Puzzles,puzzles,false +Dineshvd,newsmast.social,Sport,sport,false +Dineshvd,newsmast.social,US Sport,us_sport,false +minkkyaw,newsmast.social,Breaking News,breaking_news,true +minkkyaw,newsmast.social,Journalism & Comment,news_comment_data,false +minkkyaw,newsmast.social,Social Media,social_media,false +minkkyaw,newsmast.social,Ukraine Invasion,ukraine_invasion,false +minkkyaw,newsmast.social,Weather,weather,false +sithubo_pt,newsmast.social,Academia & Research,academia_research,false +sithubo_pt,newsmast.social,Activism & Civil Rights,activism_civil_rights,false +sithubo_pt,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false +sithubo_pt,newsmast.social,Black Voices,black_voices,false +sithubo_pt,newsmast.social,Climate change,climate_change,false +sithubo_pt,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +sithubo_pt,newsmast.social,Disabled Voices,disabled_voices,false +sithubo_pt,newsmast.social,Energy & Pollution,energy_pollution,false +sithubo_pt,newsmast.social,Environment,environment,false +sithubo_pt,newsmast.social,Government & Policy,government_policy,false +sithubo_pt,newsmast.social,Healthcare,healthcare,false +sithubo_pt,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false +sithubo_pt,newsmast.social,Immigrants Rights,immigrants_rights,false +sithubo_pt,newsmast.social,Indigenous Peoples,indigenous_peoples,false +sithubo_pt,newsmast.social,Law & Justice,law_justice,false +sithubo_pt,newsmast.social,LGBTQ+,lgbtq,false +sithubo_pt,newsmast.social,Journalism & Comment,news_comment_data,false +sithubo_pt,newsmast.social,Politics,politics,false +sithubo_pt,newsmast.social,Poverty & Inequality,poverty_inequality,false +sithubo_pt,newsmast.social,Social Media,social_media,false +sithubo_pt,newsmast.social,Ukraine Invasion,ukraine_invasion,false +sithubo_pt,newsmast.social,US Politics,us_politics,false +sithubo_pt,newsmast.social,Weather,weather,false +sithubo_pt,newsmast.social,Women’s Voices,women_voices,false +sithubo_pt,newsmast.social,Breaking News,breaking_news,true +spanini,newsmast.social,Books & Literature,books_literature,false +spanini,newsmast.social,Business,business,true +spanini,newsmast.social,History,history,false +spanini,newsmast.social,Markets & Finance,markets_finance,false +spanini,newsmast.social,Philosophy,philosophy,false +spanini,newsmast.social,Workers Rights,workers_rights,false +gppainphysio,newsmast.social,AI,ai,false +gppainphysio,newsmast.social,Business,business,true +gppainphysio,newsmast.social,Engineering,engineering,false +gppainphysio,newsmast.social,Football,football,false +gppainphysio,newsmast.social,Markets & Finance,markets_finance,false +gppainphysio,newsmast.social,Programming,programming,false +gppainphysio,newsmast.social,Sport,sport,false +gppainphysio,newsmast.social,Technology,technology,false +gppainphysio,newsmast.social,US Sport,us_sport,false +gppainphysio,newsmast.social,Workers Rights,workers_rights,false +WelchE,newsmast.social,LGBTQ+,lgbtq,false +WelchE,newsmast.social,Indigenous Peoples,indigenous_peoples,false +WelchE,newsmast.social,Creative Arts,creative_arts,false +WelchE,newsmast.social,Food & Drink,food_drink,false +WelchE,newsmast.social,Nature & Wildlife,nature_wildlife,false +WelchE,newsmast.social,Puzzles,puzzles,false +WelchE,newsmast.social,Women’s Voices,women_voices,false +WelchE,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false +WelchE,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,true +WelchE,newsmast.social,Biology,biology,false +WelchE,newsmast.social,Physics,physics,false +WelchE,newsmast.social,Science,science,false +WelchE,newsmast.social,Space,space,false +JAVPPT,newsmast.social,Breaking News,breaking_news,false +JAVPPT,newsmast.social,Social Media,social_media,false +JAVPPT,newsmast.social,Technology,technology,false +JAVPPT,newsmast.social,Engineering,engineering,false +JAVPPT,newsmast.social,Programming,programming,true +JAVPPT,newsmast.social,Physics,physics,false +JAVPPT,newsmast.social,Space,space,false +JAVPPT,newsmast.social,Mathematics,mathematics,false +JAVPPT,newsmast.social,Science,science,false +JAVPPT,newsmast.social,Social Sciences,social_sciences,false +JAVPPT,newsmast.social,History,history,false +JAVPPT,newsmast.social,Philosophy,philosophy,false +JAVPPT,newsmast.social,Humanities,humanities,false +JAVPPT,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +JAVPPT,newsmast.social,Poverty & Inequality,poverty_inequality,false +JAVPPT,newsmast.social,Politics,politics,false +JAVPPT,newsmast.social,US Politics,us_politics,false +JAVPPT,newsmast.social,Climate change,climate_change,false +JAVPPT,newsmast.social,Environment,environment,false +JAVPPT,newsmast.social,LGBTQ+,lgbtq,false +JAVPPT,newsmast.social,Business,business,false +JAVPPT,newsmast.social,Workers Rights,workers_rights,false +JAVPPT,newsmast.social,Gaming,gaming,false +JAVPPT,newsmast.social,Sport,sport,false +JAVPPT,newsmast.social,US Sport,us_sport,false +JAVPPT,newsmast.social,Food & Drink,food_drink,false +JAVPPT,newsmast.social,Women’s Voices,women_voices,false +JAVPPT,newsmast.social,Photography,photography,false +JAVPPT,newsmast.social,Creative Arts,creative_arts,false +xavierho,newsmast.social,Academia & Research,academia_research,false +xavierho,newsmast.social,AI,ai,false +xavierho,newsmast.social,Breaking News,breaking_news,false +xavierho,newsmast.social,Journalism & Comment,news_comment_data,false +xavierho,newsmast.social,Politics,politics,false +xavierho,newsmast.social,Programming,programming,false +xavierho,newsmast.social,Technology,technology,true +xavierho,newsmast.social,Ukraine Invasion,ukraine_invasion,false +lwinmoepaing,newsmast.social,AI,ai,false +lwinmoepaing,newsmast.social,Engineering,engineering,false +lwinmoepaing,newsmast.social,Football,football,false +lwinmoepaing,newsmast.social,Programming,programming,false +lwinmoepaing,newsmast.social,Technology,technology,true +nothing34,newsmast.social,Academia & Research,academia_research,true +nothing34,newsmast.social,Government & Policy,government_policy,false +nothing34,newsmast.social,Healthcare,healthcare,false +nothing34,newsmast.social,Law & Justice,law_justice,false +nothing34,newsmast.social,Politics,politics,false +nothing34,newsmast.social,US Politics,us_politics,false +bilerico,newsmast.social,Breaking News,breaking_news,false +bilerico,newsmast.social,Food & Drink,food_drink,false +bilerico,newsmast.social,Humour,humour,false +bilerico,newsmast.social,LGBTQ+,lgbtq,true +bilerico,newsmast.social,US Politics,us_politics,false +LetsAnimePod,newsmast.social,Books & Literature,books_literature,false +LetsAnimePod,newsmast.social,Gaming,gaming,false +LetsAnimePod,newsmast.social,Humour,humour,false +LetsAnimePod,newsmast.social,Movies,movies,false +LetsAnimePod,newsmast.social,TV & Radio,tv_radio,true +RebecaM67,newsmast.social,AI,ai,false +RebecaM67,newsmast.social,Breaking News,breaking_news,true +RebecaM67,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +RebecaM67,newsmast.social,Government & Policy,government_policy,false +RebecaM67,newsmast.social,History,history,false +RebecaM67,newsmast.social,Humanities,humanities,false +RebecaM67,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false +RebecaM67,newsmast.social,Law & Justice,law_justice,false +RebecaM67,newsmast.social,Philosophy,philosophy,false +RebecaM67,newsmast.social,Politics,politics,false +RebecaM67,newsmast.social,Technology,technology,false +olympusmoans,newsmast.social,Academia & Research,academia_research,false +olympusmoans,newsmast.social,AI,ai,false +olympusmoans,newsmast.social,Breaking News,breaking_news,false +olympusmoans,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +olympusmoans,newsmast.social,Engineering,engineering,false +olympusmoans,newsmast.social,Government & Policy,government_policy,false +olympusmoans,newsmast.social,Healthcare,healthcare,false +olympusmoans,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false +olympusmoans,newsmast.social,Law & Justice,law_justice,false +olympusmoans,newsmast.social,Journalism & Comment,news_comment_data,false +olympusmoans,newsmast.social,Politics,politics,true +olympusmoans,newsmast.social,Poverty & Inequality,poverty_inequality,false +olympusmoans,newsmast.social,Programming,programming,false +olympusmoans,newsmast.social,Social Media,social_media,false +olympusmoans,newsmast.social,Technology,technology,false +olympusmoans,newsmast.social,Ukraine Invasion,ukraine_invasion,false +olympusmoans,newsmast.social,US Politics,us_politics,false +olympusmoans,newsmast.social,Weather,weather,false +LolaBea19,newsmast.social,Creative Arts,creative_arts,false +LolaBea19,newsmast.social,LGBTQ+,lgbtq,false +LolaBea19,newsmast.social,TV & Radio,tv_radio,false +LolaBea19,newsmast.social,Women’s Voices,women_voices,false +LolaBea19,newsmast.social,Performing Arts,performing_arts,true +willis,newsmast.social,Architecture & Design,architecture_design,false +willis,newsmast.social,Books & Literature,books_literature,true +willis,newsmast.social,Movies,movies,false +willis,newsmast.social,Music,music,false +willis,newsmast.social,Journalism & Comment,news_comment_data,false +shadsiddiqui,newsmast.social,AI,ai,false +shadsiddiqui,newsmast.social,Business,business,false +shadsiddiqui,newsmast.social,Football,football,false +shadsiddiqui,newsmast.social,Technology,technology,false +shadsiddiqui,newsmast.social,Travel,travel,true +Laurens,newsmast.social,AI,ai,false +Laurens,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false +Laurens,newsmast.social,Breaking News,breaking_news,false +Laurens,newsmast.social,Climate change,climate_change,false +Laurens,newsmast.social,Energy & Pollution,energy_pollution,false +Laurens,newsmast.social,Engineering,engineering,false +Laurens,newsmast.social,Environment,environment,false +Laurens,newsmast.social,History,history,false +Laurens,newsmast.social,Humanities,humanities,false +Laurens,newsmast.social,Journalism & Comment,news_comment_data,false +Laurens,newsmast.social,Philosophy,philosophy,false +Laurens,newsmast.social,Social Media,social_media,false +Laurens,newsmast.social,Social Sciences,social_sciences,false +Laurens,newsmast.social,Ukraine Invasion,ukraine_invasion,false +Laurens,newsmast.social,Weather,weather,false +Laurens,newsmast.social,Technology,technology,true +luciaGerry444,newsmast.social,AI,ai,false +luciaGerry444,newsmast.social,Breaking News,breaking_news,false +luciaGerry444,newsmast.social,Engineering,engineering,false +luciaGerry444,newsmast.social,Programming,programming,false +luciaGerry444,newsmast.social,Social Media,social_media,true +luciaGerry444,newsmast.social,Technology,technology,false +luciaGerry444,newsmast.social,Ukraine Invasion,ukraine_invasion,false +luciaGerry444,newsmast.social,Weather,weather,false +zinmoe,newsmast.social,Breaking News,breaking_news,false +zinmoe,newsmast.social,Journalism & Comment,news_comment_data,true +zinmoe,newsmast.social,Politics,politics,false +zinmoe,newsmast.social,Ukraine Invasion,ukraine_invasion,false +zinmoe,newsmast.social,Weather,weather,false +thefluffy007,newsmast.social,Academia & Research,academia_research,true +thefluffy007,newsmast.social,Engineering,engineering,false +thefluffy007,newsmast.social,Government & Policy,government_policy,false +thefluffy007,newsmast.social,Healthcare,healthcare,false +thefluffy007,newsmast.social,Law & Justice,law_justice,false +TimelinesStatus,newsmast.social,Poverty & Inequality,poverty_inequality,false +TimelinesStatus,newsmast.social,Programming,programming,false +TimelinesStatus,newsmast.social,Puzzles,puzzles,false +TimelinesStatus,newsmast.social,Science,science,false +TimelinesStatus,newsmast.social,Social Media,social_media,false +TimelinesStatus,newsmast.social,Social Sciences,social_sciences,false +TimelinesStatus,newsmast.social,Space,space,false +TimelinesStatus,newsmast.social,Sport,sport,false +TimelinesStatus,newsmast.social,Technology,technology,false +TimelinesStatus,newsmast.social,Travel,travel,false +TimelinesStatus,newsmast.social,TV & Radio,tv_radio,false +TimelinesStatus,newsmast.social,Ukraine Invasion,ukraine_invasion,false +TimelinesStatus,newsmast.social,US Politics,us_politics,false +TimelinesStatus,newsmast.social,US Sport,us_sport,false +TimelinesStatus,newsmast.social,Visual Arts,visual_arts,false +TimelinesStatus,newsmast.social,Weather,weather,false +TimelinesStatus,newsmast.social,Women’s Voices,women_voices,false +TimelinesStatus,newsmast.social,Workers Rights,workers_rights,false +TimelinesStatus,newsmast.social,Academia & Research,academia_research,false +TimelinesStatus,newsmast.social,Activism & Civil Rights,activism_civil_rights,false +TimelinesStatus,newsmast.social,AI,ai,false +TimelinesStatus,newsmast.social,Architecture & Design,architecture_design,false +TimelinesStatus,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false +TimelinesStatus,newsmast.social,Biology,biology,false +TimelinesStatus,newsmast.social,Black Voices,black_voices,false +TimelinesStatus,newsmast.social,Books & Literature,books_literature,false +TimelinesStatus,newsmast.social,Breaking News,breaking_news,false +TimelinesStatus,newsmast.social,Business,business,false +TimelinesStatus,newsmast.social,Chemistry,chemistry,false +TimelinesStatus,newsmast.social,Climate change,climate_change,false +TimelinesStatus,newsmast.social,Creative Arts,creative_arts,false +TimelinesStatus,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +TimelinesStatus,newsmast.social,Disabled Voices,disabled_voices,false +TimelinesStatus,newsmast.social,Energy & Pollution,energy_pollution,false +TimelinesStatus,newsmast.social,Engineering,engineering,false +TimelinesStatus,newsmast.social,Environment,environment,false +TimelinesStatus,newsmast.social,Food & Drink,food_drink,false +TimelinesStatus,newsmast.social,Football,football,false +TimelinesStatus,newsmast.social,Gaming,gaming,false +TimelinesStatus,newsmast.social,Government & Policy,government_policy,false +TimelinesStatus,newsmast.social,Healthcare,healthcare,false +TimelinesStatus,newsmast.social,History,history,false +TimelinesStatus,newsmast.social,Humanities,humanities,false +TimelinesStatus,newsmast.social,Humour,humour,false +TimelinesStatus,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false +TimelinesStatus,newsmast.social,Immigrants Rights,immigrants_rights,false +TimelinesStatus,newsmast.social,Indigenous Peoples,indigenous_peoples,false +TimelinesStatus,newsmast.social,Law & Justice,law_justice,false +TimelinesStatus,newsmast.social,LGBTQ+,lgbtq,false +TimelinesStatus,newsmast.social,Markets & Finance,markets_finance,false +TimelinesStatus,newsmast.social,Mathematics,mathematics,false +TimelinesStatus,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false +TimelinesStatus,newsmast.social,Movies,movies,false +TimelinesStatus,newsmast.social,Music,music,false +TimelinesStatus,newsmast.social,Nature & Wildlife,nature_wildlife,false +TimelinesStatus,newsmast.social,Journalism & Comment,news_comment_data,true +TimelinesStatus,newsmast.social,Performing Arts,performing_arts,false +TimelinesStatus,newsmast.social,Pets,pets,false +TimelinesStatus,newsmast.social,Philosophy,philosophy,false +TimelinesStatus,newsmast.social,Photography,photography,false +TimelinesStatus,newsmast.social,Physics,physics,false +TimelinesStatus,newsmast.social,Politics,politics,false +TimelinesStatus,newsmast.social,Poverty & Inequality,poverty_inequality,false +TimelinesStatus,newsmast.social,Programming,programming,false +TimelinesStatus,newsmast.social,Puzzles,puzzles,false +TimelinesStatus,newsmast.social,Science,science,false +TimelinesStatus,newsmast.social,Social Media,social_media,false +TimelinesStatus,newsmast.social,Social Sciences,social_sciences,false +TimelinesStatus,newsmast.social,Space,space,false +TimelinesStatus,newsmast.social,Sport,sport,false +TimelinesStatus,newsmast.social,Technology,technology,false +TimelinesStatus,newsmast.social,Travel,travel,false +TimelinesStatus,newsmast.social,TV & Radio,tv_radio,false +TimelinesStatus,newsmast.social,Ukraine Invasion,ukraine_invasion,false +TimelinesStatus,newsmast.social,US Politics,us_politics,false +TimelinesStatus,newsmast.social,US Sport,us_sport,false +TimelinesStatus,newsmast.social,Visual Arts,visual_arts,false +TimelinesStatus,newsmast.social,Weather,weather,false +TimelinesStatus,newsmast.social,Women’s Voices,women_voices,false +TimelinesStatus,newsmast.social,Workers Rights,workers_rights,false +seedling,newsmast.social,History,history,true +seedling,newsmast.social,Indigenous Peoples,indigenous_peoples,false +seedling,newsmast.social,Philosophy,philosophy,false +seedling,newsmast.social,Social Sciences,social_sciences,false +seedling,newsmast.social,Women’s Voices,women_voices,false +iqruds,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false +iqruds,newsmast.social,Breaking News,breaking_news,false +iqruds,newsmast.social,Creative Arts,creative_arts,false +iqruds,newsmast.social,Environment,environment,false +iqruds,newsmast.social,Food & Drink,food_drink,false +iqruds,newsmast.social,Humour,humour,false +iqruds,newsmast.social,Nature & Wildlife,nature_wildlife,true +iqruds,newsmast.social,Journalism & Comment,news_comment_data,false +iqruds,newsmast.social,Social Media,social_media,false +iqruds,newsmast.social,Sport,sport,false +iqruds,newsmast.social,Travel,travel,false +prapa,newsmast.social,Biology,biology,false +prapa,newsmast.social,Breaking News,breaking_news,false +prapa,newsmast.social,Chemistry,chemistry,false +prapa,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +prapa,newsmast.social,Engineering,engineering,false +prapa,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false +prapa,newsmast.social,Mathematics,mathematics,false +prapa,newsmast.social,Physics,physics,false +prapa,newsmast.social,Poverty & Inequality,poverty_inequality,false +prapa,newsmast.social,Programming,programming,false +prapa,newsmast.social,Science,science,false +prapa,newsmast.social,Space,space,false +prapa,newsmast.social,Technology,technology,false +prapa,newsmast.social,AI,ai,true +herstoryseapod,newsmast.social,Academia & Research,academia_research,false +herstoryseapod,newsmast.social,Architecture & Design,architecture_design,false +herstoryseapod,newsmast.social,Books & Literature,books_literature,false +herstoryseapod,newsmast.social,Gaming,gaming,false +herstoryseapod,newsmast.social,Government & Policy,government_policy,false +herstoryseapod,newsmast.social,History,history,true +herstoryseapod,newsmast.social,Humanities,humanities,false +herstoryseapod,newsmast.social,Law & Justice,law_justice,false +herstoryseapod,newsmast.social,Movies,movies,false +herstoryseapod,newsmast.social,Music,music,false +herstoryseapod,newsmast.social,Performing Arts,performing_arts,false +herstoryseapod,newsmast.social,Philosophy,philosophy,false +herstoryseapod,newsmast.social,Photography,photography,false +herstoryseapod,newsmast.social,Politics,politics,false +herstoryseapod,newsmast.social,Social Sciences,social_sciences,false +herstoryseapod,newsmast.social,TV & Radio,tv_radio,false +herstoryseapod,newsmast.social,Visual Arts,visual_arts,false +paulcrosby,newsmast.social,Markets & Finance,markets_finance,false +paulcrosby,newsmast.social,Space,space,false +paulcrosby,newsmast.social,Technology,technology,false +paulcrosby,newsmast.social,Ukraine Invasion,ukraine_invasion,false +paulcrosby,newsmast.social,Breaking News,breaking_news,false +paulcrosby,newsmast.social,AI,ai,false +paulcrosby,newsmast.social,LGBTQ+,lgbtq,true +fictaddict,newsmast.social,Books & Literature,books_literature,true +fictaddict,newsmast.social,Creative Arts,creative_arts,false +fictaddict,newsmast.social,Gaming,gaming,false +fictaddict,newsmast.social,Pets,pets,false +liamchase,newsmast.social,Creative Arts,creative_arts,false +liamchase,newsmast.social,LGBTQ+,lgbtq,true +liamchase,newsmast.social,Nature & Wildlife,nature_wildlife,false +liamchase,newsmast.social,Pets,pets,false +liamchase,newsmast.social,Sport,sport,false +liamchase,newsmast.social,Travel,travel,false +EasternHerald,newsmast.social,Academia & Research,academia_research,false +EasternHerald,newsmast.social,AI,ai,false +EasternHerald,newsmast.social,Engineering,engineering,false +EasternHerald,newsmast.social,Government & Policy,government_policy,false +EasternHerald,newsmast.social,Healthcare,healthcare,false +EasternHerald,newsmast.social,Law & Justice,law_justice,false +EasternHerald,newsmast.social,Politics,politics,false +EasternHerald,newsmast.social,Programming,programming,false +EasternHerald,newsmast.social,Technology,technology,false +EasternHerald,newsmast.social,US Politics,us_politics,true +EasternHerald,newsmast.social,Breaking News,breaking_news,false +Billyboy,newsmast.social,Indigenous Peoples,indigenous_peoples,false +Billyboy,newsmast.social,Law & Justice,law_justice,false +Billyboy,newsmast.social,Physics,physics,false +Billyboy,newsmast.social,Politics,politics,false +Billyboy,newsmast.social,Poverty & Inequality,poverty_inequality,false +Billyboy,newsmast.social,Science,science,false +Billyboy,newsmast.social,Technology,technology,false +Billyboy,newsmast.social,Workers Rights,workers_rights,false +Billyboy,newsmast.social,Academia & Research,academia_research,false +Billyboy,newsmast.social,Activism & Civil Rights,activism_civil_rights,false +Billyboy,newsmast.social,AI,ai,true +Billyboy,newsmast.social,Breaking News,breaking_news,false +Billyboy,newsmast.social,Business,business,false +Billyboy,newsmast.social,Climate change,climate_change,false +Billyboy,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +Billyboy,newsmast.social,Disabled Voices,disabled_voices,false +Billyboy,newsmast.social,Energy & Pollution,energy_pollution,false +Billyboy,newsmast.social,Engineering,engineering,false +Billyboy,newsmast.social,Environment,environment,false +Billyboy,newsmast.social,Government & Policy,government_policy,false +Billyboy,newsmast.social,Healthcare,healthcare,false +Billyboy,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false +Billyboy,newsmast.social,Immigrants Rights,immigrants_rights,false +youronlyone,newsmast.social,Biology,biology,false +youronlyone,newsmast.social,Books & Literature,books_literature,false +youronlyone,newsmast.social,Chemistry,chemistry,false +youronlyone,newsmast.social,Engineering,engineering,false +youronlyone,newsmast.social,Gaming,gaming,false +youronlyone,newsmast.social,Mathematics,mathematics,false +youronlyone,newsmast.social,Movies,movies,false +youronlyone,newsmast.social,Photography,photography,false +youronlyone,newsmast.social,Physics,physics,true +youronlyone,newsmast.social,Programming,programming,false +youronlyone,newsmast.social,Science,science,false +youronlyone,newsmast.social,Space,space,false +youronlyone,newsmast.social,Technology,technology,false +youronlyone,newsmast.social,TV & Radio,tv_radio,false +youronlyone,newsmast.social,Social Media,social_media,false +youronlyone,newsmast.social,Disabled Voices,disabled_voices,false +youronlyone,newsmast.social,Weather,weather,false +youronlyone,newsmast.social,History,history,false +youronlyone,newsmast.social,Food & Drink,food_drink,false +youronlyone,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false +youronlyone,newsmast.social,Travel,travel,false +youronlyone,newsmast.social,Nature & Wildlife,nature_wildlife,false +nifta,newsmast.social,Activism & Civil Rights,activism_civil_rights,false +nifta,newsmast.social,Architecture & Design,architecture_design,false +nifta,newsmast.social,Biology,biology,false +nifta,newsmast.social,Black Voices,black_voices,false +nifta,newsmast.social,Books & Literature,books_literature,false +nifta,newsmast.social,Breaking News,breaking_news,false +nifta,newsmast.social,Chemistry,chemistry,false +nifta,newsmast.social,Creative Arts,creative_arts,false +nifta,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +nifta,newsmast.social,Disabled Voices,disabled_voices,false +nifta,newsmast.social,Engineering,engineering,false +nifta,newsmast.social,Food & Drink,food_drink,false +nifta,newsmast.social,Football,football,false +nifta,newsmast.social,Gaming,gaming,false +nifta,newsmast.social,History,history,false +nifta,newsmast.social,Humanities,humanities,false +nifta,newsmast.social,Humour,humour,false +nifta,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false +nifta,newsmast.social,Immigrants Rights,immigrants_rights,false +nifta,newsmast.social,Indigenous Peoples,indigenous_peoples,false +nifta,newsmast.social,LGBTQ+,lgbtq,false +nifta,newsmast.social,Mathematics,mathematics,false +nifta,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false +nifta,newsmast.social,Movies,movies,false +nifta,newsmast.social,Music,music,false +nifta,newsmast.social,Nature & Wildlife,nature_wildlife,false +nifta,newsmast.social,Journalism & Comment,news_comment_data,false +nifta,newsmast.social,Performing Arts,performing_arts,false +nifta,newsmast.social,Pets,pets,false +nifta,newsmast.social,Philosophy,philosophy,false +nifta,newsmast.social,Photography,photography,false +nifta,newsmast.social,Physics,physics,false +nifta,newsmast.social,Poverty & Inequality,poverty_inequality,false +nifta,newsmast.social,Programming,programming,false +nifta,newsmast.social,Puzzles,puzzles,false +nifta,newsmast.social,Science,science,false +nifta,newsmast.social,Social Media,social_media,false +nifta,newsmast.social,Social Sciences,social_sciences,false +nifta,newsmast.social,Space,space,false +nifta,newsmast.social,Sport,sport,false +nifta,newsmast.social,Technology,technology,true +nifta,newsmast.social,Travel,travel,false +nifta,newsmast.social,TV & Radio,tv_radio,false +nifta,newsmast.social,Ukraine Invasion,ukraine_invasion,false +nifta,newsmast.social,US Sport,us_sport,false +nifta,newsmast.social,Visual Arts,visual_arts,false +nifta,newsmast.social,Weather,weather,false +nifta,newsmast.social,Women’s Voices,women_voices,false +thm,newsmast.social,AI,ai,false +thm,newsmast.social,Breaking News,breaking_news,true +thm,newsmast.social,Business,business,false +thm,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +thm,newsmast.social,Engineering,engineering,false +thm,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false +thm,newsmast.social,Markets & Finance,markets_finance,false +thm,newsmast.social,Journalism & Comment,news_comment_data,false +thm,newsmast.social,Poverty & Inequality,poverty_inequality,false +thm,newsmast.social,Programming,programming,false +thm,newsmast.social,Social Media,social_media,false +thm,newsmast.social,Technology,technology,false +thm,newsmast.social,Ukraine Invasion,ukraine_invasion,false +thm,newsmast.social,Weather,weather,false +thm,newsmast.social,Workers Rights,workers_rights,false +ppt_56,newsmast.social,Breaking News,breaking_news,true +ppt_56,newsmast.social,Journalism & Comment,news_comment_data,false +ppt_56,newsmast.social,Social Media,social_media,false +ppt_56,newsmast.social,Ukraine Invasion,ukraine_invasion,false +ppt_56,newsmast.social,Weather,weather,false +vpotter,newsmast.social,AI,ai,false +vpotter,newsmast.social,Breaking News,breaking_news,false +vpotter,newsmast.social,Business,business,false +vpotter,newsmast.social,Climate change,climate_change,false +vpotter,newsmast.social,Environment,environment,false +vpotter,newsmast.social,Government & Policy,government_policy,false +vpotter,newsmast.social,Healthcare,healthcare,false +vpotter,newsmast.social,Law & Justice,law_justice,false +vpotter,newsmast.social,Journalism & Comment,news_comment_data,false +vpotter,newsmast.social,Technology,technology,true +vpotter,newsmast.social,Workers Rights,workers_rights,false +relaxedmale,newsmast.social,Breaking News,breaking_news,false +relaxedmale,newsmast.social,Food & Drink,food_drink,false +relaxedmale,newsmast.social,Gaming,gaming,false +relaxedmale,newsmast.social,Government & Policy,government_policy,false +relaxedmale,newsmast.social,Humour,humour,false +relaxedmale,newsmast.social,Nature & Wildlife,nature_wildlife,false +relaxedmale,newsmast.social,Journalism & Comment,news_comment_data,false +relaxedmale,newsmast.social,Philosophy,philosophy,false +relaxedmale,newsmast.social,Photography,photography,false +relaxedmale,newsmast.social,Poverty & Inequality,poverty_inequality,false +relaxedmale,newsmast.social,Social Media,social_media,false +relaxedmale,newsmast.social,Social Sciences,social_sciences,false +relaxedmale,newsmast.social,US Politics,us_politics,false +relaxedmale,newsmast.social,Visual Arts,visual_arts,false +relaxedmale,newsmast.social,Weather,weather,false +relaxedmale,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,true +userlau,newsmast.social,Breaking News,breaking_news,false +userlau,newsmast.social,Journalism & Comment,news_comment_data,false +userlau,newsmast.social,Social Media,social_media,false +userlau,newsmast.social,Ukraine Invasion,ukraine_invasion,false +userlau,newsmast.social,Weather,weather,true +heathercarlson,newsmast.social,Activism & Civil Rights,activism_civil_rights,false +heathercarlson,newsmast.social,Breaking News,breaking_news,false +heathercarlson,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +heathercarlson,newsmast.social,Food & Drink,food_drink,false +heathercarlson,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false +heathercarlson,newsmast.social,Pets,pets,false +heathercarlson,newsmast.social,Poverty & Inequality,poverty_inequality,false +heathercarlson,newsmast.social,Travel,travel,true +heathercarlson,newsmast.social,Women’s Voices,women_voices,false +DEW1970,newsmast.social,Architecture & Design,architecture_design,false +DEW1970,newsmast.social,Biology,biology,false +DEW1970,newsmast.social,Books & Literature,books_literature,true +DEW1970,newsmast.social,Food & Drink,food_drink,false +DEW1970,newsmast.social,Football,football,false +DEW1970,newsmast.social,Healthcare,healthcare,false +DEW1970,newsmast.social,Humour,humour,false +DEW1970,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false +DEW1970,newsmast.social,Movies,movies,false +DEW1970,newsmast.social,Music,music,false +DEW1970,newsmast.social,Nature & Wildlife,nature_wildlife,false +DEW1970,newsmast.social,Performing Arts,performing_arts,false +DEW1970,newsmast.social,Pets,pets,false +DEW1970,newsmast.social,Photography,photography,false +DEW1970,newsmast.social,Politics,politics,false +DEW1970,newsmast.social,Science,science,false +DEW1970,newsmast.social,Social Media,social_media,false +DEW1970,newsmast.social,Space,space,false +DEW1970,newsmast.social,Travel,travel,false +DEW1970,newsmast.social,TV & Radio,tv_radio,false +DEW1970,newsmast.social,Weather,weather,false +DEW1970,newsmast.social,Breaking News,breaking_news,false +nayyaung9,newsmast.social,Performing Arts,performing_arts,true +nayyaung9,newsmast.social,Physics,physics,false +nayyaung9,newsmast.social,Breaking News,breaking_news,false +mleaning,newsmast.social,Breaking News,breaking_news,true +mleaning,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +mleaning,newsmast.social,Mathematics,mathematics,false +mleaning,newsmast.social,Physics,physics,false +mleaning,newsmast.social,Science,science,false +FionaDobsonCD,newsmast.social,History,history,false +FionaDobsonCD,newsmast.social,Humour,humour,false +FionaDobsonCD,newsmast.social,LGBTQ+,lgbtq,true +FionaDobsonCD,newsmast.social,Nature & Wildlife,nature_wildlife,false +FionaDobsonCD,newsmast.social,Philosophy,philosophy,false +FionaDobsonCD,newsmast.social,Travel,travel,false +drizzly_august,newsmast.social,Engineering,engineering,false +drizzly_august,newsmast.social,Government & Policy,government_policy,false +drizzly_august,newsmast.social,Law & Justice,law_justice,false +drizzly_august,newsmast.social,Poverty & Inequality,poverty_inequality,false +drizzly_august,newsmast.social,Technology,technology,true +drizzly_august,newsmast.social,US Politics,us_politics,false +drizzly_august,newsmast.social,Breaking News,breaking_news,false +drizzly_august,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +drizzly_august,newsmast.social,Engineering,engineering,false +drizzly_august,newsmast.social,Government & Policy,government_policy,false +drizzly_august,newsmast.social,Law & Justice,law_justice,false +drizzly_august,newsmast.social,Poverty & Inequality,poverty_inequality,false +drizzly_august,newsmast.social,Technology,technology,false +drizzly_august,newsmast.social,US Politics,us_politics,false +healthylifetips,newsmast.social,Energy & Pollution,energy_pollution,false +healthylifetips,newsmast.social,Creative Arts,creative_arts,false +healthylifetips,newsmast.social,Environment,environment,false +healthylifetips,newsmast.social,Food & Drink,food_drink,false +healthylifetips,newsmast.social,Humour,humour,false +healthylifetips,newsmast.social,Indigenous Peoples,indigenous_peoples,false +healthylifetips,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,true +healthylifetips,newsmast.social,Nature & Wildlife,nature_wildlife,false +healthylifetips,newsmast.social,Pets,pets,false +healthylifetips,newsmast.social,Puzzles,puzzles,false +healthylifetips,newsmast.social,Travel,travel,false +healthylifetips,newsmast.social,Women’s Voices,women_voices,false +healthylifetips,newsmast.social,Social Media,social_media,false +healthylifetips,newsmast.social,Climate change,climate_change,false +orel,newsmast.social,Books & Literature,books_literature,false +orel,newsmast.social,History,history,true +orel,newsmast.social,Poverty & Inequality,poverty_inequality,false +orel,newsmast.social,Social Sciences,social_sciences,false +JamesNewsMast,newsmast.social,Gaming,gaming,false +JamesNewsMast,newsmast.social,Food & Drink,food_drink,false +JamesNewsMast,newsmast.social,Government & Policy,government_policy,false +JamesNewsMast,newsmast.social,Space,space,true +JamesNewsMast,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false +poverty,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false +poverty,newsmast.social,Poverty & Inequality,poverty_inequality,true +poverty,newsmast.social,Environment,environment,false +megs,newsmast.social,Activism & Civil Rights,activism_civil_rights,false +megs,newsmast.social,AI,ai,false +megs,newsmast.social,Architecture & Design,architecture_design,false +megs,newsmast.social,Engineering,engineering,false +megs,newsmast.social,Gaming,gaming,false +megs,newsmast.social,LGBTQ+,lgbtq,false +megs,newsmast.social,Physics,physics,true +megs,newsmast.social,Space,space,false +megs,newsmast.social,Technology,technology,false +megs,newsmast.social,Immigrants Rights,immigrants_rights,false +Freddie3,newsmast.social,Women’s Voices,women_voices,false +Freddie3,newsmast.social,Nature & Wildlife,nature_wildlife,false +Freddie3,newsmast.social,Breaking News,breaking_news,false +Freddie3,newsmast.social,Journalism & Comment,news_comment_data,false +Freddie3,newsmast.social,Politics,politics,true +Freddie3,newsmast.social,Ukraine Invasion,ukraine_invasion,false +Freddie3,newsmast.social,Law & Justice,law_justice,false +Freddie3,newsmast.social,Healthcare,healthcare,false +Freddie3,newsmast.social,Government & Policy,government_policy,false +Freddie3,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +Freddie3,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false +Freddie3,newsmast.social,Poverty & Inequality,poverty_inequality,false +Freddie3,newsmast.social,Performing Arts,performing_arts,false +Freddie3,newsmast.social,Visual Arts,visual_arts,false +Freddie3,newsmast.social,Workers Rights,workers_rights,false +Freddie3,newsmast.social,Indigenous Peoples,indigenous_peoples,false +Freddie3,newsmast.social,Immigrants Rights,immigrants_rights,false +Freddie3,newsmast.social,Disabled Voices,disabled_voices,false +Freddie3,newsmast.social,Black Voices,black_voices,false +Freddie3,newsmast.social,Activism & Civil Rights,activism_civil_rights,false +Freddie3,newsmast.social,Humour,humour,false +Freddie3,newsmast.social,Movies,movies,false +Freddie3,newsmast.social,Social Sciences,social_sciences,false +Freddie3,newsmast.social,Humanities,humanities,false +Freddie3,newsmast.social,History,history,false +Freddie3,newsmast.social,Environment,environment,false +Freddie3,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false +Freddie3,newsmast.social,Climate change,climate_change,false +Freddie3,newsmast.social,Energy & Pollution,energy_pollution,false +Freddie3,newsmast.social,Creative Arts,creative_arts,false +Freddie3,newsmast.social,Science,science,true +Freddie3,newsmast.social,LGBTQ+,lgbtq,false +Freddie3,newsmast.social,Philosophy,philosophy,false +Freddie3,newsmast.social,Books & Literature,books_literature,false +avalio77,newsmast.social,Law & Justice,law_justice,false +avalio77,newsmast.social,AI,ai,false +avalio77,newsmast.social,Books & Literature,books_literature,false +avalio77,newsmast.social,Climate change,climate_change,false +avalio77,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +avalio77,newsmast.social,Environment,environment,false +avalio77,newsmast.social,Government & Policy,government_policy,false +avalio77,newsmast.social,History,history,false +avalio77,newsmast.social,Humanities,humanities,false +avalio77,newsmast.social,Poverty & Inequality,poverty_inequality,true +avalio77,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false +avalio77,newsmast.social,Philosophy,philosophy,false +avalio77,newsmast.social,Social Sciences,social_sciences,false +avalio77,newsmast.social,Technology,technology,false +avalio77,newsmast.social,Immigrants Rights,immigrants_rights,false +Stevivor,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false +Stevivor,newsmast.social,Creative Arts,creative_arts,false +Stevivor,newsmast.social,LGBTQ+,lgbtq,false +Stevivor,newsmast.social,Journalism & Comment,news_comment_data,true +Stevivor,newsmast.social,Technology,technology,false +DannSy18,newsmast.social,Ukraine Invasion,ukraine_invasion,false +DannSy18,newsmast.social,AI,ai,false +DannSy18,newsmast.social,Government & Policy,government_policy,true +Stephen,newsmast.social,Journalism & Comment,news_comment_data,false +Stephen,newsmast.social,Movies,movies,false +Stephen,newsmast.social,Music,music,false +Stephen,newsmast.social,Gaming,gaming,false +Stephen,newsmast.social,TV & Radio,tv_radio,false +Stephen,newsmast.social,Law & Justice,law_justice,false +Stephen,newsmast.social,Visual Arts,visual_arts,true +sabah,newsmast.social,Performing Arts,performing_arts,false +sabah,newsmast.social,Creative Arts,creative_arts,false +sabah,newsmast.social,Social Sciences,social_sciences,false +sabah,newsmast.social,Music,music,false +sabah,newsmast.social,Visual Arts,visual_arts,false +sabah,newsmast.social,Journalism & Comment,news_comment_data,true +sabah,newsmast.social,Poverty & Inequality,poverty_inequality,false +sabah,newsmast.social,Environment,environment,false +Pyae,newsmast.social,Activism & Civil Rights,activism_civil_rights,false +Pyae,newsmast.social,Business,business,false +Pyae,newsmast.social,Environment,environment,false +Pyae,newsmast.social,Government & Policy,government_policy,true +Pyae,newsmast.social,Humanities,humanities,false +Pyae,newsmast.social,Journalism & Comment,news_comment_data,false +Pyae,newsmast.social,Social Sciences,social_sciences,false +Pyae,newsmast.social,Technology,technology,false +Pyae,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +dianashurman,newsmast.social,Markets & Finance,markets_finance,false +dianashurman,newsmast.social,AI,ai,true +dianashurman,newsmast.social,Government & Policy,government_policy,false +dianashurman,newsmast.social,Humanities,humanities,false +dianashurman,newsmast.social,Social Sciences,social_sciences,false +dianashurman,newsmast.social,Pets,pets,false +dianashurman,newsmast.social,Nature & Wildlife,nature_wildlife,false +dianashurman,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false +orianavictoria,newsmast.social,Environment,environment,false +orianavictoria,newsmast.social,Movies,movies,false +orianavictoria,newsmast.social,Politics,politics,false +orianavictoria,newsmast.social,Food & Drink,food_drink,false +orianavictoria,newsmast.social,Journalism & Comment,news_comment_data,true +orianavictoria,newsmast.social,Technology,technology,false +orianavictoria,newsmast.social,Markets & Finance,markets_finance,false +orianavictoria,newsmast.social,Business,business,false +jomaan123,newsmast.social,Politics,politics,false +jomaan123,newsmast.social,Breaking News,breaking_news,false +jomaan123,newsmast.social,Journalism & Comment,news_comment_data,false +jomaan123,newsmast.social,History,history,false +jomaan123,newsmast.social,Humanities,humanities,false +jomaan123,newsmast.social,Pets,pets,true +sophiecunningham,newsmast.social,Environment,environment,false +sophiecunningham,newsmast.social,Science,science,false +sophiecunningham,newsmast.social,Journalism & Comment,news_comment_data,true +sophiecunningham,newsmast.social,Energy & Pollution,energy_pollution,false +sophiecunningham,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false +sophiecunningham,newsmast.social,Nature & Wildlife,nature_wildlife,false +IZMartinez86,newsmast.social,Government & Policy,government_policy,false +IZMartinez86,newsmast.social,Law & Justice,law_justice,false +IZMartinez86,newsmast.social,Environment,environment,false +IZMartinez86,newsmast.social,Biology,biology,false +IZMartinez86,newsmast.social,Chemistry,chemistry,false +IZMartinez86,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +IZMartinez86,newsmast.social,Engineering,engineering,false +IZMartinez86,newsmast.social,Healthcare,healthcare,false +IZMartinez86,newsmast.social,History,history,false +IZMartinez86,newsmast.social,Poverty & Inequality,poverty_inequality,true +IZMartinez86,newsmast.social,Mathematics,mathematics,false +IZMartinez86,newsmast.social,Physics,physics,false +IZMartinez86,newsmast.social,Politics,politics,false +IZMartinez86,newsmast.social,Immigrants Rights,immigrants_rights,false +IZMartinez86,newsmast.social,Science,science,false +IZMartinez86,newsmast.social,Social Sciences,social_sciences,false +IZMartinez86,newsmast.social,Space,space,false +sandy,newsmast.social,Chemistry,chemistry,false +sandy,newsmast.social,Social Sciences,social_sciences,false +sandy,newsmast.social,Creative Arts,creative_arts,false +sandy,newsmast.social,Humour,humour,false +sandy,newsmast.social,Humanities,humanities,false +sandy,newsmast.social,LGBTQ+,lgbtq,false +sandy,newsmast.social,Philosophy,philosophy,false +sandy,newsmast.social,Journalism & Comment,news_comment_data,true +alice11,newsmast.social,Humour,humour,false +alice11,newsmast.social,Movies,movies,false +alice11,newsmast.social,Pets,pets,false +alice11,newsmast.social,Photography,photography,false +alice11,newsmast.social,Creative Arts,creative_arts,false +alice11,newsmast.social,Journalism & Comment,news_comment_data,false +alice11,newsmast.social,Performing Arts,performing_arts,false +alice11,newsmast.social,Travel,travel,false +alice11,newsmast.social,TV & Radio,tv_radio,false +alice11,newsmast.social,LGBTQ+,lgbtq,false +alice11,newsmast.social,Weather,weather,false +alice11,newsmast.social,Music,music,true +YuliaMHersey,newsmast.social,Technology,technology,false +YuliaMHersey,newsmast.social,Creative Arts,creative_arts,false +YuliaMHersey,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false +YuliaMHersey,newsmast.social,AI,ai,false +YuliaMHersey,newsmast.social,Books & Literature,books_literature,true +YuliaMHersey,newsmast.social,Food & Drink,food_drink,false +YuliaMHersey,newsmast.social,Humanities,humanities,false +YuliaMHersey,newsmast.social,Journalism & Comment,news_comment_data,false +YuliaMHersey,newsmast.social,Performing Arts,performing_arts,false +YuliaMHersey,newsmast.social,Philosophy,philosophy,false +YuliaMHersey,newsmast.social,Ukraine Invasion,ukraine_invasion,false +lucygreenwold,newsmast.social,Creative Arts,creative_arts,false +lucygreenwold,newsmast.social,Journalism & Comment,news_comment_data,false +lucygreenwold,newsmast.social,Performing Arts,performing_arts,false +lucygreenwold,newsmast.social,Travel,travel,false +lucygreenwold,newsmast.social,Music,music,false +lucygreenwold,newsmast.social,Indigenous Peoples,indigenous_peoples,false +lucygreenwold,newsmast.social,Women’s Voices,women_voices,false +lucygreenwold,newsmast.social,LGBTQ+,lgbtq,false +lucygreenwold,newsmast.social,Visual Arts,visual_arts,false +lucygreenwold,newsmast.social,Activism & Civil Rights,activism_civil_rights,false +lucygreenwold,newsmast.social,Philosophy,philosophy,false +lucygreenwold,newsmast.social,Climate change,climate_change,false +lucygreenwold,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +lucygreenwold,newsmast.social,Nature & Wildlife,nature_wildlife,false +lucygreenwold,newsmast.social,Books & Literature,books_literature,true +lucygreenwold,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false +lucygreenwold,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false +lucygreenwold,newsmast.social,Immigrants Rights,immigrants_rights,false +orianavmatos,newsmast.social,Government & Policy,government_policy,true +orianavmatos,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false +orianavmatos,newsmast.social,Food & Drink,food_drink,false +orianavmatos,newsmast.social,Creative Arts,creative_arts,false +orianavmatos,newsmast.social,Space,space,false +orianavmatos,newsmast.social,Science,science,false +orianavmatos,newsmast.social,Nature & Wildlife,nature_wildlife,false +orianavmatos,newsmast.social,Pets,pets,false +orianavmatos,newsmast.social,Mathematics,mathematics,false +orianavmatos,newsmast.social,Chemistry,chemistry,false +orianavmatos,newsmast.social,Business,business,false +orianavmatos,newsmast.social,Markets & Finance,markets_finance,false +orianavmatos,newsmast.social,Travel,travel,false +orianavmatos,newsmast.social,Biology,biology,false +orianavmatos,newsmast.social,Physics,physics,false +orianavmatos,newsmast.social,Workers Rights,workers_rights,false +orianavmatos,newsmast.social,Humour,humour,false +orianavmatos,newsmast.social,Puzzles,puzzles,false +orianavmatos,newsmast.social,Technology,technology,false +orianavmatos,newsmast.social,Engineering,engineering,false +orianavmatos,newsmast.social,AI,ai,false +orianavmatos,newsmast.social,Programming,programming,false +orianavmatos,newsmast.social,Gaming,gaming,false +orianavmatos,newsmast.social,Movies,movies,false +eve,newsmast.social,Creative Arts,creative_arts,false +eve,newsmast.social,Environment,environment,false +eve,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false +eve,newsmast.social,Journalism & Comment,news_comment_data,true +eve,newsmast.social,Humour,humour,false +eve,newsmast.social,Breaking News,breaking_news,false +eve,newsmast.social,Climate change,climate_change,false +eve,newsmast.social,Social Sciences,social_sciences,false +eve,newsmast.social,Nature & Wildlife,nature_wildlife,false +eve,newsmast.social,Energy & Pollution,energy_pollution,false +eve,newsmast.social,Engineering,engineering,false +eve,newsmast.social,Music,music,false +eve,newsmast.social,Women’s Voices,women_voices,false +eve,newsmast.social,Humanities,humanities,false +eve,newsmast.social,Books & Literature,books_literature,false +eve,newsmast.social,History,history,false +eve,newsmast.social,LGBTQ+,lgbtq,false +eve,newsmast.social,Food & Drink,food_drink,false +eve,newsmast.social,Indigenous Peoples,indigenous_peoples,false +eve,newsmast.social,Ukraine Invasion,ukraine_invasion,false +eve,newsmast.social,Immigrants Rights,immigrants_rights,false +Phebe,newsmast.social,Architecture & Design,architecture_design,false +Phebe,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false +Phebe,newsmast.social,Poverty & Inequality,poverty_inequality,false +Phebe,newsmast.social,Movies,movies,false +Phebe,newsmast.social,Journalism & Comment,news_comment_data,true +delyan,newsmast.social,Breaking News,breaking_news,false +delyan,newsmast.social,Journalism & Comment,news_comment_data,false +delyan,newsmast.social,Creative Arts,creative_arts,false +delyan,newsmast.social,Photography,photography,false +delyan,newsmast.social,Travel,travel,false +delyan,newsmast.social,Performing Arts,performing_arts,false +delyan,newsmast.social,Politics,politics,false +delyan,newsmast.social,Humour,humour,false +delyan,newsmast.social,Humanities,humanities,false +delyan,newsmast.social,Social Sciences,social_sciences,false +delyan,newsmast.social,Gaming,gaming,false +delyan,newsmast.social,Music,music,false +delyan,newsmast.social,Football,football,false +delyan,newsmast.social,TV & Radio,tv_radio,false +delyan,newsmast.social,Sport,sport,false +delyan,newsmast.social,LGBTQ+,lgbtq,false +delyan,newsmast.social,Workers Rights,workers_rights,false +delyan,newsmast.social,Disabled Voices,disabled_voices,false +delyan,newsmast.social,Visual Arts,visual_arts,false +delyan,newsmast.social,AI,ai,false +delyan,newsmast.social,Activism & Civil Rights,activism_civil_rights,false +delyan,newsmast.social,Government & Policy,government_policy,false +delyan,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +delyan,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false +delyan,newsmast.social,Movies,movies,true +Tasha,newsmast.social,Breaking News,breaking_news,false +Tasha,newsmast.social,Journalism & Comment,news_comment_data,false +Tasha,newsmast.social,Creative Arts,creative_arts,false +Tasha,newsmast.social,Photography,photography,false +Tasha,newsmast.social,Pets,pets,false +Tasha,newsmast.social,Physics,physics,false +Tasha,newsmast.social,Healthcare,healthcare,false +Tasha,newsmast.social,Movies,movies,false +Tasha,newsmast.social,Science,science,false +Tasha,newsmast.social,Engineering,engineering,false +Tasha,newsmast.social,Performing Arts,performing_arts,false +Tasha,newsmast.social,Travel,travel,false +Tasha,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false +Tasha,newsmast.social,Poverty & Inequality,poverty_inequality,false +Tasha,newsmast.social,Politics,politics,false +Tasha,newsmast.social,History,history,false +Tasha,newsmast.social,Humour,humour,false +Tasha,newsmast.social,Humanities,humanities,false +Tasha,newsmast.social,Social Sciences,social_sciences,false +Tasha,newsmast.social,Indigenous Peoples,indigenous_peoples,false +Tasha,newsmast.social,Music,music,false +Tasha,newsmast.social,Gaming,gaming,false +Tasha,newsmast.social,Technology,technology,false +Tasha,newsmast.social,Space,space,false +Tasha,newsmast.social,TV & Radio,tv_radio,false +Tasha,newsmast.social,Sport,sport,false +Tasha,newsmast.social,Ukraine Invasion,ukraine_invasion,false +Tasha,newsmast.social,LGBTQ+,lgbtq,false +Tasha,newsmast.social,Women’s Voices,women_voices,false +Tasha,newsmast.social,Disabled Voices,disabled_voices,false +Tasha,newsmast.social,Workers Rights,workers_rights,false +Tasha,newsmast.social,Visual Arts,visual_arts,false +Tasha,newsmast.social,Black Voices,black_voices,false +Tasha,newsmast.social,AI,ai,false +Tasha,newsmast.social,Activism & Civil Rights,activism_civil_rights,false +Tasha,newsmast.social,Chemistry,chemistry,false +Tasha,newsmast.social,Biology,biology,false +Tasha,newsmast.social,Books & Literature,books_literature,false +Tasha,newsmast.social,Weather,weather,false +Tasha,newsmast.social,Energy & Pollution,energy_pollution,false +Tasha,newsmast.social,Philosophy,philosophy,false +Tasha,newsmast.social,Business,business,false +Tasha,newsmast.social,Climate change,climate_change,false +Tasha,newsmast.social,Markets & Finance,markets_finance,false +Tasha,newsmast.social,Nature & Wildlife,nature_wildlife,false +Tasha,newsmast.social,Food & Drink,food_drink,false +Tasha,newsmast.social,Puzzles,puzzles,false +Tasha,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false +Tasha,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +Tasha,newsmast.social,Government & Policy,government_policy,false +Tasha,newsmast.social,Law & Justice,law_justice,false +Tasha,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false +Tasha,newsmast.social,Football,football,false +Tasha,newsmast.social,Environment,environment,true +Tasha,newsmast.social,Immigrants Rights,immigrants_rights,false +Tasha,newsmast.social,Mathematics,mathematics,false +Tasha,newsmast.social,Architecture & Design,architecture_design,false +JackMoulton,newsmast.social,Government & Policy,government_policy,false +JackMoulton,newsmast.social,Breaking News,breaking_news,false +JackMoulton,newsmast.social,Music,music,false +JackMoulton,newsmast.social,TV & Radio,tv_radio,false +JackMoulton,newsmast.social,Gaming,gaming,false +JackMoulton,newsmast.social,Journalism & Comment,news_comment_data,true +JackMoulton,newsmast.social,Movies,movies,false +JackMoulton,newsmast.social,Law & Justice,law_justice,false +priyal,newsmast.social,Environment,environment,false +priyal,newsmast.social,Movies,movies,false +priyal,newsmast.social,Books & Literature,books_literature,false +priyal,newsmast.social,Climate change,climate_change,false +priyal,newsmast.social,History,history,false +priyal,newsmast.social,Journalism & Comment,news_comment_data,true +priyal,newsmast.social,Creative Arts,creative_arts,false +zainabismail,newsmast.social,Breaking News,breaking_news,false +zainabismail,newsmast.social,Travel,travel,false +zainabismail,newsmast.social,Politics,politics,false +zainabismail,newsmast.social,Activism & Civil Rights,activism_civil_rights,false +zainabismail,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false +zainabismail,newsmast.social,Journalism & Comment,news_comment_data,true +zainabismail,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +seb_bw,newsmast.social,Government & Policy,government_policy,true +seb_bw,newsmast.social,Technology,technology,false +seb_bw,newsmast.social,AI,ai,false +seb_bw,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false +seb_bw,newsmast.social,Climate change,climate_change,false +seb_bw,newsmast.social,Energy & Pollution,energy_pollution,false +seb_bw,newsmast.social,Environment,environment,false +seb_bw,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false +Janet_O,newsmast.social,Government & Policy,government_policy,false +Janet_O,newsmast.social,Photography,photography,false +Janet_O,newsmast.social,Black Voices,black_voices,false +Janet_O,newsmast.social,Journalism & Comment,news_comment_data,false +Janet_O,newsmast.social,Breaking News,breaking_news,true +Supantha,newsmast.social,AI,ai,true +Supantha,newsmast.social,Breaking News,breaking_news,false +Supantha,newsmast.social,Government & Policy,government_policy,false +Supantha,newsmast.social,Journalism & Comment,news_comment_data,false +Supantha,newsmast.social,Politics,politics,false +Supantha,newsmast.social,Technology,technology,false +Supantha,newsmast.social,Ukraine Invasion,ukraine_invasion,false +Supantha,newsmast.social,Weather,weather,false +aishiterutokyo,newsmast.social,Football,football,true +aishiterutokyo,newsmast.social,Gaming,gaming,false +aishiterutokyo,newsmast.social,Journalism & Comment,news_comment_data,false +aishiterutokyo,newsmast.social,Sport,sport,false +aishiterutokyo,newsmast.social,TV & Radio,tv_radio,false +minkhantkyawygn,newsmast.social,Breaking News,breaking_news,false +minkhantkyawygn,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +minkhantkyawygn,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,true +minkhantkyawygn,newsmast.social,Poverty & Inequality,poverty_inequality,false +minkhantkyawygn,newsmast.social,Journalism & Comment,news_comment_data,false +minkhantkyawygn,newsmast.social,Politics,politics,false +minkhantkyawygn,newsmast.social,Ukraine Invasion,ukraine_invasion,false +minkhantkyawygn,newsmast.social,Weather,weather,false +minkhantkyawygn,newsmast.social,Environment,environment,false +minkhantkyawygn,newsmast.social,Immigrants Rights,immigrants_rights,false +hopheim,newsmast.social,Creative Arts,creative_arts,false +hopheim,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,true +hopheim,newsmast.social,Nature & Wildlife,nature_wildlife,false +hopheim,newsmast.social,Breaking News,breaking_news,false +hopheim,newsmast.social,Food & Drink,food_drink,false +hopheim,newsmast.social,Movies,movies,false +hopheim,newsmast.social,Music,music,false +hopheim,newsmast.social,Travel,travel,false +hopheim,newsmast.social,TV & Radio,tv_radio,false +vpatel,newsmast.social,Business,business,false +vpatel,newsmast.social,Journalism & Comment,news_comment_data,false +vpatel,newsmast.social,Philosophy,philosophy,true +vpatel,newsmast.social,Academia & Research,academia_research,false +vpatel,newsmast.social,US Politics,us_politics,false +vpatel,newsmast.social,Weather,weather,false +vpatel,newsmast.social,Breaking News,breaking_news,false +vpatel,newsmast.social,Politics,politics,false +vpatel,newsmast.social,Ukraine Invasion,ukraine_invasion,false +vpatel,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +vpatel,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false +vpatel,newsmast.social,Poverty & Inequality,poverty_inequality,false +vpatel,newsmast.social,Government & Policy,government_policy,false +vpatel,newsmast.social,Healthcare,healthcare,false +vpatel,newsmast.social,Law & Justice,law_justice,false +vpatel,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false +vpatel,newsmast.social,Environment,environment,false +vpatel,newsmast.social,Climate change,climate_change,false +vpatel,newsmast.social,Black Voices,black_voices,false +vpatel,newsmast.social,Immigrants Rights,immigrants_rights,false +vpatel,newsmast.social,Workers Rights,workers_rights,false +vpatel,newsmast.social,Technology,technology,false +vpatel,newsmast.social,Biology,biology,false +vpatel,newsmast.social,Engineering,engineering,false +vpatel,newsmast.social,Physics,physics,false +vpatel,newsmast.social,Humanities,humanities,false +vpatel,newsmast.social,History,history,false +vpatel,newsmast.social,Gaming,gaming,false +vpatel,newsmast.social,Music,music,false +vpatel,newsmast.social,Photography,photography,false +vpatel,newsmast.social,Visual Arts,visual_arts,false +vpatel,newsmast.social,Sport,sport,false +vpatel,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false +vpatel,newsmast.social,Energy & Pollution,energy_pollution,false +vpatel,newsmast.social,Activism & Civil Rights,activism_civil_rights,false +vpatel,newsmast.social,Disabled Voices,disabled_voices,false +vpatel,newsmast.social,Indigenous Peoples,indigenous_peoples,false +vpatel,newsmast.social,Women’s Voices,women_voices,false +vpatel,newsmast.social,Markets & Finance,markets_finance,false +vpatel,newsmast.social,AI,ai,false +vpatel,newsmast.social,Science,science,false +vpatel,newsmast.social,Chemistry,chemistry,false +vpatel,newsmast.social,Mathematics,mathematics,false +vpatel,newsmast.social,Space,space,false +vpatel,newsmast.social,Books & Literature,books_literature,false +vpatel,newsmast.social,LGBTQ+,lgbtq,false +vpatel,newsmast.social,Social Sciences,social_sciences,false +vpatel,newsmast.social,Architecture & Design,architecture_design,false +vpatel,newsmast.social,Movies,movies,false +vpatel,newsmast.social,Performing Arts,performing_arts,false +vpatel,newsmast.social,TV & Radio,tv_radio,false +vpatel,newsmast.social,Football,football,false +vpatel,newsmast.social,Creative Arts,creative_arts,false +vpatel,newsmast.social,Food & Drink,food_drink,false +vpatel,newsmast.social,Humour,humour,false +vpatel,newsmast.social,Nature & Wildlife,nature_wildlife,false +vpatel,newsmast.social,Pets,pets,false +vpatel,newsmast.social,Puzzles,puzzles,false +vpatel,newsmast.social,Travel,travel,false +natashaklondon,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,true +natashaklondon,newsmast.social,Creative Arts,creative_arts,false +natashaklondon,newsmast.social,Nature & Wildlife,nature_wildlife,false +natashaklondon,newsmast.social,Travel,travel,false +akptest007,newsmast.social,Nature & Wildlife,nature_wildlife,false +akptest007,newsmast.social,Books & Literature,books_literature,false +akptest007,newsmast.social,Technology,technology,false +akptest007,newsmast.social,Business,business,false +akptest007,newsmast.social,Government & Policy,government_policy,false +akptest007,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false +akptest007,newsmast.social,Climate change,climate_change,true +akptest007,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +akptest007,newsmast.social,Energy & Pollution,energy_pollution,false +akptest007,newsmast.social,Environment,environment,false +akptest007,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false +akptest007,newsmast.social,Poverty & Inequality,poverty_inequality,false +akptest007,newsmast.social,Immigrants Rights,immigrants_rights,false +Academistry,newsmast.social,Biology,biology,false +Academistry,newsmast.social,Breaking News,breaking_news,false +Academistry,newsmast.social,Chemistry,chemistry,true +Academistry,newsmast.social,Government & Policy,government_policy,false +Academistry,newsmast.social,Healthcare,healthcare,false +Academistry,newsmast.social,Poverty & Inequality,poverty_inequality,false +Academistry,newsmast.social,Journalism & Comment,news_comment_data,false +Academistry,newsmast.social,Politics,politics,false +Academistry,newsmast.social,Science,science,false +Academistry,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false +andadapt,newsmast.social,AI,ai,false +andadapt,newsmast.social,Architecture & Design,architecture_design,false +andadapt,newsmast.social,Biology,biology,false +andadapt,newsmast.social,Books & Literature,books_literature,false +andadapt,newsmast.social,Business,business,false +andadapt,newsmast.social,Chemistry,chemistry,false +andadapt,newsmast.social,Creative Arts,creative_arts,false +andadapt,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +andadapt,newsmast.social,Engineering,engineering,false +andadapt,newsmast.social,Food & Drink,food_drink,false +andadapt,newsmast.social,Gaming,gaming,false +andadapt,newsmast.social,History,history,false +andadapt,newsmast.social,Humanities,humanities,false +andadapt,newsmast.social,Humour,humour,false +andadapt,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false +andadapt,newsmast.social,Markets & Finance,markets_finance,false +andadapt,newsmast.social,Mathematics,mathematics,false +andadapt,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false +andadapt,newsmast.social,Movies,movies,false +andadapt,newsmast.social,Music,music,false +andadapt,newsmast.social,Nature & Wildlife,nature_wildlife,false +andadapt,newsmast.social,Journalism & Comment,news_comment_data,false +andadapt,newsmast.social,Performing Arts,performing_arts,false +andadapt,newsmast.social,Pets,pets,false +andadapt,newsmast.social,Philosophy,philosophy,false +andadapt,newsmast.social,Photography,photography,false +andadapt,newsmast.social,Physics,physics,false +andadapt,newsmast.social,Poverty & Inequality,poverty_inequality,false +andadapt,newsmast.social,Programming,programming,false +andadapt,newsmast.social,Puzzles,puzzles,false +andadapt,newsmast.social,Science,science,false +andadapt,newsmast.social,Social Media,social_media,false +andadapt,newsmast.social,Social Sciences,social_sciences,false +andadapt,newsmast.social,Space,space,false +andadapt,newsmast.social,Technology,technology,false +andadapt,newsmast.social,Travel,travel,false +andadapt,newsmast.social,TV & Radio,tv_radio,false +andadapt,newsmast.social,Ukraine Invasion,ukraine_invasion,false +andadapt,newsmast.social,Visual Arts,visual_arts,false +andadapt,newsmast.social,Weather,weather,false +andadapt,newsmast.social,Workers Rights,workers_rights,false +andadapt,newsmast.social,Breaking News,breaking_news,true +Hurns,newsmast.social,AI,ai,false +Hurns,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false +Hurns,newsmast.social,Breaking News,breaking_news,false +Hurns,newsmast.social,Climate change,climate_change,true +Hurns,newsmast.social,Energy & Pollution,energy_pollution,false +Hurns,newsmast.social,Environment,environment,false +Lawrence,newsmast.social,AI,ai,false +Lawrence,newsmast.social,Breaking News,breaking_news,false +Lawrence,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false +Lawrence,newsmast.social,Creative Arts,creative_arts,false +Lawrence,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +Lawrence,newsmast.social,Food & Drink,food_drink,false +Lawrence,newsmast.social,History,history,false +Lawrence,newsmast.social,Humanities,humanities,false +Lawrence,newsmast.social,Journalism & Comment,news_comment_data,false +Lawrence,newsmast.social,Philosophy,philosophy,false +Lawrence,newsmast.social,Technology,technology,true +Lawrence,newsmast.social,Environment,environment,false +Lawrence,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false +stephieduffy,newsmast.social,Breaking News,breaking_news,false +stephieduffy,newsmast.social,Pets,pets,false +stephieduffy,newsmast.social,Creative Arts,creative_arts,false +stephieduffy,newsmast.social,Performing Arts,performing_arts,true +stephieduffy,newsmast.social,Travel,travel,false +stephieduffy,newsmast.social,Humour,humour,false +stephieduffy,newsmast.social,Humanities,humanities,false +stephieduffy,newsmast.social,Music,music,false +stephieduffy,newsmast.social,LGBTQ+,lgbtq,false +stephieduffy,newsmast.social,Women’s Voices,women_voices,false +stephieduffy,newsmast.social,Disabled Voices,disabled_voices,false +stephieduffy,newsmast.social,Books & Literature,books_literature,false +stephieduffy,newsmast.social,Activism & Civil Rights,activism_civil_rights,false +stephieduffy,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false +stephieduffy,newsmast.social,Journalism & Comment,news_comment_data,false +stephieduffy,newsmast.social,Movies,movies,false +stephieduffy,newsmast.social,Philosophy,philosophy,false +stephieduffy,newsmast.social,TV & Radio,tv_radio,false +stephieduffy,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false +DrECSkirmuntt,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false +DrECSkirmuntt,newsmast.social,Creative Arts,creative_arts,false +DrECSkirmuntt,newsmast.social,AI,ai,false +DrECSkirmuntt,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false +DrECSkirmuntt,newsmast.social,Biology,biology,false +DrECSkirmuntt,newsmast.social,Breaking News,breaking_news,false +DrECSkirmuntt,newsmast.social,Food & Drink,food_drink,false +DrECSkirmuntt,newsmast.social,Gaming,gaming,false +DrECSkirmuntt,newsmast.social,Movies,movies,false +DrECSkirmuntt,newsmast.social,Nature & Wildlife,nature_wildlife,false +DrECSkirmuntt,newsmast.social,Journalism & Comment,news_comment_data,false +DrECSkirmuntt,newsmast.social,Pets,pets,false +DrECSkirmuntt,newsmast.social,Science,science,true +DrECSkirmuntt,newsmast.social,Space,space,false +DrECSkirmuntt,newsmast.social,Travel,travel,false +DrECSkirmuntt,newsmast.social,Weather,weather,false +samlee,newsmast.social,Breaking News,breaking_news,false +samlee,newsmast.social,Football,football,true +samlee,newsmast.social,Gaming,gaming,false +samlee,newsmast.social,Movies,movies,false +samlee,newsmast.social,Music,music,false +samlee,newsmast.social,Sport,sport,false +Joan_Kem,newsmast.social,Activism & Civil Rights,activism_civil_rights,false +Joan_Kem,newsmast.social,Black Voices,black_voices,false +Joan_Kem,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +Joan_Kem,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,true +Joan_Kem,newsmast.social,Poverty & Inequality,poverty_inequality,false +Joan_Kem,newsmast.social,Women’s Voices,women_voices,false +Joan_Kem,newsmast.social,Workers Rights,workers_rights,false +Joan_Kem,newsmast.social,Environment,environment,false +TVPsychologist,newsmast.social,Social Sciences,social_sciences,true +TVPsychologist,newsmast.social,Creative Arts,creative_arts,false +TVPsychologist,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false +TVPsychologist,newsmast.social,Journalism & Comment,news_comment_data,false +TVPsychologist,newsmast.social,Politics,politics,false +TVPsychologist,newsmast.social,TV & Radio,tv_radio,false +saturn,newsmast.social,Activism & Civil Rights,activism_civil_rights,false +saturn,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false +saturn,newsmast.social,Black Voices,black_voices,false +saturn,newsmast.social,Climate change,climate_change,false +saturn,newsmast.social,Disabled Voices,disabled_voices,false +saturn,newsmast.social,Energy & Pollution,energy_pollution,false +saturn,newsmast.social,Environment,environment,true +saturn,newsmast.social,Immigrants Rights,immigrants_rights,false +saturn,newsmast.social,Indigenous Peoples,indigenous_peoples,false +saturn,newsmast.social,LGBTQ+,lgbtq,false +saturn,newsmast.social,Women’s Voices,women_voices,false +saturn,newsmast.social,Workers Rights,workers_rights,false +saturn,newsmast.social,Nature & Wildlife,nature_wildlife,false +liharris30,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false +liharris30,newsmast.social,Business,business,false +liharris30,newsmast.social,Humanities,humanities,false +liharris30,newsmast.social,Technology,technology,false +liharris30,newsmast.social,Environment,environment,true +Bekash,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false +Bekash,newsmast.social,Creative Arts,creative_arts,false +Bekash,newsmast.social,Food & Drink,food_drink,false +Bekash,newsmast.social,Football,football,true +Bekash,newsmast.social,Humour,humour,false +Bekash,newsmast.social,Nature & Wildlife,nature_wildlife,false +Bekash,newsmast.social,Pets,pets,false +Bekash,newsmast.social,Puzzles,puzzles,false +Bekash,newsmast.social,Sport,sport,false +Bekash,newsmast.social,Travel,travel,false +CharityNews,newsmast.social,Law & Justice,law_justice,false +CharityNews,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false +CharityNews,newsmast.social,Architecture & Design,architecture_design,false +CharityNews,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false +CharityNews,newsmast.social,Books & Literature,books_literature,false +CharityNews,newsmast.social,Breaking News,breaking_news,false +CharityNews,newsmast.social,Climate change,climate_change,false +CharityNews,newsmast.social,Creative Arts,creative_arts,false +CharityNews,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +CharityNews,newsmast.social,Energy & Pollution,energy_pollution,false +CharityNews,newsmast.social,Environment,environment,false +CharityNews,newsmast.social,Food & Drink,food_drink,false +CharityNews,newsmast.social,Football,football,false +CharityNews,newsmast.social,Gaming,gaming,false +CharityNews,newsmast.social,History,history,false +CharityNews,newsmast.social,Humanities,humanities,false +CharityNews,newsmast.social,Humour,humour,false +CharityNews,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,true +CharityNews,newsmast.social,Poverty & Inequality,poverty_inequality,false +CharityNews,newsmast.social,Movies,movies,false +CharityNews,newsmast.social,Music,music,false +CharityNews,newsmast.social,Nature & Wildlife,nature_wildlife,false +CharityNews,newsmast.social,Journalism & Comment,news_comment_data,false +CharityNews,newsmast.social,Performing Arts,performing_arts,false +CharityNews,newsmast.social,Pets,pets,false +CharityNews,newsmast.social,Philosophy,philosophy,false +CharityNews,newsmast.social,Photography,photography,false +CharityNews,newsmast.social,Politics,politics,false +CharityNews,newsmast.social,Puzzles,puzzles,false +CharityNews,newsmast.social,Sport,sport,false +CharityNews,newsmast.social,Travel,travel,false +CharityNews,newsmast.social,TV & Radio,tv_radio,false +CharityNews,newsmast.social,Ukraine Invasion,ukraine_invasion,false +CharityNews,newsmast.social,Visual Arts,visual_arts,false +CharityNews,newsmast.social,Weather,weather,false +CharityNews,newsmast.social,Immigrants Rights,immigrants_rights,false +chrisfrench,newsmast.social,Social Sciences,social_sciences,true +chrisfrench,newsmast.social,Breaking News,breaking_news,false +chrisfrench,newsmast.social,Government & Policy,government_policy,false +chrisfrench,newsmast.social,Movies,movies,false +chrisfrench,newsmast.social,Journalism & Comment,news_comment_data,false +chrisfrench,newsmast.social,Performing Arts,performing_arts,false +chrisfrench,newsmast.social,Politics,politics,false +chrisfrench,newsmast.social,Science,science,false +chrisfrench,newsmast.social,Space,space,false +chrisfrench,newsmast.social,TV & Radio,tv_radio,false +chrisfrench,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +esgcsrpodcastalert,newsmast.social,Business,business,true +esgcsrpodcastalert,newsmast.social,Markets & Finance,markets_finance,false +NineBall,newsmast.social,AI,ai,false +NineBall,newsmast.social,Breaking News,breaking_news,true +NineBall,newsmast.social,Journalism & Comment,news_comment_data,false +NineBall,newsmast.social,Politics,politics,false +NineBall,newsmast.social,Technology,technology,false +NineBall,newsmast.social,Ukraine Invasion,ukraine_invasion,false +NineBall,newsmast.social,Weather,weather,false +zerotwo,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false +zerotwo,newsmast.social,Climate change,climate_change,false +zerotwo,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +zerotwo,newsmast.social,Energy & Pollution,energy_pollution,false +zerotwo,newsmast.social,Environment,environment,false +zerotwo,newsmast.social,Healthcare,healthcare,false +zerotwo,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,true +zerotwo,newsmast.social,Poverty & Inequality,poverty_inequality,false +zerotwo,newsmast.social,Law & Justice,law_justice,false +zerotwo,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false +zerotwo,newsmast.social,Journalism & Comment,news_comment_data,false +zerotwo,newsmast.social,Politics,politics,false +zerotwo,newsmast.social,Ukraine Invasion,ukraine_invasion,false +zerotwo,newsmast.social,Weather,weather,false +zerotwo,newsmast.social,Breaking News,breaking_news,false +zerotwo,newsmast.social,Creative Arts,creative_arts,false +zerotwo,newsmast.social,Government & Policy,government_policy,false +zerotwo,newsmast.social,Nature & Wildlife,nature_wildlife,false +zerotwo,newsmast.social,Immigrants Rights,immigrants_rights,false +dev_sithu,newsmast.social,Journalism & Comment,news_comment_data,false +dev_sithu,newsmast.social,Politics,politics,false +dev_sithu,newsmast.social,Ukraine Invasion,ukraine_invasion,false +dev_sithu,newsmast.social,Weather,weather,false +dev_sithu,newsmast.social,Breaking News,breaking_news,true +mkk_newsmast,newsmast.social,Breaking News,breaking_news,false +mkk_newsmast,newsmast.social,Journalism & Comment,news_comment_data,true +mkk_newsmast,newsmast.social,Politics,politics,false +mkk_newsmast,newsmast.social,Ukraine Invasion,ukraine_invasion,false +mkk_newsmast,newsmast.social,Weather,weather,false +Roncaglia,newsmast.social,Books & Literature,books_literature,false +Roncaglia,newsmast.social,History,history,false +Roncaglia,newsmast.social,Humanities,humanities,false +Roncaglia,newsmast.social,Space,space,false +Roncaglia,newsmast.social,AI,ai,true +daniel_mckeon,newsmast.social,TV & Radio,tv_radio,false +daniel_mckeon,newsmast.social,Chemistry,chemistry,false +daniel_mckeon,newsmast.social,Journalism & Comment,news_comment_data,false +daniel_mckeon,newsmast.social,Social Sciences,social_sciences,false +daniel_mckeon,newsmast.social,Physics,physics,true +SoeMyinHtel_dev,newsmast.social,Breaking News,breaking_news,false +SoeMyinHtel_dev,newsmast.social,Democracy & Human Rights,democracy_human_rights,true +SoeMyinHtel_dev,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false +SoeMyinHtel_dev,newsmast.social,Poverty & Inequality,poverty_inequality,false +SoeMyinHtel_dev,newsmast.social,Journalism & Comment,news_comment_data,false +SoeMyinHtel_dev,newsmast.social,Politics,politics,false +SoeMyinHtel_dev,newsmast.social,Ukraine Invasion,ukraine_invasion,false +SoeMyinHtel_dev,newsmast.social,Weather,weather,false +SoeMyinHtel_dev,newsmast.social,Environment,environment,false +SoeMyinHtel_dev,newsmast.social,Immigrants Rights,immigrants_rights,false +S33J,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false +S33J,newsmast.social,Biology,biology,false +S33J,newsmast.social,Environment,environment,false +S33J,newsmast.social,Food & Drink,food_drink,false +S33J,newsmast.social,Nature & Wildlife,nature_wildlife,false +S33J,newsmast.social,Performing Arts,performing_arts,false +S33J,newsmast.social,Science,science,false +S33J,newsmast.social,Sport,sport,false +S33J,newsmast.social,Visual Arts,visual_arts,false +S33J,newsmast.social,Football,football,false +S33J,newsmast.social,Social Sciences,social_sciences,false +S33J,newsmast.social,Journalism & Comment,news_comment_data,true +S33J,newsmast.social,Creative Arts,creative_arts,false +S33J,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false +S33J,newsmast.social,Books & Literature,books_literature,false +S33J,newsmast.social,Humanities,humanities,false +S33J,newsmast.social,Space,space,false +savenues,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false +savenues,newsmast.social,Creative Arts,creative_arts,false +savenues,newsmast.social,Breaking News,breaking_news,false +savenues,newsmast.social,Food & Drink,food_drink,false +savenues,newsmast.social,Humour,humour,false +savenues,newsmast.social,Nature & Wildlife,nature_wildlife,false +savenues,newsmast.social,Travel,travel,true +artek,newsmast.social,Biology,biology,false +artek,newsmast.social,Breaking News,breaking_news,false +artek,newsmast.social,Chemistry,chemistry,false +artek,newsmast.social,Engineering,engineering,false +artek,newsmast.social,Mathematics,mathematics,false +artek,newsmast.social,Physics,physics,false +artek,newsmast.social,Science,science,true +artek,newsmast.social,Space,space,false +macroliter,newsmast.social,Markets & Finance,markets_finance,false +macroliter,newsmast.social,Nature & Wildlife,nature_wildlife,false +macroliter,newsmast.social,Activism & Civil Rights,activism_civil_rights,false +macroliter,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false +macroliter,newsmast.social,Biology,biology,false +macroliter,newsmast.social,Climate change,climate_change,false +macroliter,newsmast.social,Environment,environment,false +macroliter,newsmast.social,Science,science,false +macroliter,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,true +LukaszSzulc,newsmast.social,AI,ai,false +LukaszSzulc,newsmast.social,Humanities,humanities,false +LukaszSzulc,newsmast.social,Immigrants Rights,immigrants_rights,false +LukaszSzulc,newsmast.social,LGBTQ+,lgbtq,true +LukaszSzulc,newsmast.social,Social Sciences,social_sciences,false +LukaszSzulc,newsmast.social,Technology,technology,false +LukaszSzulc,newsmast.social,Women’s Voices,women_voices,false +3arabawy,newsmast.social,Activism & Civil Rights,activism_civil_rights,false +3arabawy,newsmast.social,Books & Literature,books_literature,false +3arabawy,newsmast.social,Breaking News,breaking_news,false +3arabawy,newsmast.social,Government & Policy,government_policy,false +3arabawy,newsmast.social,History,history,false +3arabawy,newsmast.social,Humanities,humanities,false +3arabawy,newsmast.social,Immigrants Rights,immigrants_rights,false +3arabawy,newsmast.social,Journalism & Comment,news_comment_data,true +3arabawy,newsmast.social,Philosophy,philosophy,false +3arabawy,newsmast.social,Politics,politics,false +3arabawy,newsmast.social,Social Sciences,social_sciences,false +3arabawy,newsmast.social,Workers Rights,workers_rights,false +Thomas,newsmast.social,Philosophy,philosophy,false +Thomas,newsmast.social,Activism & Civil Rights,activism_civil_rights,false +Thomas,newsmast.social,Ukraine Invasion,ukraine_invasion,true +Thomas,newsmast.social,Government & Policy,government_policy,false +Thomas,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false +Thomas,newsmast.social,Nature & Wildlife,nature_wildlife,false +jacklscanlan,newsmast.social,Government & Policy,government_policy,false +jacklscanlan,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false +jacklscanlan,newsmast.social,Biology,biology,false +jacklscanlan,newsmast.social,Science,science,true +jacklscanlan,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false +docip,newsmast.social,Nature & Wildlife,nature_wildlife,false +docip,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false +docip,newsmast.social,Climate change,climate_change,false +docip,newsmast.social,Energy & Pollution,energy_pollution,false +docip,newsmast.social,Environment,environment,false +docip,newsmast.social,Indigenous Peoples,indigenous_peoples,true +docip,newsmast.social,Social Sciences,social_sciences,false +brentnatzle,newsmast.social,TV & Radio,tv_radio,false +brentnatzle,newsmast.social,Breaking News,breaking_news,true +brentnatzle,newsmast.social,Business,business,false +brentnatzle,newsmast.social,Government & Policy,government_policy,false +brentnatzle,newsmast.social,Movies,movies,false +brentnatzle,newsmast.social,Music,music,false +brentnatzle,newsmast.social,Journalism & Comment,news_comment_data,false +brentnatzle,newsmast.social,Politics,politics,false +TashaA,newsmast.social,Government & Policy,government_policy,false +TashaA,newsmast.social,Healthcare,healthcare,false +TashaA,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false +TashaA,newsmast.social,Immigrants Rights,immigrants_rights,false +TashaA,newsmast.social,Indigenous Peoples,indigenous_peoples,false +TashaA,newsmast.social,Poverty & Inequality,poverty_inequality,false +TashaA,newsmast.social,Law & Justice,law_justice,false +TashaA,newsmast.social,LGBTQ+,lgbtq,false +TashaA,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false +TashaA,newsmast.social,Women’s Voices,women_voices,false +TashaA,newsmast.social,Workers Rights,workers_rights,false +TashaA,newsmast.social,Creative Arts,creative_arts,false +TashaA,newsmast.social,Food & Drink,food_drink,false +TashaA,newsmast.social,Humour,humour,false +TashaA,newsmast.social,Nature & Wildlife,nature_wildlife,false +TashaA,newsmast.social,Pets,pets,false +TashaA,newsmast.social,Puzzles,puzzles,false +TashaA,newsmast.social,Travel,travel,false +TashaA,newsmast.social,Architecture & Design,architecture_design,false +TashaA,newsmast.social,Gaming,gaming,false +TashaA,newsmast.social,Movies,movies,false +TashaA,newsmast.social,Music,music,false +TashaA,newsmast.social,Performing Arts,performing_arts,false +TashaA,newsmast.social,Photography,photography,false +TashaA,newsmast.social,TV & Radio,tv_radio,false +TashaA,newsmast.social,Visual Arts,visual_arts,false +TashaA,newsmast.social,Humanities,humanities,false +TashaA,newsmast.social,Books & Literature,books_literature,false +TashaA,newsmast.social,History,history,false +TashaA,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false +TashaA,newsmast.social,Black Voices,black_voices,false +TashaA,newsmast.social,Climate change,climate_change,false +TashaA,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +TashaA,newsmast.social,Disabled Voices,disabled_voices,false +TashaA,newsmast.social,Energy & Pollution,energy_pollution,false +TashaA,newsmast.social,Environment,environment,false +TashaA,newsmast.social,Philosophy,philosophy,false +TashaA,newsmast.social,Sport,sport,false +TashaA,newsmast.social,Football,football,false +TashaA,newsmast.social,Social Sciences,social_sciences,false +TashaA,newsmast.social,Science,science,false +TashaA,newsmast.social,Biology,biology,false +TashaA,newsmast.social,Chemistry,chemistry,false +TashaA,newsmast.social,Engineering,engineering,false +TashaA,newsmast.social,Mathematics,mathematics,false +TashaA,newsmast.social,Physics,physics,false +TashaA,newsmast.social,Space,space,false +TashaA,newsmast.social,Technology,technology,false +TashaA,newsmast.social,AI,ai,false +TashaA,newsmast.social,Business,business,false +TashaA,newsmast.social,Journalism & Comment,news_comment_data,false +TashaA,newsmast.social,Breaking News,breaking_news,false +TashaA,newsmast.social,Politics,politics,false +TashaA,newsmast.social,Ukraine Invasion,ukraine_invasion,false +TashaA,newsmast.social,Weather,weather,false +JulieSpray,newsmast.social,Government & Policy,government_policy,false +JulieSpray,newsmast.social,Activism & Civil Rights,activism_civil_rights,false +JulieSpray,newsmast.social,AI,ai,false +JulieSpray,newsmast.social,Black Voices,black_voices,false +JulieSpray,newsmast.social,Breaking News,breaking_news,false +JulieSpray,newsmast.social,Disabled Voices,disabled_voices,false +JulieSpray,newsmast.social,Healthcare,healthcare,false +JulieSpray,newsmast.social,Immigrants Rights,immigrants_rights,false +JulieSpray,newsmast.social,Indigenous Peoples,indigenous_peoples,false +JulieSpray,newsmast.social,Poverty & Inequality,poverty_inequality,false +JulieSpray,newsmast.social,Law & Justice,law_justice,false +JulieSpray,newsmast.social,LGBTQ+,lgbtq,false +JulieSpray,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false +JulieSpray,newsmast.social,Journalism & Comment,news_comment_data,false +JulieSpray,newsmast.social,Politics,politics,false +JulieSpray,newsmast.social,Science,science,false +JulieSpray,newsmast.social,Social Sciences,social_sciences,true +JulieSpray,newsmast.social,Technology,technology,false +JulieSpray,newsmast.social,TV & Radio,tv_radio,false +JulieSpray,newsmast.social,Ukraine Invasion,ukraine_invasion,false +JulieSpray,newsmast.social,Visual Arts,visual_arts,false +JulieSpray,newsmast.social,Women’s Voices,women_voices,false +JulieSpray,newsmast.social,Workers Rights,workers_rights,false +JulieSpray,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +JulieSpray,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false +sethlazar,newsmast.social,AI,ai,true +sethlazar,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +sethlazar,newsmast.social,Government & Policy,government_policy,false +sethlazar,newsmast.social,Poverty & Inequality,poverty_inequality,false +sethlazar,newsmast.social,Technology,technology,false +Joshmcc_05,newsmast.social,Breaking News,breaking_news,false +Joshmcc_05,newsmast.social,Football,football,true +Joshmcc_05,newsmast.social,Journalism & Comment,news_comment_data,false +Joshmcc_05,newsmast.social,Sport,sport,false +WilliamHolland,newsmast.social,Government & Policy,government_policy,true +WilliamHolland,newsmast.social,Healthcare,healthcare,false +WilliamHolland,newsmast.social,Law & Justice,law_justice,false +WilliamHolland,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false +Stutsies,newsmast.social,Creative Arts,creative_arts,false +Stutsies,newsmast.social,Breaking News,breaking_news,false +Stutsies,newsmast.social,Food & Drink,food_drink,false +Stutsies,newsmast.social,Gaming,gaming,true +Stutsies,newsmast.social,Movies,movies,false +Stutsies,newsmast.social,Music,music,false +Stutsies,newsmast.social,Performing Arts,performing_arts,false +Stutsies,newsmast.social,Travel,travel,false +enangha,newsmast.social,Ukraine Invasion,ukraine_invasion,false +enangha,newsmast.social,Journalism & Comment,news_comment_data,true +enangha,newsmast.social,Social Sciences,social_sciences,false +enangha,newsmast.social,Science,science,false +enangha,newsmast.social,Government & Policy,government_policy,false +enangha,newsmast.social,Mathematics,mathematics,false +enangha,newsmast.social,Biology,biology,false +enangha,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false +enangha,newsmast.social,Activism & Civil Rights,activism_civil_rights,false +enangha,newsmast.social,Black Voices,black_voices,false +enangha,newsmast.social,Women’s Voices,women_voices,false +enangha,newsmast.social,Pets,pets,false +enangha,newsmast.social,Healthcare,healthcare,false +enangha,newsmast.social,Poverty & Inequality,poverty_inequality,false +enangha,newsmast.social,Breaking News,breaking_news,false +enangha,newsmast.social,Philosophy,philosophy,false +enangha,newsmast.social,Environment,environment,false +enangha,newsmast.social,Food & Drink,food_drink,false +enangha,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +enangha,newsmast.social,Immigrants Rights,immigrants_rights,false +DeliSaavedra,newsmast.social,Activism & Civil Rights,activism_civil_rights,false +DeliSaavedra,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,true +DeliSaavedra,newsmast.social,Breaking News,breaking_news,false +DeliSaavedra,newsmast.social,Climate change,climate_change,false +DeliSaavedra,newsmast.social,Energy & Pollution,energy_pollution,false +DeliSaavedra,newsmast.social,Environment,environment,false +DeliSaavedra,newsmast.social,Indigenous Peoples,indigenous_peoples,false +DeliSaavedra,newsmast.social,Poverty & Inequality,poverty_inequality,false +DeliSaavedra,newsmast.social,LGBTQ+,lgbtq,false +DeliSaavedra,newsmast.social,Journalism & Comment,news_comment_data,false +DeliSaavedra,newsmast.social,Politics,politics,false +DeliSaavedra,newsmast.social,Ukraine Invasion,ukraine_invasion,false +DeliSaavedra,newsmast.social,Nature & Wildlife,nature_wildlife,false +DeliSaavedra,newsmast.social,Weather,weather,false +DeliSaavedra,newsmast.social,Women’s Voices,women_voices,false +DeliSaavedra,newsmast.social,Workers Rights,workers_rights,false +DeliSaavedra,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false +DeliSaavedra,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +phylis,newsmast.social,AI,ai,true +phylis,newsmast.social,Architecture & Design,architecture_design,false +phylis,newsmast.social,Biology,biology,false +phylis,newsmast.social,Chemistry,chemistry,false +phylis,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +phylis,newsmast.social,Engineering,engineering,false +phylis,newsmast.social,Gaming,gaming,false +phylis,newsmast.social,Government & Policy,government_policy,false +phylis,newsmast.social,Healthcare,healthcare,false +phylis,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false +phylis,newsmast.social,Poverty & Inequality,poverty_inequality,false +phylis,newsmast.social,Law & Justice,law_justice,false +phylis,newsmast.social,Mathematics,mathematics,false +phylis,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false +phylis,newsmast.social,Movies,movies,false +phylis,newsmast.social,Music,music,false +phylis,newsmast.social,Performing Arts,performing_arts,false +phylis,newsmast.social,Photography,photography,false +phylis,newsmast.social,Physics,physics,false +phylis,newsmast.social,Science,science,false +phylis,newsmast.social,Space,space,false +phylis,newsmast.social,Technology,technology,false +phylis,newsmast.social,TV & Radio,tv_radio,false +phylis,newsmast.social,Visual Arts,visual_arts,false +phylis,newsmast.social,Environment,environment,false +phylis,newsmast.social,Immigrants Rights,immigrants_rights,false +Dr_Finbar,newsmast.social,Technology,technology,false +Dr_Finbar,newsmast.social,AI,ai,false +Dr_Finbar,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false +Dr_Finbar,newsmast.social,Energy & Pollution,energy_pollution,false +Dr_Finbar,newsmast.social,Environment,environment,false +Dr_Finbar,newsmast.social,Markets & Finance,markets_finance,true +jannus,newsmast.social,Technology,technology,false +jannus,newsmast.social,Social Sciences,social_sciences,false +jannus,newsmast.social,AI,ai,false +jannus,newsmast.social,Climate change,climate_change,false +jannus,newsmast.social,Energy & Pollution,energy_pollution,false +jannus,newsmast.social,Physics,physics,false +jannus,newsmast.social,Space,space,false +jannus,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,true +jannus,newsmast.social,Environment,environment,false +EV_Musings,newsmast.social,Technology,technology,true +EV_Musings,newsmast.social,Business,business,false +EV_Musings,newsmast.social,Climate change,climate_change,false +EV_Musings,newsmast.social,Engineering,engineering,false +EV_Musings,newsmast.social,Physics,physics,false +EV_Musings,newsmast.social,Travel,travel,false +rozenberg,newsmast.social,Books & Literature,books_literature,false +rozenberg,newsmast.social,Breaking News,breaking_news,false +rozenberg,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +rozenberg,newsmast.social,Government & Policy,government_policy,false +rozenberg,newsmast.social,History,history,false +rozenberg,newsmast.social,Humanities,humanities,false +rozenberg,newsmast.social,Law & Justice,law_justice,true +rozenberg,newsmast.social,Journalism & Comment,news_comment_data,false +rozenberg,newsmast.social,Philosophy,philosophy,false +rozenberg,newsmast.social,Politics,politics,false +rozenberg,newsmast.social,Workers Rights,workers_rights,false +UniverseMoment,newsmast.social,Biology,biology,false +UniverseMoment,newsmast.social,Chemistry,chemistry,false +UniverseMoment,newsmast.social,Engineering,engineering,false +UniverseMoment,newsmast.social,Mathematics,mathematics,false +UniverseMoment,newsmast.social,Physics,physics,false +UniverseMoment,newsmast.social,Science,science,true +UniverseMoment,newsmast.social,Space,space,false +healthygfasian,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false +healthygfasian,newsmast.social,AI,ai,false +healthygfasian,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false +healthygfasian,newsmast.social,Business,business,false +healthygfasian,newsmast.social,Climate change,climate_change,false +healthygfasian,newsmast.social,Creative Arts,creative_arts,false +healthygfasian,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +healthygfasian,newsmast.social,Disabled Voices,disabled_voices,false +healthygfasian,newsmast.social,Energy & Pollution,energy_pollution,false +healthygfasian,newsmast.social,Environment,environment,false +healthygfasian,newsmast.social,Humour,humour,false +healthygfasian,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false +healthygfasian,newsmast.social,Immigrants Rights,immigrants_rights,false +healthygfasian,newsmast.social,Poverty & Inequality,poverty_inequality,false +healthygfasian,newsmast.social,Markets & Finance,markets_finance,false +healthygfasian,newsmast.social,Nature & Wildlife,nature_wildlife,false +healthygfasian,newsmast.social,Pets,pets,false +healthygfasian,newsmast.social,Puzzles,puzzles,false +healthygfasian,newsmast.social,Technology,technology,false +healthygfasian,newsmast.social,Travel,travel,false +healthygfasian,newsmast.social,Women’s Voices,women_voices,false +healthygfasian,newsmast.social,Food & Drink,food_drink,true +EasternBorder,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false +EasternBorder,newsmast.social,AI,ai,false +EasternBorder,newsmast.social,Architecture & Design,architecture_design,false +EasternBorder,newsmast.social,Books & Literature,books_literature,false +EasternBorder,newsmast.social,Breaking News,breaking_news,false +EasternBorder,newsmast.social,Creative Arts,creative_arts,false +EasternBorder,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +EasternBorder,newsmast.social,Engineering,engineering,false +EasternBorder,newsmast.social,Food & Drink,food_drink,false +EasternBorder,newsmast.social,Football,football,false +EasternBorder,newsmast.social,Gaming,gaming,false +EasternBorder,newsmast.social,Government & Policy,government_policy,false +EasternBorder,newsmast.social,Healthcare,healthcare,false +EasternBorder,newsmast.social,History,history,false +EasternBorder,newsmast.social,Humanities,humanities,false +EasternBorder,newsmast.social,Humour,humour,false +EasternBorder,newsmast.social,Law & Justice,law_justice,false +EasternBorder,newsmast.social,Mathematics,mathematics,false +EasternBorder,newsmast.social,Movies,movies,false +EasternBorder,newsmast.social,Nature & Wildlife,nature_wildlife,false +EasternBorder,newsmast.social,Journalism & Comment,news_comment_data,true +EasternBorder,newsmast.social,Philosophy,philosophy,false +EasternBorder,newsmast.social,Photography,photography,false +EasternBorder,newsmast.social,Politics,politics,false +EasternBorder,newsmast.social,Science,science,false +EasternBorder,newsmast.social,Social Sciences,social_sciences,false +EasternBorder,newsmast.social,Space,space,false +EasternBorder,newsmast.social,Sport,sport,false +EasternBorder,newsmast.social,Technology,technology,false +EasternBorder,newsmast.social,Travel,travel,false +EasternBorder,newsmast.social,TV & Radio,tv_radio,false +EasternBorder,newsmast.social,Ukraine Invasion,ukraine_invasion,false +EasternBorder,newsmast.social,Weather,weather,false +EasternBorder,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false +EasternBorder,newsmast.social,Poverty & Inequality,poverty_inequality,false +morefunwithjuan,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false +morefunwithjuan,newsmast.social,Creative Arts,creative_arts,false +morefunwithjuan,newsmast.social,Architecture & Design,architecture_design,false +morefunwithjuan,newsmast.social,Food & Drink,food_drink,false +morefunwithjuan,newsmast.social,Movies,movies,false +morefunwithjuan,newsmast.social,Music,music,false +morefunwithjuan,newsmast.social,Nature & Wildlife,nature_wildlife,false +morefunwithjuan,newsmast.social,Travel,travel,true +morefunwithjuan,newsmast.social,Visual Arts,visual_arts,false +morefunwithjuan,newsmast.social,Weather,weather,false +Kayleigh,newsmast.social,Disabled Voices,disabled_voices,false +Kayleigh,newsmast.social,Humanities,humanities,false +Kayleigh,newsmast.social,Government & Policy,government_policy,false +Kayleigh,newsmast.social,Journalism & Comment,news_comment_data,false +Kayleigh,newsmast.social,Women’s Voices,women_voices,false +Kayleigh,newsmast.social,LGBTQ+,lgbtq,false +Kayleigh,newsmast.social,Black Voices,black_voices,false +Kayleigh,newsmast.social,Business,business,false +Kayleigh,newsmast.social,Books & Literature,books_literature,true +Kayleigh,newsmast.social,Activism & Civil Rights,activism_civil_rights,false +Kayleigh,newsmast.social,Markets & Finance,markets_finance,false +Kayleigh,newsmast.social,Music,music,false +Kayleigh,newsmast.social,TV & Radio,tv_radio,false +Kayleigh,newsmast.social,Pets,pets,false +Kayleigh,newsmast.social,Philosophy,philosophy,false +Kayleigh,newsmast.social,Immigrants Rights,immigrants_rights,false +Kayleigh,newsmast.social,Workers Rights,workers_rights,false +Kayleigh,newsmast.social,Gaming,gaming,false +Kayleigh,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false +Kayleigh,newsmast.social,Breaking News,breaking_news,false +Kayleigh,newsmast.social,Indigenous Peoples,indigenous_peoples,false +Kayleigh,newsmast.social,Poverty & Inequality,poverty_inequality,false +Kayleigh,newsmast.social,Movies,movies,false +Kayleigh,newsmast.social,Healthcare,healthcare,false +Kayleigh,newsmast.social,Creative Arts,creative_arts,false +Kayleigh,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +lorenaflag,newsmast.social,Activism & Civil Rights,activism_civil_rights,false +lorenaflag,newsmast.social,Photography,photography,false +lorenaflag,newsmast.social,Social Sciences,social_sciences,false +lorenaflag,newsmast.social,Technology,technology,false +lorenaflag,newsmast.social,TV & Radio,tv_radio,false +lorenaflag,newsmast.social,Visual Arts,visual_arts,false +lorenaflag,newsmast.social,Women’s Voices,women_voices,true +lorenaflag,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false +Sushmitapanda,newsmast.social,Healthcare,healthcare,true +Sushmitapanda,newsmast.social,Nature & Wildlife,nature_wildlife,false +Sushmitapanda,newsmast.social,Architecture & Design,architecture_design,false +Sushmitapanda,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false +Sushmitapanda,newsmast.social,Biology,biology,false +Sushmitapanda,newsmast.social,Breaking News,breaking_news,false +Sushmitapanda,newsmast.social,Business,business,false +Sushmitapanda,newsmast.social,Chemistry,chemistry,false +Sushmitapanda,newsmast.social,Climate change,climate_change,false +Sushmitapanda,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +Sushmitapanda,newsmast.social,Energy & Pollution,energy_pollution,false +Sushmitapanda,newsmast.social,Engineering,engineering,false +Sushmitapanda,newsmast.social,Environment,environment,false +Sushmitapanda,newsmast.social,Gaming,gaming,false +Sushmitapanda,newsmast.social,Government & Policy,government_policy,false +Sushmitapanda,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false +Sushmitapanda,newsmast.social,Poverty & Inequality,poverty_inequality,false +Sushmitapanda,newsmast.social,Law & Justice,law_justice,false +Sushmitapanda,newsmast.social,Markets & Finance,markets_finance,false +Sushmitapanda,newsmast.social,Mathematics,mathematics,false +Sushmitapanda,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false +Sushmitapanda,newsmast.social,Movies,movies,false +Sushmitapanda,newsmast.social,Music,music,false +Sushmitapanda,newsmast.social,Journalism & Comment,news_comment_data,false +Sushmitapanda,newsmast.social,Performing Arts,performing_arts,false +Sushmitapanda,newsmast.social,Photography,photography,false +Sushmitapanda,newsmast.social,Physics,physics,false +Sushmitapanda,newsmast.social,Politics,politics,false +Sushmitapanda,newsmast.social,Science,science,false +Sushmitapanda,newsmast.social,Space,space,false +Sushmitapanda,newsmast.social,TV & Radio,tv_radio,false +Sushmitapanda,newsmast.social,Ukraine Invasion,ukraine_invasion,false +Sushmitapanda,newsmast.social,Visual Arts,visual_arts,false +Sushmitapanda,newsmast.social,Weather,weather,false +Sushmitapanda,newsmast.social,Immigrants Rights,immigrants_rights,false +DerrickEMugisha,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false +DerrickEMugisha,newsmast.social,Breaking News,breaking_news,false +DerrickEMugisha,newsmast.social,Business,business,false +DerrickEMugisha,newsmast.social,Climate change,climate_change,false +DerrickEMugisha,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +DerrickEMugisha,newsmast.social,Energy & Pollution,energy_pollution,false +DerrickEMugisha,newsmast.social,Environment,environment,false +DerrickEMugisha,newsmast.social,Football,football,false +DerrickEMugisha,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false +DerrickEMugisha,newsmast.social,Poverty & Inequality,poverty_inequality,false +DerrickEMugisha,newsmast.social,Nature & Wildlife,nature_wildlife,false +DerrickEMugisha,newsmast.social,Pets,pets,false +DerrickEMugisha,newsmast.social,Science,science,false +DerrickEMugisha,newsmast.social,Sport,sport,false +DerrickEMugisha,newsmast.social,Travel,travel,false +DerrickEMugisha,newsmast.social,Weather,weather,false +DerrickEMugisha,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,true +DerrickEMugisha,newsmast.social,Immigrants Rights,immigrants_rights,false +VAVEL,newsmast.social,Breaking News,breaking_news,false +VAVEL,newsmast.social,Football,football,true +VAVEL,newsmast.social,Journalism & Comment,news_comment_data,false +VAVEL,newsmast.social,Sport,sport,false +Aysha,newsmast.social,Books & Literature,books_literature,true +Aysha,newsmast.social,Movies,movies,false +Aysha,newsmast.social,Performing Arts,performing_arts,false +Aysha,newsmast.social,Photography,photography,false +Aysha,newsmast.social,Space,space,false +Sebsb,newsmast.social,AI,ai,false +Sebsb,newsmast.social,Architecture & Design,architecture_design,false +Sebsb,newsmast.social,Breaking News,breaking_news,false +Sebsb,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +Sebsb,newsmast.social,Gaming,gaming,false +Sebsb,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false +Sebsb,newsmast.social,Poverty & Inequality,poverty_inequality,false +Sebsb,newsmast.social,Movies,movies,false +Sebsb,newsmast.social,Music,music,false +Sebsb,newsmast.social,Journalism & Comment,news_comment_data,false +Sebsb,newsmast.social,Performing Arts,performing_arts,false +Sebsb,newsmast.social,Photography,photography,false +Sebsb,newsmast.social,Politics,politics,false +Sebsb,newsmast.social,Sport,sport,false +Sebsb,newsmast.social,Technology,technology,false +Sebsb,newsmast.social,TV & Radio,tv_radio,false +Sebsb,newsmast.social,Ukraine Invasion,ukraine_invasion,false +Sebsb,newsmast.social,Visual Arts,visual_arts,false +Sebsb,newsmast.social,Weather,weather,false +Sebsb,newsmast.social,Football,football,true +Sebsb,newsmast.social,Environment,environment,false +Sebsb,newsmast.social,Immigrants Rights,immigrants_rights,false +Sinobabble,newsmast.social,Markets & Finance,markets_finance,false +Sinobabble,newsmast.social,AI,ai,false +Sinobabble,newsmast.social,Books & Literature,books_literature,false +Sinobabble,newsmast.social,Breaking News,breaking_news,false +Sinobabble,newsmast.social,Business,business,false +Sinobabble,newsmast.social,History,history,false +Sinobabble,newsmast.social,Humanities,humanities,true +Sinobabble,newsmast.social,Journalism & Comment,news_comment_data,false +Sinobabble,newsmast.social,Philosophy,philosophy,false +Sinobabble,newsmast.social,Technology,technology,false +samarpahwa,newsmast.social,Breaking News,breaking_news,false +samarpahwa,newsmast.social,Business,business,false +samarpahwa,newsmast.social,Creative Arts,creative_arts,false +samarpahwa,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +samarpahwa,newsmast.social,Food & Drink,food_drink,false +samarpahwa,newsmast.social,Government & Policy,government_policy,true +samarpahwa,newsmast.social,Healthcare,healthcare,false +samarpahwa,newsmast.social,Humour,humour,false +samarpahwa,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false +samarpahwa,newsmast.social,Poverty & Inequality,poverty_inequality,false +samarpahwa,newsmast.social,Law & Justice,law_justice,false +samarpahwa,newsmast.social,Markets & Finance,markets_finance,false +samarpahwa,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false +samarpahwa,newsmast.social,Nature & Wildlife,nature_wildlife,false +samarpahwa,newsmast.social,Journalism & Comment,news_comment_data,false +samarpahwa,newsmast.social,Pets,pets,false +samarpahwa,newsmast.social,Politics,politics,false +samarpahwa,newsmast.social,Puzzles,puzzles,false +samarpahwa,newsmast.social,Travel,travel,false +samarpahwa,newsmast.social,Ukraine Invasion,ukraine_invasion,false +samarpahwa,newsmast.social,Weather,weather,false +samarpahwa,newsmast.social,Environment,environment,false +samarpahwa,newsmast.social,Immigrants Rights,immigrants_rights,false +stephenreid,newsmast.social,Nature & Wildlife,nature_wildlife,false +stephenreid,newsmast.social,AI,ai,false +stephenreid,newsmast.social,Architecture & Design,architecture_design,false +stephenreid,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false +stephenreid,newsmast.social,Breaking News,breaking_news,false +stephenreid,newsmast.social,Business,business,false +stephenreid,newsmast.social,Climate change,climate_change,false +stephenreid,newsmast.social,Energy & Pollution,energy_pollution,false +stephenreid,newsmast.social,Environment,environment,false +stephenreid,newsmast.social,Gaming,gaming,false +stephenreid,newsmast.social,Markets & Finance,markets_finance,false +stephenreid,newsmast.social,Movies,movies,false +stephenreid,newsmast.social,Music,music,false +stephenreid,newsmast.social,Journalism & Comment,news_comment_data,false +stephenreid,newsmast.social,Performing Arts,performing_arts,false +stephenreid,newsmast.social,Photography,photography,false +stephenreid,newsmast.social,Politics,politics,false +stephenreid,newsmast.social,Technology,technology,true +stephenreid,newsmast.social,TV & Radio,tv_radio,false +stephenreid,newsmast.social,Ukraine Invasion,ukraine_invasion,false +stephenreid,newsmast.social,Visual Arts,visual_arts,false +stephenreid,newsmast.social,Weather,weather,false +vividbiology,newsmast.social,Biology,biology,false +vividbiology,newsmast.social,Chemistry,chemistry,false +vividbiology,newsmast.social,Science,science,true +vividbiology,newsmast.social,Technology,technology,false +vividbiology,newsmast.social,Visual Arts,visual_arts,false +zhichangliu,newsmast.social,AI,ai,false +zhichangliu,newsmast.social,Breaking News,breaking_news,false +zhichangliu,newsmast.social,Chemistry,chemistry,true +zhichangliu,newsmast.social,Energy & Pollution,energy_pollution,false +zhichangliu,newsmast.social,Environment,environment,false +protein,newsmast.social,Activism & Civil Rights,activism_civil_rights,false +protein,newsmast.social,AI,ai,false +protein,newsmast.social,Architecture & Design,architecture_design,false +protein,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false +protein,newsmast.social,Biology,biology,false +protein,newsmast.social,Black Voices,black_voices,false +protein,newsmast.social,Books & Literature,books_literature,false +protein,newsmast.social,Breaking News,breaking_news,false +protein,newsmast.social,Business,business,false +protein,newsmast.social,Chemistry,chemistry,false +protein,newsmast.social,Climate change,climate_change,false +protein,newsmast.social,Creative Arts,creative_arts,false +protein,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +protein,newsmast.social,Disabled Voices,disabled_voices,false +protein,newsmast.social,Energy & Pollution,energy_pollution,false +protein,newsmast.social,Engineering,engineering,false +protein,newsmast.social,Environment,environment,false +protein,newsmast.social,Food & Drink,food_drink,false +protein,newsmast.social,Gaming,gaming,false +protein,newsmast.social,Government & Policy,government_policy,false +protein,newsmast.social,Healthcare,healthcare,false +protein,newsmast.social,History,history,false +protein,newsmast.social,Humanities,humanities,false +protein,newsmast.social,Humour,humour,false +protein,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false +protein,newsmast.social,Immigrants Rights,immigrants_rights,false +protein,newsmast.social,Indigenous Peoples,indigenous_peoples,false +protein,newsmast.social,Poverty & Inequality,poverty_inequality,false +protein,newsmast.social,Law & Justice,law_justice,false +protein,newsmast.social,LGBTQ+,lgbtq,false +protein,newsmast.social,Markets & Finance,markets_finance,false +protein,newsmast.social,Mathematics,mathematics,false +protein,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false +protein,newsmast.social,Movies,movies,false +protein,newsmast.social,Music,music,false +protein,newsmast.social,Nature & Wildlife,nature_wildlife,false +protein,newsmast.social,Journalism & Comment,news_comment_data,false +protein,newsmast.social,Performing Arts,performing_arts,false +protein,newsmast.social,Pets,pets,false +protein,newsmast.social,Philosophy,philosophy,false +protein,newsmast.social,Photography,photography,false +protein,newsmast.social,Physics,physics,false +protein,newsmast.social,Politics,politics,false +protein,newsmast.social,Puzzles,puzzles,false +protein,newsmast.social,Science,science,false +protein,newsmast.social,Social Sciences,social_sciences,false +protein,newsmast.social,Space,space,false +protein,newsmast.social,Technology,technology,true +protein,newsmast.social,Travel,travel,false +protein,newsmast.social,TV & Radio,tv_radio,false +protein,newsmast.social,Ukraine Invasion,ukraine_invasion,false +protein,newsmast.social,Visual Arts,visual_arts,false +protein,newsmast.social,Weather,weather,false +protein,newsmast.social,Women’s Voices,women_voices,false +protein,newsmast.social,Workers Rights,workers_rights,false +islifearecipe,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false +islifearecipe,newsmast.social,Food & Drink,food_drink,true +islifearecipe,newsmast.social,Music,music,false +islifearecipe,newsmast.social,Travel,travel,false +Player2,newsmast.social,Energy & Pollution,energy_pollution,false +Player2,newsmast.social,Books & Literature,books_literature,false +Player2,newsmast.social,Breaking News,breaking_news,false +Player2,newsmast.social,Football,football,false +Player2,newsmast.social,Journalism & Comment,news_comment_data,false +Player2,newsmast.social,Politics,politics,false +Player2,newsmast.social,Sport,sport,false +Player2,newsmast.social,Ukraine Invasion,ukraine_invasion,false +Player2,newsmast.social,Weather,weather,false +Player2,newsmast.social,Movies,movies,false +Player2,newsmast.social,Gaming,gaming,true +mbarbatti,newsmast.social,Biology,biology,false +mbarbatti,newsmast.social,Chemistry,chemistry,true +mbarbatti,newsmast.social,Engineering,engineering,false +mbarbatti,newsmast.social,Mathematics,mathematics,false +mbarbatti,newsmast.social,Physics,physics,false +mbarbatti,newsmast.social,Science,science,false +mbarbatti,newsmast.social,Space,space,false +marianajeronimo,newsmast.social,Breaking News,breaking_news,false +marianajeronimo,newsmast.social,Business,business,true +marianajeronimo,newsmast.social,Environment,environment,false +marianajeronimo,newsmast.social,Journalism & Comment,news_comment_data,false +marianajeronimo,newsmast.social,Travel,travel,false +marianajeronimo,newsmast.social,Food & Drink,food_drink,false +marianajeronimo,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false +marianajeronimo,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +lawyer,newsmast.social,Law & Justice,law_justice,true +lawyer,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false +lawyer,newsmast.social,Creative Arts,creative_arts,false +lawyer,newsmast.social,Disabled Voices,disabled_voices,false +lawyer,newsmast.social,Food & Drink,food_drink,false +lawyer,newsmast.social,Gaming,gaming,false +lawyer,newsmast.social,History,history,false +lawyer,newsmast.social,Humanities,humanities,false +lawyer,newsmast.social,Humour,humour,false +lawyer,newsmast.social,Immigrants Rights,immigrants_rights,false +lawyer,newsmast.social,Indigenous Peoples,indigenous_peoples,false +lawyer,newsmast.social,LGBTQ+,lgbtq,false +lawyer,newsmast.social,Markets & Finance,markets_finance,false +lawyer,newsmast.social,Movies,movies,false +lawyer,newsmast.social,Music,music,false +lawyer,newsmast.social,Nature & Wildlife,nature_wildlife,false +lawyer,newsmast.social,Performing Arts,performing_arts,false +lawyer,newsmast.social,Pets,pets,false +lawyer,newsmast.social,Philosophy,philosophy,false +lawyer,newsmast.social,Photography,photography,false +lawyer,newsmast.social,Puzzles,puzzles,false +lawyer,newsmast.social,Travel,travel,false +lawyer,newsmast.social,TV & Radio,tv_radio,false +lawyer,newsmast.social,Visual Arts,visual_arts,false +lawyer,newsmast.social,Women’s Voices,women_voices,false +lawyer,newsmast.social,Activism & Civil Rights,activism_civil_rights,false +lawyer,newsmast.social,Architecture & Design,architecture_design,false +lawyer,newsmast.social,Black Voices,black_voices,false +lawyer,newsmast.social,Books & Literature,books_literature,false +lawyer,newsmast.social,Business,business,false +lawyer,newsmast.social,Workers Rights,workers_rights,false +andrewfeinstein,newsmast.social,Breaking News,breaking_news,false +andrewfeinstein,newsmast.social,Journalism & Comment,news_comment_data,false +andrewfeinstein,newsmast.social,Politics,politics,true +andrewfeinstein,newsmast.social,Ukraine Invasion,ukraine_invasion,false +andrewfeinstein,newsmast.social,Weather,weather,false +Tarden7,newsmast.social,Markets & Finance,markets_finance,false +Tarden7,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false +Tarden7,newsmast.social,Puzzles,puzzles,false +Tarden7,newsmast.social,Travel,travel,false +Tarden7,newsmast.social,Ukraine Invasion,ukraine_invasion,false +Tarden7,newsmast.social,Breaking News,breaking_news,false +Tarden7,newsmast.social,Football,football,true +Tarden7,newsmast.social,Humour,humour,false +Tarden7,newsmast.social,Movies,movies,false +Tarden7,newsmast.social,Music,music,false +Tarden7,newsmast.social,Nature & Wildlife,nature_wildlife,false +Tarden7,newsmast.social,Journalism & Comment,news_comment_data,false +Tarden7,newsmast.social,Photography,photography,false +manii,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false +manii,newsmast.social,Breaking News,breaking_news,true +manii,newsmast.social,LGBTQ+,lgbtq,false +manii,newsmast.social,Sport,sport,false +manii,newsmast.social,Technology,technology,false +Hedvig1Lindahl,newsmast.social,Social Sciences,social_sciences,false +Hedvig1Lindahl,newsmast.social,Breaking News,breaking_news,false +Hedvig1Lindahl,newsmast.social,Climate change,climate_change,false +Hedvig1Lindahl,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +Hedvig1Lindahl,newsmast.social,Football,football,true +Hedvig1Lindahl,newsmast.social,Poverty & Inequality,poverty_inequality,false +Hedvig1Lindahl,newsmast.social,Movies,movies,false +Hedvig1Lindahl,newsmast.social,Politics,politics,false +akp,newsmast.social,Technology,technology,false +akp,newsmast.social,Space,space,false +akp,newsmast.social,Breaking News,breaking_news,true +akp,newsmast.social,Journalism & Comment,news_comment_data,false +akp,newsmast.social,Weather,weather,false +akp,newsmast.social,Politics,politics,false +akp,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false +akp,newsmast.social,Poverty & Inequality,poverty_inequality,false +akp,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +akp,newsmast.social,Indigenous Peoples,indigenous_peoples,false +akp,newsmast.social,TV & Radio,tv_radio,false +akp,newsmast.social,Nature & Wildlife,nature_wildlife,false +akp,newsmast.social,Environment,environment,false +akp,newsmast.social,Immigrants Rights,immigrants_rights,false +Accessiology,newsmast.social,AI,ai,false +Accessiology,newsmast.social,Architecture & Design,architecture_design,false +Accessiology,newsmast.social,Disabled Voices,disabled_voices,true +Accessiology,newsmast.social,Nature & Wildlife,nature_wildlife,false +Accessiology,newsmast.social,Technology,technology,false +Accessiology,newsmast.social,Travel,travel,false +Headfort,newsmast.social,Government & Policy,government_policy,false +Headfort,newsmast.social,Law & Justice,law_justice,false +Headfort,newsmast.social,Activism & Civil Rights,activism_civil_rights,false +Headfort,newsmast.social,Technology,technology,false +Headfort,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,true +Headfort,newsmast.social,Poverty & Inequality,poverty_inequality,false +nico,newsmast.social,AI,ai,false +nico,newsmast.social,Football,football,false +nico,newsmast.social,Government & Policy,government_policy,false +nico,newsmast.social,Mathematics,mathematics,false +nico,newsmast.social,Science,science,false +nico,newsmast.social,Sport,sport,false +nico,newsmast.social,Technology,technology,true +nico,newsmast.social,Journalism & Comment,news_comment_data,false +MichaelMarshall,newsmast.social,Nature & Wildlife,nature_wildlife,false +MichaelMarshall,newsmast.social,Architecture & Design,architecture_design,false +MichaelMarshall,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false +MichaelMarshall,newsmast.social,Biology,biology,false +MichaelMarshall,newsmast.social,Books & Literature,books_literature,false +MichaelMarshall,newsmast.social,Breaking News,breaking_news,false +MichaelMarshall,newsmast.social,Chemistry,chemistry,false +MichaelMarshall,newsmast.social,Climate change,climate_change,false +MichaelMarshall,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +MichaelMarshall,newsmast.social,Energy & Pollution,energy_pollution,false +MichaelMarshall,newsmast.social,Engineering,engineering,false +MichaelMarshall,newsmast.social,Environment,environment,false +MichaelMarshall,newsmast.social,Gaming,gaming,false +MichaelMarshall,newsmast.social,Government & Policy,government_policy,false +MichaelMarshall,newsmast.social,Healthcare,healthcare,false +MichaelMarshall,newsmast.social,History,history,false +MichaelMarshall,newsmast.social,Humanities,humanities,false +MichaelMarshall,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false +MichaelMarshall,newsmast.social,Poverty & Inequality,poverty_inequality,false +MichaelMarshall,newsmast.social,Law & Justice,law_justice,false +MichaelMarshall,newsmast.social,Mathematics,mathematics,false +MichaelMarshall,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false +MichaelMarshall,newsmast.social,Movies,movies,false +MichaelMarshall,newsmast.social,Music,music,false +MichaelMarshall,newsmast.social,Journalism & Comment,news_comment_data,false +MichaelMarshall,newsmast.social,Performing Arts,performing_arts,false +MichaelMarshall,newsmast.social,Philosophy,philosophy,false +MichaelMarshall,newsmast.social,Photography,photography,false +MichaelMarshall,newsmast.social,Physics,physics,false +MichaelMarshall,newsmast.social,Politics,politics,false +MichaelMarshall,newsmast.social,Science,science,true +MichaelMarshall,newsmast.social,Space,space,false +MichaelMarshall,newsmast.social,TV & Radio,tv_radio,false +MichaelMarshall,newsmast.social,Ukraine Invasion,ukraine_invasion,false +MichaelMarshall,newsmast.social,Visual Arts,visual_arts,false +MichaelMarshall,newsmast.social,Weather,weather,false +MichaelMarshall,newsmast.social,Immigrants Rights,immigrants_rights,false +Dolores,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,true +Dolores,newsmast.social,Indigenous Peoples,indigenous_peoples,false +Dolores,newsmast.social,Women’s Voices,women_voices,false +Dolores,newsmast.social,Journalism & Comment,news_comment_data,false +Nadeem,newsmast.social,Breaking News,breaking_news,false +Nadeem,newsmast.social,Journalism & Comment,news_comment_data,false +Nadeem,newsmast.social,Politics,politics,true +Nadeem,newsmast.social,Weather,weather,false +AlasdairGold,newsmast.social,Movies,movies,false +AlasdairGold,newsmast.social,Sport,sport,false +AlasdairGold,newsmast.social,Travel,travel,false +AlasdairGold,newsmast.social,TV & Radio,tv_radio,false +AlasdairGold,newsmast.social,Football,football,true +JustinWeinberg,newsmast.social,AI,ai,false +JustinWeinberg,newsmast.social,Environment,environment,false +JustinWeinberg,newsmast.social,Humanities,humanities,false +JustinWeinberg,newsmast.social,Music,music,false +JustinWeinberg,newsmast.social,Philosophy,philosophy,true +JustinWeinberg,newsmast.social,Science,science,false +JustinWeinberg,newsmast.social,Social Sciences,social_sciences,false +JustinWeinberg,newsmast.social,Visual Arts,visual_arts,false +Fitwirr,newsmast.social,Markets & Finance,markets_finance,false +Fitwirr,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,true +Fitwirr,newsmast.social,Business,business,false +Fitwirr,newsmast.social,Food & Drink,food_drink,false +Fitwirr,newsmast.social,Technology,technology,false +Fitwirr,newsmast.social,Travel,travel,false +raachotrekkers,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false +raachotrekkers,newsmast.social,Climate change,climate_change,true +raachotrekkers,newsmast.social,Energy & Pollution,energy_pollution,false +raachotrekkers,newsmast.social,Environment,environment,false +raachotrekkers,newsmast.social,Politics,politics,false +raachotrekkers,newsmast.social,Travel,travel,false +raachotrekkers,newsmast.social,Nature & Wildlife,nature_wildlife,false +davidwees,newsmast.social,Activism & Civil Rights,activism_civil_rights,false +davidwees,newsmast.social,Climate change,climate_change,false +davidwees,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +davidwees,newsmast.social,LGBTQ+,lgbtq,false +davidwees,newsmast.social,Mathematics,mathematics,true +davidwees,newsmast.social,Journalism & Comment,news_comment_data,false +davidwees,newsmast.social,Space,space,false +saralimback,newsmast.social,Law & Justice,law_justice,false +saralimback,newsmast.social,Activism & Civil Rights,activism_civil_rights,false +saralimback,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false +saralimback,newsmast.social,Biology,biology,false +saralimback,newsmast.social,Black Voices,black_voices,false +saralimback,newsmast.social,Books & Literature,books_literature,false +saralimback,newsmast.social,Climate change,climate_change,false +saralimback,newsmast.social,Creative Arts,creative_arts,false +saralimback,newsmast.social,Disabled Voices,disabled_voices,false +saralimback,newsmast.social,Energy & Pollution,energy_pollution,false +saralimback,newsmast.social,Environment,environment,false +saralimback,newsmast.social,Food & Drink,food_drink,false +saralimback,newsmast.social,History,history,false +saralimback,newsmast.social,Humanities,humanities,false +saralimback,newsmast.social,Immigrants Rights,immigrants_rights,false +saralimback,newsmast.social,Indigenous Peoples,indigenous_peoples,false +saralimback,newsmast.social,LGBTQ+,lgbtq,false +saralimback,newsmast.social,Music,music,false +saralimback,newsmast.social,Nature & Wildlife,nature_wildlife,true +saralimback,newsmast.social,Philosophy,philosophy,false +saralimback,newsmast.social,Photography,photography,false +saralimback,newsmast.social,Social Sciences,social_sciences,false +saralimback,newsmast.social,Women’s Voices,women_voices,false +saralimback,newsmast.social,Workers Rights,workers_rights,false +HRWright,newsmast.social,Creative Arts,creative_arts,false +HRWright,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +HRWright,newsmast.social,Food & Drink,food_drink,true +HRWright,newsmast.social,LGBTQ+,lgbtq,false +HRWright,newsmast.social,Journalism & Comment,news_comment_data,false +HRWright,newsmast.social,Travel,travel,false +DanielGilbert,newsmast.social,Science,science,false +DanielGilbert,newsmast.social,Social Sciences,social_sciences,true +billmckibben,newsmast.social,Activism & Civil Rights,activism_civil_rights,false +billmckibben,newsmast.social,Breaking News,breaking_news,true +billmckibben,newsmast.social,Climate change,climate_change,false +billmckibben,newsmast.social,Energy & Pollution,energy_pollution,false +billmckibben,newsmast.social,Music,music,false +billmckibben,newsmast.social,Journalism & Comment,news_comment_data,false +billmckibben,newsmast.social,Science,science,false +billmckibben,newsmast.social,Sport,sport,false +billmckibben,newsmast.social,TV & Radio,tv_radio,false +billmckibben,newsmast.social,Ukraine Invasion,ukraine_invasion,false +billmckibben,newsmast.social,Weather,weather,false +Omega_RF,newsmast.social,Activism & Civil Rights,activism_civil_rights,false +Omega_RF,newsmast.social,Breaking News,breaking_news,false +Omega_RF,newsmast.social,Democracy & Human Rights,democracy_human_rights,true +Omega_RF,newsmast.social,Government & Policy,government_policy,false +Omega_RF,newsmast.social,Law & Justice,law_justice,false +Omega_RF,newsmast.social,Journalism & Comment,news_comment_data,false +Omega_RF,newsmast.social,Politics,politics,false +James_Shield,newsmast.social,Football,football,true +James_Shield,newsmast.social,Politics,politics,false +James_Shield,newsmast.social,Social Sciences,social_sciences,false +James_Shield,newsmast.social,Sport,sport,false +James_Shield,newsmast.social,Journalism & Comment,news_comment_data,false +jrmartin,newsmast.social,Architecture & Design,architecture_design,false +jrmartin,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false +jrmartin,newsmast.social,Books & Literature,books_literature,false +jrmartin,newsmast.social,Environment,environment,false +jrmartin,newsmast.social,History,history,false +jrmartin,newsmast.social,Photography,photography,false +jrmartin,newsmast.social,Travel,travel,true +jrmartin,newsmast.social,Creative Arts,creative_arts,false +jrmartin,newsmast.social,Social Sciences,social_sciences,false +indianhistory,newsmast.social,Architecture & Design,architecture_design,false +indianhistory,newsmast.social,Books & Literature,books_literature,false +indianhistory,newsmast.social,Breaking News,breaking_news,false +indianhistory,newsmast.social,Gaming,gaming,false +indianhistory,newsmast.social,History,history,true +indianhistory,newsmast.social,Humanities,humanities,false +indianhistory,newsmast.social,Movies,movies,false +indianhistory,newsmast.social,Music,music,false +indianhistory,newsmast.social,Performing Arts,performing_arts,false +indianhistory,newsmast.social,Photography,photography,false +indianhistory,newsmast.social,TV & Radio,tv_radio,false +indianhistory,newsmast.social,Visual Arts,visual_arts,false +indianhistory,newsmast.social,Weather,weather,false +fpricejr,newsmast.social,Activism & Civil Rights,activism_civil_rights,false +fpricejr,newsmast.social,AI,ai,false +fpricejr,newsmast.social,Breaking News,breaking_news,false +fpricejr,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +fpricejr,newsmast.social,Football,football,false +fpricejr,newsmast.social,Government & Policy,government_policy,false +fpricejr,newsmast.social,History,history,false +fpricejr,newsmast.social,Humanities,humanities,false +fpricejr,newsmast.social,Poverty & Inequality,poverty_inequality,false +fpricejr,newsmast.social,Law & Justice,law_justice,false +fpricejr,newsmast.social,Music,music,false +fpricejr,newsmast.social,Journalism & Comment,news_comment_data,true +fpricejr,newsmast.social,Politics,politics,false +fpricejr,newsmast.social,Social Sciences,social_sciences,false +fpricejr,newsmast.social,Sport,sport,false +fpricejr,newsmast.social,Technology,technology,false +fpricejr,newsmast.social,TV & Radio,tv_radio,false +fpricejr,newsmast.social,Environment,environment,false +siji,newsmast.social,Law & Justice,law_justice,false +siji,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false +siji,newsmast.social,AI,ai,false +siji,newsmast.social,Books & Literature,books_literature,false +siji,newsmast.social,Creative Arts,creative_arts,false +siji,newsmast.social,Food & Drink,food_drink,false +siji,newsmast.social,History,history,false +siji,newsmast.social,Humanities,humanities,false +siji,newsmast.social,Humour,humour,false +siji,newsmast.social,Philosophy,philosophy,false +siji,newsmast.social,Puzzles,puzzles,false +siji,newsmast.social,Technology,technology,true +siji,newsmast.social,Travel,travel,false +siji,newsmast.social,Environment,environment,false +siji,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +siji,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false +calebijioma,newsmast.social,Nature & Wildlife,nature_wildlife,false +calebijioma,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false +calebijioma,newsmast.social,Climate change,climate_change,false +calebijioma,newsmast.social,Democracy & Human Rights,democracy_human_rights,true +calebijioma,newsmast.social,Energy & Pollution,energy_pollution,false +calebijioma,newsmast.social,Environment,environment,false +calebijioma,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false +calebijioma,newsmast.social,Poverty & Inequality,poverty_inequality,false +calebijioma,newsmast.social,Immigrants Rights,immigrants_rights,false +AldridgePhoto,newsmast.social,Nature & Wildlife,nature_wildlife,false +AldridgePhoto,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,true +AldridgePhoto,newsmast.social,Breaking News,breaking_news,false +AldridgePhoto,newsmast.social,Climate change,climate_change,false +AldridgePhoto,newsmast.social,Energy & Pollution,energy_pollution,false +AldridgePhoto,newsmast.social,Environment,environment,false +AldridgePhoto,newsmast.social,Journalism & Comment,news_comment_data,false +AldridgePhoto,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false +PAAwarenessUK,newsmast.social,Government & Policy,government_policy,false +PAAwarenessUK,newsmast.social,Social Sciences,social_sciences,false +PAAwarenessUK,newsmast.social,Poverty & Inequality,poverty_inequality,false +PAAwarenessUK,newsmast.social,Law & Justice,law_justice,false +PAAwarenessUK,newsmast.social,Politics,politics,false +PAAwarenessUK,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false +PAAwarenessUK,newsmast.social,Democracy & Human Rights,democracy_human_rights,true +ajj65,newsmast.social,Nature & Wildlife,nature_wildlife,false +ajj65,newsmast.social,Activism & Civil Rights,activism_civil_rights,false +ajj65,newsmast.social,AI,ai,false +ajj65,newsmast.social,Architecture & Design,architecture_design,false +ajj65,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false +ajj65,newsmast.social,Biology,biology,false +ajj65,newsmast.social,Black Voices,black_voices,false +ajj65,newsmast.social,Business,business,false +ajj65,newsmast.social,Chemistry,chemistry,false +ajj65,newsmast.social,Climate change,climate_change,false +ajj65,newsmast.social,Disabled Voices,disabled_voices,false +ajj65,newsmast.social,Energy & Pollution,energy_pollution,false +ajj65,newsmast.social,Engineering,engineering,false +ajj65,newsmast.social,Environment,environment,false +ajj65,newsmast.social,Gaming,gaming,false +ajj65,newsmast.social,Immigrants Rights,immigrants_rights,false +ajj65,newsmast.social,Indigenous Peoples,indigenous_peoples,false +ajj65,newsmast.social,Poverty & Inequality,poverty_inequality,false +ajj65,newsmast.social,Markets & Finance,markets_finance,false +ajj65,newsmast.social,Mathematics,mathematics,false +ajj65,newsmast.social,Music,music,false +ajj65,newsmast.social,Photography,photography,false +ajj65,newsmast.social,Physics,physics,false +ajj65,newsmast.social,Science,science,false +ajj65,newsmast.social,Space,space,false +ajj65,newsmast.social,Technology,technology,false +ajj65,newsmast.social,Women’s Voices,women_voices,false +ajj65,newsmast.social,Workers Rights,workers_rights,false +ajj65,newsmast.social,LGBTQ+,lgbtq,true +ajj65,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false +ajj65,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +shubhambutola,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false +shubhambutola,newsmast.social,AI,ai,false +shubhambutola,newsmast.social,Architecture & Design,architecture_design,false +shubhambutola,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false +shubhambutola,newsmast.social,Climate change,climate_change,true +shubhambutola,newsmast.social,Creative Arts,creative_arts,false +shubhambutola,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +shubhambutola,newsmast.social,Energy & Pollution,energy_pollution,false +shubhambutola,newsmast.social,Environment,environment,false +shubhambutola,newsmast.social,Food & Drink,food_drink,false +shubhambutola,newsmast.social,Gaming,gaming,false +shubhambutola,newsmast.social,Humour,humour,false +shubhambutola,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false +shubhambutola,newsmast.social,Poverty & Inequality,poverty_inequality,false +shubhambutola,newsmast.social,Movies,movies,false +shubhambutola,newsmast.social,Music,music,false +shubhambutola,newsmast.social,Nature & Wildlife,nature_wildlife,false +shubhambutola,newsmast.social,Performing Arts,performing_arts,false +shubhambutola,newsmast.social,Pets,pets,false +shubhambutola,newsmast.social,Photography,photography,false +shubhambutola,newsmast.social,Puzzles,puzzles,false +shubhambutola,newsmast.social,Technology,technology,false +shubhambutola,newsmast.social,Travel,travel,false +shubhambutola,newsmast.social,TV & Radio,tv_radio,false +shubhambutola,newsmast.social,Visual Arts,visual_arts,false +shubhambutola,newsmast.social,Immigrants Rights,immigrants_rights,false +KamranSaeed,newsmast.social,AI,ai,false +KamranSaeed,newsmast.social,Breaking News,breaking_news,false +KamranSaeed,newsmast.social,Business,business,false +KamranSaeed,newsmast.social,Climate change,climate_change,false +KamranSaeed,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +KamranSaeed,newsmast.social,Energy & Pollution,energy_pollution,false +KamranSaeed,newsmast.social,Football,football,false +KamranSaeed,newsmast.social,Government & Policy,government_policy,false +KamranSaeed,newsmast.social,Healthcare,healthcare,false +KamranSaeed,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false +KamranSaeed,newsmast.social,Poverty & Inequality,poverty_inequality,false +KamranSaeed,newsmast.social,Law & Justice,law_justice,false +KamranSaeed,newsmast.social,Markets & Finance,markets_finance,false +KamranSaeed,newsmast.social,Journalism & Comment,news_comment_data,true +KamranSaeed,newsmast.social,Politics,politics,false +KamranSaeed,newsmast.social,Sport,sport,false +KamranSaeed,newsmast.social,Technology,technology,false +KamranSaeed,newsmast.social,Ukraine Invasion,ukraine_invasion,false +KamranSaeed,newsmast.social,Weather,weather,false +KamranSaeed,newsmast.social,Environment,environment,false +KamranSaeed,newsmast.social,Immigrants Rights,immigrants_rights,false +discerningcat,newsmast.social,Creative Arts,creative_arts,false +discerningcat,newsmast.social,Food & Drink,food_drink,false +discerningcat,newsmast.social,Nature & Wildlife,nature_wildlife,false +discerningcat,newsmast.social,Pets,pets,true +discerningcat,newsmast.social,Travel,travel,false +Dhiraj,newsmast.social,Business,business,false +Dhiraj,newsmast.social,Breaking News,breaking_news,false +Dhiraj,newsmast.social,Energy & Pollution,energy_pollution,true +Dhiraj,newsmast.social,Government & Policy,government_policy,false +Dhiraj,newsmast.social,Poverty & Inequality,poverty_inequality,false +Dhiraj,newsmast.social,Markets & Finance,markets_finance,false +Dhiraj,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false +Dhiraj,newsmast.social,Politics,politics,false +Dhiraj,newsmast.social,Weather,weather,false +Dhiraj,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +AndreCMonteiro,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +AndreCMonteiro,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false +AndreCMonteiro,newsmast.social,Poverty & Inequality,poverty_inequality,false +AndreCMonteiro,newsmast.social,Environment,environment,true +AndreCMonteiro,newsmast.social,Immigrants Rights,immigrants_rights,false +ScharSchool,newsmast.social,Nature & Wildlife,nature_wildlife,false +ScharSchool,newsmast.social,Activism & Civil Rights,activism_civil_rights,false +ScharSchool,newsmast.social,AI,ai,false +ScharSchool,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false +ScharSchool,newsmast.social,Biology,biology,false +ScharSchool,newsmast.social,Black Voices,black_voices,false +ScharSchool,newsmast.social,Breaking News,breaking_news,false +ScharSchool,newsmast.social,Business,business,false +ScharSchool,newsmast.social,Climate change,climate_change,false +ScharSchool,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +ScharSchool,newsmast.social,Disabled Voices,disabled_voices,false +ScharSchool,newsmast.social,Energy & Pollution,energy_pollution,false +ScharSchool,newsmast.social,Engineering,engineering,false +ScharSchool,newsmast.social,Environment,environment,false +ScharSchool,newsmast.social,Government & Policy,government_policy,true +ScharSchool,newsmast.social,Healthcare,healthcare,false +ScharSchool,newsmast.social,Immigrants Rights,immigrants_rights,false +ScharSchool,newsmast.social,Indigenous Peoples,indigenous_peoples,false +ScharSchool,newsmast.social,Poverty & Inequality,poverty_inequality,false +ScharSchool,newsmast.social,Law & Justice,law_justice,false +ScharSchool,newsmast.social,LGBTQ+,lgbtq,false +ScharSchool,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false +ScharSchool,newsmast.social,Journalism & Comment,news_comment_data,false +ScharSchool,newsmast.social,Politics,politics,false +ScharSchool,newsmast.social,Science,science,false +ScharSchool,newsmast.social,Social Sciences,social_sciences,false +ScharSchool,newsmast.social,Space,space,false +ScharSchool,newsmast.social,Technology,technology,false +ScharSchool,newsmast.social,Women’s Voices,women_voices,false +ScharSchool,newsmast.social,Workers Rights,workers_rights,false +ScharSchool,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false +ChinHuaLu,newsmast.social,Social Sciences,social_sciences,false +ChinHuaLu,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false +ChinHuaLu,newsmast.social,Activism & Civil Rights,activism_civil_rights,false +ChinHuaLu,newsmast.social,Books & Literature,books_literature,false +ChinHuaLu,newsmast.social,Creative Arts,creative_arts,false +ChinHuaLu,newsmast.social,Food & Drink,food_drink,false +ChinHuaLu,newsmast.social,Gaming,gaming,false +ChinHuaLu,newsmast.social,Humour,humour,false +ChinHuaLu,newsmast.social,Immigrants Rights,immigrants_rights,false +ChinHuaLu,newsmast.social,Movies,movies,false +ChinHuaLu,newsmast.social,Nature & Wildlife,nature_wildlife,false +ChinHuaLu,newsmast.social,Performing Arts,performing_arts,false +ChinHuaLu,newsmast.social,Pets,pets,false +ChinHuaLu,newsmast.social,Science,science,false +ChinHuaLu,newsmast.social,Travel,travel,false +ChinHuaLu,newsmast.social,TV & Radio,tv_radio,false +ChinHuaLu,newsmast.social,Women’s Voices,women_voices,true +ANT_LCFC,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false +ANT_LCFC,newsmast.social,Creative Arts,creative_arts,false +ANT_LCFC,newsmast.social,Food & Drink,food_drink,false +ANT_LCFC,newsmast.social,Football,football,true +ANT_LCFC,newsmast.social,Humour,humour,false +Brian_J_Keane,newsmast.social,Activism & Civil Rights,activism_civil_rights,false +Brian_J_Keane,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false +Brian_J_Keane,newsmast.social,Climate change,climate_change,false +Brian_J_Keane,newsmast.social,Indigenous Peoples,indigenous_peoples,true +Brian_J_Keane,newsmast.social,Environment,environment,false +Brian_J_Keane,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false +Brian_J_Keane,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +itdrc,newsmast.social,Business,business,false +itdrc,newsmast.social,Engineering,engineering,false +itdrc,newsmast.social,Government & Policy,government_policy,false +itdrc,newsmast.social,Humanities,humanities,false +itdrc,newsmast.social,Journalism & Comment,news_comment_data,false +itdrc,newsmast.social,Science,science,false +itdrc,newsmast.social,Technology,technology,false +itdrc,newsmast.social,Ukraine Invasion,ukraine_invasion,false +itdrc,newsmast.social,Weather,weather,false +itdrc,newsmast.social,Breaking News,breaking_news,true +benwritesthings,newsmast.social,Architecture & Design,architecture_design,false +benwritesthings,newsmast.social,Books & Literature,books_literature,false +benwritesthings,newsmast.social,History,history,false +benwritesthings,newsmast.social,Humanities,humanities,false +benwritesthings,newsmast.social,LGBTQ+,lgbtq,true +benwritesthings,newsmast.social,Performing Arts,performing_arts,false +benwritesthings,newsmast.social,Workers Rights,workers_rights,false +dltj,newsmast.social,Government & Policy,government_policy,false +dltj,newsmast.social,AI,ai,false +dltj,newsmast.social,Breaking News,breaking_news,false +dltj,newsmast.social,Climate change,climate_change,false +dltj,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +dltj,newsmast.social,Energy & Pollution,energy_pollution,false +dltj,newsmast.social,Environment,environment,false +dltj,newsmast.social,Journalism & Comment,news_comment_data,false +dltj,newsmast.social,Science,science,false +dltj,newsmast.social,Technology,technology,true +Childdotorg,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false +Childdotorg,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +Childdotorg,newsmast.social,Black Voices,black_voices,false +Childdotorg,newsmast.social,Breaking News,breaking_news,false +Childdotorg,newsmast.social,Poverty & Inequality,poverty_inequality,false +Childdotorg,newsmast.social,Journalism & Comment,news_comment_data,false +Childdotorg,newsmast.social,Photography,photography,false +Childdotorg,newsmast.social,Women’s Voices,women_voices,true +BriannaABaker,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false +BriannaABaker,newsmast.social,Activism & Civil Rights,activism_civil_rights,false +BriannaABaker,newsmast.social,Black Voices,black_voices,true +BriannaABaker,newsmast.social,Breaking News,breaking_news,false +BriannaABaker,newsmast.social,Creative Arts,creative_arts,false +BriannaABaker,newsmast.social,Humour,humour,false +BriannaABaker,newsmast.social,Poverty & Inequality,poverty_inequality,false +BriannaABaker,newsmast.social,Journalism & Comment,news_comment_data,false +BriannaABaker,newsmast.social,Politics,politics,false +BriannaABaker,newsmast.social,Social Sciences,social_sciences,false +BriannaABaker,newsmast.social,Women’s Voices,women_voices,false +faithbenson,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,true +faithbenson,newsmast.social,AI,ai,false +faithbenson,newsmast.social,Creative Arts,creative_arts,false +faithbenson,newsmast.social,Science,science,false +faithbenson,newsmast.social,Technology,technology,false +faithbenson,newsmast.social,Environment,environment,false +faithbenson,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false +faithbenson,newsmast.social,Poverty & Inequality,poverty_inequality,false +O_makanjuola,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false +O_makanjuola,newsmast.social,Environment,environment,false +O_makanjuola,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false +O_makanjuola,newsmast.social,Democracy & Human Rights,democracy_human_rights,true +O_makanjuola,newsmast.social,Activism & Civil Rights,activism_civil_rights,false +O_makanjuola,newsmast.social,Breaking News,breaking_news,false +O_makanjuola,newsmast.social,Creative Arts,creative_arts,false +O_makanjuola,newsmast.social,Food & Drink,food_drink,false +O_makanjuola,newsmast.social,Poverty & Inequality,poverty_inequality,false +O_makanjuola,newsmast.social,LGBTQ+,lgbtq,false +O_makanjuola,newsmast.social,Movies,movies,false +O_makanjuola,newsmast.social,Music,music,false +O_makanjuola,newsmast.social,Nature & Wildlife,nature_wildlife,false +O_makanjuola,newsmast.social,Journalism & Comment,news_comment_data,false +O_makanjuola,newsmast.social,Politics,politics,false +O_makanjuola,newsmast.social,Travel,travel,false +O_makanjuola,newsmast.social,Visual Arts,visual_arts,false +O_makanjuola,newsmast.social,Women’s Voices,women_voices,false +drvolts,newsmast.social,Nature & Wildlife,nature_wildlife,false +drvolts,newsmast.social,AI,ai,false +drvolts,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false +drvolts,newsmast.social,Biology,biology,false +drvolts,newsmast.social,Breaking News,breaking_news,false +drvolts,newsmast.social,Chemistry,chemistry,false +drvolts,newsmast.social,Climate change,climate_change,false +drvolts,newsmast.social,Energy & Pollution,energy_pollution,true +drvolts,newsmast.social,Engineering,engineering,false +drvolts,newsmast.social,Environment,environment,false +drvolts,newsmast.social,Government & Policy,government_policy,false +drvolts,newsmast.social,Healthcare,healthcare,false +drvolts,newsmast.social,Law & Justice,law_justice,false +drvolts,newsmast.social,Mathematics,mathematics,false +drvolts,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false +drvolts,newsmast.social,Journalism & Comment,news_comment_data,false +drvolts,newsmast.social,Physics,physics,false +drvolts,newsmast.social,Politics,politics,false +drvolts,newsmast.social,Science,science,false +drvolts,newsmast.social,Space,space,false +drvolts,newsmast.social,Technology,technology,false +drvolts,newsmast.social,Ukraine Invasion,ukraine_invasion,false +drvolts,newsmast.social,Weather,weather,false +wingyingchow,newsmast.social,Academia & Research,academia_research,true +wingyingchow,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false +wingyingchow,newsmast.social,Biology,biology,false +wingyingchow,newsmast.social,Chemistry,chemistry,false +wingyingchow,newsmast.social,Physics,physics,false +wingyingchow,newsmast.social,Science,science,false +mitchell_ab,newsmast.social,Law & Justice,law_justice,false +mitchell_ab,newsmast.social,Government & Policy,government_policy,false +mitchell_ab,newsmast.social,Journalism & Comment,news_comment_data,false +mitchell_ab,newsmast.social,Philosophy,philosophy,false +mitchell_ab,newsmast.social,Politics,politics,true +mitchell_ab,newsmast.social,Social Sciences,social_sciences,false +JeffreyPeel,newsmast.social,Activism & Civil Rights,activism_civil_rights,false +JeffreyPeel,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +JeffreyPeel,newsmast.social,Government & Policy,government_policy,false +JeffreyPeel,newsmast.social,Healthcare,healthcare,false +JeffreyPeel,newsmast.social,Politics,politics,true +JeffreyPeel,newsmast.social,Technology,technology,false +historian1914,newsmast.social,Books & Literature,books_literature,false +historian1914,newsmast.social,Business,business,false +historian1914,newsmast.social,Gaming,gaming,false +historian1914,newsmast.social,Government & Policy,government_policy,false +historian1914,newsmast.social,History,history,true +historian1914,newsmast.social,Humanities,humanities,false +historian1914,newsmast.social,Markets & Finance,markets_finance,false +historian1914,newsmast.social,Sport,sport,false +lestermouse,newsmast.social,Breaking News,breaking_news,false +lestermouse,newsmast.social,Journalism & Comment,news_comment_data,true +lestermouse,newsmast.social,Politics,politics,false +lestermouse,newsmast.social,Ukraine Invasion,ukraine_invasion,false +lestermouse,newsmast.social,Weather,weather,false +Radwa,newsmast.social,Breaking News,breaking_news,false +Radwa,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +Radwa,newsmast.social,Politics,politics,false +Radwa,newsmast.social,Social Sciences,social_sciences,false +Radwa,newsmast.social,Technology,technology,false +Radwa,newsmast.social,Journalism & Comment,news_comment_data,false +Radwa,newsmast.social,Environment,environment,true +Radwa,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false +Radwa,newsmast.social,Immigrants Rights,immigrants_rights,false +sarahhengel,newsmast.social,Biology,biology,true +sarahhengel,newsmast.social,Chemistry,chemistry,false +sarahhengel,newsmast.social,Engineering,engineering,false +sarahhengel,newsmast.social,Mathematics,mathematics,false +sarahhengel,newsmast.social,Physics,physics,false +sarahhengel,newsmast.social,Science,science,false +sarahhengel,newsmast.social,Space,space,false +KyivIndependent,newsmast.social,Activism & Civil Rights,activism_civil_rights,false +KyivIndependent,newsmast.social,Black Voices,black_voices,false +KyivIndependent,newsmast.social,Breaking News,breaking_news,false +KyivIndependent,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +KyivIndependent,newsmast.social,Disabled Voices,disabled_voices,false +KyivIndependent,newsmast.social,Government & Policy,government_policy,true +KyivIndependent,newsmast.social,Healthcare,healthcare,false +KyivIndependent,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false +KyivIndependent,newsmast.social,Immigrants Rights,immigrants_rights,false +KyivIndependent,newsmast.social,Indigenous Peoples,indigenous_peoples,false +KyivIndependent,newsmast.social,Poverty & Inequality,poverty_inequality,false +KyivIndependent,newsmast.social,Law & Justice,law_justice,false +KyivIndependent,newsmast.social,LGBTQ+,lgbtq,false +KyivIndependent,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false +KyivIndependent,newsmast.social,Journalism & Comment,news_comment_data,false +KyivIndependent,newsmast.social,Politics,politics,false +KyivIndependent,newsmast.social,Ukraine Invasion,ukraine_invasion,false +KyivIndependent,newsmast.social,Weather,weather,false +KyivIndependent,newsmast.social,Women’s Voices,women_voices,false +KyivIndependent,newsmast.social,Workers Rights,workers_rights,false +KyivIndependent,newsmast.social,Environment,environment,false +Ann_Aguirre,newsmast.social,LGBTQ+,lgbtq,false +Ann_Aguirre,newsmast.social,Social Sciences,social_sciences,false +Ann_Aguirre,newsmast.social,Space,space,false +Ann_Aguirre,newsmast.social,Women’s Voices,women_voices,true +thisisqueerly,newsmast.social,Movies,movies,false +thisisqueerly,newsmast.social,Music,music,false +thisisqueerly,newsmast.social,Journalism & Comment,news_comment_data,false +thisisqueerly,newsmast.social,Travel,travel,false +thisisqueerly,newsmast.social,TV & Radio,tv_radio,false +thisisqueerly,newsmast.social,LGBTQ+,lgbtq,true +vidit,newsmast.social,AI,ai,false +vidit,newsmast.social,Biology,biology,false +vidit,newsmast.social,Breaking News,breaking_news,false +vidit,newsmast.social,Business,business,false +vidit,newsmast.social,Chemistry,chemistry,false +vidit,newsmast.social,Engineering,engineering,false +vidit,newsmast.social,Government & Policy,government_policy,false +vidit,newsmast.social,Healthcare,healthcare,false +vidit,newsmast.social,Law & Justice,law_justice,false +vidit,newsmast.social,Markets & Finance,markets_finance,false +vidit,newsmast.social,Mathematics,mathematics,true +vidit,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false +vidit,newsmast.social,Journalism & Comment,news_comment_data,false +vidit,newsmast.social,Physics,physics,false +vidit,newsmast.social,Politics,politics,false +vidit,newsmast.social,Science,science,false +vidit,newsmast.social,Space,space,false +vidit,newsmast.social,Technology,technology,false +vidit,newsmast.social,Ukraine Invasion,ukraine_invasion,false +vidit,newsmast.social,Weather,weather,false +Hayfa_Sdiri,newsmast.social,Government & Policy,government_policy,true +Hayfa_Sdiri,newsmast.social,Social Sciences,social_sciences,false +Hayfa_Sdiri,newsmast.social,Business,business,false +Hayfa_Sdiri,newsmast.social,Markets & Finance,markets_finance,false +Hayfa_Sdiri,newsmast.social,AI,ai,false +Hayfa_Sdiri,newsmast.social,Indigenous Peoples,indigenous_peoples,false +Hayfa_Sdiri,newsmast.social,Technology,technology,false +Hayfa_Sdiri,newsmast.social,Immigrants Rights,immigrants_rights,false +Alan_Moran,newsmast.social,Journalism & Comment,news_comment_data,false +Alan_Moran,newsmast.social,Politics,politics,false +Alan_Moran,newsmast.social,Ukraine Invasion,ukraine_invasion,false +Alan_Moran,newsmast.social,Weather,weather,false +Alan_Moran,newsmast.social,Breaking News,breaking_news,true +ProfTJCurry,newsmast.social,Government & Policy,government_policy,false +ProfTJCurry,newsmast.social,Healthcare,healthcare,false +ProfTJCurry,newsmast.social,Humanities,humanities,false +ProfTJCurry,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false +ProfTJCurry,newsmast.social,Philosophy,philosophy,true +janerockhouse,newsmast.social,Social Sciences,social_sciences,false +janerockhouse,newsmast.social,Activism & Civil Rights,activism_civil_rights,false +janerockhouse,newsmast.social,Breaking News,breaking_news,false +janerockhouse,newsmast.social,Music,music,false +janerockhouse,newsmast.social,Journalism & Comment,news_comment_data,true +janerockhouse,newsmast.social,Photography,photography,false +janerockhouse,newsmast.social,Politics,politics,false +janerockhouse,newsmast.social,Women’s Voices,women_voices,false +Unwanted_Life,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false +Unwanted_Life,newsmast.social,Black Voices,black_voices,false +Unwanted_Life,newsmast.social,Disabled Voices,disabled_voices,false +Unwanted_Life,newsmast.social,Social Sciences,social_sciences,true +KenShirriff,newsmast.social,Architecture & Design,architecture_design,false +KenShirriff,newsmast.social,Biology,biology,false +KenShirriff,newsmast.social,Books & Literature,books_literature,false +KenShirriff,newsmast.social,Chemistry,chemistry,false +KenShirriff,newsmast.social,Engineering,engineering,false +KenShirriff,newsmast.social,History,history,false +KenShirriff,newsmast.social,Mathematics,mathematics,false +KenShirriff,newsmast.social,Physics,physics,false +KenShirriff,newsmast.social,Science,science,false +KenShirriff,newsmast.social,Space,space,false +KenShirriff,newsmast.social,Technology,technology,true +katieharbath,newsmast.social,Government & Policy,government_policy,false +katieharbath,newsmast.social,Business,business,false +katieharbath,newsmast.social,Democracy & Human Rights,democracy_human_rights,true +katieharbath,newsmast.social,Food & Drink,food_drink,false +katieharbath,newsmast.social,Journalism & Comment,news_comment_data,false +katieharbath,newsmast.social,Technology,technology,false +elliemroberts,newsmast.social,Breaking News,breaking_news,false +elliemroberts,newsmast.social,Disabled Voices,disabled_voices,false +elliemroberts,newsmast.social,History,history,true +elliemroberts,newsmast.social,Humanities,humanities,false +elliemroberts,newsmast.social,Visual Arts,visual_arts,false +elliemroberts,newsmast.social,Women’s Voices,women_voices,false +Zamzam,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false +Zamzam,newsmast.social,Black Voices,black_voices,false +Zamzam,newsmast.social,Climate change,climate_change,false +Zamzam,newsmast.social,Creative Arts,creative_arts,false +Zamzam,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +Zamzam,newsmast.social,Environment,environment,false +Zamzam,newsmast.social,Humour,humour,false +Zamzam,newsmast.social,Immigrants Rights,immigrants_rights,false +Zamzam,newsmast.social,Poverty & Inequality,poverty_inequality,false +Zamzam,newsmast.social,Travel,travel,false +Zamzam,newsmast.social,Activism & Civil Rights,activism_civil_rights,true +simonerochembe,newsmast.social,Technology,technology,false +simonerochembe,newsmast.social,AI,ai,false +simonerochembe,newsmast.social,Business,business,false +simonerochembe,newsmast.social,Women’s Voices,women_voices,true +timakimoff,newsmast.social,Nature & Wildlife,nature_wildlife,true +timakimoff,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false +timakimoff,newsmast.social,Biology,biology,false +timakimoff,newsmast.social,Books & Literature,books_literature,false +timakimoff,newsmast.social,Climate change,climate_change,false +timakimoff,newsmast.social,Energy & Pollution,energy_pollution,false +timakimoff,newsmast.social,Environment,environment,false +timakimoff,newsmast.social,History,history,false +timakimoff,newsmast.social,Philosophy,philosophy,false +timakimoff,newsmast.social,Physics,physics,false +timakimoff,newsmast.social,Science,science,false +timakimoff,newsmast.social,Social Sciences,social_sciences,false +timakimoff,newsmast.social,Space,space,false +karlienoon,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false +karlienoon,newsmast.social,Climate change,climate_change,false +karlienoon,newsmast.social,Energy & Pollution,energy_pollution,false +karlienoon,newsmast.social,Environment,environment,false +karlienoon,newsmast.social,Gaming,gaming,false +karlienoon,newsmast.social,Poverty & Inequality,poverty_inequality,false +karlienoon,newsmast.social,Law & Justice,law_justice,false +karlienoon,newsmast.social,Mathematics,mathematics,false +karlienoon,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false +karlienoon,newsmast.social,Physics,physics,false +karlienoon,newsmast.social,Science,science,false +karlienoon,newsmast.social,Space,space,true +karlienoon,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +actualbenj,newsmast.social,Government & Policy,government_policy,false +actualbenj,newsmast.social,LGBTQ+,lgbtq,false +actualbenj,newsmast.social,Journalism & Comment,news_comment_data,true +actualbenj,newsmast.social,Politics,politics,false +actualbenj,newsmast.social,Science,science,false +actualbenj,newsmast.social,Social Sciences,social_sciences,false +actualbenj,newsmast.social,Ukraine Invasion,ukraine_invasion,false +actualbenj,newsmast.social,Women’s Voices,women_voices,false +actualbenj,newsmast.social,Workers Rights,workers_rights,false +ipsc48,newsmast.social,Government & Policy,government_policy,false +ipsc48,newsmast.social,Indigenous Peoples,indigenous_peoples,false +ipsc48,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false +ipsc48,newsmast.social,Democracy & Human Rights,democracy_human_rights,true +ipsc48,newsmast.social,Immigrants Rights,immigrants_rights,false +Kevin_Healey,newsmast.social,Law & Justice,law_justice,false +Kevin_Healey,newsmast.social,Disabled Voices,disabled_voices,false +Kevin_Healey,newsmast.social,Journalism & Comment,news_comment_data,false +Kevin_Healey,newsmast.social,Technology,technology,false +Kevin_Healey,newsmast.social,Breaking News,breaking_news,false +Kevin_Healey,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,true +TerriGerstein,newsmast.social,Activism & Civil Rights,activism_civil_rights,false +TerriGerstein,newsmast.social,Government & Policy,government_policy,false +TerriGerstein,newsmast.social,Immigrants Rights,immigrants_rights,false +TerriGerstein,newsmast.social,Law & Justice,law_justice,false +TerriGerstein,newsmast.social,Women’s Voices,women_voices,false +TerriGerstein,newsmast.social,Workers Rights,workers_rights,true +dgainz,newsmast.social,Breaking News,breaking_news,true +dgainz,newsmast.social,Government & Policy,government_policy,false +dgainz,newsmast.social,Journalism & Comment,news_comment_data,false +dgainz,newsmast.social,Physics,physics,false +dgainz,newsmast.social,Science,science,false +dgainz,newsmast.social,Space,space,false +Diamond1,newsmast.social,Biology,biology,false +Diamond1,newsmast.social,Chemistry,chemistry,false +Diamond1,newsmast.social,Football,football,false +Diamond1,newsmast.social,Physics,physics,true +Diamond1,newsmast.social,Science,science,false +JayFIO,newsmast.social,Activism & Civil Rights,activism_civil_rights,true +JayFIO,newsmast.social,Breaking News,breaking_news,false +JayFIO,newsmast.social,Government & Policy,government_policy,false +JayFIO,newsmast.social,Law & Justice,law_justice,false +JayFIO,newsmast.social,LGBTQ+,lgbtq,false +JayFIO,newsmast.social,Journalism & Comment,news_comment_data,false +JayFIO,newsmast.social,Weather,weather,false +Destiny,newsmast.social,Food & Drink,food_drink,false +Destiny,newsmast.social,Football,football,false +Destiny,newsmast.social,Humour,humour,false +Destiny,newsmast.social,Mathematics,mathematics,false +Destiny,newsmast.social,Journalism & Comment,news_comment_data,false +Destiny,newsmast.social,Physics,physics,false +Destiny,newsmast.social,Space,space,true +Destiny,newsmast.social,Sport,sport,false +Destiny,newsmast.social,Travel,travel,false +Destiny,newsmast.social,LGBTQ+,lgbtq,false +Destiny,newsmast.social,Pets,pets,false +sallyhawkins,newsmast.social,Nature & Wildlife,nature_wildlife,false +sallyhawkins,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,true +sallyhawkins,newsmast.social,Environment,environment,false +sallyhawkins,newsmast.social,History,history,false +sallyhawkins,newsmast.social,Indigenous Peoples,indigenous_peoples,false +sallyhawkins,newsmast.social,Philosophy,philosophy,false +sallyhawkins,newsmast.social,Social Sciences,social_sciences,false +sallyhawkins,newsmast.social,Women’s Voices,women_voices,false +Lessig,newsmast.social,AI,ai,false +Lessig,newsmast.social,Government & Policy,government_policy,false +Lessig,newsmast.social,Law & Justice,law_justice,true +Lessig,newsmast.social,Science,science,false +Lessig,newsmast.social,Technology,technology,false +Lessig,newsmast.social,Ukraine Invasion,ukraine_invasion,false +aung,newsmast.social,Breaking News,breaking_news,false +aung,newsmast.social,Politics,politics,false +aung,newsmast.social,Ukraine Invasion,ukraine_invasion,false +aung,newsmast.social,Journalism & Comment,news_comment_data,true +SWCWomen,newsmast.social,Black Voices,black_voices,false +SWCWomen,newsmast.social,Books & Literature,books_literature,false +SWCWomen,newsmast.social,Disabled Voices,disabled_voices,false +SWCWomen,newsmast.social,Government & Policy,government_policy,false +SWCWomen,newsmast.social,History,history,false +SWCWomen,newsmast.social,Humanities,humanities,false +SWCWomen,newsmast.social,Immigrants Rights,immigrants_rights,false +SWCWomen,newsmast.social,Law & Justice,law_justice,false +SWCWomen,newsmast.social,LGBTQ+,lgbtq,false +SWCWomen,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false +SWCWomen,newsmast.social,Journalism & Comment,news_comment_data,false +SWCWomen,newsmast.social,Philosophy,philosophy,false +SWCWomen,newsmast.social,Politics,politics,false +SWCWomen,newsmast.social,Social Sciences,social_sciences,false +SWCWomen,newsmast.social,Women’s Voices,women_voices,true +SWCWomen,newsmast.social,Workers Rights,workers_rights,false +peter,newsmast.social,Technology,technology,false +peter,newsmast.social,Social Sciences,social_sciences,false +peter,newsmast.social,Business,business,false +peter,newsmast.social,Nature & Wildlife,nature_wildlife,false +peter,newsmast.social,AI,ai,false +peter,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,true +peter,newsmast.social,Climate change,climate_change,false +peter,newsmast.social,Energy & Pollution,energy_pollution,false +peter,newsmast.social,Environment,environment,false +jasonreiduk,newsmast.social,Activism & Civil Rights,activism_civil_rights,false +jasonreiduk,newsmast.social,Breaking News,breaking_news,false +jasonreiduk,newsmast.social,LGBTQ+,lgbtq,true +jasonreiduk,newsmast.social,Journalism & Comment,news_comment_data,false +KieranRose,newsmast.social,Activism & Civil Rights,activism_civil_rights,false +KieranRose,newsmast.social,Black Voices,black_voices,false +KieranRose,newsmast.social,Disabled Voices,disabled_voices,true +KieranRose,newsmast.social,Poverty & Inequality,poverty_inequality,false +KieranRose,newsmast.social,LGBTQ+,lgbtq,false +KieranRose,newsmast.social,Social Sciences,social_sciences,false +KieranRose,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +ccgh,newsmast.social,Government & Policy,government_policy,false +ccgh,newsmast.social,Books & Literature,books_literature,false +ccgh,newsmast.social,Immigrants Rights,immigrants_rights,true +ccgh,newsmast.social,Law & Justice,law_justice,false +ccgh,newsmast.social,Journalism & Comment,news_comment_data,false +ccgh,newsmast.social,Politics,politics,false +ccgh,newsmast.social,Social Sciences,social_sciences,false +ccgh,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +boroguide,newsmast.social,Football,football,true +boroguide,newsmast.social,Music,music,false +boroguide,newsmast.social,Photography,photography,false +boroguide,newsmast.social,Sport,sport,false +boroguide,newsmast.social,Travel,travel,false +ksetiya,newsmast.social,Activism & Civil Rights,activism_civil_rights,false +ksetiya,newsmast.social,AI,ai,false +ksetiya,newsmast.social,Architecture & Design,architecture_design,false +ksetiya,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false +ksetiya,newsmast.social,Biology,biology,false +ksetiya,newsmast.social,Black Voices,black_voices,false +ksetiya,newsmast.social,Books & Literature,books_literature,false +ksetiya,newsmast.social,Breaking News,breaking_news,false +ksetiya,newsmast.social,Business,business,false +ksetiya,newsmast.social,Chemistry,chemistry,false +ksetiya,newsmast.social,Climate change,climate_change,false +ksetiya,newsmast.social,Creative Arts,creative_arts,false +ksetiya,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +ksetiya,newsmast.social,Disabled Voices,disabled_voices,false +ksetiya,newsmast.social,Energy & Pollution,energy_pollution,false +ksetiya,newsmast.social,Engineering,engineering,false +ksetiya,newsmast.social,Environment,environment,false +ksetiya,newsmast.social,Food & Drink,food_drink,false +ksetiya,newsmast.social,Football,football,false +ksetiya,newsmast.social,Gaming,gaming,false +ksetiya,newsmast.social,Government & Policy,government_policy,false +ksetiya,newsmast.social,Healthcare,healthcare,false +ksetiya,newsmast.social,History,history,false +ksetiya,newsmast.social,Humanities,humanities,false +ksetiya,newsmast.social,Humour,humour,false +ksetiya,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false +ksetiya,newsmast.social,Immigrants Rights,immigrants_rights,false +ksetiya,newsmast.social,Indigenous Peoples,indigenous_peoples,false +ksetiya,newsmast.social,Poverty & Inequality,poverty_inequality,false +ksetiya,newsmast.social,Law & Justice,law_justice,false +ksetiya,newsmast.social,LGBTQ+,lgbtq,false +ksetiya,newsmast.social,Markets & Finance,markets_finance,false +ksetiya,newsmast.social,Mathematics,mathematics,false +ksetiya,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false +ksetiya,newsmast.social,Movies,movies,false +ksetiya,newsmast.social,Music,music,false +ksetiya,newsmast.social,Nature & Wildlife,nature_wildlife,false +ksetiya,newsmast.social,Journalism & Comment,news_comment_data,false +ksetiya,newsmast.social,Performing Arts,performing_arts,false +ksetiya,newsmast.social,Pets,pets,false +ksetiya,newsmast.social,Philosophy,philosophy,true +ksetiya,newsmast.social,Photography,photography,false +ksetiya,newsmast.social,Physics,physics,false +ksetiya,newsmast.social,Politics,politics,false +ksetiya,newsmast.social,Puzzles,puzzles,false +ksetiya,newsmast.social,Science,science,false +ksetiya,newsmast.social,Social Sciences,social_sciences,false +ksetiya,newsmast.social,Space,space,false +ksetiya,newsmast.social,Sport,sport,false +ksetiya,newsmast.social,Technology,technology,false +ksetiya,newsmast.social,Travel,travel,false +ksetiya,newsmast.social,TV & Radio,tv_radio,false +ksetiya,newsmast.social,Ukraine Invasion,ukraine_invasion,false +ksetiya,newsmast.social,Visual Arts,visual_arts,false +ksetiya,newsmast.social,Weather,weather,false +ksetiya,newsmast.social,Women’s Voices,women_voices,false +ksetiya,newsmast.social,Workers Rights,workers_rights,false +pot8um,newsmast.social,Disabled Voices,disabled_voices,true +pot8um,newsmast.social,Gaming,gaming,false +pot8um,newsmast.social,LGBTQ+,lgbtq,false +pot8um,newsmast.social,Movies,movies,false +pot8um,newsmast.social,Music,music,false +pot8um,newsmast.social,Journalism & Comment,news_comment_data,false +pot8um,newsmast.social,Science,science,false +pot8um,newsmast.social,Social Sciences,social_sciences,false +pot8um,newsmast.social,Space,space,false +pot8um,newsmast.social,Visual Arts,visual_arts,false +pot8um,newsmast.social,Women’s Voices,women_voices,false +PhilPlait,newsmast.social,Climate change,climate_change,false +PhilPlait,newsmast.social,Humour,humour,false +PhilPlait,newsmast.social,Physics,physics,false +PhilPlait,newsmast.social,Science,science,true +PhilPlait,newsmast.social,Space,space,false +rogerg44,newsmast.social,Architecture & Design,architecture_design,false +rogerg44,newsmast.social,Movies,movies,true +rogerg44,newsmast.social,Music,music,false +rogerg44,newsmast.social,Performing Arts,performing_arts,false +rogerg44,newsmast.social,Photography,photography,false +rogerg44,newsmast.social,TV & Radio,tv_radio,false +rogerg44,newsmast.social,Visual Arts,visual_arts,false +WildCard,newsmast.social,Nature & Wildlife,nature_wildlife,false +WildCard,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,true +WildCard,newsmast.social,Climate change,climate_change,false +WildCard,newsmast.social,Environment,environment,false +rewildingsam,newsmast.social,Nature & Wildlife,nature_wildlife,false +rewildingsam,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,true +rewildingsam,newsmast.social,Climate change,climate_change,false +rewildingsam,newsmast.social,Environment,environment,false +rewildingsam,newsmast.social,Photography,photography,false +rewildingsam,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false +cate,newsmast.social,Activism & Civil Rights,activism_civil_rights,false +cate,newsmast.social,Books & Literature,books_literature,false +cate,newsmast.social,Humanities,humanities,false +cate,newsmast.social,Poverty & Inequality,poverty_inequality,false +cate,newsmast.social,Philosophy,philosophy,false +cate,newsmast.social,Women’s Voices,women_voices,true +jeremygodwin,newsmast.social,LGBTQ+,lgbtq,false +jeremygodwin,newsmast.social,Philosophy,philosophy,false +jeremygodwin,newsmast.social,Science,science,false +jeremygodwin,newsmast.social,Social Sciences,social_sciences,true +jeremygodwin,newsmast.social,Space,space,false +jeremygodwin,newsmast.social,Technology,technology,false +candice_chirwa,newsmast.social,Government & Policy,government_policy,false +candice_chirwa,newsmast.social,Activism & Civil Rights,activism_civil_rights,false +candice_chirwa,newsmast.social,Black Voices,black_voices,false +candice_chirwa,newsmast.social,Humanities,humanities,false +candice_chirwa,newsmast.social,LGBTQ+,lgbtq,false +candice_chirwa,newsmast.social,Women’s Voices,women_voices,false +candice_chirwa,newsmast.social,Environment,environment,false +candice_chirwa,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false +candice_chirwa,newsmast.social,Democracy & Human Rights,democracy_human_rights,true +Crof,newsmast.social,Government & Policy,government_policy,false +Crof,newsmast.social,AI,ai,false +Crof,newsmast.social,Biology,biology,false +Crof,newsmast.social,Climate change,climate_change,false +Crof,newsmast.social,Energy & Pollution,energy_pollution,false +Crof,newsmast.social,Healthcare,healthcare,false +Crof,newsmast.social,History,history,false +Crof,newsmast.social,Poverty & Inequality,poverty_inequality,false +Crof,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false +Crof,newsmast.social,Journalism & Comment,news_comment_data,false +Crof,newsmast.social,Politics,politics,false +Crof,newsmast.social,Social Sciences,social_sciences,false +Crof,newsmast.social,Ukraine Invasion,ukraine_invasion,false +Crof,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,true +Crof,newsmast.social,Immigrants Rights,immigrants_rights,false +lgsmsec,newsmast.social,Activism & Civil Rights,activism_civil_rights,false +lgsmsec,newsmast.social,Energy & Pollution,energy_pollution,false +lgsmsec,newsmast.social,Law & Justice,law_justice,false +lgsmsec,newsmast.social,LGBTQ+,lgbtq,true +lgsmsec,newsmast.social,Journalism & Comment,news_comment_data,false +lgsmsec,newsmast.social,Politics,politics,false +lgsmsec,newsmast.social,Workers Rights,workers_rights,false +lgsmsec,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +LeslieTay,newsmast.social,Food & Drink,food_drink,true +LeslieTay,newsmast.social,Photography,photography,false +LeslieTay,newsmast.social,Science,science,false +LeslieTay,newsmast.social,Environment,environment,false +LeslieTay,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false +RhondaAlbom,newsmast.social,Nature & Wildlife,nature_wildlife,false +RhondaAlbom,newsmast.social,Architecture & Design,architecture_design,false +RhondaAlbom,newsmast.social,Environment,environment,false +RhondaAlbom,newsmast.social,Humour,humour,false +RhondaAlbom,newsmast.social,Photography,photography,false +RhondaAlbom,newsmast.social,Travel,travel,true +RhondaAlbom,newsmast.social,Visual Arts,visual_arts,false +RhondaAlbom,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +Dailyscandi,newsmast.social,Democracy & Human Rights,democracy_human_rights,true +Dailyscandi,newsmast.social,Poverty & Inequality,poverty_inequality,false +Dailyscandi,newsmast.social,Environment,environment,false +Dailyscandi,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false +Sam,newsmast.social,AI,ai,false +Sam,newsmast.social,Architecture & Design,architecture_design,false +Sam,newsmast.social,LGBTQ+,lgbtq,false +Sam,newsmast.social,Politics,politics,false +Sam,newsmast.social,Journalism & Comment,news_comment_data,false +Sam,newsmast.social,Breaking News,breaking_news,false +Sam,newsmast.social,Activism & Civil Rights,activism_civil_rights,true +samf,newsmast.social,Government & Policy,government_policy,false +samf,newsmast.social,Business,business,false +samf,newsmast.social,Pets,pets,false +samf,newsmast.social,Philosophy,philosophy,false +samf,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,true +seema,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false +seema,newsmast.social,Climate change,climate_change,false +seema,newsmast.social,Environment,environment,false +seema,newsmast.social,Social Sciences,social_sciences,true +tomy,newsmast.social,Social Sciences,social_sciences,false +tomy,newsmast.social,AI,ai,false +tomy,newsmast.social,Biology,biology,false +tomy,newsmast.social,Humanities,humanities,false +tomy,newsmast.social,Philosophy,philosophy,true +tomy,newsmast.social,Physics,physics,false +tomy,newsmast.social,Science,science,false +tomy,newsmast.social,Space,space,false +Kyaw,newsmast.social,Nature & Wildlife,nature_wildlife,false +Kyaw,newsmast.social,AI,ai,true +Kyaw,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false +Kyaw,newsmast.social,Breaking News,breaking_news,false +Kyaw,newsmast.social,Climate change,climate_change,false +Kyaw,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +Kyaw,newsmast.social,Energy & Pollution,energy_pollution,false +Kyaw,newsmast.social,Environment,environment,false +Kyaw,newsmast.social,Healthcare,healthcare,false +Kyaw,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false +Kyaw,newsmast.social,Poverty & Inequality,poverty_inequality,false +Kyaw,newsmast.social,Law & Justice,law_justice,false +Kyaw,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false +Kyaw,newsmast.social,Politics,politics,false +Kyaw,newsmast.social,Technology,technology,false +Kyaw,newsmast.social,Ukraine Invasion,ukraine_invasion,false +Kyaw,newsmast.social,Weather,weather,false +Kyaw,newsmast.social,Journalism & Comment,news_comment_data,false +Kyaw,newsmast.social,Government & Policy,government_policy,false +Kyaw,newsmast.social,US Politics,us_politics,false +Kyaw,newsmast.social,Immigrants Rights,immigrants_rights,false +debgod,newsmast.social,Activism & Civil Rights,activism_civil_rights,true +debgod,newsmast.social,Architecture & Design,architecture_design,false +debgod,newsmast.social,Black Voices,black_voices,false +debgod,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +debgod,newsmast.social,LGBTQ+,lgbtq,false +debgod,newsmast.social,Music,music,false +debgod,newsmast.social,Performing Arts,performing_arts,false +debgod,newsmast.social,Social Sciences,social_sciences,false +debgod,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false +luisaropio,newsmast.social,Government & Policy,government_policy,false +luisaropio,newsmast.social,Breaking News,breaking_news,false +luisaropio,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +luisaropio,newsmast.social,Energy & Pollution,energy_pollution,false +luisaropio,newsmast.social,Social Sciences,social_sciences,false +luisaropio,newsmast.social,Journalism & Comment,news_comment_data,false +luisaropio,newsmast.social,Environment,environment,true +luisaropio,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false +Nancie,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false +Nancie,newsmast.social,Food & Drink,food_drink,false +Nancie,newsmast.social,Humour,humour,false +Nancie,newsmast.social,Nature & Wildlife,nature_wildlife,false +Nancie,newsmast.social,Pets,pets,false +Nancie,newsmast.social,Puzzles,puzzles,false +Nancie,newsmast.social,Travel,travel,true +TheCultofCalcio,newsmast.social,Business,business,false +TheCultofCalcio,newsmast.social,Football,football,true +TheCultofCalcio,newsmast.social,Journalism & Comment,news_comment_data,false +TheCultofCalcio,newsmast.social,Sport,sport,false +TheCultofCalcio,newsmast.social,Environment,environment,false +jaclynasiegel,newsmast.social,Food & Drink,food_drink,false +jaclynasiegel,newsmast.social,Humour,humour,false +jaclynasiegel,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false +jaclynasiegel,newsmast.social,Nature & Wildlife,nature_wildlife,false +jaclynasiegel,newsmast.social,Puzzles,puzzles,false +jaclynasiegel,newsmast.social,Social Sciences,social_sciences,true +jaclynasiegel,newsmast.social,Space,space,false +jaclynasiegel,newsmast.social,Travel,travel,false +thelmzkitchen,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false +thelmzkitchen,newsmast.social,Creative Arts,creative_arts,false +thelmzkitchen,newsmast.social,Food & Drink,food_drink,true +thelmzkitchen,newsmast.social,Music,music,false +thelmzkitchen,newsmast.social,Travel,travel,false +thelmzkitchen,newsmast.social,Women’s Voices,women_voices,false +DrCarpineti,newsmast.social,Activism & Civil Rights,activism_civil_rights,false +DrCarpineti,newsmast.social,Breaking News,breaking_news,false +DrCarpineti,newsmast.social,LGBTQ+,lgbtq,false +DrCarpineti,newsmast.social,Journalism & Comment,news_comment_data,false +DrCarpineti,newsmast.social,Physics,physics,false +DrCarpineti,newsmast.social,Science,science,false +DrCarpineti,newsmast.social,Space,space,true +DrCarpineti,newsmast.social,Technology,technology,false +DrCarpineti,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +MKandHerBC,newsmast.social,Social Sciences,social_sciences,false +MKandHerBC,newsmast.social,Markets & Finance,markets_finance,false +MKandHerBC,newsmast.social,Business,business,false +MKandHerBC,newsmast.social,Humour,humour,false +MKandHerBC,newsmast.social,Pets,pets,true +MKandHerBC,newsmast.social,Puzzles,puzzles,false +tillathenun,newsmast.social,Nature & Wildlife,nature_wildlife,false +tillathenun,newsmast.social,Climate change,climate_change,false +tillathenun,newsmast.social,Movies,movies,false +tillathenun,newsmast.social,Science,science,false +tillathenun,newsmast.social,Technology,technology,true +rebarkable,newsmast.social,Biology,biology,false +rebarkable,newsmast.social,Environment,environment,false +rebarkable,newsmast.social,Food & Drink,food_drink,false +rebarkable,newsmast.social,Pets,pets,true +rebarkable,newsmast.social,Science,science,false +QasimRashid,newsmast.social,Social Sciences,social_sciences,false +QasimRashid,newsmast.social,Breaking News,breaking_news,false +QasimRashid,newsmast.social,Government & Policy,government_policy,false +QasimRashid,newsmast.social,Journalism & Comment,news_comment_data,false +QasimRashid,newsmast.social,Politics,politics,true +mweinbach,newsmast.social,Markets & Finance,markets_finance,false +mweinbach,newsmast.social,AI,ai,false +mweinbach,newsmast.social,Breaking News,breaking_news,false +mweinbach,newsmast.social,Business,business,false +mweinbach,newsmast.social,Engineering,engineering,false +mweinbach,newsmast.social,Government & Policy,government_policy,false +mweinbach,newsmast.social,Healthcare,healthcare,false +mweinbach,newsmast.social,Law & Justice,law_justice,false +mweinbach,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false +mweinbach,newsmast.social,Journalism & Comment,news_comment_data,false +mweinbach,newsmast.social,Physics,physics,false +mweinbach,newsmast.social,Politics,politics,false +mweinbach,newsmast.social,Science,science,false +mweinbach,newsmast.social,Social Sciences,social_sciences,false +mweinbach,newsmast.social,Space,space,false +mweinbach,newsmast.social,Technology,technology,true +mweinbach,newsmast.social,Weather,weather,false +Anneliese,newsmast.social,Nature & Wildlife,nature_wildlife,false +Anneliese,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false +Anneliese,newsmast.social,Climate change,climate_change,false +Anneliese,newsmast.social,Energy & Pollution,energy_pollution,false +Anneliese,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false +Anneliese,newsmast.social,Journalism & Comment,news_comment_data,false +Anneliese,newsmast.social,Science,science,false +Anneliese,newsmast.social,Social Sciences,social_sciences,false +Anneliese,newsmast.social,Environment,environment,true +MummyMatters,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,true +MummyMatters,newsmast.social,Creative Arts,creative_arts,false +MummyMatters,newsmast.social,Nature & Wildlife,nature_wildlife,false +MummyMatters,newsmast.social,Pets,pets,false +MummyMatters,newsmast.social,Travel,travel,false +infobl,newsmast.social,AI,ai,true +infobl,newsmast.social,Breaking News,breaking_news,false +infobl,newsmast.social,Politics,politics,false +infobl,newsmast.social,Technology,technology,false +infobl,newsmast.social,Ukraine Invasion,ukraine_invasion,false +infobl,newsmast.social,Weather,weather,false +infobl,newsmast.social,Journalism & Comment,news_comment_data,false +ShaggyShepherd,newsmast.social,Nature & Wildlife,nature_wildlife,false +ShaggyShepherd,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false +ShaggyShepherd,newsmast.social,Books & Literature,books_literature,true +ShaggyShepherd,newsmast.social,Immigrants Rights,immigrants_rights,false +ShaggyShepherd,newsmast.social,Social Sciences,social_sciences,false +ChrisB100,newsmast.social,Breaking News,breaking_news,true +ChrisB100,newsmast.social,Poverty & Inequality,poverty_inequality,false +ChrisB100,newsmast.social,Journalism & Comment,news_comment_data,false +ChrisB100,newsmast.social,Weather,weather,false +ChrisB100,newsmast.social,Environment,environment,false +petenothing,newsmast.social,Food & Drink,food_drink,false +petenothing,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false +petenothing,newsmast.social,Football,football,false +petenothing,newsmast.social,History,history,false +petenothing,newsmast.social,Humanities,humanities,false +petenothing,newsmast.social,Architecture & Design,architecture_design,false +petenothing,newsmast.social,Creative Arts,creative_arts,false +petenothing,newsmast.social,LGBTQ+,lgbtq,false +petenothing,newsmast.social,Music,music,false +petenothing,newsmast.social,Nature & Wildlife,nature_wildlife,false +petenothing,newsmast.social,Pets,pets,false +petenothing,newsmast.social,Puzzles,puzzles,false +petenothing,newsmast.social,Space,space,false +petenothing,newsmast.social,Travel,travel,false +petenothing,newsmast.social,TV & Radio,tv_radio,false +petenothing,newsmast.social,Women’s Voices,women_voices,false +petenothing,newsmast.social,Workers Rights,workers_rights,false +petenothing,newsmast.social,Books & Literature,books_literature,true +ianwalker,newsmast.social,Technology,technology,false +ianwalker,newsmast.social,Climate change,climate_change,false +ianwalker,newsmast.social,Energy & Pollution,energy_pollution,false +ianwalker,newsmast.social,Environment,environment,true +ianwalker,newsmast.social,Science,science,false +ianwalker,newsmast.social,Social Sciences,social_sciences,false +ianwalker,newsmast.social,Space,space,false +Randee,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false +Randee,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false +Randee,newsmast.social,Books & Literature,books_literature,true +Randee,newsmast.social,Breaking News,breaking_news,false +Randee,newsmast.social,Creative Arts,creative_arts,false +Randee,newsmast.social,Environment,environment,false +Randee,newsmast.social,Food & Drink,food_drink,false +Randee,newsmast.social,Humanities,humanities,false +Randee,newsmast.social,Humour,humour,false +Randee,newsmast.social,Movies,movies,false +Randee,newsmast.social,Music,music,false +Randee,newsmast.social,Nature & Wildlife,nature_wildlife,false +Randee,newsmast.social,Journalism & Comment,news_comment_data,false +Randee,newsmast.social,Performing Arts,performing_arts,false +Randee,newsmast.social,Pets,pets,false +Randee,newsmast.social,Photography,photography,false +Randee,newsmast.social,Puzzles,puzzles,false +Randee,newsmast.social,Social Sciences,social_sciences,false +Randee,newsmast.social,Travel,travel,false +Randee,newsmast.social,TV & Radio,tv_radio,false +docwinters,newsmast.social,Law & Justice,law_justice,false +docwinters,newsmast.social,Books & Literature,books_literature,false +docwinters,newsmast.social,History,history,true +docwinters,newsmast.social,Humanities,humanities,false +docwinters,newsmast.social,Philosophy,philosophy,false +johnhawks,newsmast.social,AI,ai,false +johnhawks,newsmast.social,Biology,biology,true +johnhawks,newsmast.social,Science,science,false +johnhawks,newsmast.social,Social Sciences,social_sciences,false +johnhawks,newsmast.social,Space,space,false +johnhawks,newsmast.social,Journalism & Comment,news_comment_data,false +wjnewman,newsmast.social,AI,ai,false +wjnewman,newsmast.social,Climate change,climate_change,false +wjnewman,newsmast.social,Physics,physics,false +wjnewman,newsmast.social,Science,science,true +wjnewman,newsmast.social,Space,space,false +wjnewman,newsmast.social,Technology,technology,false +wjnewman,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false +BobGatty,newsmast.social,Academia & Research,academia_research,false +BobGatty,newsmast.social,AI,ai,false +BobGatty,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false +BobGatty,newsmast.social,Breaking News,breaking_news,false +BobGatty,newsmast.social,Business,business,false +BobGatty,newsmast.social,Climate change,climate_change,false +BobGatty,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +BobGatty,newsmast.social,Energy & Pollution,energy_pollution,false +BobGatty,newsmast.social,Engineering,engineering,false +BobGatty,newsmast.social,Environment,environment,false +BobGatty,newsmast.social,Football,football,false +BobGatty,newsmast.social,Government & Policy,government_policy,false +BobGatty,newsmast.social,Healthcare,healthcare,false +BobGatty,newsmast.social,History,history,false +BobGatty,newsmast.social,Humanities,humanities,false +BobGatty,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false +BobGatty,newsmast.social,Law & Justice,law_justice,false +BobGatty,newsmast.social,Markets & Finance,markets_finance,false +BobGatty,newsmast.social,Journalism & Comment,news_comment_data,false +BobGatty,newsmast.social,Philosophy,philosophy,false +BobGatty,newsmast.social,Politics,politics,true +BobGatty,newsmast.social,Poverty & Inequality,poverty_inequality,false +BobGatty,newsmast.social,Programming,programming,false +BobGatty,newsmast.social,Social Media,social_media,false +BobGatty,newsmast.social,Social Sciences,social_sciences,false +BobGatty,newsmast.social,Sport,sport,false +BobGatty,newsmast.social,Technology,technology,false +BobGatty,newsmast.social,Ukraine Invasion,ukraine_invasion,false +BobGatty,newsmast.social,US Politics,us_politics,false +BobGatty,newsmast.social,US Sport,us_sport,false +BobGatty,newsmast.social,Weather,weather,false +BobGatty,newsmast.social,Workers Rights,workers_rights,false +willwinter,newsmast.social,AI,ai,false +willwinter,newsmast.social,Business,business,false +willwinter,newsmast.social,Government & Policy,government_policy,false +willwinter,newsmast.social,Technology,technology,true +ghutchis,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false +ghutchis,newsmast.social,Climate change,climate_change,false +ghutchis,newsmast.social,Creative Arts,creative_arts,false +ghutchis,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +ghutchis,newsmast.social,Energy & Pollution,energy_pollution,false +ghutchis,newsmast.social,Engineering,engineering,false +ghutchis,newsmast.social,Environment,environment,false +ghutchis,newsmast.social,Food & Drink,food_drink,false +ghutchis,newsmast.social,Humour,humour,false +ghutchis,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false +ghutchis,newsmast.social,Poverty & Inequality,poverty_inequality,false +ghutchis,newsmast.social,Mathematics,mathematics,false +ghutchis,newsmast.social,Nature & Wildlife,nature_wildlife,false +ghutchis,newsmast.social,Pets,pets,false +ghutchis,newsmast.social,Physics,physics,false +ghutchis,newsmast.social,Puzzles,puzzles,false +ghutchis,newsmast.social,Science,science,false +ghutchis,newsmast.social,Space,space,false +ghutchis,newsmast.social,AI,ai,false +ghutchis,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false +ghutchis,newsmast.social,Biology,biology,false +ghutchis,newsmast.social,Technology,technology,false +ghutchis,newsmast.social,Travel,travel,false +ghutchis,newsmast.social,Chemistry,chemistry,true +ghutchis,newsmast.social,Immigrants Rights,immigrants_rights,false +Johnvink,newsmast.social,Climate change,climate_change,false +Johnvink,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +Johnvink,newsmast.social,Environment,environment,false +Johnvink,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false +Johnvink,newsmast.social,Poverty & Inequality,poverty_inequality,false +Johnvink,newsmast.social,Journalism & Comment,news_comment_data,false +Johnvink,newsmast.social,Photography,photography,true +Johnvink,newsmast.social,Immigrants Rights,immigrants_rights,false +chrysalismama,newsmast.social,Creative Arts,creative_arts,false +chrysalismama,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false +chrysalismama,newsmast.social,Activism & Civil Rights,activism_civil_rights,false +chrysalismama,newsmast.social,Books & Literature,books_literature,false +chrysalismama,newsmast.social,LGBTQ+,lgbtq,true +chrysalismama,newsmast.social,Nature & Wildlife,nature_wildlife,false +chrysalismama,newsmast.social,Journalism & Comment,news_comment_data,false +chrysalismama,newsmast.social,Women’s Voices,women_voices,false +chrysalismama,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +nowinaminute,newsmast.social,Social Sciences,social_sciences,false +nowinaminute,newsmast.social,Activism & Civil Rights,activism_civil_rights,false +nowinaminute,newsmast.social,AI,ai,false +nowinaminute,newsmast.social,Humour,humour,false +nowinaminute,newsmast.social,LGBTQ+,lgbtq,false +nowinaminute,newsmast.social,Mathematics,mathematics,false +nowinaminute,newsmast.social,Journalism & Comment,news_comment_data,true +nowinaminute,newsmast.social,Pets,pets,false +nowinaminute,newsmast.social,Science,science,false +nowinaminute,newsmast.social,Technology,technology,false +nowinaminute,newsmast.social,Women’s Voices,women_voices,false +pennywalker,newsmast.social,Government & Policy,government_policy,false +pennywalker,newsmast.social,Nature & Wildlife,nature_wildlife,false +pennywalker,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false +pennywalker,newsmast.social,Books & Literature,books_literature,false +pennywalker,newsmast.social,Climate change,climate_change,false +pennywalker,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +pennywalker,newsmast.social,Energy & Pollution,energy_pollution,false +pennywalker,newsmast.social,Environment,environment,true +pennywalker,newsmast.social,Law & Justice,law_justice,false +pennywalker,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false +pennywalker,newsmast.social,Science,science,false +pennywalker,newsmast.social,Social Sciences,social_sciences,false +pennywalker,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false +pennywalker,newsmast.social,Immigrants Rights,immigrants_rights,false +mattskal,newsmast.social,AI,ai,false +mattskal,newsmast.social,Business,business,false +mattskal,newsmast.social,Movies,movies,false +mattskal,newsmast.social,Performing Arts,performing_arts,false +mattskal,newsmast.social,Technology,technology,true +FemalesNFinance,newsmast.social,Markets & Finance,markets_finance,true +FemalesNFinance,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false +FemalesNFinance,newsmast.social,Journalism & Comment,news_comment_data,false +FemalesNFinance,newsmast.social,Puzzles,puzzles,false +sustainabilityx,newsmast.social,Nature & Wildlife,nature_wildlife,false +sustainabilityx,newsmast.social,AI,ai,false +sustainabilityx,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false +sustainabilityx,newsmast.social,Breaking News,breaking_news,false +sustainabilityx,newsmast.social,Business,business,false +sustainabilityx,newsmast.social,Climate change,climate_change,true +sustainabilityx,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +sustainabilityx,newsmast.social,Energy & Pollution,energy_pollution,false +sustainabilityx,newsmast.social,Environment,environment,false +sustainabilityx,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false +sustainabilityx,newsmast.social,Poverty & Inequality,poverty_inequality,false +sustainabilityx,newsmast.social,Markets & Finance,markets_finance,false +sustainabilityx,newsmast.social,Journalism & Comment,news_comment_data,false +sustainabilityx,newsmast.social,Politics,politics,false +sustainabilityx,newsmast.social,Technology,technology,false +sustainabilityx,newsmast.social,Ukraine Invasion,ukraine_invasion,false +sustainabilityx,newsmast.social,Weather,weather,false +sustainabilityx,newsmast.social,Immigrants Rights,immigrants_rights,false +arg02,newsmast.social,Energy & Pollution,energy_pollution,true +arg02,newsmast.social,Nature & Wildlife,nature_wildlife,false +arg02,newsmast.social,Biology,biology,false +arg02,newsmast.social,Breaking News,breaking_news,false +arg02,newsmast.social,Chemistry,chemistry,false +arg02,newsmast.social,Climate change,climate_change,false +arg02,newsmast.social,Engineering,engineering,false +arg02,newsmast.social,Environment,environment,false +arg02,newsmast.social,Journalism & Comment,news_comment_data,false +arg02,newsmast.social,Politics,politics,false +arg02,newsmast.social,Science,science,false +arg02,newsmast.social,Social Sciences,social_sciences,false +arg02,newsmast.social,Space,space,false +arg02,newsmast.social,Technology,technology,false +arg02,newsmast.social,Ukraine Invasion,ukraine_invasion,false +arg02,newsmast.social,Weather,weather,false +Roamancing,newsmast.social,Government & Policy,government_policy,false +Roamancing,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false +Roamancing,newsmast.social,Books & Literature,books_literature,false +Roamancing,newsmast.social,Creative Arts,creative_arts,false +Roamancing,newsmast.social,Environment,environment,false +Roamancing,newsmast.social,Food & Drink,food_drink,false +Roamancing,newsmast.social,History,history,false +Roamancing,newsmast.social,Humanities,humanities,false +Roamancing,newsmast.social,Poverty & Inequality,poverty_inequality,false +Roamancing,newsmast.social,Music,music,false +Roamancing,newsmast.social,Nature & Wildlife,nature_wildlife,false +Roamancing,newsmast.social,Performing Arts,performing_arts,false +Roamancing,newsmast.social,Pets,pets,false +Roamancing,newsmast.social,Travel,travel,true +Roamancing,newsmast.social,Disabled Voices,disabled_voices,false +Roamancing,newsmast.social,Indigenous Peoples,indigenous_peoples,false +Roamancing,newsmast.social,Women’s Voices,women_voices,false +Roamancing,newsmast.social,Science,science,false +Roamancing,newsmast.social,Biology,biology,false +Roamancing,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false +Roamancing,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false +Roamancing,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +StephanHacker2,newsmast.social,Chemistry,chemistry,true +OpsMatters,newsmast.social,AI,ai,false +OpsMatters,newsmast.social,Breaking News,breaking_news,false +OpsMatters,newsmast.social,Business,business,false +OpsMatters,newsmast.social,Engineering,engineering,false +OpsMatters,newsmast.social,Environment,environment,false +OpsMatters,newsmast.social,Technology,technology,true +OpsMatters,newsmast.social,Journalism & Comment,news_comment_data,false +aliciahaydenart,newsmast.social,Nature & Wildlife,nature_wildlife,true +aliciahaydenart,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false +aliciahaydenart,newsmast.social,Biology,biology,false +aliciahaydenart,newsmast.social,Books & Literature,books_literature,false +aliciahaydenart,newsmast.social,Climate change,climate_change,false +aliciahaydenart,newsmast.social,Environment,environment,false +aliciahaydenart,newsmast.social,Photography,photography,false +aliciahaydenart,newsmast.social,Science,science,false +aliciahaydenart,newsmast.social,Visual Arts,visual_arts,false +MotorcycleGuy,newsmast.social,Government & Policy,government_policy,false +MotorcycleGuy,newsmast.social,Activism & Civil Rights,activism_civil_rights,false +MotorcycleGuy,newsmast.social,AI,ai,false +MotorcycleGuy,newsmast.social,Breaking News,breaking_news,false +MotorcycleGuy,newsmast.social,Business,business,false +MotorcycleGuy,newsmast.social,Healthcare,healthcare,true +MotorcycleGuy,newsmast.social,LGBTQ+,lgbtq,false +MotorcycleGuy,newsmast.social,Mathematics,mathematics,false +MotorcycleGuy,newsmast.social,Politics,politics,false +MotorcycleGuy,newsmast.social,Science,science,false +MotorcycleGuy,newsmast.social,Space,space,false +MotorcycleGuy,newsmast.social,Technology,technology,false +PPT536,newsmast.social,Breaking News,breaking_news,true +PPT536,newsmast.social,Journalism & Comment,news_comment_data,false +PPT536,newsmast.social,Social Media,social_media,false +PPT536,newsmast.social,Ukraine Invasion,ukraine_invasion,false +PPT536,newsmast.social,Weather,weather,false +Ed_Rempel,newsmast.social,Social Sciences,social_sciences,false +Ed_Rempel,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false +Ed_Rempel,newsmast.social,AI,ai,false +Ed_Rempel,newsmast.social,Breaking News,breaking_news,false +Ed_Rempel,newsmast.social,Business,business,true +Ed_Rempel,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +Ed_Rempel,newsmast.social,Food & Drink,food_drink,false +Ed_Rempel,newsmast.social,Government & Policy,government_policy,false +Ed_Rempel,newsmast.social,Humour,humour,false +Ed_Rempel,newsmast.social,Markets & Finance,markets_finance,false +Ed_Rempel,newsmast.social,Journalism & Comment,news_comment_data,false +Ed_Rempel,newsmast.social,Politics,politics,false +Ed_Rempel,newsmast.social,Space,space,false +Ed_Rempel,newsmast.social,Technology,technology,false +Ed_Rempel,newsmast.social,Travel,travel,false +Ed_Rempel,newsmast.social,Poverty & Inequality,poverty_inequality,false +OmarSakr,newsmast.social,Books & Literature,books_literature,true +OmarSakr,newsmast.social,Breaking News,breaking_news,false +OmarSakr,newsmast.social,Movies,movies,false +OmarSakr,newsmast.social,Politics,politics,false +OmarSakr,newsmast.social,TV & Radio,tv_radio,false +OmarSakr,newsmast.social,Environment,environment,false +OmarSakr,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false +OmarSakr,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +OmarSakr,newsmast.social,Immigrants Rights,immigrants_rights,false +wdshow,newsmast.social,Breaking News,breaking_news,false +wdshow,newsmast.social,Government & Policy,government_policy,false +wdshow,newsmast.social,Healthcare,healthcare,false +wdshow,newsmast.social,Law & Justice,law_justice,false +wdshow,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false +wdshow,newsmast.social,Journalism & Comment,news_comment_data,true +wdshow,newsmast.social,Politics,politics,false +PriyankaJoshi,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,true +PriyankaJoshi,newsmast.social,Books & Literature,books_literature,false +PriyankaJoshi,newsmast.social,Business,business,false +PriyankaJoshi,newsmast.social,Philosophy,philosophy,false +PriyankaJoshi,newsmast.social,Environment,environment,false +JohnnieJae,newsmast.social,Activism & Civil Rights,activism_civil_rights,false +JohnnieJae,newsmast.social,Breaking News,breaking_news,false +JohnnieJae,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +JohnnieJae,newsmast.social,Disabled Voices,disabled_voices,false +JohnnieJae,newsmast.social,Government & Policy,government_policy,false +JohnnieJae,newsmast.social,Healthcare,healthcare,false +JohnnieJae,newsmast.social,Indigenous Peoples,indigenous_peoples,true +JohnnieJae,newsmast.social,Law & Justice,law_justice,false +JohnnieJae,newsmast.social,LGBTQ+,lgbtq,false +JohnnieJae,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false +JohnnieJae,newsmast.social,Movies,movies,false +JohnnieJae,newsmast.social,Journalism & Comment,news_comment_data,false +JohnnieJae,newsmast.social,Politics,politics,false +JohnnieJae,newsmast.social,TV & Radio,tv_radio,false +DrHannahBB,newsmast.social,Activism & Civil Rights,activism_civil_rights,false +DrHannahBB,newsmast.social,Disabled Voices,disabled_voices,true +DrHannahBB,newsmast.social,Government & Policy,government_policy,false +DrHannahBB,newsmast.social,Healthcare,healthcare,false +DrHannahBB,newsmast.social,LGBTQ+,lgbtq,false +DrHannahBB,newsmast.social,Music,music,false +DrHannahBB,newsmast.social,Journalism & Comment,news_comment_data,false +DrHannahBB,newsmast.social,Politics,politics,false +DrHannahBB,newsmast.social,Women’s Voices,women_voices,false +erica,newsmast.social,Books & Literature,books_literature,false +erica,newsmast.social,Breaking News,breaking_news,false +erica,newsmast.social,Humanities,humanities,false +erica,newsmast.social,Music,music,false +erica,newsmast.social,Journalism & Comment,news_comment_data,true +erica,newsmast.social,Politics,politics,false +erica,newsmast.social,TV & Radio,tv_radio,false +erica,newsmast.social,Ukraine Invasion,ukraine_invasion,false +erica,newsmast.social,Weather,weather,false +jackiealpers,newsmast.social,Books & Literature,books_literature,false +jackiealpers,newsmast.social,Food & Drink,food_drink,true +jackiealpers,newsmast.social,History,history,false +jackiealpers,newsmast.social,Photography,photography,false +jackiealpers,newsmast.social,Visual Arts,visual_arts,false +francisco_blaha,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,true +francisco_blaha,newsmast.social,Climate change,climate_change,false +francisco_blaha,newsmast.social,Poverty & Inequality,poverty_inequality,false +francisco_blaha,newsmast.social,Environment,environment,false +Pghlesbian,newsmast.social,Environment,environment,false +Pghlesbian,newsmast.social,Government & Policy,government_policy,false +Pghlesbian,newsmast.social,Healthcare,healthcare,false +Pghlesbian,newsmast.social,Law & Justice,law_justice,false +Pghlesbian,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false +Pghlesbian,newsmast.social,Journalism & Comment,news_comment_data,true +Pghlesbian,newsmast.social,Social Sciences,social_sciences,false +pam_palmater,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false +pam_palmater,newsmast.social,Activism & Civil Rights,activism_civil_rights,false +pam_palmater,newsmast.social,Climate change,climate_change,false +pam_palmater,newsmast.social,Environment,environment,false +pam_palmater,newsmast.social,Government & Policy,government_policy,false +pam_palmater,newsmast.social,Indigenous Peoples,indigenous_peoples,true +pam_palmater,newsmast.social,Journalism & Comment,news_comment_data,false +pam_palmater,newsmast.social,Women’s Voices,women_voices,false +deniseoberry,newsmast.social,AI,ai,false +deniseoberry,newsmast.social,Breaking News,breaking_news,false +deniseoberry,newsmast.social,Business,business,true +deniseoberry,newsmast.social,Government & Policy,government_policy,false +deniseoberry,newsmast.social,Law & Justice,law_justice,false +deniseoberry,newsmast.social,Markets & Finance,markets_finance,false +deniseoberry,newsmast.social,Journalism & Comment,news_comment_data,false +deniseoberry,newsmast.social,Politics,politics,false +deniseoberry,newsmast.social,Social Sciences,social_sciences,false +deniseoberry,newsmast.social,Technology,technology,false +KittyInTheMitty,newsmast.social,Social Sciences,social_sciences,false +KittyInTheMitty,newsmast.social,Disabled Voices,disabled_voices,false +KittyInTheMitty,newsmast.social,Humanities,humanities,false +KittyInTheMitty,newsmast.social,TV & Radio,tv_radio,false +KittyInTheMitty,newsmast.social,Pets,pets,false +KittyInTheMitty,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,true +KittyInTheMitty,newsmast.social,Poverty & Inequality,poverty_inequality,false +kalhan,newsmast.social,Law & Justice,law_justice,true +kalhan,newsmast.social,Activism & Civil Rights,activism_civil_rights,false +kalhan,newsmast.social,AI,ai,false +kalhan,newsmast.social,Books & Literature,books_literature,false +kalhan,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +kalhan,newsmast.social,Government & Policy,government_policy,false +kalhan,newsmast.social,History,history,false +kalhan,newsmast.social,Humanities,humanities,false +kalhan,newsmast.social,Immigrants Rights,immigrants_rights,false +kalhan,newsmast.social,Journalism & Comment,news_comment_data,false +kalhan,newsmast.social,Politics,politics,false +kalhan,newsmast.social,Social Sciences,social_sciences,false +kalhan,newsmast.social,Technology,technology,false +contessalouise,newsmast.social,Black Voices,black_voices,false +contessalouise,newsmast.social,Climate change,climate_change,true +contessalouise,newsmast.social,Disabled Voices,disabled_voices,false +contessalouise,newsmast.social,Environment,environment,false +contessalouise,newsmast.social,Food & Drink,food_drink,false +RachelBranson,newsmast.social,Technology,technology,false +RachelBranson,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false +RachelBranson,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,true +RachelBranson,newsmast.social,Biology,biology,false +RachelBranson,newsmast.social,Business,business,false +RachelBranson,newsmast.social,Creative Arts,creative_arts,false +RachelBranson,newsmast.social,Food & Drink,food_drink,false +RachelBranson,newsmast.social,Nature & Wildlife,nature_wildlife,false +RachelBranson,newsmast.social,Travel,travel,false +wytham_woods,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false +wytham_woods,newsmast.social,Biology,biology,false +wytham_woods,newsmast.social,Climate change,climate_change,false +wytham_woods,newsmast.social,Environment,environment,true +wytham_woods,newsmast.social,Photography,photography,false +wytham_woods,newsmast.social,Science,science,false +wytham_woods,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false +KevinWagar,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false +KevinWagar,newsmast.social,Space,space,false +KevinWagar,newsmast.social,Sport,sport,false +KevinWagar,newsmast.social,Travel,travel,true +KevinWagar,newsmast.social,Environment,environment,false +FrontSeatPhil,newsmast.social,Technology,technology,true +FrontSeatPhil,newsmast.social,AI,ai,false +FrontSeatPhil,newsmast.social,Space,space,false +FrontSeatPhil,newsmast.social,Ukraine Invasion,ukraine_invasion,false +FrontSeatPhil,newsmast.social,Journalism & Comment,news_comment_data,false +uthi,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false +uthi,newsmast.social,Breaking News,breaking_news,false +uthi,newsmast.social,Creative Arts,creative_arts,false +uthi,newsmast.social,Food & Drink,food_drink,false +uthi,newsmast.social,Humour,humour,false +uthi,newsmast.social,Nature & Wildlife,nature_wildlife,false +uthi,newsmast.social,Journalism & Comment,news_comment_data,true +uthi,newsmast.social,Pets,pets,false +uthi,newsmast.social,Politics,politics,false +uthi,newsmast.social,Puzzles,puzzles,false +uthi,newsmast.social,Travel,travel,false +uthi,newsmast.social,Ukraine Invasion,ukraine_invasion,false +uthi,newsmast.social,Weather,weather,false +JulieAtkinson,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,true +JulieAtkinson,newsmast.social,Food & Drink,food_drink,false +JulieAtkinson,newsmast.social,Nature & Wildlife,nature_wildlife,false +JulieAtkinson,newsmast.social,Pets,pets,false +JulieAtkinson,newsmast.social,Travel,travel,false +ipub,newsmast.social,Government & Policy,government_policy,true +ipub,newsmast.social,Markets & Finance,markets_finance,false +ipub,newsmast.social,Journalism & Comment,news_comment_data,false +ipub,newsmast.social,Politics,politics,false +ipub,newsmast.social,Technology,technology,false +SuperScienceGrl,newsmast.social,Social Sciences,social_sciences,false +SuperScienceGrl,newsmast.social,AI,ai,false +SuperScienceGrl,newsmast.social,Chemistry,chemistry,true +SuperScienceGrl,newsmast.social,Science,science,false +SuperScienceGrl,newsmast.social,Technology,technology,false +gnasralla,newsmast.social,Nature & Wildlife,nature_wildlife,false +gnasralla,newsmast.social,AI,ai,false +gnasralla,newsmast.social,Architecture & Design,architecture_design,false +gnasralla,newsmast.social,Business,business,true +gnasralla,newsmast.social,Climate change,climate_change,false +gnasralla,newsmast.social,Environment,environment,false +gnasralla,newsmast.social,History,history,false +gnasralla,newsmast.social,Humanities,humanities,false +gnasralla,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false +gnasralla,newsmast.social,Music,music,false +gnasralla,newsmast.social,Performing Arts,performing_arts,false +gnasralla,newsmast.social,Philosophy,philosophy,false +gnasralla,newsmast.social,Photography,photography,false +gnasralla,newsmast.social,Technology,technology,false +gnasralla,newsmast.social,Visual Arts,visual_arts,false +gnasralla,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +gnasralla,newsmast.social,Poverty & Inequality,poverty_inequality,false +gnasralla,newsmast.social,Immigrants Rights,immigrants_rights,false +monicareinagel,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,true +monicareinagel,newsmast.social,AI,ai,false +monicareinagel,newsmast.social,Biology,biology,false +monicareinagel,newsmast.social,Books & Literature,books_literature,false +monicareinagel,newsmast.social,Food & Drink,food_drink,false +monicareinagel,newsmast.social,Humour,humour,false +monicareinagel,newsmast.social,Philosophy,philosophy,false +monicareinagel,newsmast.social,Science,science,false +monicareinagel,newsmast.social,Social Sciences,social_sciences,false +monicareinagel,newsmast.social,Technology,technology,false +JURISTnews,newsmast.social,Social Sciences,social_sciences,false +JURISTnews,newsmast.social,Energy & Pollution,energy_pollution,false +JURISTnews,newsmast.social,Breaking News,breaking_news,false +JURISTnews,newsmast.social,Climate change,climate_change,false +JURISTnews,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +JURISTnews,newsmast.social,Environment,environment,false +JURISTnews,newsmast.social,Government & Policy,government_policy,false +JURISTnews,newsmast.social,Poverty & Inequality,poverty_inequality,false +JURISTnews,newsmast.social,Law & Justice,law_justice,true +JURISTnews,newsmast.social,Journalism & Comment,news_comment_data,false +JURISTnews,newsmast.social,Politics,politics,false +JURISTnews,newsmast.social,Ukraine Invasion,ukraine_invasion,false +JURISTnews,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false +JURISTnews,newsmast.social,Immigrants Rights,immigrants_rights,false +crazyjane125,newsmast.social,Biology,biology,false +crazyjane125,newsmast.social,Disabled Voices,disabled_voices,false +crazyjane125,newsmast.social,Food & Drink,food_drink,false +crazyjane125,newsmast.social,Nature & Wildlife,nature_wildlife,false +crazyjane125,newsmast.social,Science,science,true +Sascha_Feldmann,newsmast.social,Chemistry,chemistry,false +Sascha_Feldmann,newsmast.social,Engineering,engineering,false +Sascha_Feldmann,newsmast.social,Physics,physics,false +Sascha_Feldmann,newsmast.social,Science,science,true +Sascha_Feldmann,newsmast.social,Visual Arts,visual_arts,false +Cam_Walker,newsmast.social,Activism & Civil Rights,activism_civil_rights,false +Cam_Walker,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false +Cam_Walker,newsmast.social,Breaking News,breaking_news,false +Cam_Walker,newsmast.social,Climate change,climate_change,false +Cam_Walker,newsmast.social,Energy & Pollution,energy_pollution,false +Cam_Walker,newsmast.social,Environment,environment,true +Cam_Walker,newsmast.social,Government & Policy,government_policy,false +Cam_Walker,newsmast.social,Indigenous Peoples,indigenous_peoples,false +Cam_Walker,newsmast.social,Science,science,false +Cam_Walker,newsmast.social,Ukraine Invasion,ukraine_invasion,false +Cam_Walker,newsmast.social,Workers Rights,workers_rights,false +Cam_Walker,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false +PlantInitiative,newsmast.social,Nature & Wildlife,nature_wildlife,false +PlantInitiative,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false +PlantInitiative,newsmast.social,Climate change,climate_change,false +PlantInitiative,newsmast.social,Energy & Pollution,energy_pollution,false +PlantInitiative,newsmast.social,Environment,environment,true +SJC,newsmast.social,Black Voices,black_voices,false +SJC,newsmast.social,Business,business,false +SJC,newsmast.social,Indigenous Peoples,indigenous_peoples,false +SJC,newsmast.social,Poverty & Inequality,poverty_inequality,false +SJC,newsmast.social,LGBTQ+,lgbtq,false +SJC,newsmast.social,Journalism & Comment,news_comment_data,true +SJC,newsmast.social,Women’s Voices,women_voices,false +SJC,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +soccerhub,newsmast.social,Breaking News,breaking_news,false +soccerhub,newsmast.social,Football,football,true +soccerhub,newsmast.social,Journalism & Comment,news_comment_data,false +soccerhub,newsmast.social,Sport,sport,false +catcafesandiego,newsmast.social,Business,business,false +catcafesandiego,newsmast.social,Journalism & Comment,news_comment_data,false +catcafesandiego,newsmast.social,Pets,pets,true +catcafesandiego,newsmast.social,Photography,photography,false +catcafesandiego,newsmast.social,Travel,travel,false +nyeinygn,newsmast.social,Breaking News,breaking_news,false +nyeinygn,newsmast.social,Politics,politics,false +nyeinygn,newsmast.social,Ukraine Invasion,ukraine_invasion,false +nyeinygn,newsmast.social,Weather,weather,false +nyeinygn,newsmast.social,Journalism & Comment,news_comment_data,true +vegannutrition,newsmast.social,Energy & Pollution,energy_pollution,false +vegannutrition,newsmast.social,Markets & Finance,markets_finance,false +vegannutrition,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,true +vegannutrition,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false +vegannutrition,newsmast.social,Biology,biology,false +vegannutrition,newsmast.social,Climate change,climate_change,false +vegannutrition,newsmast.social,Environment,environment,false +vegannutrition,newsmast.social,Food & Drink,food_drink,false +vegannutrition,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false +vegannutrition,newsmast.social,Poverty & Inequality,poverty_inequality,false +vegannutrition,newsmast.social,Nature & Wildlife,nature_wildlife,false +vegannutrition,newsmast.social,Science,science,false +vegannutrition,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +Bell,newsmast.social,Government & Policy,government_policy,false +Bell,newsmast.social,AI,ai,false +Bell,newsmast.social,Business,business,false +Bell,newsmast.social,Engineering,engineering,false +Bell,newsmast.social,Environment,environment,false +Bell,newsmast.social,Mathematics,mathematics,false +Bell,newsmast.social,Physics,physics,false +Bell,newsmast.social,Science,science,true +Bell,newsmast.social,Technology,technology,false +jessa,newsmast.social,Government & Policy,government_policy,true +jessa,newsmast.social,Books & Literature,books_literature,false +jessa,newsmast.social,Chemistry,chemistry,false +jessa,newsmast.social,Creative Arts,creative_arts,false +jessa,newsmast.social,Disabled Voices,disabled_voices,false +jessa,newsmast.social,Engineering,engineering,false +jessa,newsmast.social,Gaming,gaming,false +jessa,newsmast.social,History,history,false +jessa,newsmast.social,Humanities,humanities,false +jessa,newsmast.social,Humour,humour,false +jessa,newsmast.social,LGBTQ+,lgbtq,false +jessa,newsmast.social,Performing Arts,performing_arts,false +jessa,newsmast.social,Puzzles,puzzles,false +jessa,newsmast.social,Science,science,false +jessa,newsmast.social,Social Sciences,social_sciences,false +jessa,newsmast.social,Women’s Voices,women_voices,false +jessa,newsmast.social,Workers Rights,workers_rights,false +jessa,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false +Iyad_Abumoghli,newsmast.social,Government & Policy,government_policy,false +Iyad_Abumoghli,newsmast.social,Energy & Pollution,energy_pollution,false +Iyad_Abumoghli,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false +Iyad_Abumoghli,newsmast.social,Climate change,climate_change,false +Iyad_Abumoghli,newsmast.social,Environment,environment,true +Iyad_Abumoghli,newsmast.social,Law & Justice,law_justice,false +Iyad_Abumoghli,newsmast.social,Photography,photography,false +Iyad_Abumoghli,newsmast.social,Science,science,false +Iyad_Abumoghli,newsmast.social,Space,space,false +Iyad_Abumoghli,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false +indiajade_68,newsmast.social,Technology,technology,false +indiajade_68,newsmast.social,Nature & Wildlife,nature_wildlife,false +indiajade_68,newsmast.social,Architecture & Design,architecture_design,false +indiajade_68,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,true +indiajade_68,newsmast.social,Biology,biology,false +indiajade_68,newsmast.social,Chemistry,chemistry,false +indiajade_68,newsmast.social,Climate change,climate_change,false +indiajade_68,newsmast.social,Energy & Pollution,energy_pollution,false +indiajade_68,newsmast.social,Environment,environment,false +indiajade_68,newsmast.social,Photography,photography,false +indiajade_68,newsmast.social,Science,science,false +indiajade_68,newsmast.social,Visual Arts,visual_arts,false +indiajade_68,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false +indiajade_68,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +indiajade_68,newsmast.social,Poverty & Inequality,poverty_inequality,false +askchefdennis,newsmast.social,Breaking News,breaking_news,false +askchefdennis,newsmast.social,Technology,technology,true +askchefdennis,newsmast.social,AI,ai,false +askchefdennis,newsmast.social,Food & Drink,food_drink,false +aungmyatmoe,newsmast.social,Activism & Civil Rights,activism_civil_rights,false +aungmyatmoe,newsmast.social,Black Voices,black_voices,false +aungmyatmoe,newsmast.social,Disabled Voices,disabled_voices,false +aungmyatmoe,newsmast.social,Healthcare,healthcare,false +aungmyatmoe,newsmast.social,Immigrants Rights,immigrants_rights,false +aungmyatmoe,newsmast.social,Indigenous Peoples,indigenous_peoples,false +aungmyatmoe,newsmast.social,Law & Justice,law_justice,false +aungmyatmoe,newsmast.social,LGBTQ+,lgbtq,false +aungmyatmoe,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false +aungmyatmoe,newsmast.social,Women’s Voices,women_voices,false +aungmyatmoe,newsmast.social,Workers Rights,workers_rights,false +aungmyatmoe,newsmast.social,Government & Policy,government_policy,true +Superpolitics,newsmast.social,Activism & Civil Rights,activism_civil_rights,false +Superpolitics,newsmast.social,Architecture & Design,architecture_design,false +Superpolitics,newsmast.social,Black Voices,black_voices,true +Superpolitics,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +Superpolitics,newsmast.social,Disabled Voices,disabled_voices,false +Superpolitics,newsmast.social,Football,football,false +Superpolitics,newsmast.social,Gaming,gaming,false +Superpolitics,newsmast.social,Government & Policy,government_policy,false +Superpolitics,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false +Superpolitics,newsmast.social,Immigrants Rights,immigrants_rights,false +Superpolitics,newsmast.social,Indigenous Peoples,indigenous_peoples,false +Superpolitics,newsmast.social,Poverty & Inequality,poverty_inequality,false +Superpolitics,newsmast.social,Law & Justice,law_justice,false +Superpolitics,newsmast.social,LGBTQ+,lgbtq,false +Superpolitics,newsmast.social,Movies,movies,false +Superpolitics,newsmast.social,Music,music,false +Superpolitics,newsmast.social,Performing Arts,performing_arts,false +Superpolitics,newsmast.social,Photography,photography,false +Superpolitics,newsmast.social,Sport,sport,false +Superpolitics,newsmast.social,TV & Radio,tv_radio,false +Superpolitics,newsmast.social,Visual Arts,visual_arts,false +Superpolitics,newsmast.social,Women’s Voices,women_voices,false +Superpolitics,newsmast.social,Workers Rights,workers_rights,false +Superpolitics,newsmast.social,Environment,environment,false +thepetsnet,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false +thepetsnet,newsmast.social,Humour,humour,false +thepetsnet,newsmast.social,Nature & Wildlife,nature_wildlife,false +thepetsnet,newsmast.social,Pets,pets,true +thepetsnet,newsmast.social,Travel,travel,false +mongabay,newsmast.social,Nature & Wildlife,nature_wildlife,false +mongabay,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false +mongabay,newsmast.social,Biology,biology,false +mongabay,newsmast.social,Climate change,climate_change,false +mongabay,newsmast.social,Environment,environment,false +mongabay,newsmast.social,Journalism & Comment,news_comment_data,true +PolGeoNow,newsmast.social,Government & Policy,government_policy,false +PolGeoNow,newsmast.social,Biology,biology,false +PolGeoNow,newsmast.social,Breaking News,breaking_news,false +PolGeoNow,newsmast.social,Chemistry,chemistry,false +PolGeoNow,newsmast.social,Engineering,engineering,false +PolGeoNow,newsmast.social,Mathematics,mathematics,false +PolGeoNow,newsmast.social,Physics,physics,false +PolGeoNow,newsmast.social,Politics,politics,false +PolGeoNow,newsmast.social,Science,science,false +PolGeoNow,newsmast.social,Social Sciences,social_sciences,false +PolGeoNow,newsmast.social,Space,space,false +PolGeoNow,newsmast.social,Journalism & Comment,news_comment_data,true +PolGeoNow,newsmast.social,Immigrants Rights,immigrants_rights,false +asausagehastwo,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false +asausagehastwo,newsmast.social,Travel,travel,false +asausagehastwo,newsmast.social,Climate change,climate_change,false +asausagehastwo,newsmast.social,Environment,environment,false +asausagehastwo,newsmast.social,Food & Drink,food_drink,true +asausagehastwo,newsmast.social,Nature & Wildlife,nature_wildlife,false +asausagehastwo,newsmast.social,Journalism & Comment,news_comment_data,false +dennisfparker,newsmast.social,Nature & Wildlife,nature_wildlife,false +dennisfparker,newsmast.social,Social Sciences,social_sciences,false +dennisfparker,newsmast.social,Ukraine Invasion,ukraine_invasion,false +dennisfparker,newsmast.social,Weather,weather,false +dennisfparker,newsmast.social,Activism & Civil Rights,activism_civil_rights,false +dennisfparker,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,true +dennisfparker,newsmast.social,Breaking News,breaking_news,false +dennisfparker,newsmast.social,Climate change,climate_change,false +dennisfparker,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +dennisfparker,newsmast.social,Energy & Pollution,energy_pollution,false +dennisfparker,newsmast.social,Environment,environment,false +dennisfparker,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false +dennisfparker,newsmast.social,Poverty & Inequality,poverty_inequality,false +dennisfparker,newsmast.social,Journalism & Comment,news_comment_data,false +dennisfparker,newsmast.social,Politics,politics,false +dennisfparker,newsmast.social,Immigrants Rights,immigrants_rights,false +jsit,newsmast.social,Social Media,social_media,false +jsit,newsmast.social,Ukraine Invasion,ukraine_invasion,false +jsit,newsmast.social,Weather,weather,false +jsit,newsmast.social,Breaking News,breaking_news,true +jsit,newsmast.social,Journalism & Comment,news_comment_data,false +elisexavier,newsmast.social,Creative Arts,creative_arts,false +elisexavier,newsmast.social,Biology,biology,false +elisexavier,newsmast.social,Pets,pets,false +elisexavier,newsmast.social,Physics,physics,false +elisexavier,newsmast.social,Science,science,true +ilovefilm,newsmast.social,Government & Policy,government_policy,false +ilovefilm,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false +ilovefilm,newsmast.social,Social Sciences,social_sciences,false +ilovefilm,newsmast.social,Space,space,false +ilovefilm,newsmast.social,Technology,technology,false +ilovefilm,newsmast.social,TV & Radio,tv_radio,false +ilovefilm,newsmast.social,Women’s Voices,women_voices,false +ilovefilm,newsmast.social,Activism & Civil Rights,activism_civil_rights,true +ilovefilm,newsmast.social,AI,ai,false +ilovefilm,newsmast.social,Climate change,climate_change,false +ilovefilm,newsmast.social,Gaming,gaming,false +ilovefilm,newsmast.social,Healthcare,healthcare,false +ilovefilm,newsmast.social,History,history,false +ilovefilm,newsmast.social,LGBTQ+,lgbtq,false +ilovefilm,newsmast.social,Movies,movies,false +ilovefilm,newsmast.social,Music,music,false +ilovefilm,newsmast.social,Philosophy,philosophy,false +ilovefilm,newsmast.social,Photography,photography,false +ilovefilm,newsmast.social,Physics,physics,false +ilovefilm,newsmast.social,Science,science,false +ilovefilm,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false +ilovefilm,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +RewildScotland,newsmast.social,Nature & Wildlife,nature_wildlife,false +RewildScotland,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,true +RewildScotland,newsmast.social,Philosophy,philosophy,false +RewildScotland,newsmast.social,Environment,environment,false +vijay,newsmast.social,AI,ai,true +vijay,newsmast.social,Markets & Finance,markets_finance,false +vijay,newsmast.social,Ukraine Invasion,ukraine_invasion,false +vijay,newsmast.social,Activism & Civil Rights,activism_civil_rights,false +vijay,newsmast.social,Black Voices,black_voices,false +vijay,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false +vijay,newsmast.social,Disabled Voices,disabled_voices,false +vijay,newsmast.social,Immigrants Rights,immigrants_rights,false +vijay,newsmast.social,Indigenous Peoples,indigenous_peoples,false +vijay,newsmast.social,Humour,humour,false +vijay,newsmast.social,Breaking News,breaking_news,false +vijay,newsmast.social,Journalism & Comment,news_comment_data,false +vijay,newsmast.social,Social Media,social_media,false +vijay,newsmast.social,Weather,weather,false +vijay,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +vijay,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false +vijay,newsmast.social,Chemistry,chemistry,false +vijay,newsmast.social,Poverty & Inequality,poverty_inequality,false +vijay,newsmast.social,Government & Policy,government_policy,false +vijay,newsmast.social,Academia & Research,academia_research,false +vijay,newsmast.social,Healthcare,healthcare,false +vijay,newsmast.social,Law & Justice,law_justice,false +vijay,newsmast.social,Politics,politics,false +vijay,newsmast.social,US Politics,us_politics,false +vijay,newsmast.social,Environment,environment,false +vijay,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false +vijay,newsmast.social,Climate change,climate_change,false +vijay,newsmast.social,Energy & Pollution,energy_pollution,false +vijay,newsmast.social,LGBTQ+,lgbtq,false +vijay,newsmast.social,Women’s Voices,women_voices,false +vijay,newsmast.social,Business,business,false +vijay,newsmast.social,Workers Rights,workers_rights,false +vijay,newsmast.social,Programming,programming,false +vijay,newsmast.social,Science,science,false +vijay,newsmast.social,Biology,biology,false +vijay,newsmast.social,Engineering,engineering,false +vijay,newsmast.social,Mathematics,mathematics,false +vijay,newsmast.social,Physics,physics,false +vijay,newsmast.social,Space,space,false +vijay,newsmast.social,Humanities,humanities,false +vijay,newsmast.social,Social Sciences,social_sciences,false +vijay,newsmast.social,History,history,false +vijay,newsmast.social,Philosophy,philosophy,false +vijay,newsmast.social,Architecture & Design,architecture_design,false +vijay,newsmast.social,Books & Literature,books_literature,false +vijay,newsmast.social,Music,music,false +vijay,newsmast.social,Performing Arts,performing_arts,false +vijay,newsmast.social,Photography,photography,false +vijay,newsmast.social,TV & Radio,tv_radio,false +vijay,newsmast.social,Visual Arts,visual_arts,false +vijay,newsmast.social,Sport,sport,false +vijay,newsmast.social,Football,football,false +vijay,newsmast.social,US Sport,us_sport,false +vijay,newsmast.social,Creative Arts,creative_arts,false +vijay,newsmast.social,Nature & Wildlife,nature_wildlife,false +vijay,newsmast.social,Pets,pets,false +vijay,newsmast.social,Puzzles,puzzles,false +vijay,newsmast.social,Travel,travel,false +vijay,newsmast.social,Food & Drink,food_drink,false +vijay,newsmast.social,Technology,technology,false +vijay,newsmast.social,Gaming,gaming,false +vijay,newsmast.social,Movies,movies,false +oceanknigge,newsmast.social,Architecture & Design,architecture_design,false +oceanknigge,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,true +oceanknigge,newsmast.social,Climate change,climate_change,false +oceanknigge,newsmast.social,Environment,environment,false +mikea,newsmast.social,Nature & Wildlife,nature_wildlife,false +mikea,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false +mikea,newsmast.social,Business,business,false +mikea,newsmast.social,Energy & Pollution,energy_pollution,false +mikea,newsmast.social,Environment,environment,false +mikea,newsmast.social,Politics,politics,false +mikea,newsmast.social,Technology,technology,false +mikea,newsmast.social,Climate change,climate_change,true +mikea,newsmast.social,Breaking News,breaking_news,false +allaroundoz,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false +allaroundoz,newsmast.social,Food & Drink,food_drink,false +allaroundoz,newsmast.social,Nature & Wildlife,nature_wildlife,false +allaroundoz,newsmast.social,Puzzles,puzzles,false +allaroundoz,newsmast.social,Travel,travel,true +benogeh,newsmast.social,Nature & Wildlife,nature_wildlife,false +benogeh,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false +benogeh,newsmast.social,Climate change,climate_change,false +benogeh,newsmast.social,Energy & Pollution,energy_pollution,false +benogeh,newsmast.social,Environment,environment,true +alanwelch,newsmast.social,Breaking News,breaking_news,false +alanwelch,newsmast.social,Journalism & Comment,news_comment_data,false +alanwelch,newsmast.social,Politics,politics,false +alanwelch,newsmast.social,Ukraine Invasion,ukraine_invasion,false +alanwelch,newsmast.social,Weather,weather,true +AFalcon,newsmast.social,Government & Policy,government_policy,false +AFalcon,newsmast.social,Business,business,false +AFalcon,newsmast.social,Creative Arts,creative_arts,true +AFalcon,newsmast.social,Football,football,false +AFalcon,newsmast.social,Politics,politics,false +AFalcon,newsmast.social,Sport,sport,false +CanWCC,newsmast.social,Activism & Civil Rights,activism_civil_rights,false +CanWCC,newsmast.social,Black Voices,black_voices,false +CanWCC,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +CanWCC,newsmast.social,Disabled Voices,disabled_voices,false +CanWCC,newsmast.social,Immigrants Rights,immigrants_rights,false +CanWCC,newsmast.social,Indigenous Peoples,indigenous_peoples,false +CanWCC,newsmast.social,Poverty & Inequality,poverty_inequality,false +CanWCC,newsmast.social,LGBTQ+,lgbtq,false +CanWCC,newsmast.social,Social Sciences,social_sciences,false +CanWCC,newsmast.social,Environment,environment,false +CanWCC,newsmast.social,Women’s Voices,women_voices,true +CanWCC,newsmast.social,Workers Rights,workers_rights,false +CanWCC,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false +WilmotsWay,newsmast.social,Food & Drink,food_drink,false +WilmotsWay,newsmast.social,Humour,humour,false +WilmotsWay,newsmast.social,Movies,movies,false +WilmotsWay,newsmast.social,Music,music,false +WilmotsWay,newsmast.social,Journalism & Comment,news_comment_data,false +WilmotsWay,newsmast.social,Puzzles,puzzles,false +WilmotsWay,newsmast.social,Breaking News,breaking_news,false +WilmotsWay,newsmast.social,Sport,sport,false +WilmotsWay,newsmast.social,Travel,travel,false +WilmotsWay,newsmast.social,TV & Radio,tv_radio,false +WilmotsWay,newsmast.social,Weather,weather,false +WilmotsWay,newsmast.social,Football,football,true +devenperez,newsmast.social,AI,ai,false +devenperez,newsmast.social,Engineering,engineering,true +devenperez,newsmast.social,Physics,physics,false +devenperez,newsmast.social,Space,space,false +devenperez,newsmast.social,Technology,technology,false +Aysegul,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,true +Aysegul,newsmast.social,Activism & Civil Rights,activism_civil_rights,false +Aysegul,newsmast.social,Architecture & Design,architecture_design,false +Aysegul,newsmast.social,Creative Arts,creative_arts,false +Aysegul,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +Aysegul,newsmast.social,Engineering,engineering,false +Aysegul,newsmast.social,Food & Drink,food_drink,false +Aysegul,newsmast.social,LGBTQ+,lgbtq,false +Aysegul,newsmast.social,Movies,movies,false +Aysegul,newsmast.social,Music,music,false +Aysegul,newsmast.social,Philosophy,philosophy,false +Aysegul,newsmast.social,Science,science,false +Aysegul,newsmast.social,Sport,sport,false +Aysegul,newsmast.social,TV & Radio,tv_radio,false +Aysegul,newsmast.social,Weather,weather,false +Aysegul,newsmast.social,Workers Rights,workers_rights,false +Aysegul,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false +tderyugina,newsmast.social,Social Sciences,social_sciences,true +tderyugina,newsmast.social,Government & Policy,government_policy,false +tderyugina,newsmast.social,Climate change,climate_change,false +tderyugina,newsmast.social,Energy & Pollution,energy_pollution,false +tderyugina,newsmast.social,Environment,environment,false +tderyugina,newsmast.social,Ukraine Invasion,ukraine_invasion,false +tderyugina,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +tderyugina,newsmast.social,Immigrants Rights,immigrants_rights,false +steve116,newsmast.social,Architecture & Design,architecture_design,false +steve116,newsmast.social,Gaming,gaming,false +steve116,newsmast.social,Movies,movies,false +steve116,newsmast.social,Music,music,false +steve116,newsmast.social,Performing Arts,performing_arts,false +steve116,newsmast.social,Photography,photography,false +steve116,newsmast.social,TV & Radio,tv_radio,false +steve116,newsmast.social,Visual Arts,visual_arts,true +steve116,newsmast.social,Law & Justice,law_justice,false +StephenScouted,newsmast.social,Football,football,true +StephenScouted,newsmast.social,History,history,false +StephenScouted,newsmast.social,Sport,sport,false +StephenScouted,newsmast.social,Travel,travel,false +Origami,newsmast.social,Breaking News,breaking_news,false +Origami,newsmast.social,Business,business,false +Origami,newsmast.social,Environment,environment,false +Origami,newsmast.social,Markets & Finance,markets_finance,false +Origami,newsmast.social,Journalism & Comment,news_comment_data,false +Origami,newsmast.social,Weather,weather,true +matt_cary,newsmast.social,Government & Policy,government_policy,false +matt_cary,newsmast.social,AI,ai,false +matt_cary,newsmast.social,Black Voices,black_voices,false +matt_cary,newsmast.social,Disabled Voices,disabled_voices,false +matt_cary,newsmast.social,Immigrants Rights,immigrants_rights,false +matt_cary,newsmast.social,Law & Justice,law_justice,true +matt_cary,newsmast.social,LGBTQ+,lgbtq,false +matt_cary,newsmast.social,Politics,politics,false +matt_cary,newsmast.social,Social Sciences,social_sciences,false +matt_cary,newsmast.social,Women’s Voices,women_voices,false +matt_cary,newsmast.social,Workers Rights,workers_rights,false +WestWeather,newsmast.social,Nature & Wildlife,nature_wildlife,false +WestWeather,newsmast.social,Environment,environment,false +WestWeather,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false +WestWeather,newsmast.social,Climate change,climate_change,false +WestWeather,newsmast.social,Energy & Pollution,energy_pollution,false +WestWeather,newsmast.social,Weather,weather,true +prabhakar,newsmast.social,Journalism & Comment,news_comment_data,false +prabhakar,newsmast.social,Social Media,social_media,false +prabhakar,newsmast.social,Ukraine Invasion,ukraine_invasion,false +prabhakar,newsmast.social,Weather,weather,false +prabhakar,newsmast.social,Breaking News,breaking_news,true +chloeariellle,newsmast.social,Social Sciences,social_sciences,true +chloeariellle,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false +chloeariellle,newsmast.social,Activism & Civil Rights,activism_civil_rights,false +chloeariellle,newsmast.social,AI,ai,false +chloeariellle,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false +chloeariellle,newsmast.social,Climate change,climate_change,false +chloeariellle,newsmast.social,Environment,environment,false +chloeariellle,newsmast.social,Food & Drink,food_drink,false +chloeariellle,newsmast.social,Journalism & Comment,news_comment_data,false +chloeariellle,newsmast.social,Science,science,false +chloeariellle,newsmast.social,Technology,technology,false +arlettecontrers,newsmast.social,Social Sciences,social_sciences,false +arlettecontrers,newsmast.social,AI,ai,false +arlettecontrers,newsmast.social,Journalism & Comment,news_comment_data,false +arlettecontrers,newsmast.social,Politics,politics,false +arlettecontrers,newsmast.social,Poverty & Inequality,poverty_inequality,true +Diva_7057,newsmast.social,Breaking News,breaking_news,false +Diva_7057,newsmast.social,Food & Drink,food_drink,false +Diva_7057,newsmast.social,Humour,humour,false +Diva_7057,newsmast.social,Movies,movies,false +Diva_7057,newsmast.social,Performing Arts,performing_arts,false +Diva_7057,newsmast.social,Science,science,false +Diva_7057,newsmast.social,Social Media,social_media,false +Diva_7057,newsmast.social,TV & Radio,tv_radio,false +Diva_7057,newsmast.social,Weather,weather,false +Diva_7057,newsmast.social,Books & Literature,books_literature,true +LynnNanos,newsmast.social,Activism & Civil Rights,activism_civil_rights,false +LynnNanos,newsmast.social,Government & Policy,government_policy,false +LynnNanos,newsmast.social,Law & Justice,law_justice,false +LynnNanos,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false +LynnNanos,newsmast.social,Science,science,false +LynnNanos,newsmast.social,Social Sciences,social_sciences,true +LynnNanos,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +itsmarta101,newsmast.social,Activism & Civil Rights,activism_civil_rights,false +itsmarta101,newsmast.social,Breaking News,breaking_news,false +itsmarta101,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +itsmarta101,newsmast.social,LGBTQ+,lgbtq,true +itsmarta101,newsmast.social,Movies,movies,false +itsmarta101,newsmast.social,Music,music,false +itsmarta101,newsmast.social,Journalism & Comment,news_comment_data,false +itsmarta101,newsmast.social,TV & Radio,tv_radio,false +itsmarta101,newsmast.social,Women’s Voices,women_voices,false +clairejuliaart,newsmast.social,Activism & Civil Rights,activism_civil_rights,false +clairejuliaart,newsmast.social,Disabled Voices,disabled_voices,false +clairejuliaart,newsmast.social,Immigrants Rights,immigrants_rights,false +clairejuliaart,newsmast.social,LGBTQ+,lgbtq,false +clairejuliaart,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false +clairejuliaart,newsmast.social,Women’s Voices,women_voices,false +clairejuliaart,newsmast.social,Books & Literature,books_literature,false +clairejuliaart,newsmast.social,Creative Arts,creative_arts,false +clairejuliaart,newsmast.social,Humanities,humanities,false +clairejuliaart,newsmast.social,Humour,humour,false +clairejuliaart,newsmast.social,Nature & Wildlife,nature_wildlife,false +clairejuliaart,newsmast.social,Philosophy,philosophy,false +clairejuliaart,newsmast.social,Social Sciences,social_sciences,false +clairejuliaart,newsmast.social,Travel,travel,false +clairejuliaart,newsmast.social,Visual Arts,visual_arts,true +jmenka,newsmast.social,Creative Arts,creative_arts,false +jmenka,newsmast.social,Gaming,gaming,false +jmenka,newsmast.social,LGBTQ+,lgbtq,false +jmenka,newsmast.social,Movies,movies,false +jmenka,newsmast.social,Performing Arts,performing_arts,false +jmenka,newsmast.social,Photography,photography,false +jmenka,newsmast.social,Visual Arts,visual_arts,true +DrGCrisp,newsmast.social,Nature & Wildlife,nature_wildlife,false +DrGCrisp,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false +DrGCrisp,newsmast.social,Biology,biology,false +DrGCrisp,newsmast.social,Climate change,climate_change,true +DrGCrisp,newsmast.social,Energy & Pollution,energy_pollution,false +DrGCrisp,newsmast.social,Environment,environment,false +DrGCrisp,newsmast.social,Humanities,humanities,false +DrGCrisp,newsmast.social,Poverty & Inequality,poverty_inequality,false +DrGCrisp,newsmast.social,Science,science,false +DrGCrisp,newsmast.social,Social Sciences,social_sciences,false +DrGCrisp,newsmast.social,Space,space,false +DrGCrisp,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false +DrGCrisp,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +CBhattacharji,newsmast.social,Energy & Pollution,energy_pollution,true +CBhattacharji,newsmast.social,Business,business,false +CBhattacharji,newsmast.social,Climate change,climate_change,false +CBhattacharji,newsmast.social,History,history,false +CBhattacharji,newsmast.social,Science,science,false +CBhattacharji,newsmast.social,Journalism & Comment,news_comment_data,false +TheQueerBookish,newsmast.social,Books & Literature,books_literature,true +TheQueerBookish,newsmast.social,Creative Arts,creative_arts,false +TheQueerBookish,newsmast.social,Disabled Voices,disabled_voices,false +TheQueerBookish,newsmast.social,LGBTQ+,lgbtq,false +TheQueerBookish,newsmast.social,Women’s Voices,women_voices,false +SustMeme,newsmast.social,Technology,technology,false +SustMeme,newsmast.social,Business,business,false +SustMeme,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false +SustMeme,newsmast.social,Climate change,climate_change,false +SustMeme,newsmast.social,Energy & Pollution,energy_pollution,false +SustMeme,newsmast.social,Engineering,engineering,false +SustMeme,newsmast.social,Environment,environment,true +SustMeme,newsmast.social,Science,science,false +alawriedejesus,newsmast.social,Government & Policy,government_policy,false +alawriedejesus,newsmast.social,Activism & Civil Rights,activism_civil_rights,false +alawriedejesus,newsmast.social,LGBTQ+,lgbtq,true +alawriedejesus,newsmast.social,Music,music,false +alawriedejesus,newsmast.social,Politics,politics,false +icey_mark,newsmast.social,Government & Policy,government_policy,false +icey_mark,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false +icey_mark,newsmast.social,Breaking News,breaking_news,false +icey_mark,newsmast.social,Climate change,climate_change,true +icey_mark,newsmast.social,Energy & Pollution,energy_pollution,false +icey_mark,newsmast.social,Environment,environment,false +icey_mark,newsmast.social,Football,football,false +icey_mark,newsmast.social,History,history,false +icey_mark,newsmast.social,Poverty & Inequality,poverty_inequality,false +icey_mark,newsmast.social,Journalism & Comment,news_comment_data,false +icey_mark,newsmast.social,Physics,physics,false +icey_mark,newsmast.social,Space,space,false +icey_mark,newsmast.social,Ukraine Invasion,ukraine_invasion,false +TheEnglishLion,newsmast.social,Breaking News,breaking_news,false +TheEnglishLion,newsmast.social,Football,football,true +TheEnglishLion,newsmast.social,Movies,movies,false +TheEnglishLion,newsmast.social,Journalism & Comment,news_comment_data,false +TheEnglishLion,newsmast.social,Sport,sport,false +AlexShvartsman,newsmast.social,AI,ai,false +AlexShvartsman,newsmast.social,Books & Literature,books_literature,true +AlexShvartsman,newsmast.social,Breaking News,breaking_news,false +AlexShvartsman,newsmast.social,Humanities,humanities,false +AlexShvartsman,newsmast.social,Technology,technology,false +AlexShvartsman,newsmast.social,TV & Radio,tv_radio,false +AlexShvartsman,newsmast.social,Ukraine Invasion,ukraine_invasion,false +jenandreacchi,newsmast.social,Social Sciences,social_sciences,false +jenandreacchi,newsmast.social,Books & Literature,books_literature,false +jenandreacchi,newsmast.social,LGBTQ+,lgbtq,true +jenandreacchi,newsmast.social,TV & Radio,tv_radio,false +jenandreacchi,newsmast.social,Environment,environment,false +Reuben,newsmast.social,Football,football,false +Reuben,newsmast.social,Government & Policy,government_policy,false +Reuben,newsmast.social,Healthcare,healthcare,false +Reuben,newsmast.social,Journalism & Comment,news_comment_data,true +Reuben,newsmast.social,Sport,sport,false +nancymangano,newsmast.social,Creative Arts,creative_arts,true +nancymangano,newsmast.social,Books & Literature,books_literature,false +nancymangano,newsmast.social,Government & Policy,government_policy,false +nancymangano,newsmast.social,Movies,movies,false +nancymangano,newsmast.social,Journalism & Comment,news_comment_data,false +TasmanianTimes,newsmast.social,Government & Policy,government_policy,false +TasmanianTimes,newsmast.social,Energy & Pollution,energy_pollution,false +TasmanianTimes,newsmast.social,Nature & Wildlife,nature_wildlife,false +TasmanianTimes,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false +TasmanianTimes,newsmast.social,Climate change,climate_change,false +TasmanianTimes,newsmast.social,Journalism & Comment,news_comment_data,true +dannyweller,newsmast.social,Sport,sport,false +dannyweller,newsmast.social,Government & Policy,government_policy,false +dannyweller,newsmast.social,Workers Rights,workers_rights,false +dannyweller,newsmast.social,Music,music,false +dannyweller,newsmast.social,Travel,travel,false +dannyweller,newsmast.social,Creative Arts,creative_arts,false +dannyweller,newsmast.social,Movies,movies,false +dannyweller,newsmast.social,Breaking News,breaking_news,false +dannyweller,newsmast.social,Journalism & Comment,news_comment_data,true +dannyweller,newsmast.social,AI,ai,false +dannyweller,newsmast.social,Science,science,false +dannyweller,newsmast.social,History,history,false +dannyweller,newsmast.social,Performing Arts,performing_arts,false +dannyweller,newsmast.social,Photography,photography,false +dannyweller,newsmast.social,Immigrants Rights,immigrants_rights,false +dannyweller,newsmast.social,Politics,politics,false +dannyweller,newsmast.social,Food & Drink,food_drink,false +fitinfounder,newsmast.social,Activism & Civil Rights,activism_civil_rights,false +fitinfounder,newsmast.social,Architecture & Design,architecture_design,false +fitinfounder,newsmast.social,Black Voices,black_voices,false +fitinfounder,newsmast.social,Business,business,false +fitinfounder,newsmast.social,Disabled Voices,disabled_voices,false +fitinfounder,newsmast.social,Immigrants Rights,immigrants_rights,false +fitinfounder,newsmast.social,Indigenous Peoples,indigenous_peoples,false +fitinfounder,newsmast.social,Law & Justice,law_justice,false +fitinfounder,newsmast.social,LGBTQ+,lgbtq,false +fitinfounder,newsmast.social,Women’s Voices,women_voices,true +fitinfounder,newsmast.social,Environment,environment,false +fitinfounder,newsmast.social,Workers Rights,workers_rights,false +drshaunanderson,newsmast.social,Social Sciences,social_sciences,false +drshaunanderson,newsmast.social,Architecture & Design,architecture_design,false +drshaunanderson,newsmast.social,Business,business,false +drshaunanderson,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +drshaunanderson,newsmast.social,Football,football,false +drshaunanderson,newsmast.social,Gaming,gaming,false +drshaunanderson,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false +drshaunanderson,newsmast.social,Poverty & Inequality,poverty_inequality,false +drshaunanderson,newsmast.social,Markets & Finance,markets_finance,false +drshaunanderson,newsmast.social,Movies,movies,false +drshaunanderson,newsmast.social,Music,music,false +drshaunanderson,newsmast.social,Performing Arts,performing_arts,false +drshaunanderson,newsmast.social,Photography,photography,false +drshaunanderson,newsmast.social,Sport,sport,true +drshaunanderson,newsmast.social,TV & Radio,tv_radio,false +drshaunanderson,newsmast.social,Visual Arts,visual_arts,false +drshaunanderson,newsmast.social,Environment,environment,false +drshaunanderson,newsmast.social,Immigrants Rights,immigrants_rights,false +beck,newsmast.social,Activism & Civil Rights,activism_civil_rights,false +beck,newsmast.social,AI,ai,false +beck,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false +beck,newsmast.social,Biology,biology,false +beck,newsmast.social,Black Voices,black_voices,false +beck,newsmast.social,Breaking News,breaking_news,false +beck,newsmast.social,Chemistry,chemistry,false +beck,newsmast.social,Climate change,climate_change,false +beck,newsmast.social,Creative Arts,creative_arts,false +beck,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +beck,newsmast.social,Disabled Voices,disabled_voices,false +beck,newsmast.social,Energy & Pollution,energy_pollution,false +beck,newsmast.social,Engineering,engineering,false +beck,newsmast.social,Environment,environment,true +beck,newsmast.social,Food & Drink,food_drink,false +beck,newsmast.social,Government & Policy,government_policy,false +beck,newsmast.social,Healthcare,healthcare,false +beck,newsmast.social,Humour,humour,false +beck,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false +beck,newsmast.social,Immigrants Rights,immigrants_rights,false +beck,newsmast.social,Indigenous Peoples,indigenous_peoples,false +beck,newsmast.social,Poverty & Inequality,poverty_inequality,false +beck,newsmast.social,Law & Justice,law_justice,false +beck,newsmast.social,LGBTQ+,lgbtq,false +beck,newsmast.social,Mathematics,mathematics,false +beck,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false +beck,newsmast.social,Nature & Wildlife,nature_wildlife,false +beck,newsmast.social,Journalism & Comment,news_comment_data,false +beck,newsmast.social,Pets,pets,false +beck,newsmast.social,Physics,physics,false +beck,newsmast.social,Politics,politics,false +beck,newsmast.social,Puzzles,puzzles,false +beck,newsmast.social,Science,science,false +beck,newsmast.social,Space,space,false +beck,newsmast.social,Technology,technology,false +beck,newsmast.social,Travel,travel,false +beck,newsmast.social,Ukraine Invasion,ukraine_invasion,false +beck,newsmast.social,Weather,weather,false +beck,newsmast.social,Women’s Voices,women_voices,false +beck,newsmast.social,Workers Rights,workers_rights,false +GraceReckers,newsmast.social,Government & Policy,government_policy,false +GraceReckers,newsmast.social,Energy & Pollution,energy_pollution,false +GraceReckers,newsmast.social,Activism & Civil Rights,activism_civil_rights,false +GraceReckers,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false +GraceReckers,newsmast.social,Black Voices,black_voices,false +GraceReckers,newsmast.social,Climate change,climate_change,false +GraceReckers,newsmast.social,Disabled Voices,disabled_voices,false +GraceReckers,newsmast.social,Environment,environment,false +GraceReckers,newsmast.social,Healthcare,healthcare,false +GraceReckers,newsmast.social,Immigrants Rights,immigrants_rights,false +GraceReckers,newsmast.social,Indigenous Peoples,indigenous_peoples,false +GraceReckers,newsmast.social,Law & Justice,law_justice,false +GraceReckers,newsmast.social,LGBTQ+,lgbtq,false +GraceReckers,newsmast.social,Music,music,false +GraceReckers,newsmast.social,Photography,photography,false +GraceReckers,newsmast.social,Social Sciences,social_sciences,false +GraceReckers,newsmast.social,TV & Radio,tv_radio,false +GraceReckers,newsmast.social,Women’s Voices,women_voices,false +GraceReckers,newsmast.social,Workers Rights,workers_rights,true +Calmsage,newsmast.social,Creative Arts,creative_arts,false +Calmsage,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,true +Calmsage,newsmast.social,Pets,pets,false +Calmsage,newsmast.social,Puzzles,puzzles,false +business,newsmast.social,Business,business,false +business,newsmast.social,AI,ai,true +business,newsmast.social,Government & Policy,government_policy,false +business,newsmast.social,Journalism & Comment,news_comment_data,false +business,newsmast.social,Environment,environment,false +k_rose,newsmast.social,Academia & Research,academia_research,false +k_rose,newsmast.social,Activism & Civil Rights,activism_civil_rights,false +k_rose,newsmast.social,AI,ai,false +k_rose,newsmast.social,Architecture & Design,architecture_design,false +k_rose,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false +k_rose,newsmast.social,Biology,biology,false +k_rose,newsmast.social,Black Voices,black_voices,false +k_rose,newsmast.social,Books & Literature,books_literature,false +k_rose,newsmast.social,Breaking News,breaking_news,false +k_rose,newsmast.social,Business,business,false +k_rose,newsmast.social,Chemistry,chemistry,false +k_rose,newsmast.social,Climate change,climate_change,false +k_rose,newsmast.social,Creative Arts,creative_arts,false +k_rose,newsmast.social,Democracy & Human Rights,democracy_human_rights,true +k_rose,newsmast.social,Disabled Voices,disabled_voices,false +k_rose,newsmast.social,Energy & Pollution,energy_pollution,false +k_rose,newsmast.social,Engineering,engineering,false +k_rose,newsmast.social,Environment,environment,false +k_rose,newsmast.social,Food & Drink,food_drink,false +k_rose,newsmast.social,Football,football,false +k_rose,newsmast.social,Gaming,gaming,false +k_rose,newsmast.social,Government & Policy,government_policy,false +k_rose,newsmast.social,Healthcare,healthcare,false +k_rose,newsmast.social,History,history,false +k_rose,newsmast.social,Humanities,humanities,false +k_rose,newsmast.social,Humour,humour,false +k_rose,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false +k_rose,newsmast.social,Immigrants Rights,immigrants_rights,false +k_rose,newsmast.social,Indigenous Peoples,indigenous_peoples,false +k_rose,newsmast.social,Law & Justice,law_justice,false +k_rose,newsmast.social,LGBTQ+,lgbtq,false +k_rose,newsmast.social,Markets & Finance,markets_finance,false +k_rose,newsmast.social,Mathematics,mathematics,false +k_rose,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false +k_rose,newsmast.social,Movies,movies,false +k_rose,newsmast.social,Music,music,false +k_rose,newsmast.social,Nature & Wildlife,nature_wildlife,false +k_rose,newsmast.social,Journalism & Comment,news_comment_data,false +k_rose,newsmast.social,Performing Arts,performing_arts,false +k_rose,newsmast.social,Pets,pets,false +k_rose,newsmast.social,Philosophy,philosophy,false +k_rose,newsmast.social,Photography,photography,false +k_rose,newsmast.social,Physics,physics,false +k_rose,newsmast.social,Politics,politics,false +k_rose,newsmast.social,Poverty & Inequality,poverty_inequality,false +k_rose,newsmast.social,Programming,programming,false +k_rose,newsmast.social,Puzzles,puzzles,false +k_rose,newsmast.social,Science,science,false +k_rose,newsmast.social,Social Media,social_media,false +k_rose,newsmast.social,Social Sciences,social_sciences,false +k_rose,newsmast.social,Space,space,false +k_rose,newsmast.social,Sport,sport,false +k_rose,newsmast.social,Technology,technology,false +k_rose,newsmast.social,Travel,travel,false +k_rose,newsmast.social,TV & Radio,tv_radio,false +k_rose,newsmast.social,Ukraine Invasion,ukraine_invasion,false +k_rose,newsmast.social,US Politics,us_politics,false +k_rose,newsmast.social,US Sport,us_sport,false +k_rose,newsmast.social,Visual Arts,visual_arts,false +k_rose,newsmast.social,Weather,weather,false +k_rose,newsmast.social,Women’s Voices,women_voices,false +k_rose,newsmast.social,Workers Rights,workers_rights,false +ErichWeikert,newsmast.social,Social Sciences,social_sciences,false +ErichWeikert,newsmast.social,AI,ai,false +ErichWeikert,newsmast.social,Architecture & Design,architecture_design,false +ErichWeikert,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false +ErichWeikert,newsmast.social,Chemistry,chemistry,false +ErichWeikert,newsmast.social,Energy & Pollution,energy_pollution,false +ErichWeikert,newsmast.social,Engineering,engineering,false +ErichWeikert,newsmast.social,Environment,environment,false +ErichWeikert,newsmast.social,Humanities,humanities,true +ErichWeikert,newsmast.social,Photography,photography,false +ErichWeikert,newsmast.social,Physics,physics,false +ErichWeikert,newsmast.social,Science,science,false +ErichWeikert,newsmast.social,Space,space,false +ErichWeikert,newsmast.social,Technology,technology,false +ErichWeikert,newsmast.social,Visual Arts,visual_arts,false +lgbtq,newsmast.social,Activism & Civil Rights,activism_civil_rights,true +lgbtq,newsmast.social,Black Voices,black_voices,false +lgbtq,newsmast.social,Disabled Voices,disabled_voices,false +lgbtq,newsmast.social,Immigrants Rights,immigrants_rights,false +lgbtq,newsmast.social,Indigenous Peoples,indigenous_peoples,false +lgbtq,newsmast.social,LGBTQ+,lgbtq,false +lgbtq,newsmast.social,Women’s Voices,women_voices,false +lgbtq,newsmast.social,Workers Rights,workers_rights,false +wildlife,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false +wildlife,newsmast.social,Climate change,climate_change,false +wildlife,newsmast.social,Environment,environment,false +wildlife,newsmast.social,Nature & Wildlife,nature_wildlife,true +sport,newsmast.social,Breaking News,breaking_news,false +sport,newsmast.social,Football,football,false +sport,newsmast.social,Sport,sport,true +sport,newsmast.social,TV & Radio,tv_radio,false +sport,newsmast.social,US Sport,us_sport,false +womens_voices,newsmast.social,Activism & Civil Rights,activism_civil_rights,false +womens_voices,newsmast.social,Black Voices,black_voices,false +womens_voices,newsmast.social,Disabled Voices,disabled_voices,false +womens_voices,newsmast.social,Immigrants Rights,immigrants_rights,false +womens_voices,newsmast.social,Indigenous Peoples,indigenous_peoples,false +womens_voices,newsmast.social,LGBTQ+,lgbtq,false +womens_voices,newsmast.social,Women’s Voices,women_voices,true +womens_voices,newsmast.social,Workers Rights,workers_rights,false +womens_voices,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false +christina88,newsmast.social,Books & Literature,books_literature,false +christina88,newsmast.social,Government & Policy,government_policy,false +christina88,newsmast.social,Law & Justice,law_justice,false +christina88,newsmast.social,Workers Rights,workers_rights,false +christina88,newsmast.social,Social Sciences,social_sciences,false +christina88,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,true +christina88,newsmast.social,TV & Radio,tv_radio,false +christina88,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false +christina88,newsmast.social,Humanities,humanities,false +christina88,newsmast.social,Music,music,false +christina88,newsmast.social,Visual Arts,visual_arts,false +christina88,newsmast.social,Pets,pets,false +christina88,newsmast.social,Philosophy,philosophy,false +christina88,newsmast.social,Creative Arts,creative_arts,false +christina88,newsmast.social,LGBTQ+,lgbtq,false +christina88,newsmast.social,Poverty & Inequality,poverty_inequality,false +jakeanders,newsmast.social,Breaking News,breaking_news,false +jakeanders,newsmast.social,Government & Policy,government_policy,false +jakeanders,newsmast.social,Journalism & Comment,news_comment_data,false +jakeanders,newsmast.social,Science,science,false +jakeanders,newsmast.social,Social Sciences,social_sciences,true +jakeanders,newsmast.social,Technology,technology,false +itzme,newsmast.social,Breaking News,breaking_news,true +itzme,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +itzme,newsmast.social,Environment,environment,false +itzme,newsmast.social,Law & Justice,law_justice,false +itzme,newsmast.social,Science,science,false +AltonDrew,newsmast.social,Academia & Research,academia_research,false +AltonDrew,newsmast.social,Architecture & Design,architecture_design,false +AltonDrew,newsmast.social,Books & Literature,books_literature,false +AltonDrew,newsmast.social,Creative Arts,creative_arts,false +AltonDrew,newsmast.social,Food & Drink,food_drink,false +AltonDrew,newsmast.social,Gaming,gaming,false +AltonDrew,newsmast.social,Healthcare,healthcare,false +AltonDrew,newsmast.social,Humour,humour,false +AltonDrew,newsmast.social,Law & Justice,law_justice,false +AltonDrew,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false +AltonDrew,newsmast.social,Movies,movies,false +AltonDrew,newsmast.social,Music,music,false +AltonDrew,newsmast.social,Nature & Wildlife,nature_wildlife,false +AltonDrew,newsmast.social,Performing Arts,performing_arts,false +AltonDrew,newsmast.social,Pets,pets,false +AltonDrew,newsmast.social,Photography,photography,false +AltonDrew,newsmast.social,Politics,politics,false +AltonDrew,newsmast.social,Puzzles,puzzles,false +AltonDrew,newsmast.social,Travel,travel,false +AltonDrew,newsmast.social,TV & Radio,tv_radio,false +AltonDrew,newsmast.social,US Politics,us_politics,false +AltonDrew,newsmast.social,Visual Arts,visual_arts,false +AltonDrew,newsmast.social,Government & Policy,government_policy,true +robbhoyy,newsmast.social,Academia & Research,academia_research,true +robbhoyy,newsmast.social,Biology,biology,false +robbhoyy,newsmast.social,Breaking News,breaking_news,false +robbhoyy,newsmast.social,Chemistry,chemistry,false +robbhoyy,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +robbhoyy,newsmast.social,Government & Policy,government_policy,false +robbhoyy,newsmast.social,Healthcare,healthcare,false +robbhoyy,newsmast.social,History,history,false +robbhoyy,newsmast.social,Humanities,humanities,false +robbhoyy,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false +robbhoyy,newsmast.social,Law & Justice,law_justice,false +robbhoyy,newsmast.social,Mathematics,mathematics,false +robbhoyy,newsmast.social,Journalism & Comment,news_comment_data,false +robbhoyy,newsmast.social,Philosophy,philosophy,false +robbhoyy,newsmast.social,Physics,physics,false +robbhoyy,newsmast.social,Politics,politics,false +robbhoyy,newsmast.social,Poverty & Inequality,poverty_inequality,false +robbhoyy,newsmast.social,Science,science,false +robbhoyy,newsmast.social,Social Media,social_media,false +robbhoyy,newsmast.social,Social Sciences,social_sciences,false +robbhoyy,newsmast.social,Space,space,false +robbhoyy,newsmast.social,Ukraine Invasion,ukraine_invasion,false +robbhoyy,newsmast.social,US Politics,us_politics,false +robbhoyy,newsmast.social,Weather,weather,false +testmeme,newsmast.social,Breaking News,breaking_news,false +testmeme,newsmast.social,Journalism & Comment,news_comment_data,true +testmeme,newsmast.social,Politics,politics,false +testmeme,newsmast.social,Social Media,social_media,false +testmeme,newsmast.social,Ukraine Invasion,ukraine_invasion,false +testmeme,newsmast.social,US Politics,us_politics,false +testmeme,newsmast.social,Weather,weather,false +Grinch,newsmast.social,Black Voices,black_voices,false +Grinch,newsmast.social,Government & Policy,government_policy,false +Grinch,newsmast.social,Politics,politics,true +Grinch,newsmast.social,Social Media,social_media,false +Grinch,newsmast.social,Ukraine Invasion,ukraine_invasion,false +Grinch,newsmast.social,US Politics,us_politics,false +Grinch,newsmast.social,Weather,weather,false +reverb,newsmast.social,Academia & Research,academia_research,false +reverb,newsmast.social,Activism & Civil Rights,activism_civil_rights,false +reverb,newsmast.social,AI,ai,true +reverb,newsmast.social,Architecture & Design,architecture_design,false +reverb,newsmast.social,Biology,biology,false +reverb,newsmast.social,Black Voices,black_voices,false +reverb,newsmast.social,Books & Literature,books_literature,false +reverb,newsmast.social,Breaking News,breaking_news,false +reverb,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +reverb,newsmast.social,Disabled Voices,disabled_voices,false +reverb,newsmast.social,Engineering,engineering,false +reverb,newsmast.social,Football,football,false +reverb,newsmast.social,Gaming,gaming,false +reverb,newsmast.social,Government & Policy,government_policy,false +reverb,newsmast.social,Healthcare,healthcare,false +reverb,newsmast.social,History,history,false +reverb,newsmast.social,Humanities,humanities,false +reverb,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false +reverb,newsmast.social,Immigrants Rights,immigrants_rights,false +reverb,newsmast.social,Indigenous Peoples,indigenous_peoples,false +reverb,newsmast.social,Law & Justice,law_justice,false +reverb,newsmast.social,Movies,movies,false +reverb,newsmast.social,Music,music,false +reverb,newsmast.social,Journalism & Comment,news_comment_data,false +reverb,newsmast.social,Photography,photography,false +reverb,newsmast.social,Physics,physics,false +reverb,newsmast.social,Politics,politics,false +reverb,newsmast.social,Poverty & Inequality,poverty_inequality,false +reverb,newsmast.social,Science,science,false +reverb,newsmast.social,Social Sciences,social_sciences,false +reverb,newsmast.social,Space,space,false +reverb,newsmast.social,Technology,technology,false +reverb,newsmast.social,TV & Radio,tv_radio,false +reverb,newsmast.social,US Politics,us_politics,false +reverb,newsmast.social,US Sport,us_sport,false +reverb,newsmast.social,Visual Arts,visual_arts,false +reverb,newsmast.social,Weather,weather,false +reverb,newsmast.social,Women’s Voices,women_voices,false +maketheswitchAU,newsmast.social,Activism & Civil Rights,activism_civil_rights,false +maketheswitchAU,newsmast.social,AI,ai,false +maketheswitchAU,newsmast.social,Black Voices,black_voices,false +maketheswitchAU,newsmast.social,Disabled Voices,disabled_voices,false +maketheswitchAU,newsmast.social,Immigrants Rights,immigrants_rights,false +maketheswitchAU,newsmast.social,Indigenous Peoples,indigenous_peoples,false +maketheswitchAU,newsmast.social,LGBTQ+,lgbtq,false +maketheswitchAU,newsmast.social,Movies,movies,true +maketheswitchAU,newsmast.social,TV & Radio,tv_radio,false +maketheswitchAU,newsmast.social,Women’s Voices,women_voices,false +maketheswitchAU,newsmast.social,Politics,politics,false +maketheswitchAU,newsmast.social,Business,business,false +maketheswitchAU,newsmast.social,Photography,photography,false +maketheswitchAU,newsmast.social,Sport,sport,false +maketheswitchAU,newsmast.social,Creative Arts,creative_arts,false +maketheswitchAU,newsmast.social,Food & Drink,food_drink,false +maketheswitchAU,newsmast.social,Pets,pets,false +maketheswitchAU,newsmast.social,Nature & Wildlife,nature_wildlife,false +maketheswitchAU,newsmast.social,Travel,travel,false +maketheswitchAU,newsmast.social,Weather,weather,false +maketheswitchAU,newsmast.social,Poverty & Inequality,poverty_inequality,false +maketheswitchAU,newsmast.social,Government & Policy,government_policy,false +maketheswitchAU,newsmast.social,Healthcare,healthcare,false +maketheswitchAU,newsmast.social,Law & Justice,law_justice,false +maketheswitchAU,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false +maketheswitchAU,newsmast.social,Environment,environment,false +maketheswitchAU,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false +maketheswitchAU,newsmast.social,Climate change,climate_change,false +maketheswitchAU,newsmast.social,Energy & Pollution,energy_pollution,false +maketheswitchAU,newsmast.social,Technology,technology,false +maketheswitchAU,newsmast.social,Science,science,false +maketheswitchAU,newsmast.social,Biology,biology,false +maketheswitchAU,newsmast.social,Chemistry,chemistry,false +maketheswitchAU,newsmast.social,Engineering,engineering,false +maketheswitchAU,newsmast.social,Space,space,false +maketheswitchAU,newsmast.social,Books & Literature,books_literature,false +maketheswitchAU,newsmast.social,History,history,false +maketheswitchAU,newsmast.social,Architecture & Design,architecture_design,false +maketheswitchAU,newsmast.social,Gaming,gaming,false +maketheswitchAU,newsmast.social,Music,music,false +maketheswitchAU,newsmast.social,Performing Arts,performing_arts,false +maketheswitchAU,newsmast.social,Breaking News,breaking_news,false +maketheswitchAU,newsmast.social,Visual Arts,visual_arts,false +maketheswitchAU,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +nyeinBinarylab,newsmast.social,Activism & Civil Rights,activism_civil_rights,false +nyeinBinarylab,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false +nyeinBinarylab,newsmast.social,Black Voices,black_voices,false +nyeinBinarylab,newsmast.social,Breaking News,breaking_news,false +nyeinBinarylab,newsmast.social,Climate change,climate_change,false +nyeinBinarylab,newsmast.social,Creative Arts,creative_arts,false +nyeinBinarylab,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +nyeinBinarylab,newsmast.social,Disabled Voices,disabled_voices,false +nyeinBinarylab,newsmast.social,Energy & Pollution,energy_pollution,false +nyeinBinarylab,newsmast.social,Environment,environment,false +nyeinBinarylab,newsmast.social,Food & Drink,food_drink,false +nyeinBinarylab,newsmast.social,Government & Policy,government_policy,false +nyeinBinarylab,newsmast.social,Healthcare,healthcare,false +nyeinBinarylab,newsmast.social,Humour,humour,false +nyeinBinarylab,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false +nyeinBinarylab,newsmast.social,Immigrants Rights,immigrants_rights,false +nyeinBinarylab,newsmast.social,Indigenous Peoples,indigenous_peoples,false +nyeinBinarylab,newsmast.social,Law & Justice,law_justice,false +nyeinBinarylab,newsmast.social,LGBTQ+,lgbtq,false +nyeinBinarylab,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false +nyeinBinarylab,newsmast.social,Nature & Wildlife,nature_wildlife,false +nyeinBinarylab,newsmast.social,Journalism & Comment,news_comment_data,false +nyeinBinarylab,newsmast.social,Pets,pets,false +nyeinBinarylab,newsmast.social,Politics,politics,false +nyeinBinarylab,newsmast.social,Poverty & Inequality,poverty_inequality,false +nyeinBinarylab,newsmast.social,Puzzles,puzzles,false +nyeinBinarylab,newsmast.social,Social Media,social_media,false +nyeinBinarylab,newsmast.social,Travel,travel,false +nyeinBinarylab,newsmast.social,Ukraine Invasion,ukraine_invasion,false +nyeinBinarylab,newsmast.social,US Politics,us_politics,false +nyeinBinarylab,newsmast.social,Weather,weather,false +nyeinBinarylab,newsmast.social,Women’s Voices,women_voices,false +nyeinBinarylab,newsmast.social,Workers Rights,workers_rights,false +nyeinBinarylab,newsmast.social,Academia & Research,academia_research,true +healthcare,newsmast.social,Government & Policy,government_policy,false +healthcare,newsmast.social,Healthcare,healthcare,true +healthcare,newsmast.social,Law & Justice,law_justice,false +healthcare,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false +Gymbag4u,newsmast.social,Breaking News,breaking_news,false +Gymbag4u,newsmast.social,Creative Arts,creative_arts,false +Gymbag4u,newsmast.social,Food & Drink,food_drink,true +Gymbag4u,newsmast.social,Humour,humour,false +Gymbag4u,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false +Gymbag4u,newsmast.social,Nature & Wildlife,nature_wildlife,false +Gymbag4u,newsmast.social,Pets,pets,false +Gymbag4u,newsmast.social,Travel,travel,false +Gymbag4u,newsmast.social,Markets & Finance,markets_finance,false +Gymbag4u,newsmast.social,Business,business,false +chafafa,newsmast.social,AI,ai,false +chafafa,newsmast.social,Architecture & Design,architecture_design,false +chafafa,newsmast.social,Books & Literature,books_literature,false +chafafa,newsmast.social,Breaking News,breaking_news,true +chafafa,newsmast.social,Chemistry,chemistry,false +chafafa,newsmast.social,Engineering,engineering,false +chafafa,newsmast.social,History,history,false +chafafa,newsmast.social,Humanities,humanities,false +chafafa,newsmast.social,Mathematics,mathematics,false +chafafa,newsmast.social,Philosophy,philosophy,false +chafafa,newsmast.social,Photography,photography,false +chafafa,newsmast.social,Physics,physics,false +chafafa,newsmast.social,Programming,programming,false +chafafa,newsmast.social,Science,science,false +chafafa,newsmast.social,Technology,technology,false +chafafa,newsmast.social,TV & Radio,tv_radio,false +chafafa,newsmast.social,Visual Arts,visual_arts,false +chafafa,newsmast.social,Weather,weather,false +SummerS,newsmast.social,Breaking News,breaking_news,false +SummerS,newsmast.social,Creative Arts,creative_arts,false +SummerS,newsmast.social,Pets,pets,true +SummerS,newsmast.social,Photography,photography,false +SummerS,newsmast.social,Social Media,social_media,false +Laurairby,newsmast.social,AI,ai,false +Laurairby,newsmast.social,Architecture & Design,architecture_design,false +Laurairby,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false +Laurairby,newsmast.social,Books & Literature,books_literature,false +Laurairby,newsmast.social,Breaking News,breaking_news,true +Laurairby,newsmast.social,Climate change,climate_change,false +Laurairby,newsmast.social,Creative Arts,creative_arts,false +Laurairby,newsmast.social,Energy & Pollution,energy_pollution,false +Laurairby,newsmast.social,Engineering,engineering,false +Laurairby,newsmast.social,Environment,environment,false +Laurairby,newsmast.social,Food & Drink,food_drink,false +Laurairby,newsmast.social,Gaming,gaming,false +Laurairby,newsmast.social,Humour,humour,false +Laurairby,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false +Laurairby,newsmast.social,Movies,movies,false +Laurairby,newsmast.social,Music,music,false +Laurairby,newsmast.social,Nature & Wildlife,nature_wildlife,false +Laurairby,newsmast.social,Journalism & Comment,news_comment_data,false +Laurairby,newsmast.social,Performing Arts,performing_arts,false +Laurairby,newsmast.social,Pets,pets,false +Laurairby,newsmast.social,Photography,photography,false +Laurairby,newsmast.social,Programming,programming,false +Laurairby,newsmast.social,Puzzles,puzzles,false +Laurairby,newsmast.social,Social Media,social_media,false +Laurairby,newsmast.social,Technology,technology,false +Laurairby,newsmast.social,Travel,travel,false +Laurairby,newsmast.social,TV & Radio,tv_radio,false +Laurairby,newsmast.social,Ukraine Invasion,ukraine_invasion,false +Laurairby,newsmast.social,Visual Arts,visual_arts,false +Laurairby,newsmast.social,Weather,weather,false +jessicanewmast,newsmast.social,Activism & Civil Rights,activism_civil_rights,false +jessicanewmast,newsmast.social,Black Voices,black_voices,false +jessicanewmast,newsmast.social,Business,business,false +jessicanewmast,newsmast.social,Climate change,climate_change,true +jessicanewmast,newsmast.social,Disabled Voices,disabled_voices,false +jessicanewmast,newsmast.social,Energy & Pollution,energy_pollution,false +jessicanewmast,newsmast.social,Engineering,engineering,false +jessicanewmast,newsmast.social,Environment,environment,false +jessicanewmast,newsmast.social,Immigrants Rights,immigrants_rights,false +jessicanewmast,newsmast.social,Indigenous Peoples,indigenous_peoples,false +jessicanewmast,newsmast.social,LGBTQ+,lgbtq,false +jessicanewmast,newsmast.social,Markets & Finance,markets_finance,false +jessicanewmast,newsmast.social,Programming,programming,false +jessicanewmast,newsmast.social,Technology,technology,false +jessicanewmast,newsmast.social,Women’s Voices,women_voices,false +luffy,newsmast.social,AI,ai,false +luffy,newsmast.social,Biology,biology,false +luffy,newsmast.social,Breaking News,breaking_news,true +luffy,newsmast.social,Chemistry,chemistry,false +luffy,newsmast.social,Engineering,engineering,false +luffy,newsmast.social,Football,football,false +luffy,newsmast.social,History,history,false +luffy,newsmast.social,Humanities,humanities,false +luffy,newsmast.social,Mathematics,mathematics,false +luffy,newsmast.social,Journalism & Comment,news_comment_data,false +luffy,newsmast.social,Philosophy,philosophy,false +luffy,newsmast.social,Physics,physics,false +luffy,newsmast.social,Programming,programming,false +luffy,newsmast.social,Science,science,false +luffy,newsmast.social,Social Media,social_media,false +luffy,newsmast.social,Social Sciences,social_sciences,false +luffy,newsmast.social,Space,space,false +luffy,newsmast.social,Sport,sport,false +luffy,newsmast.social,Technology,technology,false +luffy,newsmast.social,Ukraine Invasion,ukraine_invasion,false +luffy,newsmast.social,US Sport,us_sport,false +luffy,newsmast.social,Environment,environment,false +luffy,newsmast.social,Food & Drink,food_drink,false +RafiqulMontu,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false +RafiqulMontu,newsmast.social,Climate change,climate_change,true +RafiqulMontu,newsmast.social,Energy & Pollution,energy_pollution,false +RafiqulMontu,newsmast.social,Environment,environment,false +RafiqulMontu,newsmast.social,Physics,physics,false +RafiqulMontu,newsmast.social,Space,space,false +jdp23,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +jdp23,newsmast.social,Activism & Civil Rights,activism_civil_rights,true +jdp23,newsmast.social,Black Voices,black_voices,false +jdp23,newsmast.social,Immigrants Rights,immigrants_rights,false +jdp23,newsmast.social,Indigenous Peoples,indigenous_peoples,false +jdp23,newsmast.social,Law & Justice,law_justice,false +jdp23,newsmast.social,LGBTQ+,lgbtq,false +jdp23,newsmast.social,Philosophy,philosophy,false +jdp23,newsmast.social,Social Media,social_media,false +jdp23,newsmast.social,Social Sciences,social_sciences,false +jdp23,newsmast.social,Technology,technology,false +jdp23,newsmast.social,US Politics,us_politics,false +jdp23,newsmast.social,Women’s Voices,women_voices,false +minkhantBL,newsmast.social,Breaking News,breaking_news,true +minkhantBL,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +minkhantBL,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false +minkhantBL,newsmast.social,Journalism & Comment,news_comment_data,false +minkhantBL,newsmast.social,Poverty & Inequality,poverty_inequality,false +minkhantBL,newsmast.social,Social Media,social_media,false +minkhantBL,newsmast.social,Ukraine Invasion,ukraine_invasion,false +minkhantBL,newsmast.social,Weather,weather,false +putuu,newsmast.social,Breaking News,breaking_news,false +putuu,newsmast.social,Journalism & Comment,news_comment_data,true +putuu,newsmast.social,Social Media,social_media,false +putuu,newsmast.social,Ukraine Invasion,ukraine_invasion,false +putuu,newsmast.social,Weather,weather,false +yarzar,newsmast.social,AI,ai,false +yarzar,newsmast.social,Biology,biology,false +yarzar,newsmast.social,Breaking News,breaking_news,false +yarzar,newsmast.social,Chemistry,chemistry,false +yarzar,newsmast.social,Creative Arts,creative_arts,false +yarzar,newsmast.social,Engineering,engineering,false +yarzar,newsmast.social,Food & Drink,food_drink,false +yarzar,newsmast.social,Humour,humour,false +yarzar,newsmast.social,Mathematics,mathematics,false +yarzar,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false +yarzar,newsmast.social,Nature & Wildlife,nature_wildlife,false +yarzar,newsmast.social,Journalism & Comment,news_comment_data,false +yarzar,newsmast.social,Pets,pets,false +yarzar,newsmast.social,Physics,physics,false +yarzar,newsmast.social,Programming,programming,false +yarzar,newsmast.social,Puzzles,puzzles,false +yarzar,newsmast.social,Science,science,false +yarzar,newsmast.social,Social Media,social_media,false +yarzar,newsmast.social,Space,space,false +yarzar,newsmast.social,Sport,sport,false +yarzar,newsmast.social,Technology,technology,false +yarzar,newsmast.social,Travel,travel,false +yarzar,newsmast.social,Ukraine Invasion,ukraine_invasion,false +yarzar,newsmast.social,US Sport,us_sport,false +yarzar,newsmast.social,Weather,weather,false +yarzar,newsmast.social,Football,football,true +enriqueanarte,newsmast.social,Breaking News,breaking_news,false +enriqueanarte,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +enriqueanarte,newsmast.social,LGBTQ+,lgbtq,true +enriqueanarte,newsmast.social,Journalism & Comment,news_comment_data,false +enriqueanarte,newsmast.social,Politics,politics,false +Drizzleanddip,newsmast.social,Books & Literature,books_literature,false +Drizzleanddip,newsmast.social,Breaking News,breaking_news,false +Drizzleanddip,newsmast.social,Creative Arts,creative_arts,false +Drizzleanddip,newsmast.social,Environment,environment,false +Drizzleanddip,newsmast.social,Food & Drink,food_drink,true +Drizzleanddip,newsmast.social,Movies,movies,false +Drizzleanddip,newsmast.social,Photography,photography,false +Drizzleanddip,newsmast.social,Travel,travel,false +Drizzleanddip,newsmast.social,Visual Arts,visual_arts,false +Emma_Samson,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false +Emma_Samson,newsmast.social,Business,business,false +Emma_Samson,newsmast.social,Climate change,climate_change,false +Emma_Samson,newsmast.social,Energy & Pollution,energy_pollution,false +Emma_Samson,newsmast.social,Environment,environment,true +Emma_Samson,newsmast.social,Government & Policy,government_policy,false +Emma_Samson,newsmast.social,Social Sciences,social_sciences,false +LeanneKeddie,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false +LeanneKeddie,newsmast.social,Breaking News,breaking_news,false +LeanneKeddie,newsmast.social,Climate change,climate_change,true +LeanneKeddie,newsmast.social,Environment,environment,false +LeanneKeddie,newsmast.social,Social Sciences,social_sciences,false +LeanneKeddie,newsmast.social,Weather,weather,false +max_chaudhary,newsmast.social,Academia & Research,academia_research,false +max_chaudhary,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +max_chaudhary,newsmast.social,Healthcare,healthcare,false +max_chaudhary,newsmast.social,History,history,false +max_chaudhary,newsmast.social,Law & Justice,law_justice,false +max_chaudhary,newsmast.social,Politics,politics,false +max_chaudhary,newsmast.social,US Politics,us_politics,false +max_chaudhary,newsmast.social,Government & Policy,government_policy,true +rach_garr,newsmast.social,Academia & Research,academia_research,false +rach_garr,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,true +rach_garr,newsmast.social,Climate change,climate_change,false +rach_garr,newsmast.social,Environment,environment,false +rach_garr,newsmast.social,Government & Policy,government_policy,false +rach_garr,newsmast.social,Politics,politics,false +RossA,newsmast.social,AI,ai,false +RossA,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false +RossA,newsmast.social,Books & Literature,books_literature,false +RossA,newsmast.social,Breaking News,breaking_news,false +RossA,newsmast.social,Gaming,gaming,false +RossA,newsmast.social,Humour,humour,false +RossA,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false +RossA,newsmast.social,Movies,movies,false +RossA,newsmast.social,Music,music,false +RossA,newsmast.social,Nature & Wildlife,nature_wildlife,false +RossA,newsmast.social,Journalism & Comment,news_comment_data,false +RossA,newsmast.social,Performing Arts,performing_arts,false +RossA,newsmast.social,Philosophy,philosophy,false +RossA,newsmast.social,Photography,photography,false +RossA,newsmast.social,Puzzles,puzzles,false +RossA,newsmast.social,Science,science,false +RossA,newsmast.social,Social Media,social_media,false +RossA,newsmast.social,Social Sciences,social_sciences,false +RossA,newsmast.social,Technology,technology,true +RossA,newsmast.social,TV & Radio,tv_radio,false +RossA,newsmast.social,Weather,weather,false +jeffreyguard,newsmast.social,LGBTQ+,lgbtq,true +jeffreyguard,newsmast.social,Architecture & Design,architecture_design,false +jeffreyguard,newsmast.social,Books & Literature,books_literature,false +jeffreyguard,newsmast.social,History,history,false +jeffreyguard,newsmast.social,Movies,movies,false +jeffreyguard,newsmast.social,Music,music,false +jeffreyguard,newsmast.social,Performing Arts,performing_arts,false +jeffreyguard,newsmast.social,Philosophy,philosophy,false +jeffreyguard,newsmast.social,Photography,photography,false +jeffreyguard,newsmast.social,Social Sciences,social_sciences,false +jeffreyguard,newsmast.social,TV & Radio,tv_radio,false +jeffreyguard,newsmast.social,Visual Arts,visual_arts,false +gavinjmaguire,newsmast.social,Breaking News,breaking_news,false +gavinjmaguire,newsmast.social,Business,business,false +gavinjmaguire,newsmast.social,Climate change,climate_change,false +gavinjmaguire,newsmast.social,Creative Arts,creative_arts,false +gavinjmaguire,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +gavinjmaguire,newsmast.social,Energy & Pollution,energy_pollution,true +gavinjmaguire,newsmast.social,Food & Drink,food_drink,false +gavinjmaguire,newsmast.social,Football,football,false +gavinjmaguire,newsmast.social,Government & Policy,government_policy,false +gavinjmaguire,newsmast.social,Humour,humour,false +gavinjmaguire,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false +gavinjmaguire,newsmast.social,Markets & Finance,markets_finance,false +gavinjmaguire,newsmast.social,Nature & Wildlife,nature_wildlife,false +gavinjmaguire,newsmast.social,Poverty & Inequality,poverty_inequality,false +gavinjmaguire,newsmast.social,Travel,travel,false +gavinjmaguire,newsmast.social,US Politics,us_politics,false +bryantout,newsmast.social,Books & Literature,books_literature,false +bryantout,newsmast.social,Breaking News,breaking_news,true +bryantout,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false +bryantout,newsmast.social,Puzzles,puzzles,false +bryantout,newsmast.social,Technology,technology,false +bryantout,newsmast.social,Movies,movies,false +bryantout,newsmast.social,Government & Policy,government_policy,false +bryantout,newsmast.social,Politics,politics,false +bryantout,newsmast.social,US Politics,us_politics,false +brettmirl,newsmast.social,Activism & Civil Rights,activism_civil_rights,false +brettmirl,newsmast.social,AI,ai,false +brettmirl,newsmast.social,Black Voices,black_voices,false +brettmirl,newsmast.social,Breaking News,breaking_news,false +brettmirl,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +brettmirl,newsmast.social,Disabled Voices,disabled_voices,false +brettmirl,newsmast.social,Government & Policy,government_policy,false +brettmirl,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false +brettmirl,newsmast.social,Immigrants Rights,immigrants_rights,false +brettmirl,newsmast.social,Indigenous Peoples,indigenous_peoples,false +brettmirl,newsmast.social,LGBTQ+,lgbtq,true +brettmirl,newsmast.social,Movies,movies,false +brettmirl,newsmast.social,Music,music,false +brettmirl,newsmast.social,Journalism & Comment,news_comment_data,false +brettmirl,newsmast.social,Politics,politics,false +brettmirl,newsmast.social,Poverty & Inequality,poverty_inequality,false +brettmirl,newsmast.social,Technology,technology,false +brettmirl,newsmast.social,TV & Radio,tv_radio,false +brettmirl,newsmast.social,Weather,weather,false +brettmirl,newsmast.social,Women’s Voices,women_voices,false +artbol,newsmast.social,Architecture & Design,architecture_design,false +artbol,newsmast.social,Breaking News,breaking_news,true +artbol,newsmast.social,Energy & Pollution,energy_pollution,false +artbol,newsmast.social,Environment,environment,false +artbol,newsmast.social,Gaming,gaming,false +artbol,newsmast.social,Movies,movies,false +artbol,newsmast.social,Music,music,false +artbol,newsmast.social,Programming,programming,false +artbol,newsmast.social,Science,science,false +artbol,newsmast.social,Space,space,false +artbol,newsmast.social,Technology,technology,false +artbol,newsmast.social,TV & Radio,tv_radio,false +pikarl13,newsmast.social,Academia & Research,academia_research,false +pikarl13,newsmast.social,AI,ai,false +pikarl13,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false +pikarl13,newsmast.social,Biology,biology,false +pikarl13,newsmast.social,Chemistry,chemistry,false +pikarl13,newsmast.social,Climate change,climate_change,false +pikarl13,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +pikarl13,newsmast.social,Energy & Pollution,energy_pollution,false +pikarl13,newsmast.social,Engineering,engineering,false +pikarl13,newsmast.social,Environment,environment,false +pikarl13,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false +pikarl13,newsmast.social,Mathematics,mathematics,false +pikarl13,newsmast.social,Journalism & Comment,news_comment_data,false +pikarl13,newsmast.social,Physics,physics,false +pikarl13,newsmast.social,Politics,politics,false +pikarl13,newsmast.social,Poverty & Inequality,poverty_inequality,false +pikarl13,newsmast.social,Programming,programming,false +pikarl13,newsmast.social,Science,science,false +pikarl13,newsmast.social,Space,space,true +pikarl13,newsmast.social,Technology,technology,false +denn,newsmast.social,Activism & Civil Rights,activism_civil_rights,false +denn,newsmast.social,AI,ai,false +denn,newsmast.social,Biology,biology,false +denn,newsmast.social,Black Voices,black_voices,false +denn,newsmast.social,Chemistry,chemistry,false +denn,newsmast.social,Disabled Voices,disabled_voices,false +denn,newsmast.social,Engineering,engineering,false +denn,newsmast.social,History,history,false +denn,newsmast.social,Humanities,humanities,false +denn,newsmast.social,Immigrants Rights,immigrants_rights,false +denn,newsmast.social,Indigenous Peoples,indigenous_peoples,false +denn,newsmast.social,Mathematics,mathematics,false +denn,newsmast.social,Philosophy,philosophy,false +denn,newsmast.social,Physics,physics,false +denn,newsmast.social,Programming,programming,false +denn,newsmast.social,Science,science,false +denn,newsmast.social,Social Sciences,social_sciences,false +denn,newsmast.social,Space,space,false +denn,newsmast.social,Technology,technology,false +denn,newsmast.social,Women’s Voices,women_voices,false +denn,newsmast.social,LGBTQ+,lgbtq,true +Kyn,newsmast.social,Academia & Research,academia_research,true +Kyn,newsmast.social,AI,ai,false +Kyn,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false +Kyn,newsmast.social,Biology,biology,false +Kyn,newsmast.social,Breaking News,breaking_news,false +Kyn,newsmast.social,Chemistry,chemistry,false +Kyn,newsmast.social,Climate change,climate_change,false +Kyn,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +Kyn,newsmast.social,Energy & Pollution,energy_pollution,false +Kyn,newsmast.social,Engineering,engineering,false +Kyn,newsmast.social,Environment,environment,false +Kyn,newsmast.social,Government & Policy,government_policy,false +Kyn,newsmast.social,Healthcare,healthcare,false +Kyn,newsmast.social,History,history,false +Kyn,newsmast.social,Humanities,humanities,false +Kyn,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false +Kyn,newsmast.social,Law & Justice,law_justice,false +Kyn,newsmast.social,Mathematics,mathematics,false +Kyn,newsmast.social,Journalism & Comment,news_comment_data,false +Kyn,newsmast.social,Philosophy,philosophy,false +Kyn,newsmast.social,Physics,physics,false +Kyn,newsmast.social,Politics,politics,false +Kyn,newsmast.social,Poverty & Inequality,poverty_inequality,false +Kyn,newsmast.social,Programming,programming,false +Kyn,newsmast.social,Science,science,false +Kyn,newsmast.social,Social Media,social_media,false +Kyn,newsmast.social,Social Sciences,social_sciences,false +Kyn,newsmast.social,Space,space,false +Kyn,newsmast.social,Technology,technology,false +Kyn,newsmast.social,Ukraine Invasion,ukraine_invasion,false +Kyn,newsmast.social,US Politics,us_politics,false +Kyn,newsmast.social,Weather,weather,false +09SHEEHANM,newsmast.social,Breaking News,breaking_news,false +09SHEEHANM,newsmast.social,Business,business,false +09SHEEHANM,newsmast.social,Government & Policy,government_policy,false +09SHEEHANM,newsmast.social,Journalism & Comment,news_comment_data,false +09SHEEHANM,newsmast.social,Ukraine Invasion,ukraine_invasion,true +MichelleA,newsmast.social,Academia & Research,academia_research,false +MichelleA,newsmast.social,Biology,biology,false +MichelleA,newsmast.social,Breaking News,breaking_news,false +MichelleA,newsmast.social,Business,business,false +MichelleA,newsmast.social,Chemistry,chemistry,false +MichelleA,newsmast.social,Government & Policy,government_policy,false +MichelleA,newsmast.social,Healthcare,healthcare,true +MichelleA,newsmast.social,Law & Justice,law_justice,false +MichelleA,newsmast.social,Markets & Finance,markets_finance,false +MichelleA,newsmast.social,Mathematics,mathematics,false +MichelleA,newsmast.social,Journalism & Comment,news_comment_data,false +MichelleA,newsmast.social,Physics,physics,false +MichelleA,newsmast.social,Politics,politics,false +MichelleA,newsmast.social,Science,science,false +MichelleA,newsmast.social,Social Media,social_media,false +MichelleA,newsmast.social,Space,space,false +MichelleA,newsmast.social,Ukraine Invasion,ukraine_invasion,false +MichelleA,newsmast.social,US Politics,us_politics,false +MichelleA,newsmast.social,Weather,weather,false +MichelleA,newsmast.social,Workers Rights,workers_rights,false +Migis4991,newsmast.social,Academia & Research,academia_research,false +Migis4991,newsmast.social,AI,ai,false +Migis4991,newsmast.social,Government & Policy,government_policy,false +Migis4991,newsmast.social,History,history,false +Migis4991,newsmast.social,Politics,politics,false +Migis4991,newsmast.social,Programming,programming,false +Migis4991,newsmast.social,Science,science,false +Migis4991,newsmast.social,Social Sciences,social_sciences,true +Migis4991,newsmast.social,Technology,technology,false +Pyae000,newsmast.social,Engineering,engineering,false +Pyae000,newsmast.social,Mathematics,mathematics,false +Pyae000,newsmast.social,Physics,physics,false +Pyae000,newsmast.social,Programming,programming,true +Pyae000,newsmast.social,Science,science,false +Pyae000,newsmast.social,Technology,technology,false +RonCharles,newsmast.social,Breaking News,breaking_news,false +RonCharles,newsmast.social,Social Media,social_media,false +RonCharles,newsmast.social,Ukraine Invasion,ukraine_invasion,false +RonCharles,newsmast.social,Weather,weather,false +RonCharles,newsmast.social,Journalism & Comment,news_comment_data,true +jonbreeze,newsmast.social,Climate change,climate_change,false +jonbreeze,newsmast.social,Energy & Pollution,energy_pollution,false +jonbreeze,newsmast.social,Physics,physics,true +jonbreeze,newsmast.social,Science,science,false +jonbreeze,newsmast.social,Space,space,false +jonbreeze,newsmast.social,Technology,technology,false +jetono,newsmast.social,AI,ai,false +jetono,newsmast.social,Engineering,engineering,false +jetono,newsmast.social,Gaming,gaming,false +jetono,newsmast.social,Programming,programming,false +jetono,newsmast.social,Social Media,social_media,false +jetono,newsmast.social,Technology,technology,true +chloe_661,newsmast.social,Football,football,true +chloe_661,newsmast.social,Programming,programming,false +chloe_661,newsmast.social,Space,space,false +chloe_661,newsmast.social,Sport,sport,false +chloe_661,newsmast.social,Technology,technology,false +AnnaScott,newsmast.social,Books & Literature,books_literature,false +AnnaScott,newsmast.social,Movies,movies,false +AnnaScott,newsmast.social,Music,music,true +AnnaScott,newsmast.social,Performing Arts,performing_arts,false +AnnaScott,newsmast.social,Photography,photography,false +AnnaScott,newsmast.social,TV & Radio,tv_radio,false +dleifohcs,newsmast.social,AI,ai,false +dleifohcs,newsmast.social,Physics,physics,true +dleifohcs,newsmast.social,Science,science,false +dleifohcs,newsmast.social,Space,space,false +dleifohcs,newsmast.social,Technology,technology,false +jncomas,newsmast.social,Breaking News,breaking_news,true +jncomas,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +jncomas,newsmast.social,Humanities,humanities,false +jncomas,newsmast.social,Law & Justice,law_justice,false +jncomas,newsmast.social,Journalism & Comment,news_comment_data,false +jncomas,newsmast.social,Philosophy,philosophy,false +jncomas,newsmast.social,Ukraine Invasion,ukraine_invasion,false +jncomas,newsmast.social,US Politics,us_politics,false +muzaffarab,newsmast.social,Government & Policy,government_policy,false +muzaffarab,newsmast.social,Democracy & Human Rights,democracy_human_rights,true +muzaffarab,newsmast.social,Poverty & Inequality,poverty_inequality,false +wannely,newsmast.social,Creative Arts,creative_arts,true +wannely,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +wannely,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false +wannely,newsmast.social,Poverty & Inequality,poverty_inequality,false +wannely,newsmast.social,Science,science,false +ryankhan,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +ryankhan,newsmast.social,Government & Policy,government_policy,false +ryankhan,newsmast.social,Healthcare,healthcare,false +ryankhan,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false +ryankhan,newsmast.social,Law & Justice,law_justice,false +ryankhan,newsmast.social,Politics,politics,false +ryankhan,newsmast.social,Poverty & Inequality,poverty_inequality,false +ryankhan,newsmast.social,US Politics,us_politics,false +ryankhan,newsmast.social,Academia & Research,academia_research,true +EmillaFilipowic,newsmast.social,Academia & Research,academia_research,false +EmillaFilipowic,newsmast.social,Activism & Civil Rights,activism_civil_rights,false +EmillaFilipowic,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false +EmillaFilipowic,newsmast.social,Black Voices,black_voices,false +EmillaFilipowic,newsmast.social,Breaking News,breaking_news,true +EmillaFilipowic,newsmast.social,Business,business,false +EmillaFilipowic,newsmast.social,Climate change,climate_change,false +EmillaFilipowic,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +EmillaFilipowic,newsmast.social,Disabled Voices,disabled_voices,false +EmillaFilipowic,newsmast.social,Energy & Pollution,energy_pollution,false +EmillaFilipowic,newsmast.social,Environment,environment,false +EmillaFilipowic,newsmast.social,Government & Policy,government_policy,false +EmillaFilipowic,newsmast.social,Healthcare,healthcare,false +EmillaFilipowic,newsmast.social,History,history,false +EmillaFilipowic,newsmast.social,Humanities,humanities,false +EmillaFilipowic,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false +EmillaFilipowic,newsmast.social,Immigrants Rights,immigrants_rights,false +EmillaFilipowic,newsmast.social,Indigenous Peoples,indigenous_peoples,false +EmillaFilipowic,newsmast.social,Law & Justice,law_justice,false +EmillaFilipowic,newsmast.social,LGBTQ+,lgbtq,false +EmillaFilipowic,newsmast.social,Markets & Finance,markets_finance,false +EmillaFilipowic,newsmast.social,Journalism & Comment,news_comment_data,false +EmillaFilipowic,newsmast.social,Philosophy,philosophy,false +EmillaFilipowic,newsmast.social,Politics,politics,false +EmillaFilipowic,newsmast.social,Poverty & Inequality,poverty_inequality,false +EmillaFilipowic,newsmast.social,Social Media,social_media,false +EmillaFilipowic,newsmast.social,Social Sciences,social_sciences,false +EmillaFilipowic,newsmast.social,Ukraine Invasion,ukraine_invasion,false +EmillaFilipowic,newsmast.social,US Politics,us_politics,false +EmillaFilipowic,newsmast.social,Weather,weather,false +EmillaFilipowic,newsmast.social,Women’s Voices,women_voices,false +EmillaFilipowic,newsmast.social,Workers Rights,workers_rights,false +nisemikol,newsmast.social,Activism & Civil Rights,activism_civil_rights,false +nisemikol,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false +nisemikol,newsmast.social,Biology,biology,false +nisemikol,newsmast.social,Breaking News,breaking_news,true +nisemikol,newsmast.social,Chemistry,chemistry,false +nisemikol,newsmast.social,Climate change,climate_change,false +nisemikol,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +nisemikol,newsmast.social,Energy & Pollution,energy_pollution,false +nisemikol,newsmast.social,Environment,environment,false +nisemikol,newsmast.social,Government & Policy,government_policy,false +nisemikol,newsmast.social,History,history,false +nisemikol,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false +nisemikol,newsmast.social,Indigenous Peoples,indigenous_peoples,false +nisemikol,newsmast.social,Law & Justice,law_justice,false +nisemikol,newsmast.social,LGBTQ+,lgbtq,false +nisemikol,newsmast.social,Physics,physics,false +nisemikol,newsmast.social,Politics,politics,false +nisemikol,newsmast.social,Poverty & Inequality,poverty_inequality,false +nisemikol,newsmast.social,Science,science,false +nisemikol,newsmast.social,Social Sciences,social_sciences,false +nisemikol,newsmast.social,Space,space,false +nisemikol,newsmast.social,Technology,technology,false +nisemikol,newsmast.social,US Politics,us_politics,false +nisemikol,newsmast.social,Women’s Voices,women_voices,false +ifonlycom,newsmast.social,Technology,technology,false +ifonlycom,newsmast.social,US Politics,us_politics,false +ifonlycom,newsmast.social,Academia & Research,academia_research,false +ifonlycom,newsmast.social,AI,ai,false +ifonlycom,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false +ifonlycom,newsmast.social,Biology,biology,false +ifonlycom,newsmast.social,Chemistry,chemistry,false +ifonlycom,newsmast.social,Climate change,climate_change,false +ifonlycom,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +ifonlycom,newsmast.social,Energy & Pollution,energy_pollution,false +ifonlycom,newsmast.social,Engineering,engineering,false +ifonlycom,newsmast.social,Environment,environment,false +ifonlycom,newsmast.social,Government & Policy,government_policy,true +ifonlycom,newsmast.social,Healthcare,healthcare,false +ifonlycom,newsmast.social,History,history,false +ifonlycom,newsmast.social,Humanities,humanities,false +ifonlycom,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false +ifonlycom,newsmast.social,Law & Justice,law_justice,false +ifonlycom,newsmast.social,Mathematics,mathematics,false +ifonlycom,newsmast.social,Philosophy,philosophy,false +ifonlycom,newsmast.social,Physics,physics,false +ifonlycom,newsmast.social,Politics,politics,false +ifonlycom,newsmast.social,Poverty & Inequality,poverty_inequality,false +ifonlycom,newsmast.social,Programming,programming,false +ifonlycom,newsmast.social,Science,science,false +ifonlycom,newsmast.social,Social Sciences,social_sciences,false +ifonlycom,newsmast.social,Space,space,false +feuerkugel,newsmast.social,Breaking News,breaking_news,true +feuerkugel,newsmast.social,Physics,physics,false +feuerkugel,newsmast.social,Science,science,false +feuerkugel,newsmast.social,Space,space,false +feuerkugel,newsmast.social,Technology,technology,false +feuerkugel,newsmast.social,Weather,weather,false +mental_health,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,true +Greg,newsmast.social,Breaking News,breaking_news,true +Greg,newsmast.social,Humanities,humanities,false +Greg,newsmast.social,Humour,humour,false +Greg,newsmast.social,Mathematics,mathematics,false +Greg,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false +Greg,newsmast.social,Nature & Wildlife,nature_wildlife,false +Greg,newsmast.social,Journalism & Comment,news_comment_data,false +Greg,newsmast.social,Philosophy,philosophy,false +Greg,newsmast.social,Programming,programming,false +Greg,newsmast.social,Science,science,false +Greg,newsmast.social,Social Sciences,social_sciences,false +Greg,newsmast.social,Technology,technology,false +ThomasFoster,newsmast.social,Academia & Research,academia_research,false +ThomasFoster,newsmast.social,Activism & Civil Rights,activism_civil_rights,false +ThomasFoster,newsmast.social,Gaming,gaming,false +ThomasFoster,newsmast.social,Immigrants Rights,immigrants_rights,false +ThomasFoster,newsmast.social,Indigenous Peoples,indigenous_peoples,false +ThomasFoster,newsmast.social,Movies,movies,true +ThomasFoster,newsmast.social,Ukraine Invasion,ukraine_invasion,false +ThomasFoster,newsmast.social,Workers Rights,workers_rights,false +fediverso,newsmast.social,Academia & Research,academia_research,true +fediverso,newsmast.social,Activism & Civil Rights,activism_civil_rights,false +fediverso,newsmast.social,AI,ai,false +fediverso,newsmast.social,Biology,biology,false +fediverso,newsmast.social,Chemistry,chemistry,false +fediverso,newsmast.social,Government & Policy,government_policy,false +fediverso,newsmast.social,Humanities,humanities,false +fediverso,newsmast.social,Mathematics,mathematics,false +fediverso,newsmast.social,Physics,physics,false +fediverso,newsmast.social,Social Sciences,social_sciences,false +fediverso,newsmast.social,Technology,technology,false +MichaelCaines,newsmast.social,Humanities,humanities,false +MichaelCaines,newsmast.social,Music,music,false +MichaelCaines,newsmast.social,Performing Arts,performing_arts,false +MichaelCaines,newsmast.social,Photography,photography,false +MichaelCaines,newsmast.social,Visual Arts,visual_arts,false +MichaelCaines,newsmast.social,Books & Literature,books_literature,true +robhoy,newsmast.social,AI,ai,false +robhoy,newsmast.social,Books & Literature,books_literature,false +robhoy,newsmast.social,Breaking News,breaking_news,false +robhoy,newsmast.social,Engineering,engineering,false +robhoy,newsmast.social,Gaming,gaming,false +robhoy,newsmast.social,Programming,programming,false +robhoy,newsmast.social,Social Media,social_media,false +robhoy,newsmast.social,Technology,technology,false +robhoy,newsmast.social,TV & Radio,tv_radio,false +robhoy,newsmast.social,Visual Arts,visual_arts,false +robhoy,newsmast.social,Weather,weather,false +robhoy,newsmast.social,Movies,movies,true +foong,newsmast.social,AI,ai,true +foong,newsmast.social,Architecture & Design,architecture_design,false +foong,newsmast.social,Biology,biology,false +foong,newsmast.social,Books & Literature,books_literature,false +foong,newsmast.social,Business,business,false +foong,newsmast.social,Chemistry,chemistry,false +foong,newsmast.social,Creative Arts,creative_arts,false +foong,newsmast.social,Engineering,engineering,false +foong,newsmast.social,Food & Drink,food_drink,false +foong,newsmast.social,Gaming,gaming,false +foong,newsmast.social,History,history,false +foong,newsmast.social,Humanities,humanities,false +foong,newsmast.social,Humour,humour,false +foong,newsmast.social,Markets & Finance,markets_finance,false +foong,newsmast.social,Mathematics,mathematics,false +foong,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false +foong,newsmast.social,Movies,movies,false +foong,newsmast.social,Music,music,false +foong,newsmast.social,Nature & Wildlife,nature_wildlife,false +foong,newsmast.social,Performing Arts,performing_arts,false +foong,newsmast.social,Pets,pets,false +foong,newsmast.social,Philosophy,philosophy,false +foong,newsmast.social,Photography,photography,false +foong,newsmast.social,Physics,physics,false +foong,newsmast.social,Programming,programming,false +foong,newsmast.social,Puzzles,puzzles,false +foong,newsmast.social,Science,science,false +foong,newsmast.social,Social Sciences,social_sciences,false +foong,newsmast.social,Space,space,false +foong,newsmast.social,Technology,technology,false +foong,newsmast.social,Travel,travel,false +foong,newsmast.social,TV & Radio,tv_radio,false +foong,newsmast.social,Visual Arts,visual_arts,false +foong,newsmast.social,Workers Rights,workers_rights,false +Sas99,newsmast.social,Football,football,false +Sas99,newsmast.social,Journalism & Comment,news_comment_data,false +Sas99,newsmast.social,Social Media,social_media,false +Sas99,newsmast.social,Space,space,true +Sas99,newsmast.social,Sport,sport,false +glecko,newsmast.social,AI,ai,false +glecko,newsmast.social,Biology,biology,false +glecko,newsmast.social,Business,business,false +glecko,newsmast.social,Climate change,climate_change,false +glecko,newsmast.social,Energy & Pollution,energy_pollution,false +glecko,newsmast.social,Environment,environment,false +glecko,newsmast.social,Football,football,true +glecko,newsmast.social,Gaming,gaming,false +glecko,newsmast.social,Humanities,humanities,false +glecko,newsmast.social,Markets & Finance,markets_finance,false +glecko,newsmast.social,Science,science,false +glecko,newsmast.social,Space,space,false +glecko,newsmast.social,Technology,technology,false +glecko,newsmast.social,US Sport,us_sport,false +glecko,newsmast.social,Workers Rights,workers_rights,false +MAD_Democracy,newsmast.social,Healthcare,healthcare,false +MAD_Democracy,newsmast.social,Journalism & Comment,news_comment_data,true +MAD_Democracy,newsmast.social,Politics,politics,false +MAD_Democracy,newsmast.social,Social Media,social_media,false +MAD_Democracy,newsmast.social,US Politics,us_politics,false +tgirl_696,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false +tgirl_696,newsmast.social,Humour,humour,true +tgirl_696,newsmast.social,Performing Arts,performing_arts,false +tgirl_696,newsmast.social,Travel,travel,false +tgirl_696,newsmast.social,Visual Arts,visual_arts,false +Rinn,newsmast.social,AI,ai,false +Rinn,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false +Rinn,newsmast.social,Biology,biology,false +Rinn,newsmast.social,Business,business,false +Rinn,newsmast.social,Chemistry,chemistry,false +Rinn,newsmast.social,Climate change,climate_change,false +Rinn,newsmast.social,Creative Arts,creative_arts,false +Rinn,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +Rinn,newsmast.social,Energy & Pollution,energy_pollution,false +Rinn,newsmast.social,Engineering,engineering,false +Rinn,newsmast.social,Environment,environment,false +Rinn,newsmast.social,Food & Drink,food_drink,false +Rinn,newsmast.social,History,history,false +Rinn,newsmast.social,Humanities,humanities,false +Rinn,newsmast.social,Humour,humour,false +Rinn,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false +Rinn,newsmast.social,Markets & Finance,markets_finance,false +Rinn,newsmast.social,Mathematics,mathematics,false +Rinn,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false +Rinn,newsmast.social,Nature & Wildlife,nature_wildlife,false +Rinn,newsmast.social,Pets,pets,false +Rinn,newsmast.social,Philosophy,philosophy,false +Rinn,newsmast.social,Physics,physics,false +Rinn,newsmast.social,Poverty & Inequality,poverty_inequality,false +Rinn,newsmast.social,Programming,programming,false +Rinn,newsmast.social,Puzzles,puzzles,false +Rinn,newsmast.social,Science,science,false +Rinn,newsmast.social,Social Sciences,social_sciences,false +Rinn,newsmast.social,Space,space,false +Rinn,newsmast.social,Technology,technology,true +Rinn,newsmast.social,Travel,travel,false +Rinn,newsmast.social,Workers Rights,workers_rights,false +dariusofz,newsmast.social,Breaking News,breaking_news,true +miscmisc,newsmast.social,Biology,biology,false +miscmisc,newsmast.social,Breaking News,breaking_news,true +miscmisc,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +miscmisc,newsmast.social,Football,football,false +miscmisc,newsmast.social,Science,science,false +miscmisc,newsmast.social,Sport,sport,false +miscmisc,newsmast.social,Technology,technology,false +sai_myo_1993,newsmast.social,Climate change,climate_change,false +sai_myo_1993,newsmast.social,Engineering,engineering,false +sai_myo_1993,newsmast.social,Environment,environment,false +sai_myo_1993,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false +sai_myo_1993,newsmast.social,Programming,programming,true +jhantytown89,newsmast.social,Academia & Research,academia_research,false +jhantytown89,newsmast.social,Breaking News,breaking_news,false +jhantytown89,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +jhantytown89,newsmast.social,Disabled Voices,disabled_voices,false +jhantytown89,newsmast.social,Government & Policy,government_policy,false +jhantytown89,newsmast.social,Law & Justice,law_justice,false +jhantytown89,newsmast.social,LGBTQ+,lgbtq,false +jhantytown89,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false +jhantytown89,newsmast.social,Journalism & Comment,news_comment_data,false +jhantytown89,newsmast.social,Politics,politics,false +jhantytown89,newsmast.social,Programming,programming,false +jhantytown89,newsmast.social,Social Media,social_media,false +jhantytown89,newsmast.social,Social Sciences,social_sciences,false +jhantytown89,newsmast.social,Technology,technology,true +jhantytown89,newsmast.social,US Politics,us_politics,false +jhantytown89,newsmast.social,Poverty & Inequality,poverty_inequality,false +jhantytown89,newsmast.social,Science,science,false +jhantytown89,newsmast.social,Workers Rights,workers_rights,false +Lady_IniQ,newsmast.social,Architecture & Design,architecture_design,false +Lady_IniQ,newsmast.social,Gaming,gaming,false +Lady_IniQ,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,true +Lady_IniQ,newsmast.social,Movies,movies,false +Lady_IniQ,newsmast.social,Nature & Wildlife,nature_wildlife,false +Lady_IniQ,newsmast.social,Pets,pets,false +Lady_IniQ,newsmast.social,Travel,travel,false +GiuliaTranchina,newsmast.social,Humanities,humanities,false +GiuliaTranchina,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false +GiuliaTranchina,newsmast.social,Law & Justice,law_justice,false +GiuliaTranchina,newsmast.social,Poverty & Inequality,poverty_inequality,false +GiuliaTranchina,newsmast.social,Social Sciences,social_sciences,false +GiuliaTranchina,newsmast.social,Democracy & Human Rights,democracy_human_rights,true +benjamin,newsmast.social,Biology,biology,false +benjamin,newsmast.social,Breaking News,breaking_news,false +benjamin,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +benjamin,newsmast.social,Physics,physics,false +benjamin,newsmast.social,Poverty & Inequality,poverty_inequality,false +benjamin,newsmast.social,Programming,programming,false +benjamin,newsmast.social,Science,science,false +benjamin,newsmast.social,Social Media,social_media,true +benjamin,newsmast.social,Space,space,false +benjamin,newsmast.social,Technology,technology,false +benjamin,newsmast.social,US Sport,us_sport,false +paige_travels,newsmast.social,Books & Literature,books_literature,false +paige_travels,newsmast.social,Food & Drink,food_drink,false +paige_travels,newsmast.social,Nature & Wildlife,nature_wildlife,false +paige_travels,newsmast.social,Photography,photography,false +paige_travels,newsmast.social,Travel,travel,true +OurSkyHaven,newsmast.social,Architecture & Design,architecture_design,false +OurSkyHaven,newsmast.social,Books & Literature,books_literature,false +OurSkyHaven,newsmast.social,Breaking News,breaking_news,false +OurSkyHaven,newsmast.social,Football,football,true +OurSkyHaven,newsmast.social,Gaming,gaming,false +OurSkyHaven,newsmast.social,Movies,movies,false +OurSkyHaven,newsmast.social,Music,music,false +OurSkyHaven,newsmast.social,Performing Arts,performing_arts,false +OurSkyHaven,newsmast.social,Photography,photography,false +OurSkyHaven,newsmast.social,Sport,sport,false +OurSkyHaven,newsmast.social,TV & Radio,tv_radio,false +OurSkyHaven,newsmast.social,US Sport,us_sport,false +OurSkyHaven,newsmast.social,Visual Arts,visual_arts,false +sheckmo,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false +sheckmo,newsmast.social,Climate change,climate_change,true +sheckmo,newsmast.social,Energy & Pollution,energy_pollution,false +sheckmo,newsmast.social,Environment,environment,false +sheckmo,newsmast.social,Science,science,false +sheckmo,newsmast.social,US Politics,us_politics,false +mariana_b,newsmast.social,Nature & Wildlife,nature_wildlife,false +mariana_b,newsmast.social,Government & Policy,government_policy,false +mariana_b,newsmast.social,Movies,movies,false +mariana_b,newsmast.social,Philosophy,philosophy,false +mariana_b,newsmast.social,Activism & Civil Rights,activism_civil_rights,false +mariana_b,newsmast.social,LGBTQ+,lgbtq,false +mariana_b,newsmast.social,Journalism & Comment,news_comment_data,true +mariana_b,newsmast.social,Travel,travel,false +mariana_b,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false +mariana_b,newsmast.social,History,history,false +mariana_b,newsmast.social,Pets,pets,false +mariana_b,newsmast.social,Politics,politics,false +mariana_b,newsmast.social,Social Sciences,social_sciences,false +mariana_b,newsmast.social,Books & Literature,books_literature,false +mariana_b,newsmast.social,Music,music,false +mariana_b,newsmast.social,Markets & Finance,markets_finance,false +mariana_b,newsmast.social,Breaking News,breaking_news,false +mariana_b,newsmast.social,AI,ai,false +mariana_b,newsmast.social,Climate change,climate_change,false +mariana_b,newsmast.social,Biology,biology,false +mariana_b,newsmast.social,Chemistry,chemistry,false +mariana_b,newsmast.social,Physics,physics,false +mariana_b,newsmast.social,Business,business,false +mariana_b,newsmast.social,Black Voices,black_voices,false +mariana_b,newsmast.social,Ukraine Invasion,ukraine_invasion,false +mariana_b,newsmast.social,Technology,technology,false +mariana_b,newsmast.social,Women’s Voices,women_voices,false +mariana_b,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false +mariana_b,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false +mariana_b,newsmast.social,Football,football,false +mariana_b,newsmast.social,Food & Drink,food_drink,false +mariana_b,newsmast.social,Space,space,false +mariana_b,newsmast.social,Healthcare,healthcare,false +mariana_b,newsmast.social,Academia & Research,academia_research,false +mariana_b,newsmast.social,Weather,weather,false +Douglas_1,newsmast.social,Breaking News,breaking_news,false +Douglas_1,newsmast.social,Nature & Wildlife,nature_wildlife,false +Douglas_1,newsmast.social,Pets,pets,true +Douglas_1,newsmast.social,Travel,travel,false +Douglas_1,newsmast.social,Weather,weather,false +heartlandnews,newsmast.social,Academia & Research,academia_research,false +heartlandnews,newsmast.social,Activism & Civil Rights,activism_civil_rights,false +heartlandnews,newsmast.social,AI,ai,false +heartlandnews,newsmast.social,Architecture & Design,architecture_design,false +heartlandnews,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false +heartlandnews,newsmast.social,Biology,biology,false +heartlandnews,newsmast.social,Black Voices,black_voices,false +heartlandnews,newsmast.social,Books & Literature,books_literature,false +heartlandnews,newsmast.social,Breaking News,breaking_news,false +heartlandnews,newsmast.social,Business,business,false +heartlandnews,newsmast.social,Chemistry,chemistry,false +heartlandnews,newsmast.social,Climate change,climate_change,false +heartlandnews,newsmast.social,Creative Arts,creative_arts,false +heartlandnews,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +heartlandnews,newsmast.social,Disabled Voices,disabled_voices,false +heartlandnews,newsmast.social,Energy & Pollution,energy_pollution,false +heartlandnews,newsmast.social,Engineering,engineering,false +heartlandnews,newsmast.social,Environment,environment,false +heartlandnews,newsmast.social,Food & Drink,food_drink,false +heartlandnews,newsmast.social,Football,football,false +heartlandnews,newsmast.social,Gaming,gaming,false +heartlandnews,newsmast.social,Government & Policy,government_policy,false +heartlandnews,newsmast.social,Healthcare,healthcare,false +heartlandnews,newsmast.social,History,history,false +heartlandnews,newsmast.social,Humanities,humanities,false +heartlandnews,newsmast.social,Humour,humour,false +heartlandnews,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false +heartlandnews,newsmast.social,Immigrants Rights,immigrants_rights,false +heartlandnews,newsmast.social,Indigenous Peoples,indigenous_peoples,false +heartlandnews,newsmast.social,Law & Justice,law_justice,false +heartlandnews,newsmast.social,LGBTQ+,lgbtq,false +heartlandnews,newsmast.social,Markets & Finance,markets_finance,false +heartlandnews,newsmast.social,Mathematics,mathematics,false +heartlandnews,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false +heartlandnews,newsmast.social,Movies,movies,false +heartlandnews,newsmast.social,Music,music,false +heartlandnews,newsmast.social,Nature & Wildlife,nature_wildlife,false +heartlandnews,newsmast.social,Journalism & Comment,news_comment_data,true +heartlandnews,newsmast.social,Performing Arts,performing_arts,false +heartlandnews,newsmast.social,Pets,pets,false +heartlandnews,newsmast.social,Philosophy,philosophy,false +heartlandnews,newsmast.social,Photography,photography,false +heartlandnews,newsmast.social,Physics,physics,false +heartlandnews,newsmast.social,Politics,politics,false +heartlandnews,newsmast.social,Poverty & Inequality,poverty_inequality,false +heartlandnews,newsmast.social,Programming,programming,false +heartlandnews,newsmast.social,Puzzles,puzzles,false +heartlandnews,newsmast.social,Science,science,false +heartlandnews,newsmast.social,Social Media,social_media,false +heartlandnews,newsmast.social,Social Sciences,social_sciences,false +heartlandnews,newsmast.social,Space,space,false +heartlandnews,newsmast.social,Sport,sport,false +heartlandnews,newsmast.social,Technology,technology,false +heartlandnews,newsmast.social,Travel,travel,false +heartlandnews,newsmast.social,TV & Radio,tv_radio,false +heartlandnews,newsmast.social,Ukraine Invasion,ukraine_invasion,false +heartlandnews,newsmast.social,US Politics,us_politics,false +heartlandnews,newsmast.social,US Sport,us_sport,false +heartlandnews,newsmast.social,Visual Arts,visual_arts,false +heartlandnews,newsmast.social,Weather,weather,false +heartlandnews,newsmast.social,Women’s Voices,women_voices,false +heartlandnews,newsmast.social,Workers Rights,workers_rights,false +rydercashnews,newsmast.social,Activism & Civil Rights,activism_civil_rights,false +rydercashnews,newsmast.social,AI,ai,false +rydercashnews,newsmast.social,Engineering,engineering,false +rydercashnews,newsmast.social,Law & Justice,law_justice,true +rydercashnews,newsmast.social,Programming,programming,false +rydercashnews,newsmast.social,Technology,technology,false +DaMontayyer,newsmast.social,Academia & Research,academia_research,false +DaMontayyer,newsmast.social,Architecture & Design,architecture_design,false +DaMontayyer,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false +DaMontayyer,newsmast.social,Climate change,climate_change,false +DaMontayyer,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +DaMontayyer,newsmast.social,Disabled Voices,disabled_voices,false +DaMontayyer,newsmast.social,Energy & Pollution,energy_pollution,false +DaMontayyer,newsmast.social,Environment,environment,false +DaMontayyer,newsmast.social,Football,football,true +DaMontayyer,newsmast.social,Gaming,gaming,false +DaMontayyer,newsmast.social,Government & Policy,government_policy,false +DaMontayyer,newsmast.social,Healthcare,healthcare,false +DaMontayyer,newsmast.social,History,history,false +DaMontayyer,newsmast.social,Immigrants Rights,immigrants_rights,false +DaMontayyer,newsmast.social,LGBTQ+,lgbtq,false +DaMontayyer,newsmast.social,Movies,movies,false +DaMontayyer,newsmast.social,Music,music,false +DaMontayyer,newsmast.social,Politics,politics,false +DaMontayyer,newsmast.social,Programming,programming,false +DaMontayyer,newsmast.social,Sport,sport,false +DaMontayyer,newsmast.social,Technology,technology,false +DaMontayyer,newsmast.social,TV & Radio,tv_radio,false +DaMontayyer,newsmast.social,US Politics,us_politics,false +DaMontayyer,newsmast.social,US Sport,us_sport,false +DaMontayyer,newsmast.social,Visual Arts,visual_arts,false +DaMontayyer,newsmast.social,Women’s Voices,women_voices,false +markus,newsmast.social,AI,ai,true +markus,newsmast.social,Creative Arts,creative_arts,false +markus,newsmast.social,Engineering,engineering,false +markus,newsmast.social,Science,science,false +markus,newsmast.social,Technology,technology,false +lasp,newsmast.social,Academia & Research,academia_research,false +lasp,newsmast.social,AI,ai,false +lasp,newsmast.social,Architecture & Design,architecture_design,false +lasp,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false +lasp,newsmast.social,Books & Literature,books_literature,false +lasp,newsmast.social,Breaking News,breaking_news,false +lasp,newsmast.social,Climate change,climate_change,false +lasp,newsmast.social,Creative Arts,creative_arts,false +lasp,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +lasp,newsmast.social,Environment,environment,false +lasp,newsmast.social,Humanities,humanities,false +lasp,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false +lasp,newsmast.social,Movies,movies,false +lasp,newsmast.social,Music,music,false +lasp,newsmast.social,Journalism & Comment,news_comment_data,true +lasp,newsmast.social,Philosophy,philosophy,false +lasp,newsmast.social,Social Sciences,social_sciences,false +lasp,newsmast.social,Visual Arts,visual_arts,false +Dade_Murphy,newsmast.social,Technology,technology,true +Dade_Murphy,newsmast.social,Breaking News,breaking_news,false +DFLS,newsmast.social,Architecture & Design,architecture_design,false +DFLS,newsmast.social,Books & Literature,books_literature,false +DFLS,newsmast.social,Breaking News,breaking_news,false +DFLS,newsmast.social,Business,business,true +DFLS,newsmast.social,Creative Arts,creative_arts,false +DFLS,newsmast.social,Food & Drink,food_drink,false +DFLS,newsmast.social,Gaming,gaming,false +DFLS,newsmast.social,Humour,humour,false +DFLS,newsmast.social,Markets & Finance,markets_finance,false +DFLS,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false +DFLS,newsmast.social,Movies,movies,false +DFLS,newsmast.social,Music,music,false +DFLS,newsmast.social,Nature & Wildlife,nature_wildlife,false +DFLS,newsmast.social,Journalism & Comment,news_comment_data,false +DFLS,newsmast.social,Performing Arts,performing_arts,false +DFLS,newsmast.social,Pets,pets,false +DFLS,newsmast.social,Photography,photography,false +DFLS,newsmast.social,Puzzles,puzzles,false +DFLS,newsmast.social,Social Media,social_media,false +DFLS,newsmast.social,Travel,travel,false +DFLS,newsmast.social,TV & Radio,tv_radio,false +DFLS,newsmast.social,Ukraine Invasion,ukraine_invasion,false +DFLS,newsmast.social,Visual Arts,visual_arts,false +DFLS,newsmast.social,Weather,weather,false +DFLS,newsmast.social,Workers Rights,workers_rights,false +PB51,newsmast.social,Books & Literature,books_literature,true +PB51,newsmast.social,Climate change,climate_change,false +PB51,newsmast.social,Environment,environment,false +PB51,newsmast.social,US Politics,us_politics,false +PB51,newsmast.social,US Sport,us_sport,false +desire2undrstnd,newsmast.social,AI,ai,false +desire2undrstnd,newsmast.social,Football,football,false +desire2undrstnd,newsmast.social,Humour,humour,false +desire2undrstnd,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false +desire2undrstnd,newsmast.social,Technology,technology,true +desire2undrstnd,newsmast.social,US Sport,us_sport,false +toyin,newsmast.social,Activism & Civil Rights,activism_civil_rights,false +toyin,newsmast.social,Breaking News,breaking_news,false +toyin,newsmast.social,Disabled Voices,disabled_voices,false +toyin,newsmast.social,History,history,false +toyin,newsmast.social,Humanities,humanities,false +toyin,newsmast.social,Immigrants Rights,immigrants_rights,false +toyin,newsmast.social,Indigenous Peoples,indigenous_peoples,false +toyin,newsmast.social,LGBTQ+,lgbtq,false +toyin,newsmast.social,Journalism & Comment,news_comment_data,false +toyin,newsmast.social,Philosophy,philosophy,false +toyin,newsmast.social,Social Media,social_media,false +toyin,newsmast.social,Social Sciences,social_sciences,false +toyin,newsmast.social,Women’s Voices,women_voices,false +toyin,newsmast.social,Black Voices,black_voices,true +navayan,newsmast.social,Breaking News,breaking_news,true +navayan,newsmast.social,Journalism & Comment,news_comment_data,false +navayan,newsmast.social,Social Media,social_media,false +navayan,newsmast.social,Ukraine Invasion,ukraine_invasion,false +navayan,newsmast.social,Weather,weather,false +param_21,newsmast.social,Academia & Research,academia_research,false +param_21,newsmast.social,Breaking News,breaking_news,false +param_21,newsmast.social,Business,business,false +param_21,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +param_21,newsmast.social,Football,football,false +param_21,newsmast.social,Government & Policy,government_policy,false +param_21,newsmast.social,Humour,humour,false +param_21,newsmast.social,Law & Justice,law_justice,false +param_21,newsmast.social,Markets & Finance,markets_finance,true +param_21,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false +param_21,newsmast.social,Pets,pets,false +param_21,newsmast.social,Philosophy,philosophy,false +param_21,newsmast.social,Puzzles,puzzles,false +beta_123,newsmast.social,Breaking News,breaking_news,false +beta_123,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +beta_123,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false +beta_123,newsmast.social,Journalism & Comment,news_comment_data,false +beta_123,newsmast.social,Poverty & Inequality,poverty_inequality,true +beta_123,newsmast.social,Ukraine Invasion,ukraine_invasion,false +beta_123,newsmast.social,Weather,weather,false +beta_123,newsmast.social,Social Media,social_media,false +beta_123,newsmast.social,Indigenous Peoples,indigenous_peoples,false +Karia,newsmast.social,Pets,pets,false +Karia,newsmast.social,Philosophy,philosophy,false +Karia,newsmast.social,Academia & Research,academia_research,false +Karia,newsmast.social,AI,ai,false +Karia,newsmast.social,Creative Arts,creative_arts,false +Karia,newsmast.social,Engineering,engineering,false +Karia,newsmast.social,Food & Drink,food_drink,true +Karia,newsmast.social,Government & Policy,government_policy,false +Karia,newsmast.social,Healthcare,healthcare,false +Karia,newsmast.social,History,history,false +Karia,newsmast.social,Humanities,humanities,false +Karia,newsmast.social,Humour,humour,false +Karia,newsmast.social,Law & Justice,law_justice,false +Karia,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false +Karia,newsmast.social,Nature & Wildlife,nature_wildlife,false +Karia,newsmast.social,Politics,politics,false +Karia,newsmast.social,Programming,programming,false +Karia,newsmast.social,Puzzles,puzzles,false +Karia,newsmast.social,Social Sciences,social_sciences,false +Karia,newsmast.social,Technology,technology,false +Karia,newsmast.social,Travel,travel,false +Karia,newsmast.social,US Politics,us_politics,false +hfodndnd,newsmast.social,Activism & Civil Rights,activism_civil_rights,false +hfodndnd,newsmast.social,Black Voices,black_voices,false +hfodndnd,newsmast.social,Disabled Voices,disabled_voices,false +hfodndnd,newsmast.social,Immigrants Rights,immigrants_rights,false +hfodndnd,newsmast.social,Indigenous Peoples,indigenous_peoples,true +hfodndnd,newsmast.social,LGBTQ+,lgbtq,false +hfodndnd,newsmast.social,Women’s Voices,women_voices,false +reubenwr,newsmast.social,Activism & Civil Rights,activism_civil_rights,false +reubenwr,newsmast.social,Books & Literature,books_literature,false +reubenwr,newsmast.social,History,history,false +reubenwr,newsmast.social,Humanities,humanities,false +reubenwr,newsmast.social,Immigrants Rights,immigrants_rights,false +reubenwr,newsmast.social,Movies,movies,true +reubenwr,newsmast.social,Philosophy,philosophy,false +JenniferLawson,newsmast.social,Energy & Pollution,energy_pollution,false +JenniferLawson,newsmast.social,Books & Literature,books_literature,false +JenniferLawson,newsmast.social,History,history,false +JenniferLawson,newsmast.social,Humanities,humanities,true +JenniferLawson,newsmast.social,Philosophy,philosophy,false +JenniferLawson,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false +JenniferLawson,newsmast.social,Climate change,climate_change,false +JenniferLawson,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +JenniferLawson,newsmast.social,Disabled Voices,disabled_voices,false +JenniferLawson,newsmast.social,Environment,environment,false +JenniferLawson,newsmast.social,Government & Policy,government_policy,false +JenniferLawson,newsmast.social,Healthcare,healthcare,false +JenniferLawson,newsmast.social,Immigrants Rights,immigrants_rights,false +JenniferLawson,newsmast.social,Indigenous Peoples,indigenous_peoples,false +JenniferLawson,newsmast.social,Law & Justice,law_justice,false +JenniferLawson,newsmast.social,LGBTQ+,lgbtq,false +JenniferLawson,newsmast.social,Mathematics,mathematics,false +JenniferLawson,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false +JenniferLawson,newsmast.social,Journalism & Comment,news_comment_data,false +JenniferLawson,newsmast.social,Physics,physics,false +JenniferLawson,newsmast.social,Politics,politics,false +JenniferLawson,newsmast.social,Science,science,false +JenniferLawson,newsmast.social,Social Sciences,social_sciences,false +JenniferLawson,newsmast.social,Weather,weather,false +JenniferLawson,newsmast.social,Women’s Voices,women_voices,false +JenniferLawson,newsmast.social,Workers Rights,workers_rights,false +JenniferLawson,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false +JenniferLawson,newsmast.social,Poverty & Inequality,poverty_inequality,false +JHBernstein,newsmast.social,Academia & Research,academia_research,false +JHBernstein,newsmast.social,Architecture & Design,architecture_design,true +JHBernstein,newsmast.social,Biology,biology,false +JHBernstein,newsmast.social,Books & Literature,books_literature,false +JHBernstein,newsmast.social,Chemistry,chemistry,false +JHBernstein,newsmast.social,Climate change,climate_change,false +JHBernstein,newsmast.social,Environment,environment,false +JHBernstein,newsmast.social,Gaming,gaming,false +JHBernstein,newsmast.social,History,history,false +JHBernstein,newsmast.social,Humanities,humanities,false +JHBernstein,newsmast.social,Law & Justice,law_justice,false +JHBernstein,newsmast.social,Mathematics,mathematics,false +JHBernstein,newsmast.social,Movies,movies,false +JHBernstein,newsmast.social,Music,music,false +JHBernstein,newsmast.social,Performing Arts,performing_arts,false +JHBernstein,newsmast.social,Philosophy,philosophy,false +JHBernstein,newsmast.social,Photography,photography,false +JHBernstein,newsmast.social,Physics,physics,false +JHBernstein,newsmast.social,Politics,politics,false +JHBernstein,newsmast.social,Science,science,false +JHBernstein,newsmast.social,Social Sciences,social_sciences,false +JHBernstein,newsmast.social,Space,space,false +JHBernstein,newsmast.social,TV & Radio,tv_radio,false +JHBernstein,newsmast.social,US Politics,us_politics,false +JHBernstein,newsmast.social,Visual Arts,visual_arts,false +ppt556,newsmast.social,AI,ai,false +ppt556,newsmast.social,Breaking News,breaking_news,false +ppt556,newsmast.social,Engineering,engineering,false +ppt556,newsmast.social,Football,football,true +ppt556,newsmast.social,Journalism & Comment,news_comment_data,false +ppt556,newsmast.social,Programming,programming,false +ppt556,newsmast.social,Social Media,social_media,false +ppt556,newsmast.social,Technology,technology,false +ppt556,newsmast.social,Ukraine Invasion,ukraine_invasion,false +ppt556,newsmast.social,US Sport,us_sport,false +ppt556,newsmast.social,Weather,weather,false +kaunglay,newsmast.social,Engineering,engineering,true +finserving,newsmast.social,Academia & Research,academia_research,false +finserving,newsmast.social,AI,ai,false +finserving,newsmast.social,Business,business,false +finserving,newsmast.social,Engineering,engineering,false +finserving,newsmast.social,Government & Policy,government_policy,false +finserving,newsmast.social,Healthcare,healthcare,false +finserving,newsmast.social,Law & Justice,law_justice,false +finserving,newsmast.social,Markets & Finance,markets_finance,true +finserving,newsmast.social,Politics,politics,false +finserving,newsmast.social,Programming,programming,false +finserving,newsmast.social,Technology,technology,false +finserving,newsmast.social,US Politics,us_politics,false +finserving,newsmast.social,Workers Rights,workers_rights,false +sophia_robeet,newsmast.social,Business,business,false +sophia_robeet,newsmast.social,Government & Policy,government_policy,false +sophia_robeet,newsmast.social,Science,science,false +sophia_robeet,newsmast.social,Sport,sport,false +sophia_robeet,newsmast.social,Technology,technology,true +canvasoul,newsmast.social,Humanities,humanities,false +canvasoul,newsmast.social,Music,music,false +canvasoul,newsmast.social,Philosophy,philosophy,false +canvasoul,newsmast.social,Photography,photography,true +canvasoul,newsmast.social,Space,space,false +sean,newsmast.social,Activism & Civil Rights,activism_civil_rights,false +sean,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false +sean,newsmast.social,Biology,biology,false +sean,newsmast.social,Books & Literature,books_literature,false +sean,newsmast.social,Climate change,climate_change,false +sean,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +sean,newsmast.social,Energy & Pollution,energy_pollution,false +sean,newsmast.social,Environment,environment,false +sean,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false +sean,newsmast.social,Indigenous Peoples,indigenous_peoples,false +sean,newsmast.social,LGBTQ+,lgbtq,false +sean,newsmast.social,Movies,movies,false +sean,newsmast.social,Music,music,false +sean,newsmast.social,Photography,photography,false +sean,newsmast.social,Poverty & Inequality,poverty_inequality,false +sean,newsmast.social,Science,science,false +sean,newsmast.social,Space,space,false +sean,newsmast.social,Sport,sport,false +sean,newsmast.social,Technology,technology,false +sean,newsmast.social,Visual Arts,visual_arts,false +sean,newsmast.social,Journalism & Comment,news_comment_data,true +sean,newsmast.social,Breaking News,breaking_news,false +sean,newsmast.social,Healthcare,healthcare,false +sean,newsmast.social,Academia & Research,academia_research,false +sean,newsmast.social,Workers Rights,workers_rights,false +sean,newsmast.social,Food & Drink,food_drink,false +sean,newsmast.social,Humour,humour,false +sean,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false +sean,newsmast.social,Travel,travel,false +sean,newsmast.social,Creative Arts,creative_arts,false +sean,newsmast.social,Law & Justice,law_justice,false +sean,newsmast.social,Philosophy,philosophy,false +sean,newsmast.social,History,history,false +sean,newsmast.social,Social Sciences,social_sciences,false +sean,newsmast.social,Humanities,humanities,false +sean,newsmast.social,Nature & Wildlife,nature_wildlife,false +sean,newsmast.social,Pets,pets,false +kijekijikokwe,newsmast.social,Academia & Research,academia_research,false +kijekijikokwe,newsmast.social,Activism & Civil Rights,activism_civil_rights,false +kijekijikokwe,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +kijekijikokwe,newsmast.social,Disabled Voices,disabled_voices,false +kijekijikokwe,newsmast.social,Healthcare,healthcare,false +kijekijikokwe,newsmast.social,Indigenous Peoples,indigenous_peoples,true +kijekijikokwe,newsmast.social,Law & Justice,law_justice,false +kijekijikokwe,newsmast.social,LGBTQ+,lgbtq,false +TheBestLeiya,newsmast.social,Activism & Civil Rights,activism_civil_rights,false +TheBestLeiya,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false +TheBestLeiya,newsmast.social,Breaking News,breaking_news,false +TheBestLeiya,newsmast.social,Climate change,climate_change,false +TheBestLeiya,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +TheBestLeiya,newsmast.social,Disabled Voices,disabled_voices,false +TheBestLeiya,newsmast.social,Energy & Pollution,energy_pollution,false +TheBestLeiya,newsmast.social,Environment,environment,false +TheBestLeiya,newsmast.social,Healthcare,healthcare,false +TheBestLeiya,newsmast.social,Humanities,humanities,false +TheBestLeiya,newsmast.social,LGBTQ+,lgbtq,true +TheBestLeiya,newsmast.social,Journalism & Comment,news_comment_data,false +TheBestLeiya,newsmast.social,Politics,politics,false +TheBestLeiya,newsmast.social,Poverty & Inequality,poverty_inequality,false +TheBestLeiya,newsmast.social,Social Sciences,social_sciences,false +TheBestLeiya,newsmast.social,Women’s Voices,women_voices,false +bobo,newsmast.social,Activism & Civil Rights,activism_civil_rights,false +bobo,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false +bobo,newsmast.social,Biology,biology,false +bobo,newsmast.social,Black Voices,black_voices,false +bobo,newsmast.social,Breaking News,breaking_news,true +bobo,newsmast.social,Business,business,false +bobo,newsmast.social,Chemistry,chemistry,false +bobo,newsmast.social,Climate change,climate_change,false +bobo,newsmast.social,Creative Arts,creative_arts,false +bobo,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +bobo,newsmast.social,Disabled Voices,disabled_voices,false +bobo,newsmast.social,Energy & Pollution,energy_pollution,false +bobo,newsmast.social,Environment,environment,false +bobo,newsmast.social,Food & Drink,food_drink,false +bobo,newsmast.social,Football,football,false +bobo,newsmast.social,History,history,false +bobo,newsmast.social,Humanities,humanities,false +bobo,newsmast.social,Humour,humour,false +bobo,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false +bobo,newsmast.social,Immigrants Rights,immigrants_rights,false +bobo,newsmast.social,Indigenous Peoples,indigenous_peoples,false +bobo,newsmast.social,LGBTQ+,lgbtq,false +bobo,newsmast.social,Markets & Finance,markets_finance,false +bobo,newsmast.social,Mathematics,mathematics,false +bobo,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false +bobo,newsmast.social,Nature & Wildlife,nature_wildlife,false +bobo,newsmast.social,Journalism & Comment,news_comment_data,false +bobo,newsmast.social,Pets,pets,false +bobo,newsmast.social,Philosophy,philosophy,false +bobo,newsmast.social,Physics,physics,false +bobo,newsmast.social,Poverty & Inequality,poverty_inequality,false +bobo,newsmast.social,Puzzles,puzzles,false +bobo,newsmast.social,Science,science,false +bobo,newsmast.social,Social Media,social_media,false +bobo,newsmast.social,Social Sciences,social_sciences,false +bobo,newsmast.social,Space,space,false +bobo,newsmast.social,Sport,sport,false +bobo,newsmast.social,Travel,travel,false +bobo,newsmast.social,Ukraine Invasion,ukraine_invasion,false +bobo,newsmast.social,US Sport,us_sport,false +bobo,newsmast.social,Weather,weather,false +bobo,newsmast.social,Women’s Voices,women_voices,false +bobo,newsmast.social,Workers Rights,workers_rights,false +johndonald,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false +johndonald,newsmast.social,History,history,false +johndonald,newsmast.social,Humanities,humanities,false +johndonald,newsmast.social,Philosophy,philosophy,false +johndonald,newsmast.social,Social Sciences,social_sciences,true +flipflop,newsmast.social,Humour,humour,false +flipflop,newsmast.social,Mathematics,mathematics,false +flipflop,newsmast.social,Physics,physics,false +flipflop,newsmast.social,Puzzles,puzzles,true +flipflop,newsmast.social,Science,science,false +flipflop,newsmast.social,Space,space,false +flipflop,newsmast.social,Technology,technology,false +flipflop,newsmast.social,TV & Radio,tv_radio,false +flipflop,newsmast.social,Breaking News,breaking_news,false +TheTravelBunny,newsmast.social,Architecture & Design,architecture_design,false +TheTravelBunny,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false +TheTravelBunny,newsmast.social,Books & Literature,books_literature,false +TheTravelBunny,newsmast.social,Environment,environment,false +TheTravelBunny,newsmast.social,Food & Drink,food_drink,false +TheTravelBunny,newsmast.social,Nature & Wildlife,nature_wildlife,false +TheTravelBunny,newsmast.social,Photography,photography,false +TheTravelBunny,newsmast.social,Travel,travel,true +BostonAbrams,newsmast.social,History,history,false +BostonAbrams,newsmast.social,Humanities,humanities,false +BostonAbrams,newsmast.social,Journalism & Comment,news_comment_data,false +BostonAbrams,newsmast.social,Philosophy,philosophy,false +BostonAbrams,newsmast.social,Social Media,social_media,false +BostonAbrams,newsmast.social,Breaking News,breaking_news,true +BostonAbrams,newsmast.social,Space,space,false +BostonAbrams,newsmast.social,Science,science,false +BostonAbrams,newsmast.social,Books & Literature,books_literature,false +BostonAbrams,newsmast.social,Food & Drink,food_drink,false +BostonAbrams,newsmast.social,Puzzles,puzzles,false +FamilyFunTravel,newsmast.social,Football,football,false +FamilyFunTravel,newsmast.social,Immigrants Rights,immigrants_rights,false +FamilyFunTravel,newsmast.social,Sport,sport,false +FamilyFunTravel,newsmast.social,US Sport,us_sport,false +FamilyFunTravel,newsmast.social,Women’s Voices,women_voices,true +vmatt,newsmast.social,Activism & Civil Rights,activism_civil_rights,false +vmatt,newsmast.social,AI,ai,false +vmatt,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +vmatt,newsmast.social,Engineering,engineering,false +vmatt,newsmast.social,Football,football,false +vmatt,newsmast.social,Humanities,humanities,false +vmatt,newsmast.social,LGBTQ+,lgbtq,false +vmatt,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false +vmatt,newsmast.social,Movies,movies,false +vmatt,newsmast.social,Music,music,false +vmatt,newsmast.social,Journalism & Comment,news_comment_data,false +vmatt,newsmast.social,Philosophy,philosophy,false +vmatt,newsmast.social,Programming,programming,false +vmatt,newsmast.social,Puzzles,puzzles,false +vmatt,newsmast.social,Social Sciences,social_sciences,false +vmatt,newsmast.social,Technology,technology,false +vmatt,newsmast.social,Travel,travel,false +vmatt,newsmast.social,TV & Radio,tv_radio,false +vmatt,newsmast.social,Visual Arts,visual_arts,false +vmatt,newsmast.social,Books & Literature,books_literature,true +tomo,newsmast.social,Music,music,false +tomo,newsmast.social,Social Media,social_media,true +tomo,newsmast.social,Sport,sport,false +tomo,newsmast.social,Technology,technology,false +tomo,newsmast.social,TV & Radio,tv_radio,false +tomo,newsmast.social,Weather,weather,false +drbradtucker,newsmast.social,AI,ai,false +drbradtucker,newsmast.social,Physics,physics,false +drbradtucker,newsmast.social,Science,science,false +drbradtucker,newsmast.social,Social Sciences,social_sciences,false +drbradtucker,newsmast.social,Space,space,true +Maily,newsmast.social,AI,ai,false +Maily,newsmast.social,Movies,movies,false +Maily,newsmast.social,Music,music,false +Maily,newsmast.social,Technology,technology,false +Maily,newsmast.social,Women’s Voices,women_voices,true +MattSaltmarsh,newsmast.social,Breaking News,breaking_news,true +MattSaltmarsh,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +MattSaltmarsh,newsmast.social,Government & Policy,government_policy,false +MattSaltmarsh,newsmast.social,Journalism & Comment,news_comment_data,false +MattSaltmarsh,newsmast.social,Politics,politics,false +Elioz,newsmast.social,Activism & Civil Rights,activism_civil_rights,false +Elioz,newsmast.social,AI,ai,false +Elioz,newsmast.social,Architecture & Design,architecture_design,false +Elioz,newsmast.social,Black Voices,black_voices,false +Elioz,newsmast.social,Books & Literature,books_literature,false +Elioz,newsmast.social,Breaking News,breaking_news,false +Elioz,newsmast.social,Business,business,false +Elioz,newsmast.social,Engineering,engineering,false +Elioz,newsmast.social,Environment,environment,false +Elioz,newsmast.social,Humour,humour,false +Elioz,newsmast.social,LGBTQ+,lgbtq,false +Elioz,newsmast.social,Movies,movies,false +Elioz,newsmast.social,Music,music,false +Elioz,newsmast.social,Performing Arts,performing_arts,false +Elioz,newsmast.social,Pets,pets,false +Elioz,newsmast.social,Photography,photography,false +Elioz,newsmast.social,Programming,programming,false +Elioz,newsmast.social,Technology,technology,false +Elioz,newsmast.social,Travel,travel,false +Elioz,newsmast.social,TV & Radio,tv_radio,false +Elioz,newsmast.social,Ukraine Invasion,ukraine_invasion,false +Elioz,newsmast.social,Visual Arts,visual_arts,false +Elioz,newsmast.social,Creative Arts,creative_arts,true +psthisrocks,newsmast.social,Academia & Research,academia_research,false +psthisrocks,newsmast.social,AI,ai,false +psthisrocks,newsmast.social,Books & Literature,books_literature,false +psthisrocks,newsmast.social,Breaking News,breaking_news,false +psthisrocks,newsmast.social,Business,business,false +psthisrocks,newsmast.social,Creative Arts,creative_arts,false +psthisrocks,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +psthisrocks,newsmast.social,Engineering,engineering,false +psthisrocks,newsmast.social,Food & Drink,food_drink,false +psthisrocks,newsmast.social,Gaming,gaming,false +psthisrocks,newsmast.social,Government & Policy,government_policy,false +psthisrocks,newsmast.social,Healthcare,healthcare,false +psthisrocks,newsmast.social,History,history,false +psthisrocks,newsmast.social,Humanities,humanities,false +psthisrocks,newsmast.social,Humour,humour,false +psthisrocks,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false +psthisrocks,newsmast.social,Law & Justice,law_justice,false +psthisrocks,newsmast.social,Markets & Finance,markets_finance,false +psthisrocks,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false +psthisrocks,newsmast.social,Movies,movies,false +psthisrocks,newsmast.social,Music,music,false +psthisrocks,newsmast.social,Nature & Wildlife,nature_wildlife,false +psthisrocks,newsmast.social,Journalism & Comment,news_comment_data,false +psthisrocks,newsmast.social,Performing Arts,performing_arts,false +psthisrocks,newsmast.social,Pets,pets,false +psthisrocks,newsmast.social,Philosophy,philosophy,false +psthisrocks,newsmast.social,Photography,photography,false +psthisrocks,newsmast.social,Politics,politics,false +psthisrocks,newsmast.social,Poverty & Inequality,poverty_inequality,false +psthisrocks,newsmast.social,Programming,programming,false +psthisrocks,newsmast.social,Puzzles,puzzles,false +psthisrocks,newsmast.social,Social Media,social_media,false +psthisrocks,newsmast.social,Social Sciences,social_sciences,false +psthisrocks,newsmast.social,Technology,technology,false +psthisrocks,newsmast.social,Travel,travel,false +psthisrocks,newsmast.social,TV & Radio,tv_radio,false +psthisrocks,newsmast.social,Ukraine Invasion,ukraine_invasion,false +psthisrocks,newsmast.social,US Politics,us_politics,false +psthisrocks,newsmast.social,Visual Arts,visual_arts,false +psthisrocks,newsmast.social,Weather,weather,false +psthisrocks,newsmast.social,Workers Rights,workers_rights,false +psthisrocks,newsmast.social,Architecture & Design,architecture_design,true +lime360,newsmast.social,AI,ai,false +lime360,newsmast.social,Breaking News,breaking_news,false +lime360,newsmast.social,Engineering,engineering,false +lime360,newsmast.social,History,history,false +lime360,newsmast.social,Humanities,humanities,false +lime360,newsmast.social,Journalism & Comment,news_comment_data,false +lime360,newsmast.social,Philosophy,philosophy,false +lime360,newsmast.social,Programming,programming,true +lime360,newsmast.social,Social Media,social_media,false +lime360,newsmast.social,Social Sciences,social_sciences,false +lime360,newsmast.social,Technology,technology,false +lime360,newsmast.social,Ukraine Invasion,ukraine_invasion,false +lime360,newsmast.social,Weather,weather,false +ghiachan,newsmast.social,Architecture & Design,architecture_design,false +ghiachan,newsmast.social,Books & Literature,books_literature,false +ghiachan,newsmast.social,Business,business,false +ghiachan,newsmast.social,Creative Arts,creative_arts,false +ghiachan,newsmast.social,Food & Drink,food_drink,false +ghiachan,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false +ghiachan,newsmast.social,Nature & Wildlife,nature_wildlife,false +ghiachan,newsmast.social,Photography,photography,false +ghiachan,newsmast.social,Travel,travel,true +ghiachan,newsmast.social,Visual Arts,visual_arts,false +min_thu,newsmast.social,Activism & Civil Rights,activism_civil_rights,false +min_thu,newsmast.social,Black Voices,black_voices,false +min_thu,newsmast.social,Disabled Voices,disabled_voices,true +min_thu,newsmast.social,Immigrants Rights,immigrants_rights,false +min_thu,newsmast.social,Indigenous Peoples,indigenous_peoples,false +min_thu,newsmast.social,LGBTQ+,lgbtq,false +min_thu,newsmast.social,Women’s Voices,women_voices,false +weatherandradar,newsmast.social,Breaking News,breaking_news,false +weatherandradar,newsmast.social,Climate change,climate_change,false +weatherandradar,newsmast.social,Environment,environment,false +weatherandradar,newsmast.social,Journalism & Comment,news_comment_data,false +weatherandradar,newsmast.social,Weather,weather,true +hannaka,newsmast.social,Nature & Wildlife,nature_wildlife,false +hannaka,newsmast.social,Pets,pets,false +hannaka,newsmast.social,Sport,sport,false +hannaka,newsmast.social,Travel,travel,true +hannaka,newsmast.social,Weather,weather,false +NycciNellis,newsmast.social,Breaking News,breaking_news,true +NycciNellis,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +NycciNellis,newsmast.social,Environment,environment,false +NycciNellis,newsmast.social,Government & Policy,government_policy,false +NycciNellis,newsmast.social,Law & Justice,law_justice,false +NycciNellis,newsmast.social,Journalism & Comment,news_comment_data,false +NycciNellis,newsmast.social,Performing Arts,performing_arts,false +NycciNellis,newsmast.social,Politics,politics,false +NycciNellis,newsmast.social,TV & Radio,tv_radio,false +NycciNellis,newsmast.social,US Politics,us_politics,false +andrzej1,newsmast.social,AI,ai,false +andrzej1,newsmast.social,Architecture & Design,architecture_design,false +andrzej1,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,true +andrzej1,newsmast.social,Books & Literature,books_literature,false +andrzej1,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +andrzej1,newsmast.social,Humanities,humanities,false +andrzej1,newsmast.social,Science,science,false +andrzej1,newsmast.social,Social Sciences,social_sciences,false +Darling,newsmast.social,AI,ai,false +Darling,newsmast.social,Biology,biology,false +Darling,newsmast.social,Chemistry,chemistry,false +Darling,newsmast.social,Engineering,engineering,false +Darling,newsmast.social,Football,football,true +Darling,newsmast.social,Mathematics,mathematics,false +Darling,newsmast.social,Physics,physics,false +Darling,newsmast.social,Programming,programming,false +Darling,newsmast.social,Science,science,false +Darling,newsmast.social,Space,space,false +Darling,newsmast.social,Sport,sport,false +Darling,newsmast.social,Technology,technology,false +Darling,newsmast.social,US Sport,us_sport,false +gayatravel,newsmast.social,Food & Drink,food_drink,false +gayatravel,newsmast.social,Nature & Wildlife,nature_wildlife,false +gayatravel,newsmast.social,Photography,photography,false +gayatravel,newsmast.social,Social Media,social_media,false +gayatravel,newsmast.social,Travel,travel,true +stb,newsmast.social,Academia & Research,academia_research,false +stb,newsmast.social,Activism & Civil Rights,activism_civil_rights,false +stb,newsmast.social,AI,ai,false +stb,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false +stb,newsmast.social,Biology,biology,false +stb,newsmast.social,Black Voices,black_voices,false +stb,newsmast.social,Breaking News,breaking_news,true +stb,newsmast.social,Chemistry,chemistry,false +stb,newsmast.social,Climate change,climate_change,false +stb,newsmast.social,Creative Arts,creative_arts,false +stb,newsmast.social,Disabled Voices,disabled_voices,false +stb,newsmast.social,Energy & Pollution,energy_pollution,false +stb,newsmast.social,Engineering,engineering,false +stb,newsmast.social,Environment,environment,false +stb,newsmast.social,Food & Drink,food_drink,false +stb,newsmast.social,Football,football,false +stb,newsmast.social,Government & Policy,government_policy,false +stb,newsmast.social,Healthcare,healthcare,false +stb,newsmast.social,History,history,false +stb,newsmast.social,Humanities,humanities,false +stb,newsmast.social,Humour,humour,false +stb,newsmast.social,Immigrants Rights,immigrants_rights,false +stb,newsmast.social,Indigenous Peoples,indigenous_peoples,false +stb,newsmast.social,Law & Justice,law_justice,false +stb,newsmast.social,LGBTQ+,lgbtq,false +stb,newsmast.social,Mathematics,mathematics,false +stb,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false +stb,newsmast.social,Nature & Wildlife,nature_wildlife,false +stb,newsmast.social,Journalism & Comment,news_comment_data,false +stb,newsmast.social,Pets,pets,false +stb,newsmast.social,Philosophy,philosophy,false +stb,newsmast.social,Physics,physics,false +stb,newsmast.social,Politics,politics,false +stb,newsmast.social,Programming,programming,false +stb,newsmast.social,Puzzles,puzzles,false +stb,newsmast.social,Science,science,false +stb,newsmast.social,Social Media,social_media,false +stb,newsmast.social,Social Sciences,social_sciences,false +stb,newsmast.social,Space,space,false +stb,newsmast.social,Sport,sport,false +stb,newsmast.social,Technology,technology,false +stb,newsmast.social,Travel,travel,false +stb,newsmast.social,Ukraine Invasion,ukraine_invasion,false +stb,newsmast.social,US Politics,us_politics,false +stb,newsmast.social,US Sport,us_sport,false +stb,newsmast.social,Weather,weather,false +stb,newsmast.social,Women’s Voices,women_voices,false +Birdiana_Jonez,newsmast.social,AI,ai,false +Birdiana_Jonez,newsmast.social,Architecture & Design,architecture_design,false +Birdiana_Jonez,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false +Birdiana_Jonez,newsmast.social,Biology,biology,false +Birdiana_Jonez,newsmast.social,Books & Literature,books_literature,false +Birdiana_Jonez,newsmast.social,Breaking News,breaking_news,true +Birdiana_Jonez,newsmast.social,Chemistry,chemistry,false +Birdiana_Jonez,newsmast.social,Climate change,climate_change,false +Birdiana_Jonez,newsmast.social,Creative Arts,creative_arts,false +Birdiana_Jonez,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +Birdiana_Jonez,newsmast.social,Engineering,engineering,false +Birdiana_Jonez,newsmast.social,Environment,environment,false +Birdiana_Jonez,newsmast.social,Food & Drink,food_drink,false +Birdiana_Jonez,newsmast.social,Government & Policy,government_policy,false +Birdiana_Jonez,newsmast.social,Healthcare,healthcare,false +Birdiana_Jonez,newsmast.social,History,history,false +Birdiana_Jonez,newsmast.social,Humanities,humanities,false +Birdiana_Jonez,newsmast.social,Humour,humour,false +Birdiana_Jonez,newsmast.social,Law & Justice,law_justice,false +Birdiana_Jonez,newsmast.social,Markets & Finance,markets_finance,false +Birdiana_Jonez,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false +Birdiana_Jonez,newsmast.social,Movies,movies,false +Birdiana_Jonez,newsmast.social,Music,music,false +Birdiana_Jonez,newsmast.social,Nature & Wildlife,nature_wildlife,false +Birdiana_Jonez,newsmast.social,Journalism & Comment,news_comment_data,false +Birdiana_Jonez,newsmast.social,Pets,pets,false +Birdiana_Jonez,newsmast.social,Philosophy,philosophy,false +Birdiana_Jonez,newsmast.social,Photography,photography,false +Birdiana_Jonez,newsmast.social,Physics,physics,false +Birdiana_Jonez,newsmast.social,Politics,politics,false +Birdiana_Jonez,newsmast.social,Science,science,false +Birdiana_Jonez,newsmast.social,Social Sciences,social_sciences,false +Birdiana_Jonez,newsmast.social,Space,space,false +Birdiana_Jonez,newsmast.social,Technology,technology,false +Birdiana_Jonez,newsmast.social,Travel,travel,false +Birdiana_Jonez,newsmast.social,Ukraine Invasion,ukraine_invasion,false +Birdiana_Jonez,newsmast.social,Visual Arts,visual_arts,false +Birdiana_Jonez,newsmast.social,Workers Rights,workers_rights,false +Catwisdom,newsmast.social,Creative Arts,creative_arts,true +Catwisdom,newsmast.social,Food & Drink,food_drink,false +Catwisdom,newsmast.social,Humour,humour,false +Catwisdom,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false +Catwisdom,newsmast.social,Nature & Wildlife,nature_wildlife,false +Catwisdom,newsmast.social,Pets,pets,false +Catwisdom,newsmast.social,Travel,travel,false +Tony62Pineview,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false +Tony62Pineview,newsmast.social,Climate change,climate_change,false +Tony62Pineview,newsmast.social,Energy & Pollution,energy_pollution,false +Tony62Pineview,newsmast.social,Environment,environment,true +Tony62Pineview,newsmast.social,Football,football,false +Tony62Pineview,newsmast.social,Humanities,humanities,false +Tony62Pineview,newsmast.social,Music,music,false +Tony62Pineview,newsmast.social,Journalism & Comment,news_comment_data,false +Tony62Pineview,newsmast.social,Performing Arts,performing_arts,false +Tony62Pineview,newsmast.social,TV & Radio,tv_radio,false +Tony62Pineview,newsmast.social,US Sport,us_sport,false +posts,newsmast.social,Breaking News,breaking_news,true +posts,newsmast.social,Journalism & Comment,news_comment_data,false +posts,newsmast.social,Social Media,social_media,false +posts,newsmast.social,Ukraine Invasion,ukraine_invasion,false +posts,newsmast.social,Weather,weather,false +minkhantkyaw350,newsmast.social,AI,ai,false +minkhantkyaw350,newsmast.social,Breaking News,breaking_news,false +minkhantkyaw350,newsmast.social,Technology,technology,false +minkhantkyaw350,newsmast.social,Programming,programming,true +minkhantkyaw350,newsmast.social,Visual Arts,visual_arts,false +minkhantkyaw350,newsmast.social,Architecture & Design,architecture_design,false +minkhantkyaw350,newsmast.social,TV & Radio,tv_radio,false +minkhantkyaw350,newsmast.social,Books & Literature,books_literature,false +minkhantkyaw350,newsmast.social,Photography,photography,false +minkhantkyaw350,newsmast.social,Performing Arts,performing_arts,false +minkhantkyaw350,newsmast.social,Gaming,gaming,false +minkhantkyaw350,newsmast.social,Movies,movies,false +minkhantkyaw350,newsmast.social,Music,music,false +minkhantkyaw350,newsmast.social,Sport,sport,false +minkhantkyaw350,newsmast.social,US Sport,us_sport,false +minkhantkyaw350,newsmast.social,Football,football,false +MetalAddicts,newsmast.social,Gaming,gaming,false +MetalAddicts,newsmast.social,Movies,movies,false +MetalAddicts,newsmast.social,Music,music,true +MetalAddicts,newsmast.social,Performing Arts,performing_arts,false +MetalAddicts,newsmast.social,Visual Arts,visual_arts,false +WJAHOM,newsmast.social,Activism & Civil Rights,activism_civil_rights,false +WJAHOM,newsmast.social,Books & Literature,books_literature,false +WJAHOM,newsmast.social,Climate change,climate_change,false +WJAHOM,newsmast.social,Creative Arts,creative_arts,false +WJAHOM,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +WJAHOM,newsmast.social,Environment,environment,false +WJAHOM,newsmast.social,Food & Drink,food_drink,false +WJAHOM,newsmast.social,Football,football,false +WJAHOM,newsmast.social,History,history,false +WJAHOM,newsmast.social,LGBTQ+,lgbtq,false +WJAHOM,newsmast.social,Mathematics,mathematics,false +WJAHOM,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false +WJAHOM,newsmast.social,Movies,movies,false +WJAHOM,newsmast.social,Music,music,true +WJAHOM,newsmast.social,Nature & Wildlife,nature_wildlife,false +WJAHOM,newsmast.social,Journalism & Comment,news_comment_data,false +WJAHOM,newsmast.social,Performing Arts,performing_arts,false +WJAHOM,newsmast.social,Pets,pets,false +WJAHOM,newsmast.social,Philosophy,philosophy,false +WJAHOM,newsmast.social,Politics,politics,false +WJAHOM,newsmast.social,Puzzles,puzzles,false +WJAHOM,newsmast.social,Science,science,false +WJAHOM,newsmast.social,Social Media,social_media,false +WJAHOM,newsmast.social,TV & Radio,tv_radio,false +WJAHOM,newsmast.social,Women’s Voices,women_voices,false +WJAHOM,newsmast.social,Workers Rights,workers_rights,false +Paxivorian,newsmast.social,AI,ai,false +Paxivorian,newsmast.social,Biology,biology,false +Paxivorian,newsmast.social,Books & Literature,books_literature,false +Paxivorian,newsmast.social,Breaking News,breaking_news,false +Paxivorian,newsmast.social,Chemistry,chemistry,false +Paxivorian,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +Paxivorian,newsmast.social,Engineering,engineering,false +Paxivorian,newsmast.social,Gaming,gaming,false +Paxivorian,newsmast.social,History,history,false +Paxivorian,newsmast.social,Humanities,humanities,false +Paxivorian,newsmast.social,Mathematics,mathematics,false +Paxivorian,newsmast.social,Movies,movies,false +Paxivorian,newsmast.social,Music,music,false +Paxivorian,newsmast.social,Journalism & Comment,news_comment_data,false +Paxivorian,newsmast.social,Performing Arts,performing_arts,false +Paxivorian,newsmast.social,Philosophy,philosophy,false +Paxivorian,newsmast.social,Photography,photography,false +Paxivorian,newsmast.social,Physics,physics,false +Paxivorian,newsmast.social,Programming,programming,false +Paxivorian,newsmast.social,Science,science,false +Paxivorian,newsmast.social,Social Sciences,social_sciences,false +Paxivorian,newsmast.social,Space,space,false +Paxivorian,newsmast.social,Technology,technology,false +Paxivorian,newsmast.social,TV & Radio,tv_radio,false +Paxivorian,newsmast.social,Visual Arts,visual_arts,false +Paxivorian,newsmast.social,Weather,weather,false +Paxivorian,newsmast.social,Architecture & Design,architecture_design,true +Harriett,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false +Harriett,newsmast.social,Biology,biology,false +Harriett,newsmast.social,Breaking News,breaking_news,false +Harriett,newsmast.social,Climate change,climate_change,false +Harriett,newsmast.social,Energy & Pollution,energy_pollution,false +Harriett,newsmast.social,Environment,environment,false +Harriett,newsmast.social,Government & Policy,government_policy,false +Harriett,newsmast.social,Healthcare,healthcare,false +Harriett,newsmast.social,Humanities,humanities,false +Harriett,newsmast.social,Law & Justice,law_justice,false +Harriett,newsmast.social,Journalism & Comment,news_comment_data,false +Harriett,newsmast.social,Politics,politics,true +Harriett,newsmast.social,Science,science,false +Harriett,newsmast.social,Social Media,social_media,false +Harriett,newsmast.social,Social Sciences,social_sciences,false +Harriett,newsmast.social,Ukraine Invasion,ukraine_invasion,false +Harriett,newsmast.social,Weather,weather,false +ymt_12,newsmast.social,Academia & Research,academia_research,true +ymt_12,newsmast.social,Biology,biology,false +ymt_12,newsmast.social,Chemistry,chemistry,false +ymt_12,newsmast.social,Government & Policy,government_policy,false +ymt_12,newsmast.social,Healthcare,healthcare,false +ymt_12,newsmast.social,Law & Justice,law_justice,false +ymt_12,newsmast.social,Mathematics,mathematics,false +ymt_12,newsmast.social,Physics,physics,false +ymt_12,newsmast.social,Politics,politics,false +ymt_12,newsmast.social,Science,science,false +ymt_12,newsmast.social,Space,space,false +ymt_12,newsmast.social,US Politics,us_politics,false +ymt_12,newsmast.social,Journalism & Comment,news_comment_data,false +ymt_12,newsmast.social,Social Media,social_media,false +ymt_12,newsmast.social,Ukraine Invasion,ukraine_invasion,false +ymt_12,newsmast.social,Poverty & Inequality,poverty_inequality,false +ymt_12,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false +ymt_12,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +maique,newsmast.social,Activism & Civil Rights,activism_civil_rights,false +maique,newsmast.social,AI,ai,false +maique,newsmast.social,Architecture & Design,architecture_design,false +maique,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false +maique,newsmast.social,Books & Literature,books_literature,false +maique,newsmast.social,Breaking News,breaking_news,true +maique,newsmast.social,Climate change,climate_change,false +maique,newsmast.social,Creative Arts,creative_arts,false +maique,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +maique,newsmast.social,Energy & Pollution,energy_pollution,false +maique,newsmast.social,Engineering,engineering,false +maique,newsmast.social,Environment,environment,false +maique,newsmast.social,Food & Drink,food_drink,false +maique,newsmast.social,Gaming,gaming,false +maique,newsmast.social,History,history,false +maique,newsmast.social,Humanities,humanities,false +maique,newsmast.social,Humour,humour,false +maique,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false +maique,newsmast.social,LGBTQ+,lgbtq,false +maique,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false +maique,newsmast.social,Movies,movies,false +maique,newsmast.social,Music,music,false +maique,newsmast.social,Nature & Wildlife,nature_wildlife,false +maique,newsmast.social,Journalism & Comment,news_comment_data,false +maique,newsmast.social,Performing Arts,performing_arts,false +maique,newsmast.social,Photography,photography,false +maique,newsmast.social,Politics,politics,false +maique,newsmast.social,Poverty & Inequality,poverty_inequality,false +maique,newsmast.social,Programming,programming,false +maique,newsmast.social,Social Media,social_media,false +maique,newsmast.social,Social Sciences,social_sciences,false +maique,newsmast.social,Space,space,false +maique,newsmast.social,Technology,technology,false +maique,newsmast.social,Travel,travel,false +maique,newsmast.social,TV & Radio,tv_radio,false +maique,newsmast.social,Ukraine Invasion,ukraine_invasion,false +maique,newsmast.social,Visual Arts,visual_arts,false +maique,newsmast.social,Weather,weather,false +maique,newsmast.social,Women’s Voices,women_voices,false +tijoantony,newsmast.social,AI,ai,false +tijoantony,newsmast.social,Breaking News,breaking_news,false +tijoantony,newsmast.social,Business,business,false +tijoantony,newsmast.social,Creative Arts,creative_arts,false +tijoantony,newsmast.social,Engineering,engineering,false +tijoantony,newsmast.social,Food & Drink,food_drink,false +tijoantony,newsmast.social,Football,football,false +tijoantony,newsmast.social,Humour,humour,false +tijoantony,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false +tijoantony,newsmast.social,Nature & Wildlife,nature_wildlife,false +tijoantony,newsmast.social,Journalism & Comment,news_comment_data,false +tijoantony,newsmast.social,Pets,pets,false +tijoantony,newsmast.social,Programming,programming,false +tijoantony,newsmast.social,Puzzles,puzzles,false +tijoantony,newsmast.social,Social Media,social_media,false +tijoantony,newsmast.social,Sport,sport,false +tijoantony,newsmast.social,Technology,technology,true +tijoantony,newsmast.social,Travel,travel,false +tijoantony,newsmast.social,US Sport,us_sport,false +_youssef_0k,newsmast.social,Academia & Research,academia_research,false +_youssef_0k,newsmast.social,Activism & Civil Rights,activism_civil_rights,false +_youssef_0k,newsmast.social,Architecture & Design,architecture_design,false +_youssef_0k,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false +_youssef_0k,newsmast.social,Biology,biology,false +_youssef_0k,newsmast.social,Black Voices,black_voices,false +_youssef_0k,newsmast.social,Books & Literature,books_literature,false +_youssef_0k,newsmast.social,Breaking News,breaking_news,false +_youssef_0k,newsmast.social,Business,business,false +_youssef_0k,newsmast.social,Chemistry,chemistry,false +_youssef_0k,newsmast.social,Climate change,climate_change,false +_youssef_0k,newsmast.social,Creative Arts,creative_arts,false +_youssef_0k,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +_youssef_0k,newsmast.social,Disabled Voices,disabled_voices,false +_youssef_0k,newsmast.social,Energy & Pollution,energy_pollution,false +_youssef_0k,newsmast.social,Engineering,engineering,false +_youssef_0k,newsmast.social,Environment,environment,false +_youssef_0k,newsmast.social,Food & Drink,food_drink,false +_youssef_0k,newsmast.social,Football,football,false +_youssef_0k,newsmast.social,Gaming,gaming,false +_youssef_0k,newsmast.social,Government & Policy,government_policy,false +_youssef_0k,newsmast.social,Healthcare,healthcare,false +_youssef_0k,newsmast.social,History,history,false +_youssef_0k,newsmast.social,Humanities,humanities,false +_youssef_0k,newsmast.social,Humour,humour,false +_youssef_0k,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false +_youssef_0k,newsmast.social,Immigrants Rights,immigrants_rights,false +_youssef_0k,newsmast.social,Indigenous Peoples,indigenous_peoples,false +_youssef_0k,newsmast.social,Law & Justice,law_justice,false +_youssef_0k,newsmast.social,LGBTQ+,lgbtq,false +_youssef_0k,newsmast.social,Markets & Finance,markets_finance,false +_youssef_0k,newsmast.social,Mathematics,mathematics,false +_youssef_0k,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false +_youssef_0k,newsmast.social,Movies,movies,false +_youssef_0k,newsmast.social,Music,music,false +_youssef_0k,newsmast.social,Nature & Wildlife,nature_wildlife,false +_youssef_0k,newsmast.social,Journalism & Comment,news_comment_data,false +_youssef_0k,newsmast.social,Performing Arts,performing_arts,false +_youssef_0k,newsmast.social,Pets,pets,false +_youssef_0k,newsmast.social,Philosophy,philosophy,false +_youssef_0k,newsmast.social,Photography,photography,false +_youssef_0k,newsmast.social,Physics,physics,false +_youssef_0k,newsmast.social,Politics,politics,false +_youssef_0k,newsmast.social,Poverty & Inequality,poverty_inequality,false +_youssef_0k,newsmast.social,Programming,programming,false +_youssef_0k,newsmast.social,Puzzles,puzzles,false +_youssef_0k,newsmast.social,Science,science,false +_youssef_0k,newsmast.social,Social Media,social_media,false +_youssef_0k,newsmast.social,Social Sciences,social_sciences,false +_youssef_0k,newsmast.social,Space,space,false +_youssef_0k,newsmast.social,Sport,sport,false +_youssef_0k,newsmast.social,Technology,technology,false +_youssef_0k,newsmast.social,Travel,travel,false +_youssef_0k,newsmast.social,TV & Radio,tv_radio,false +_youssef_0k,newsmast.social,Ukraine Invasion,ukraine_invasion,false +_youssef_0k,newsmast.social,US Politics,us_politics,false +_youssef_0k,newsmast.social,US Sport,us_sport,false +_youssef_0k,newsmast.social,Visual Arts,visual_arts,false +_youssef_0k,newsmast.social,Weather,weather,false +_youssef_0k,newsmast.social,Women’s Voices,women_voices,false +_youssef_0k,newsmast.social,Workers Rights,workers_rights,false +_youssef_0k,newsmast.social,AI,ai,true +guzz,newsmast.social,Books & Literature,books_literature,false +guzz,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +guzz,newsmast.social,Environment,environment,false +guzz,newsmast.social,Food & Drink,food_drink,false +guzz,newsmast.social,Government & Policy,government_policy,false +guzz,newsmast.social,History,history,false +guzz,newsmast.social,Humanities,humanities,false +guzz,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false +guzz,newsmast.social,Movies,movies,false +guzz,newsmast.social,Music,music,false +guzz,newsmast.social,Journalism & Comment,news_comment_data,false +guzz,newsmast.social,Pets,pets,false +guzz,newsmast.social,Philosophy,philosophy,false +guzz,newsmast.social,Photography,photography,true +guzz,newsmast.social,Politics,politics,false +guzz,newsmast.social,Puzzles,puzzles,false +guzz,newsmast.social,Science,science,false +guzz,newsmast.social,Social Sciences,social_sciences,false +guzz,newsmast.social,Space,space,false +guzz,newsmast.social,Technology,technology,false +guzz,newsmast.social,Travel,travel,false +guzz,newsmast.social,Ukraine Invasion,ukraine_invasion,false +guzz,newsmast.social,Social Media,social_media,false +guzz,newsmast.social,Poverty & Inequality,poverty_inequality,false +guzz,newsmast.social,Healthcare,healthcare,false +guzz,newsmast.social,Business,business,false +guzz,newsmast.social,Workers Rights,workers_rights,false +guzz,newsmast.social,Engineering,engineering,false +guzz,newsmast.social,Chemistry,chemistry,false +guzz,newsmast.social,Gaming,gaming,false +guzz,newsmast.social,Visual Arts,visual_arts,false +guzz,newsmast.social,Creative Arts,creative_arts,false +guzz,newsmast.social,Weather,weather,false +guzz,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false +guzz,newsmast.social,Academia & Research,academia_research,false +guzz,newsmast.social,Markets & Finance,markets_finance,false +guzz,newsmast.social,AI,ai,false +guzz,newsmast.social,Biology,biology,false +guzz,newsmast.social,Mathematics,mathematics,false +guzz,newsmast.social,Physics,physics,false +guzz,newsmast.social,Architecture & Design,architecture_design,false +guzz,newsmast.social,Performing Arts,performing_arts,false +guzz,newsmast.social,TV & Radio,tv_radio,false +guzz,newsmast.social,Sport,sport,false +guzz,newsmast.social,US Sport,us_sport,false +guzz,newsmast.social,Humour,humour,false +guzz,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false +guzz,newsmast.social,Activism & Civil Rights,activism_civil_rights,false +guzz,newsmast.social,Disabled Voices,disabled_voices,false +guzz,newsmast.social,Indigenous Peoples,indigenous_peoples,false +guzz,newsmast.social,Women’s Voices,women_voices,false +guzz,newsmast.social,Climate change,climate_change,false +guzz,newsmast.social,Black Voices,black_voices,false +guzz,newsmast.social,Immigrants Rights,immigrants_rights,false +guzz,newsmast.social,LGBTQ+,lgbtq,false +guzz,newsmast.social,Football,football,false +guzz,newsmast.social,Breaking News,breaking_news,false +transfers,newsmast.social,Breaking News,breaking_news,false +transfers,newsmast.social,Football,football,true +transfers,newsmast.social,Journalism & Comment,news_comment_data,false +transfers,newsmast.social,Social Media,social_media,false +transfers,newsmast.social,Sport,sport,false +PetsMag,newsmast.social,AI,ai,false +PetsMag,newsmast.social,Architecture & Design,architecture_design,false +PetsMag,newsmast.social,Biology,biology,false +PetsMag,newsmast.social,Books & Literature,books_literature,false +PetsMag,newsmast.social,Breaking News,breaking_news,false +PetsMag,newsmast.social,Chemistry,chemistry,false +PetsMag,newsmast.social,Creative Arts,creative_arts,false +PetsMag,newsmast.social,Engineering,engineering,false +PetsMag,newsmast.social,Food & Drink,food_drink,false +PetsMag,newsmast.social,Gaming,gaming,false +PetsMag,newsmast.social,Humour,humour,false +PetsMag,newsmast.social,Mathematics,mathematics,false +PetsMag,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false +PetsMag,newsmast.social,Movies,movies,false +PetsMag,newsmast.social,Music,music,false +PetsMag,newsmast.social,Nature & Wildlife,nature_wildlife,false +PetsMag,newsmast.social,Journalism & Comment,news_comment_data,false +PetsMag,newsmast.social,Performing Arts,performing_arts,false +PetsMag,newsmast.social,Pets,pets,true +PetsMag,newsmast.social,Photography,photography,false +PetsMag,newsmast.social,Science,science,false +PetsMag,newsmast.social,Physics,physics,false +PetsMag,newsmast.social,Programming,programming,false +PetsMag,newsmast.social,Puzzles,puzzles,false +PetsMag,newsmast.social,Social Media,social_media,false +PetsMag,newsmast.social,Space,space,false +PetsMag,newsmast.social,Technology,technology,false +PetsMag,newsmast.social,Travel,travel,false +PetsMag,newsmast.social,TV & Radio,tv_radio,false +PetsMag,newsmast.social,Ukraine Invasion,ukraine_invasion,false +PetsMag,newsmast.social,Visual Arts,visual_arts,false +PetsMag,newsmast.social,Weather,weather,false +Rachael,newsmast.social,Creative Arts,creative_arts,false +Rachael,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,true +Rachael,newsmast.social,Music,music,false +Rachael,newsmast.social,Nature & Wildlife,nature_wildlife,false +Rachael,newsmast.social,Travel,travel,false +Michael_E,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,true +Michael_E,newsmast.social,Environment,environment,false +Michael_E,newsmast.social,History,history,false +Michael_E,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false +Michael_E,newsmast.social,Philosophy,philosophy,false +Michael_E,newsmast.social,Poverty & Inequality,poverty_inequality,false +Michael_E,newsmast.social,Social Sciences,social_sciences,false +TimBlack,newsmast.social,Black Voices,black_voices,false +TimBlack,newsmast.social,Breaking News,breaking_news,false +TimBlack,newsmast.social,Journalism & Comment,news_comment_data,false +TimBlack,newsmast.social,Social Media,social_media,false +TimBlack,newsmast.social,TV & Radio,tv_radio,false +TimBlack,newsmast.social,Politics,politics,true +TheBeeGuy,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false +TheBeeGuy,newsmast.social,Books & Literature,books_literature,false +TheBeeGuy,newsmast.social,Climate change,climate_change,false +TheBeeGuy,newsmast.social,Energy & Pollution,energy_pollution,false +TheBeeGuy,newsmast.social,Environment,environment,true +TheBeeGuy,newsmast.social,Humanities,humanities,false +TheBeeGuy,newsmast.social,Music,music,false +TheBeeGuy,newsmast.social,Performing Arts,performing_arts,false +TheBeeGuy,newsmast.social,Philosophy,philosophy,false +TheBeeGuy,newsmast.social,Photography,photography,false +TheBeeGuy,newsmast.social,Science,science,false +TheBeeGuy,newsmast.social,Breaking News,breaking_news,false +mohammed,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,true +mohammed,newsmast.social,Biology,biology,false +mohammed,newsmast.social,History,history,false +mohammed,newsmast.social,Humanities,humanities,false +mohammed,newsmast.social,Philosophy,philosophy,false +mohammed,newsmast.social,Social Sciences,social_sciences,false +Alomox,newsmast.social,Architecture & Design,architecture_design,true +Alomox,newsmast.social,Books & Literature,books_literature,false +Alomox,newsmast.social,Gaming,gaming,false +Alomox,newsmast.social,Movies,movies,false +Alomox,newsmast.social,Music,music,false +Nil253259,newsmast.social,AI,ai,true +Nil253259,newsmast.social,Business,business,false +Nil253259,newsmast.social,Climate change,climate_change,false +Nil253259,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +Nil253259,newsmast.social,Environment,environment,false +Nil253259,newsmast.social,Science,science,false +Nil253259,newsmast.social,Space,space,false +Nil253259,newsmast.social,Technology,technology,false +theshescribe,newsmast.social,Academia & Research,academia_research,false +theshescribe,newsmast.social,Activism & Civil Rights,activism_civil_rights,false +theshescribe,newsmast.social,Architecture & Design,architecture_design,false +theshescribe,newsmast.social,Black Voices,black_voices,false +theshescribe,newsmast.social,Books & Literature,books_literature,false +theshescribe,newsmast.social,Breaking News,breaking_news,false +theshescribe,newsmast.social,Business,business,false +theshescribe,newsmast.social,Creative Arts,creative_arts,false +theshescribe,newsmast.social,Disabled Voices,disabled_voices,false +theshescribe,newsmast.social,Food & Drink,food_drink,false +theshescribe,newsmast.social,Gaming,gaming,false +theshescribe,newsmast.social,Government & Policy,government_policy,false +theshescribe,newsmast.social,Healthcare,healthcare,false +theshescribe,newsmast.social,History,history,false +theshescribe,newsmast.social,Humanities,humanities,false +theshescribe,newsmast.social,Humour,humour,false +theshescribe,newsmast.social,Immigrants Rights,immigrants_rights,false +theshescribe,newsmast.social,Indigenous Peoples,indigenous_peoples,false +theshescribe,newsmast.social,Law & Justice,law_justice,false +theshescribe,newsmast.social,LGBTQ+,lgbtq,false +theshescribe,newsmast.social,Markets & Finance,markets_finance,false +theshescribe,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false +theshescribe,newsmast.social,Movies,movies,false +theshescribe,newsmast.social,Music,music,false +theshescribe,newsmast.social,Nature & Wildlife,nature_wildlife,false +theshescribe,newsmast.social,Journalism & Comment,news_comment_data,false +theshescribe,newsmast.social,Performing Arts,performing_arts,false +theshescribe,newsmast.social,Pets,pets,false +theshescribe,newsmast.social,Philosophy,philosophy,false +theshescribe,newsmast.social,Photography,photography,false +theshescribe,newsmast.social,Politics,politics,false +theshescribe,newsmast.social,Puzzles,puzzles,false +theshescribe,newsmast.social,Social Media,social_media,false +theshescribe,newsmast.social,Social Sciences,social_sciences,false +theshescribe,newsmast.social,Travel,travel,false +theshescribe,newsmast.social,TV & Radio,tv_radio,false +theshescribe,newsmast.social,Ukraine Invasion,ukraine_invasion,false +theshescribe,newsmast.social,US Politics,us_politics,false +theshescribe,newsmast.social,Visual Arts,visual_arts,false +theshescribe,newsmast.social,Weather,weather,false +theshescribe,newsmast.social,Workers Rights,workers_rights,false +theshescribe,newsmast.social,Women’s Voices,women_voices,true +latif,newsmast.social,AI,ai,false +latif,newsmast.social,Engineering,engineering,false +latif,newsmast.social,Humanities,humanities,false +latif,newsmast.social,Programming,programming,false +latif,newsmast.social,Technology,technology,true +b_o_b_o,newsmast.social,Breaking News,breaking_news,true +b_o_b_o,newsmast.social,Journalism & Comment,news_comment_data,false +b_o_b_o,newsmast.social,Social Media,social_media,false +b_o_b_o,newsmast.social,Ukraine Invasion,ukraine_invasion,false +b_o_b_o,newsmast.social,Weather,weather,false +Lambo,newsmast.social,AI,ai,false +Lambo,newsmast.social,History,history,false +Lambo,newsmast.social,Humanities,humanities,false +Lambo,newsmast.social,Science,science,true +Lambo,newsmast.social,Workers Rights,workers_rights,false +Scotty,newsmast.social,AI,ai,false +Scotty,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false +Scotty,newsmast.social,Pets,pets,true +Scotty,newsmast.social,Science,science,false +Scotty,newsmast.social,Space,space,false +Scotty,newsmast.social,Food & Drink,food_drink,false +Scotty,newsmast.social,Humour,humour,false +breaking_news_admin_3,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false +breaking_news_admin_3,newsmast.social,Climate change,climate_change,true +breaking_news_admin_3,newsmast.social,Energy & Pollution,energy_pollution,false +breaking_news_admin_3,newsmast.social,Environment,environment,false +breaking_news_admin_3,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false +ExpertPlus,newsmast.social,Activism & Civil Rights,activism_civil_rights,false +ExpertPlus,newsmast.social,AI,ai,false +ExpertPlus,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false +ExpertPlus,newsmast.social,Black Voices,black_voices,false +ExpertPlus,newsmast.social,Climate change,climate_change,false +ExpertPlus,newsmast.social,Creative Arts,creative_arts,false +ExpertPlus,newsmast.social,Disabled Voices,disabled_voices,false +ExpertPlus,newsmast.social,Energy & Pollution,energy_pollution,false +ExpertPlus,newsmast.social,Engineering,engineering,false +ExpertPlus,newsmast.social,Environment,environment,false +ExpertPlus,newsmast.social,Food & Drink,food_drink,false +ExpertPlus,newsmast.social,Humour,humour,true +ExpertPlus,newsmast.social,Immigrants Rights,immigrants_rights,false +ExpertPlus,newsmast.social,Indigenous Peoples,indigenous_peoples,false +ExpertPlus,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false +ExpertPlus,newsmast.social,Nature & Wildlife,nature_wildlife,false +ExpertPlus,newsmast.social,Pets,pets,false +ExpertPlus,newsmast.social,Programming,programming,false +ExpertPlus,newsmast.social,Puzzles,puzzles,false +ExpertPlus,newsmast.social,Technology,technology,false +ExpertPlus,newsmast.social,Travel,travel,false +ExpertPlus,newsmast.social,Women’s Voices,women_voices,false +jperlow,newsmast.social,AI,ai,false +jperlow,newsmast.social,Biology,biology,false +jperlow,newsmast.social,Breaking News,breaking_news,false +jperlow,newsmast.social,Chemistry,chemistry,false +jperlow,newsmast.social,Engineering,engineering,false +jperlow,newsmast.social,Mathematics,mathematics,false +jperlow,newsmast.social,Physics,physics,false +jperlow,newsmast.social,Programming,programming,false +jperlow,newsmast.social,Science,science,false +jperlow,newsmast.social,Social Media,social_media,false +jperlow,newsmast.social,Space,space,false +jperlow,newsmast.social,Technology,technology,false +jperlow,newsmast.social,Ukraine Invasion,ukraine_invasion,false +jperlow,newsmast.social,Weather,weather,false +jperlow,newsmast.social,Journalism & Comment,news_comment_data,true +teeheehee,newsmast.social,AI,ai,false +teeheehee,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false +teeheehee,newsmast.social,Biology,biology,false +teeheehee,newsmast.social,Breaking News,breaking_news,false +teeheehee,newsmast.social,Chemistry,chemistry,false +teeheehee,newsmast.social,Climate change,climate_change,false +teeheehee,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +teeheehee,newsmast.social,Energy & Pollution,energy_pollution,true +teeheehee,newsmast.social,Engineering,engineering,false +teeheehee,newsmast.social,Environment,environment,false +teeheehee,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false +teeheehee,newsmast.social,Mathematics,mathematics,false +teeheehee,newsmast.social,Physics,physics,false +teeheehee,newsmast.social,Poverty & Inequality,poverty_inequality,false +teeheehee,newsmast.social,Programming,programming,false +teeheehee,newsmast.social,Science,science,false +teeheehee,newsmast.social,Space,space,false +teeheehee,newsmast.social,Technology,technology,false +teeheehee,newsmast.social,Ukraine Invasion,ukraine_invasion,false +daniel,newsmast.social,Breaking News,breaking_news,false +daniel,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +daniel,newsmast.social,Engineering,engineering,false +daniel,newsmast.social,Journalism & Comment,news_comment_data,false +daniel,newsmast.social,Programming,programming,false +daniel,newsmast.social,Science,science,false +daniel,newsmast.social,Space,space,false +daniel,newsmast.social,Technology,technology,true +LaurelOld,newsmast.social,AI,ai,false +LaurelOld,newsmast.social,Biology,biology,true +LaurelOld,newsmast.social,Breaking News,breaking_news,false +LaurelOld,newsmast.social,Chemistry,chemistry,false +LaurelOld,newsmast.social,Engineering,engineering,false +LaurelOld,newsmast.social,Journalism & Comment,news_comment_data,false +LaurelOld,newsmast.social,Science,science,false +Themontyproject,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false +Themontyproject,newsmast.social,Books & Literature,books_literature,false +Themontyproject,newsmast.social,Humour,humour,false +Themontyproject,newsmast.social,Pets,pets,true +Themontyproject,newsmast.social,Workers Rights,workers_rights,false +JayAySevenTwo,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false +JayAySevenTwo,newsmast.social,Ukraine Invasion,ukraine_invasion,false +JayAySevenTwo,newsmast.social,Academia & Research,academia_research,false +JayAySevenTwo,newsmast.social,Activism & Civil Rights,activism_civil_rights,false +JayAySevenTwo,newsmast.social,AI,ai,false +JayAySevenTwo,newsmast.social,Black Voices,black_voices,false +JayAySevenTwo,newsmast.social,Breaking News,breaking_news,true +JayAySevenTwo,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +JayAySevenTwo,newsmast.social,Disabled Voices,disabled_voices,false +JayAySevenTwo,newsmast.social,Government & Policy,government_policy,false +JayAySevenTwo,newsmast.social,History,history,false +JayAySevenTwo,newsmast.social,Humanities,humanities,false +JayAySevenTwo,newsmast.social,Indigenous Peoples,indigenous_peoples,false +JayAySevenTwo,newsmast.social,Mathematics,mathematics,false +JayAySevenTwo,newsmast.social,Journalism & Comment,news_comment_data,false +JayAySevenTwo,newsmast.social,Philosophy,philosophy,false +JayAySevenTwo,newsmast.social,Poverty & Inequality,poverty_inequality,false +JayAySevenTwo,newsmast.social,Science,science,false +JayAySevenTwo,newsmast.social,Social Sciences,social_sciences,false +JayAySevenTwo,newsmast.social,Space,space,false +JayAySevenTwo,newsmast.social,Technology,technology,false +posts2,newsmast.social,AI,ai,false +posts2,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false +posts2,newsmast.social,Biology,biology,false +posts2,newsmast.social,Breaking News,breaking_news,true +posts2,newsmast.social,Chemistry,chemistry,false +posts2,newsmast.social,Climate change,climate_change,false +posts2,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +posts2,newsmast.social,Energy & Pollution,energy_pollution,false +posts2,newsmast.social,Engineering,engineering,false +posts2,newsmast.social,Environment,environment,false +posts2,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false +posts2,newsmast.social,Mathematics,mathematics,false +posts2,newsmast.social,Journalism & Comment,news_comment_data,false +posts2,newsmast.social,Physics,physics,false +posts2,newsmast.social,Poverty & Inequality,poverty_inequality,false +posts2,newsmast.social,Programming,programming,false +posts2,newsmast.social,Science,science,false +posts2,newsmast.social,Social Media,social_media,false +posts2,newsmast.social,Space,space,false +posts2,newsmast.social,Technology,technology,false +posts2,newsmast.social,Ukraine Invasion,ukraine_invasion,false +posts2,newsmast.social,Weather,weather,false +akamar87,newsmast.social,Breaking News,breaking_news,false +akamar87,newsmast.social,History,history,false +akamar87,newsmast.social,Mathematics,mathematics,false +akamar87,newsmast.social,Philosophy,philosophy,false +akamar87,newsmast.social,Programming,programming,true +akamar87,newsmast.social,Technology,technology,false +GJMPUBLISHER,newsmast.social,AI,ai,false +GJMPUBLISHER,newsmast.social,Business,business,false +GJMPUBLISHER,newsmast.social,Creative Arts,creative_arts,false +GJMPUBLISHER,newsmast.social,Food & Drink,food_drink,false +GJMPUBLISHER,newsmast.social,LGBTQ+,lgbtq,true +GJMPUBLISHER,newsmast.social,Travel,travel,false +rgallery,newsmast.social,Humanities,humanities,false +rgallery,newsmast.social,Journalism & Comment,news_comment_data,true +rgallery,newsmast.social,Politics,politics,false +rgallery,newsmast.social,Social Media,social_media,false +rgallery,newsmast.social,Social Sciences,social_sciences,false +CakeBoy,newsmast.social,Breaking News,breaking_news,false +CakeBoy,newsmast.social,Creative Arts,creative_arts,false +CakeBoy,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +CakeBoy,newsmast.social,Food & Drink,food_drink,true +CakeBoy,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false +CakeBoy,newsmast.social,Nature & Wildlife,nature_wildlife,false +CakeBoy,newsmast.social,Journalism & Comment,news_comment_data,false +CakeBoy,newsmast.social,Poverty & Inequality,poverty_inequality,false +CakeBoy,newsmast.social,Social Media,social_media,false +CakeBoy,newsmast.social,Travel,travel,false +CakeBoy,newsmast.social,Weather,weather,false +Question,newsmast.social,AI,ai,false +Question,newsmast.social,Breaking News,breaking_news,true +Question,newsmast.social,Football,football,false +Question,newsmast.social,Government & Policy,government_policy,false +Question,newsmast.social,Journalism & Comment,news_comment_data,false +Question,newsmast.social,Technology,technology,false +Question,newsmast.social,US Politics,us_politics,false +Question,newsmast.social,Weather,weather,false +YOUME25,newsmast.social,Academia & Research,academia_research,false +YOUME25,newsmast.social,Activism & Civil Rights,activism_civil_rights,false +YOUME25,newsmast.social,AI,ai,true +YOUME25,newsmast.social,Architecture & Design,architecture_design,false +YOUME25,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false +YOUME25,newsmast.social,Biology,biology,false +YOUME25,newsmast.social,Black Voices,black_voices,false +YOUME25,newsmast.social,Books & Literature,books_literature,false +YOUME25,newsmast.social,Breaking News,breaking_news,false +YOUME25,newsmast.social,Business,business,false +YOUME25,newsmast.social,Chemistry,chemistry,false +YOUME25,newsmast.social,Climate change,climate_change,false +YOUME25,newsmast.social,Creative Arts,creative_arts,false +YOUME25,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +YOUME25,newsmast.social,Disabled Voices,disabled_voices,false +YOUME25,newsmast.social,Energy & Pollution,energy_pollution,false +YOUME25,newsmast.social,Engineering,engineering,false +YOUME25,newsmast.social,Environment,environment,false +YOUME25,newsmast.social,Food & Drink,food_drink,false +YOUME25,newsmast.social,Football,football,false +YOUME25,newsmast.social,Gaming,gaming,false +YOUME25,newsmast.social,Government & Policy,government_policy,false +YOUME25,newsmast.social,Healthcare,healthcare,false +YOUME25,newsmast.social,History,history,false +YOUME25,newsmast.social,Humanities,humanities,false +YOUME25,newsmast.social,Humour,humour,false +YOUME25,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false +YOUME25,newsmast.social,Immigrants Rights,immigrants_rights,false +YOUME25,newsmast.social,Indigenous Peoples,indigenous_peoples,false +YOUME25,newsmast.social,Law & Justice,law_justice,false +YOUME25,newsmast.social,LGBTQ+,lgbtq,false +YOUME25,newsmast.social,Markets & Finance,markets_finance,false +YOUME25,newsmast.social,Mathematics,mathematics,false +YOUME25,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false +YOUME25,newsmast.social,Movies,movies,false +YOUME25,newsmast.social,Music,music,false +YOUME25,newsmast.social,Nature & Wildlife,nature_wildlife,false +YOUME25,newsmast.social,Journalism & Comment,news_comment_data,false +YOUME25,newsmast.social,Performing Arts,performing_arts,false +YOUME25,newsmast.social,Pets,pets,false +YOUME25,newsmast.social,Philosophy,philosophy,false +YOUME25,newsmast.social,Photography,photography,false +YOUME25,newsmast.social,Physics,physics,false +YOUME25,newsmast.social,Politics,politics,false +YOUME25,newsmast.social,Poverty & Inequality,poverty_inequality,false +YOUME25,newsmast.social,Programming,programming,false +YOUME25,newsmast.social,Puzzles,puzzles,false +YOUME25,newsmast.social,Science,science,false +YOUME25,newsmast.social,Social Media,social_media,false +YOUME25,newsmast.social,Social Sciences,social_sciences,false +YOUME25,newsmast.social,Space,space,false +YOUME25,newsmast.social,Sport,sport,false +YOUME25,newsmast.social,Technology,technology,false +YOUME25,newsmast.social,Travel,travel,false +YOUME25,newsmast.social,TV & Radio,tv_radio,false +YOUME25,newsmast.social,Ukraine Invasion,ukraine_invasion,false +YOUME25,newsmast.social,US Politics,us_politics,false +YOUME25,newsmast.social,US Sport,us_sport,false +YOUME25,newsmast.social,Visual Arts,visual_arts,false +YOUME25,newsmast.social,Weather,weather,false +YOUME25,newsmast.social,Women’s Voices,women_voices,false +YOUME25,newsmast.social,Workers Rights,workers_rights,false +forgottenxi,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +forgottenxi,newsmast.social,Football,football,false +forgottenxi,newsmast.social,Poverty & Inequality,poverty_inequality,false +forgottenxi,newsmast.social,Ukraine Invasion,ukraine_invasion,false +forgottenxi,newsmast.social,Breaking News,breaking_news,true +TechRaptor,newsmast.social,Breaking News,breaking_news,false +TechRaptor,newsmast.social,Gaming,gaming,true +TechRaptor,newsmast.social,Journalism & Comment,news_comment_data,false +TechRaptor,newsmast.social,Technology,technology,false +NextGen,newsmast.social,Architecture & Design,architecture_design,false +NextGen,newsmast.social,Books & Literature,books_literature,false +NextGen,newsmast.social,Climate change,climate_change,false +NextGen,newsmast.social,Energy & Pollution,energy_pollution,false +NextGen,newsmast.social,Environment,environment,false +NextGen,newsmast.social,Food & Drink,food_drink,true +NextGen,newsmast.social,History,history,false +NextGen,newsmast.social,Physics,physics,false +NextGen,newsmast.social,Science,science,false +NextGen,newsmast.social,Travel,travel,false +davidnaylorww,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false +davidnaylorww,newsmast.social,Biology,biology,true +davidnaylorww,newsmast.social,Chemistry,chemistry,false +davidnaylorww,newsmast.social,Climate change,climate_change,false +davidnaylorww,newsmast.social,Energy & Pollution,energy_pollution,false +davidnaylorww,newsmast.social,Engineering,engineering,false +davidnaylorww,newsmast.social,Environment,environment,false +davidnaylorww,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false +davidnaylorww,newsmast.social,Mathematics,mathematics,false +davidnaylorww,newsmast.social,Physics,physics,false +davidnaylorww,newsmast.social,Science,science,false +davidnaylorww,newsmast.social,Technology,technology,false +bobbymcd,newsmast.social,Breaking News,breaking_news,false +bobbymcd,newsmast.social,Climate change,climate_change,false +bobbymcd,newsmast.social,Energy & Pollution,energy_pollution,false +bobbymcd,newsmast.social,Mathematics,mathematics,false +bobbymcd,newsmast.social,Weather,weather,true +alternative,newsmast.social,Architecture & Design,architecture_design,false +alternative,newsmast.social,Engineering,engineering,false +alternative,newsmast.social,Movies,movies,false +alternative,newsmast.social,Music,music,false +alternative,newsmast.social,Programming,programming,false +alternative,newsmast.social,Social Sciences,social_sciences,false +alternative,newsmast.social,Technology,technology,true +alternative,newsmast.social,TV & Radio,tv_radio,false +davidrees5761,newsmast.social,Books & Literature,books_literature,false +davidrees5761,newsmast.social,Movies,movies,true +davidrees5761,newsmast.social,Music,music,false +davidrees5761,newsmast.social,TV & Radio,tv_radio,false +davidrees5761,newsmast.social,Visual Arts,visual_arts,false +ChiefOldMist,newsmast.social,AI,ai,false +ChiefOldMist,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false +ChiefOldMist,newsmast.social,Biology,biology,false +ChiefOldMist,newsmast.social,Breaking News,breaking_news,false +ChiefOldMist,newsmast.social,Chemistry,chemistry,false +ChiefOldMist,newsmast.social,Climate change,climate_change,false +ChiefOldMist,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +ChiefOldMist,newsmast.social,Energy & Pollution,energy_pollution,false +ChiefOldMist,newsmast.social,Engineering,engineering,false +ChiefOldMist,newsmast.social,Environment,environment,false +ChiefOldMist,newsmast.social,Government & Policy,government_policy,false +ChiefOldMist,newsmast.social,History,history,false +ChiefOldMist,newsmast.social,Humanities,humanities,false +ChiefOldMist,newsmast.social,Mathematics,mathematics,false +ChiefOldMist,newsmast.social,Journalism & Comment,news_comment_data,false +ChiefOldMist,newsmast.social,Philosophy,philosophy,false +ChiefOldMist,newsmast.social,Physics,physics,false +ChiefOldMist,newsmast.social,Science,science,false +ChiefOldMist,newsmast.social,Social Media,social_media,false +ChiefOldMist,newsmast.social,Social Sciences,social_sciences,false +ChiefOldMist,newsmast.social,Space,space,false +ChiefOldMist,newsmast.social,Technology,technology,true +rileyhBat,newsmast.social,Breaking News,breaking_news,false +rileyhBat,newsmast.social,Business,business,false +rileyhBat,newsmast.social,Engineering,engineering,true +rileyhBat,newsmast.social,Markets & Finance,markets_finance,false +rileyhBat,newsmast.social,Technology,technology,false +Dragonfly,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false +Dragonfly,newsmast.social,Biology,biology,false +Dragonfly,newsmast.social,Chemistry,chemistry,false +Dragonfly,newsmast.social,Climate change,climate_change,true +Dragonfly,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +Dragonfly,newsmast.social,Energy & Pollution,energy_pollution,false +Dragonfly,newsmast.social,Environment,environment,false +Dragonfly,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false +Dragonfly,newsmast.social,Poverty & Inequality,poverty_inequality,false +Dragonfly,newsmast.social,Space,space,false +newsmast_public,newsmast.social,Academia & Research,academia_research,false +newsmast_public,newsmast.social,Biology,biology,false +newsmast_public,newsmast.social,Books & Literature,books_literature,false +newsmast_public,newsmast.social,Breaking News,breaking_news,false +newsmast_public,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +newsmast_public,newsmast.social,Engineering,engineering,false +newsmast_public,newsmast.social,Environment,environment,false +newsmast_public,newsmast.social,Gaming,gaming,false +newsmast_public,newsmast.social,Government & Policy,government_policy,false +newsmast_public,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false +newsmast_public,newsmast.social,Movies,movies,false +newsmast_public,newsmast.social,Music,music,false +newsmast_public,newsmast.social,Journalism & Comment,news_comment_data,false +newsmast_public,newsmast.social,Photography,photography,false +newsmast_public,newsmast.social,Physics,physics,false +newsmast_public,newsmast.social,Politics,politics,false +newsmast_public,newsmast.social,Poverty & Inequality,poverty_inequality,false +newsmast_public,newsmast.social,Programming,programming,false +newsmast_public,newsmast.social,Science,science,false +newsmast_public,newsmast.social,Social Media,social_media,false +newsmast_public,newsmast.social,Social Sciences,social_sciences,false +newsmast_public,newsmast.social,Space,space,false +newsmast_public,newsmast.social,Technology,technology,true +newsmast_public,newsmast.social,TV & Radio,tv_radio,false +newsmast_public,newsmast.social,Visual Arts,visual_arts,false +RevRobinDB,newsmast.social,Activism & Civil Rights,activism_civil_rights,false +RevRobinDB,newsmast.social,Black Voices,black_voices,false +RevRobinDB,newsmast.social,Books & Literature,books_literature,false +RevRobinDB,newsmast.social,Breaking News,breaking_news,false +RevRobinDB,newsmast.social,Climate change,climate_change,false +RevRobinDB,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +RevRobinDB,newsmast.social,Government & Policy,government_policy,false +RevRobinDB,newsmast.social,History,history,false +RevRobinDB,newsmast.social,Immigrants Rights,immigrants_rights,false +RevRobinDB,newsmast.social,Indigenous Peoples,indigenous_peoples,false +RevRobinDB,newsmast.social,LGBTQ+,lgbtq,true +RevRobinDB,newsmast.social,Journalism & Comment,news_comment_data,false +RevRobinDB,newsmast.social,Philosophy,philosophy,false +RevRobinDB,newsmast.social,Politics,politics,false +RevRobinDB,newsmast.social,Poverty & Inequality,poverty_inequality,false +RevRobinDB,newsmast.social,Women’s Voices,women_voices,false +elliottrichmond,newsmast.social,AI,ai,false +elliottrichmond,newsmast.social,Biology,biology,false +elliottrichmond,newsmast.social,Business,business,false +elliottrichmond,newsmast.social,Chemistry,chemistry,false +elliottrichmond,newsmast.social,Engineering,engineering,false +elliottrichmond,newsmast.social,Markets & Finance,markets_finance,false +elliottrichmond,newsmast.social,Mathematics,mathematics,false +elliottrichmond,newsmast.social,Physics,physics,false +elliottrichmond,newsmast.social,Programming,programming,true +elliottrichmond,newsmast.social,Science,science,false +elliottrichmond,newsmast.social,Space,space,false +elliottrichmond,newsmast.social,Technology,technology,false +elliottrichmond,newsmast.social,Workers Rights,workers_rights,false +seasonssuppers,newsmast.social,Breaking News,breaking_news,false +seasonssuppers,newsmast.social,Creative Arts,creative_arts,false +seasonssuppers,newsmast.social,History,history,false +seasonssuppers,newsmast.social,Humanities,humanities,false +seasonssuppers,newsmast.social,Humour,humour,false +seasonssuppers,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false +seasonssuppers,newsmast.social,Nature & Wildlife,nature_wildlife,false +seasonssuppers,newsmast.social,Journalism & Comment,news_comment_data,false +seasonssuppers,newsmast.social,Pets,pets,false +seasonssuppers,newsmast.social,Philosophy,philosophy,false +seasonssuppers,newsmast.social,Puzzles,puzzles,false +seasonssuppers,newsmast.social,Social Media,social_media,false +seasonssuppers,newsmast.social,Social Sciences,social_sciences,false +seasonssuppers,newsmast.social,Travel,travel,false +seasonssuppers,newsmast.social,Ukraine Invasion,ukraine_invasion,false +seasonssuppers,newsmast.social,Weather,weather,false +seasonssuppers,newsmast.social,Food & Drink,food_drink,true +josebilingue,newsmast.social,Academia & Research,academia_research,false +josebilingue,newsmast.social,Activism & Civil Rights,activism_civil_rights,false +josebilingue,newsmast.social,Architecture & Design,architecture_design,false +josebilingue,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false +josebilingue,newsmast.social,Biology,biology,false +josebilingue,newsmast.social,Black Voices,black_voices,false +josebilingue,newsmast.social,Books & Literature,books_literature,false +josebilingue,newsmast.social,Breaking News,breaking_news,false +josebilingue,newsmast.social,Chemistry,chemistry,false +josebilingue,newsmast.social,Climate change,climate_change,false +josebilingue,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +josebilingue,newsmast.social,Disabled Voices,disabled_voices,false +josebilingue,newsmast.social,Energy & Pollution,energy_pollution,false +josebilingue,newsmast.social,Environment,environment,false +josebilingue,newsmast.social,Gaming,gaming,false +josebilingue,newsmast.social,Government & Policy,government_policy,false +josebilingue,newsmast.social,Healthcare,healthcare,false +josebilingue,newsmast.social,History,history,false +josebilingue,newsmast.social,Humanities,humanities,false +josebilingue,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false +josebilingue,newsmast.social,Immigrants Rights,immigrants_rights,false +josebilingue,newsmast.social,Indigenous Peoples,indigenous_peoples,false +josebilingue,newsmast.social,Law & Justice,law_justice,false +josebilingue,newsmast.social,LGBTQ+,lgbtq,false +josebilingue,newsmast.social,Mathematics,mathematics,false +josebilingue,newsmast.social,Movies,movies,false +josebilingue,newsmast.social,Music,music,false +josebilingue,newsmast.social,Journalism & Comment,news_comment_data,false +josebilingue,newsmast.social,Performing Arts,performing_arts,false +josebilingue,newsmast.social,Philosophy,philosophy,false +josebilingue,newsmast.social,Photography,photography,false +josebilingue,newsmast.social,Physics,physics,false +josebilingue,newsmast.social,Politics,politics,false +josebilingue,newsmast.social,Poverty & Inequality,poverty_inequality,false +josebilingue,newsmast.social,Science,science,false +josebilingue,newsmast.social,Social Media,social_media,false +josebilingue,newsmast.social,Space,space,false +josebilingue,newsmast.social,TV & Radio,tv_radio,false +josebilingue,newsmast.social,Ukraine Invasion,ukraine_invasion,false +josebilingue,newsmast.social,US Politics,us_politics,false +josebilingue,newsmast.social,Visual Arts,visual_arts,false +josebilingue,newsmast.social,Weather,weather,false +josebilingue,newsmast.social,Women’s Voices,women_voices,false +josebilingue,newsmast.social,Social Sciences,social_sciences,true +Nusm,newsmast.social,Breaking News,breaking_news,false +Nusm,newsmast.social,Football,football,false +Nusm,newsmast.social,Government & Policy,government_policy,false +Nusm,newsmast.social,Humour,humour,false +Nusm,newsmast.social,Politics,politics,true +Nusm,newsmast.social,Puzzles,puzzles,false +Nusm,newsmast.social,Technology,technology,false +Nusm,newsmast.social,US Politics,us_politics,false +Nusm,newsmast.social,US Sport,us_sport,false +Nusm,newsmast.social,Weather,weather,false +metalman,newsmast.social,Breaking News,breaking_news,false +metalman,newsmast.social,Journalism & Comment,news_comment_data,false +metalman,newsmast.social,Social Media,social_media,false +metalman,newsmast.social,Ukraine Invasion,ukraine_invasion,false +metalman,newsmast.social,Weather,weather,true +sonia_sna0002,newsmast.social,Ukraine Invasion,ukraine_invasion,false +sonia_sna0002,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false +sonia_sna0002,newsmast.social,Breaking News,breaking_news,false +sonia_sna0002,newsmast.social,Climate change,climate_change,false +sonia_sna0002,newsmast.social,Democracy & Human Rights,democracy_human_rights,true +sonia_sna0002,newsmast.social,Energy & Pollution,energy_pollution,false +sonia_sna0002,newsmast.social,Environment,environment,false +sonia_sna0002,newsmast.social,History,history,false +sonia_sna0002,newsmast.social,Humanities,humanities,false +sonia_sna0002,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false +sonia_sna0002,newsmast.social,Journalism & Comment,news_comment_data,false +sonia_sna0002,newsmast.social,Philosophy,philosophy,false +sonia_sna0002,newsmast.social,Poverty & Inequality,poverty_inequality,false +sonia_sna0002,newsmast.social,Social Media,social_media,false +sonia_sna0002,newsmast.social,Social Sciences,social_sciences,false +sonia_sna0002,newsmast.social,Weather,weather,false +TexasHistoryL,newsmast.social,Books & Literature,books_literature,false +TexasHistoryL,newsmast.social,Humanities,humanities,false +TexasHistoryL,newsmast.social,Movies,movies,false +TexasHistoryL,newsmast.social,Music,music,false +TexasHistoryL,newsmast.social,Social Sciences,social_sciences,false +TexasHistoryL,newsmast.social,Visual Arts,visual_arts,false +TexasHistoryL,newsmast.social,History,history,true +nclm,newsmast.social,Activism & Civil Rights,activism_civil_rights,false +nclm,newsmast.social,Architecture & Design,architecture_design,true +nclm,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false +nclm,newsmast.social,Biology,biology,false +nclm,newsmast.social,Books & Literature,books_literature,false +nclm,newsmast.social,Climate change,climate_change,false +nclm,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +nclm,newsmast.social,Disabled Voices,disabled_voices,false +nclm,newsmast.social,Environment,environment,false +nclm,newsmast.social,Gaming,gaming,false +nclm,newsmast.social,History,history,false +nclm,newsmast.social,Humanities,humanities,false +nclm,newsmast.social,Immigrants Rights,immigrants_rights,false +nclm,newsmast.social,Indigenous Peoples,indigenous_peoples,false +nclm,newsmast.social,LGBTQ+,lgbtq,false +nclm,newsmast.social,Movies,movies,false +nclm,newsmast.social,Music,music,false +nclm,newsmast.social,Performing Arts,performing_arts,false +nclm,newsmast.social,Photography,photography,false +nclm,newsmast.social,Physics,physics,false +nclm,newsmast.social,Science,science,false +nclm,newsmast.social,Social Sciences,social_sciences,false +nclm,newsmast.social,Visual Arts,visual_arts,false +nclm,newsmast.social,Women’s Voices,women_voices,false +anujahooja,newsmast.social,AI,ai,false +anujahooja,newsmast.social,Breaking News,breaking_news,false +anujahooja,newsmast.social,Business,business,false +anujahooja,newsmast.social,Engineering,engineering,false +anujahooja,newsmast.social,Gaming,gaming,false +anujahooja,newsmast.social,Markets & Finance,markets_finance,false +anujahooja,newsmast.social,Programming,programming,false +anujahooja,newsmast.social,Social Media,social_media,false +anujahooja,newsmast.social,Technology,technology,true +anujahooja,newsmast.social,Workers Rights,workers_rights,false +kirukarki2,newsmast.social,AI,ai,true +kirukarki2,newsmast.social,Technology,technology,false +kirukarki2,newsmast.social,Programming,programming,false +kirukarki2,newsmast.social,Breaking News,breaking_news,false +kirukarki2,newsmast.social,LGBTQ+,lgbtq,false +kirukarki2,newsmast.social,Private Community,private-community,false +scharfnado,newsmast.social,Academia & Research,academia_research,false +scharfnado,newsmast.social,Breaking News,breaking_news,true +scharfnado,newsmast.social,Government & Policy,government_policy,false +scharfnado,newsmast.social,Physics,physics,false +scharfnado,newsmast.social,Space,space,false +scharfnado,newsmast.social,Technology,technology,false +scharfnado,newsmast.social,Travel,travel,false +scharfnado,newsmast.social,Energy & Pollution,energy_pollution,false +NoisyBits,newsmast.social,Activism & Civil Rights,activism_civil_rights,false +NoisyBits,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +NoisyBits,newsmast.social,History,history,false +NoisyBits,newsmast.social,Humanities,humanities,true +NoisyBits,newsmast.social,Poverty & Inequality,poverty_inequality,false +NoisyBits,newsmast.social,LGBTQ+,lgbtq,false +NoisyBits,newsmast.social,Philosophy,philosophy,false +NoisyBits,newsmast.social,Social Sciences,social_sciences,false +NoisyBits,newsmast.social,Visual Arts,visual_arts,false +backtobella,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false +backtobella,newsmast.social,Biology,biology,false +backtobella,newsmast.social,Environment,environment,false +backtobella,newsmast.social,History,history,false +backtobella,newsmast.social,Mathematics,mathematics,false +backtobella,newsmast.social,Movies,movies,false +backtobella,newsmast.social,Performing Arts,performing_arts,false +backtobella,newsmast.social,Science,science,false +backtobella,newsmast.social,Space,space,false +backtobella,newsmast.social,TV & Radio,tv_radio,false +backtobella,newsmast.social,Visual Arts,visual_arts,true +Acethe1st,newsmast.social,Academia & Research,academia_research,false +Acethe1st,newsmast.social,Activism & Civil Rights,activism_civil_rights,false +Acethe1st,newsmast.social,Architecture & Design,architecture_design,false +Acethe1st,newsmast.social,Biology,biology,false +Acethe1st,newsmast.social,Black Voices,black_voices,false +Acethe1st,newsmast.social,Books & Literature,books_literature,false +Acethe1st,newsmast.social,Breaking News,breaking_news,false +Acethe1st,newsmast.social,Chemistry,chemistry,false +Acethe1st,newsmast.social,Democracy & Human Rights,democracy_human_rights,true +Acethe1st,newsmast.social,Disabled Voices,disabled_voices,false +Acethe1st,newsmast.social,Gaming,gaming,false +Acethe1st,newsmast.social,Government & Policy,government_policy,false +Acethe1st,newsmast.social,Healthcare,healthcare,false +Acethe1st,newsmast.social,History,history,false +Acethe1st,newsmast.social,Humanities,humanities,false +Acethe1st,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false +Acethe1st,newsmast.social,Immigrants Rights,immigrants_rights,false +Acethe1st,newsmast.social,Indigenous Peoples,indigenous_peoples,false +Acethe1st,newsmast.social,Law & Justice,law_justice,false +Acethe1st,newsmast.social,LGBTQ+,lgbtq,false +Acethe1st,newsmast.social,Mathematics,mathematics,false +Acethe1st,newsmast.social,Movies,movies,false +Acethe1st,newsmast.social,Music,music,false +Acethe1st,newsmast.social,Journalism & Comment,news_comment_data,false +Acethe1st,newsmast.social,Performing Arts,performing_arts,false +Acethe1st,newsmast.social,Philosophy,philosophy,false +Acethe1st,newsmast.social,Photography,photography,false +Acethe1st,newsmast.social,Physics,physics,false +Acethe1st,newsmast.social,Politics,politics,false +Acethe1st,newsmast.social,Poverty & Inequality,poverty_inequality,false +Acethe1st,newsmast.social,Science,science,false +Acethe1st,newsmast.social,Social Media,social_media,false +Acethe1st,newsmast.social,Social Sciences,social_sciences,false +Acethe1st,newsmast.social,Space,space,false +Acethe1st,newsmast.social,TV & Radio,tv_radio,false +Acethe1st,newsmast.social,Ukraine Invasion,ukraine_invasion,false +Acethe1st,newsmast.social,US Politics,us_politics,false +Acethe1st,newsmast.social,Visual Arts,visual_arts,false +Acethe1st,newsmast.social,Weather,weather,false +Acethe1st,newsmast.social,Women’s Voices,women_voices,false +test12,newsmast.social,Academia & Research,academia_research,false +test12,newsmast.social,Activism & Civil Rights,activism_civil_rights,false +test12,newsmast.social,AI,ai,false +test12,newsmast.social,Black Voices,black_voices,true +test12,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +test12,newsmast.social,Gaming,gaming,false +test12,newsmast.social,Government & Policy,government_policy,false +test12,newsmast.social,History,history,false +test12,newsmast.social,Humanities,humanities,false +test12,newsmast.social,Indigenous Peoples,indigenous_peoples,false +test12,newsmast.social,Law & Justice,law_justice,false +test12,newsmast.social,Movies,movies,false +test12,newsmast.social,Music,music,false +test12,newsmast.social,Journalism & Comment,news_comment_data,false +test12,newsmast.social,Social Media,social_media,false +test12,newsmast.social,Technology,technology,false +test12,newsmast.social,TV & Radio,tv_radio,false +test12,newsmast.social,US Politics,us_politics,false +test12,newsmast.social,US Sport,us_sport,false +yethiha,newsmast.social,AI,ai,false +yethiha,newsmast.social,Biology,biology,false +yethiha,newsmast.social,Chemistry,chemistry,false +yethiha,newsmast.social,Engineering,engineering,true +yethiha,newsmast.social,Mathematics,mathematics,false +yethiha,newsmast.social,Physics,physics,false +yethiha,newsmast.social,Programming,programming,false +yethiha,newsmast.social,Science,science,false +yethiha,newsmast.social,Space,space,false +yethiha,newsmast.social,Technology,technology,false +yethiha,newsmast.social,Breaking News,breaking_news,false +fxdpntthm,newsmast.social,Architecture & Design,architecture_design,false +fxdpntthm,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false +fxdpntthm,newsmast.social,Books & Literature,books_literature,false +fxdpntthm,newsmast.social,Breaking News,breaking_news,false +fxdpntthm,newsmast.social,Chemistry,chemistry,false +fxdpntthm,newsmast.social,Creative Arts,creative_arts,false +fxdpntthm,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +fxdpntthm,newsmast.social,Energy & Pollution,energy_pollution,false +fxdpntthm,newsmast.social,Engineering,engineering,false +fxdpntthm,newsmast.social,Humour,humour,false +fxdpntthm,newsmast.social,Markets & Finance,markets_finance,false +fxdpntthm,newsmast.social,Mathematics,mathematics,false +fxdpntthm,newsmast.social,Movies,movies,false +fxdpntthm,newsmast.social,Music,music,false +fxdpntthm,newsmast.social,Nature & Wildlife,nature_wildlife,false +fxdpntthm,newsmast.social,Performing Arts,performing_arts,false +fxdpntthm,newsmast.social,Photography,photography,false +fxdpntthm,newsmast.social,Physics,physics,false +fxdpntthm,newsmast.social,Poverty & Inequality,poverty_inequality,false +fxdpntthm,newsmast.social,Puzzles,puzzles,false +fxdpntthm,newsmast.social,Science,science,false +fxdpntthm,newsmast.social,Social Media,social_media,false +fxdpntthm,newsmast.social,Space,space,false +fxdpntthm,newsmast.social,Technology,technology,true +fxdpntthm,newsmast.social,Travel,travel,false +fxdpntthm,newsmast.social,Visual Arts,visual_arts,false +fxdpntthm,newsmast.social,Weather,weather,false +fxdpntthm,newsmast.social,Workers Rights,workers_rights,false +fxdpntthm,newsmast.social,Biology,biology,false +mariabelfort,newsmast.social,Architecture & Design,architecture_design,false +mariabelfort,newsmast.social,Creative Arts,creative_arts,false +mariabelfort,newsmast.social,Food & Drink,food_drink,false +mariabelfort,newsmast.social,Photography,photography,false +mariabelfort,newsmast.social,Puzzles,puzzles,false +mariabelfort,newsmast.social,Travel,travel,true +mariabelfort,newsmast.social,Visual Arts,visual_arts,false +BobH,newsmast.social,Breaking News,breaking_news,true +BobH,newsmast.social,Journalism & Comment,news_comment_data,false +BobH,newsmast.social,Social Media,social_media,false +BobH,newsmast.social,Ukraine Invasion,ukraine_invasion,false +BobH,newsmast.social,Weather,weather,false +Oma,newsmast.social,Activism & Civil Rights,activism_civil_rights,false +Oma,newsmast.social,AI,ai,false +Oma,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false +Oma,newsmast.social,Breaking News,breaking_news,false +Oma,newsmast.social,Climate change,climate_change,false +Oma,newsmast.social,Government & Policy,government_policy,false +Oma,newsmast.social,Indigenous Peoples,indigenous_peoples,false +Oma,newsmast.social,Journalism & Comment,news_comment_data,false +Oma,newsmast.social,Politics,politics,false +Oma,newsmast.social,Poverty & Inequality,poverty_inequality,false +Oma,newsmast.social,Science,science,false +Oma,newsmast.social,Women’s Voices,women_voices,false +Oma,newsmast.social,Democracy & Human Rights,democracy_human_rights,true +kuzushi,newsmast.social,AI,ai,false +kuzushi,newsmast.social,Architecture & Design,architecture_design,false +kuzushi,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false +kuzushi,newsmast.social,Biology,biology,false +kuzushi,newsmast.social,Books & Literature,books_literature,false +kuzushi,newsmast.social,Chemistry,chemistry,false +kuzushi,newsmast.social,Climate change,climate_change,false +kuzushi,newsmast.social,Democracy & Human Rights,democracy_human_rights,true +kuzushi,newsmast.social,Energy & Pollution,energy_pollution,false +kuzushi,newsmast.social,Environment,environment,false +kuzushi,newsmast.social,Government & Policy,government_policy,false +kuzushi,newsmast.social,Healthcare,healthcare,false +kuzushi,newsmast.social,History,history,false +kuzushi,newsmast.social,Humanities,humanities,false +kuzushi,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false +kuzushi,newsmast.social,Law & Justice,law_justice,false +kuzushi,newsmast.social,Mathematics,mathematics,false +kuzushi,newsmast.social,Movies,movies,false +kuzushi,newsmast.social,Music,music,false +kuzushi,newsmast.social,Performing Arts,performing_arts,false +kuzushi,newsmast.social,Philosophy,philosophy,false +kuzushi,newsmast.social,Photography,photography,false +kuzushi,newsmast.social,Physics,physics,false +kuzushi,newsmast.social,Poverty & Inequality,poverty_inequality,false +kuzushi,newsmast.social,Programming,programming,false +kuzushi,newsmast.social,Science,science,false +kuzushi,newsmast.social,Social Sciences,social_sciences,false +kuzushi,newsmast.social,Space,space,false +kuzushi,newsmast.social,Sport,sport,false +kuzushi,newsmast.social,Visual Arts,visual_arts,false +kiko,newsmast.social,Football,football,true +kiko,newsmast.social,Programming,programming,false +kiko,newsmast.social,Social Media,social_media,false +kiko,newsmast.social,Technology,technology,false +kiko,newsmast.social,US Sport,us_sport,false +surya,newsmast.social,AI,ai,false +surya,newsmast.social,Football,football,true +surya,newsmast.social,Social Media,social_media,false +surya,newsmast.social,Sport,sport,false +surya,newsmast.social,Technology,technology,false +markrubbo,newsmast.social,Academia & Research,academia_research,false +markrubbo,newsmast.social,Healthcare,healthcare,false +markrubbo,newsmast.social,Law & Justice,law_justice,false +markrubbo,newsmast.social,Politics,politics,false +markrubbo,newsmast.social,US Politics,us_politics,false +markrubbo,newsmast.social,Government & Policy,government_policy,true +igs,newsmast.social,Breaking News,breaking_news,false +igs,newsmast.social,Engineering,engineering,false +igs,newsmast.social,Mathematics,mathematics,false +igs,newsmast.social,Puzzles,puzzles,true +igs,newsmast.social,Space,space,false +Nido,newsmast.social,Academia & Research,academia_research,false +Nido,newsmast.social,AI,ai,false +Nido,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false +Nido,newsmast.social,Biology,biology,false +Nido,newsmast.social,Books & Literature,books_literature,false +Nido,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +Nido,newsmast.social,Engineering,engineering,false +Nido,newsmast.social,Environment,environment,false +Nido,newsmast.social,History,history,false +Nido,newsmast.social,Humanities,humanities,false +Nido,newsmast.social,Mathematics,mathematics,false +Nido,newsmast.social,Movies,movies,false +Nido,newsmast.social,Music,music,false +Nido,newsmast.social,Journalism & Comment,news_comment_data,false +Nido,newsmast.social,Performing Arts,performing_arts,false +Nido,newsmast.social,Philosophy,philosophy,false +Nido,newsmast.social,Photography,photography,false +Nido,newsmast.social,Physics,physics,false +Nido,newsmast.social,Politics,politics,false +Nido,newsmast.social,Programming,programming,false +Nido,newsmast.social,Science,science,false +Nido,newsmast.social,Social Media,social_media,false +Nido,newsmast.social,Social Sciences,social_sciences,false +Nido,newsmast.social,Technology,technology,false +Nido,newsmast.social,TV & Radio,tv_radio,false +Nido,newsmast.social,Visual Arts,visual_arts,false +Nido,newsmast.social,Activism & Civil Rights,activism_civil_rights,true +Aurefreepress,newsmast.social,Breaking News,breaking_news,true +Aurefreepress,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +Aurefreepress,newsmast.social,Government & Policy,government_policy,false +Aurefreepress,newsmast.social,Journalism & Comment,news_comment_data,false +Aurefreepress,newsmast.social,Social Media,social_media,false +Aurefreepress,newsmast.social,Ukraine Invasion,ukraine_invasion,false +Aurefreepress,newsmast.social,Weather,weather,false +Aurefreepress,newsmast.social,Academia & Research,academia_research,false +Aurefreepress,newsmast.social,Healthcare,healthcare,false +Aurefreepress,newsmast.social,US Politics,us_politics,false +Aurefreepress,newsmast.social,Environment,environment,false +Aurefreepress,newsmast.social,Climate change,climate_change,false +Aurefreepress,newsmast.social,Energy & Pollution,energy_pollution,false +Aurefreepress,newsmast.social,Activism & Civil Rights,activism_civil_rights,false +Aurefreepress,newsmast.social,Black Voices,black_voices,false +Aurefreepress,newsmast.social,Disabled Voices,disabled_voices,false +Aurefreepress,newsmast.social,Immigrants Rights,immigrants_rights,false +Aurefreepress,newsmast.social,Indigenous Peoples,indigenous_peoples,false +Aurefreepress,newsmast.social,LGBTQ+,lgbtq,false +Aurefreepress,newsmast.social,Women’s Voices,women_voices,false +Aurefreepress,newsmast.social,Science,science,false +Aurefreepress,newsmast.social,Space,space,false +ftalk,newsmast.social,Travel,travel,false +ftalk,newsmast.social,US Sport,us_sport,false +ftalk,newsmast.social,AI,ai,false +ftalk,newsmast.social,Creative Arts,creative_arts,false +ftalk,newsmast.social,Engineering,engineering,false +ftalk,newsmast.social,Food & Drink,food_drink,false +ftalk,newsmast.social,Football,football,false +ftalk,newsmast.social,Humour,humour,true +ftalk,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false +ftalk,newsmast.social,Nature & Wildlife,nature_wildlife,false +ftalk,newsmast.social,Pets,pets,false +ftalk,newsmast.social,Programming,programming,false +ftalk,newsmast.social,Puzzles,puzzles,false +ftalk,newsmast.social,Sport,sport,false +ftalk,newsmast.social,Technology,technology,false +ftalk,newsmast.social,Travel,travel,false +ftalk,newsmast.social,US Sport,us_sport,false +vijaysingh,newsmast.social,Academia & Research,academia_research,false +vijaysingh,newsmast.social,Government & Policy,government_policy,false +vijaysingh,newsmast.social,Healthcare,healthcare,false +vijaysingh,newsmast.social,Law & Justice,law_justice,false +vijaysingh,newsmast.social,Politics,politics,true +vijaysingh,newsmast.social,US Politics,us_politics,false +davidadobbs,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false +davidadobbs,newsmast.social,Climate change,climate_change,false +davidadobbs,newsmast.social,Environment,environment,false +davidadobbs,newsmast.social,History,history,false +davidadobbs,newsmast.social,Humanities,humanities,false +davidadobbs,newsmast.social,Science,science,true +BillSaysThis,newsmast.social,Breaking News,breaking_news,false +BillSaysThis,newsmast.social,Law & Justice,law_justice,false +BillSaysThis,newsmast.social,Politics,politics,false +BillSaysThis,newsmast.social,Sport,sport,true +BillSaysThis,newsmast.social,US Politics,us_politics,false +Leslie_Jones,newsmast.social,Academia & Research,academia_research,false +Leslie_Jones,newsmast.social,Activism & Civil Rights,activism_civil_rights,false +Leslie_Jones,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false +Leslie_Jones,newsmast.social,Books & Literature,books_literature,false +Leslie_Jones,newsmast.social,Breaking News,breaking_news,false +Leslie_Jones,newsmast.social,Business,business,false +Leslie_Jones,newsmast.social,Climate change,climate_change,false +Leslie_Jones,newsmast.social,Creative Arts,creative_arts,false +Leslie_Jones,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +Leslie_Jones,newsmast.social,Energy & Pollution,energy_pollution,false +Leslie_Jones,newsmast.social,Environment,environment,false +Leslie_Jones,newsmast.social,Food & Drink,food_drink,false +Leslie_Jones,newsmast.social,Football,football,false +Leslie_Jones,newsmast.social,Government & Policy,government_policy,false +Leslie_Jones,newsmast.social,Healthcare,healthcare,false +Leslie_Jones,newsmast.social,History,history,false +Leslie_Jones,newsmast.social,Humanities,humanities,false +Leslie_Jones,newsmast.social,Humour,humour,false +Leslie_Jones,newsmast.social,Law & Justice,law_justice,true +Leslie_Jones,newsmast.social,Markets & Finance,markets_finance,false +Leslie_Jones,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false +Leslie_Jones,newsmast.social,Nature & Wildlife,nature_wildlife,false +Leslie_Jones,newsmast.social,Pets,pets,false +Leslie_Jones,newsmast.social,Philosophy,philosophy,false +Leslie_Jones,newsmast.social,Photography,photography,false +Leslie_Jones,newsmast.social,Politics,politics,false +Leslie_Jones,newsmast.social,Puzzles,puzzles,false +Leslie_Jones,newsmast.social,Science,science,false +Leslie_Jones,newsmast.social,Social Sciences,social_sciences,false +Leslie_Jones,newsmast.social,Sport,sport,false +Leslie_Jones,newsmast.social,Technology,technology,false +Leslie_Jones,newsmast.social,Travel,travel,false +Leslie_Jones,newsmast.social,Ukraine Invasion,ukraine_invasion,false +Leslie_Jones,newsmast.social,US Politics,us_politics,false +Leslie_Jones,newsmast.social,US Sport,us_sport,false +Leslie_Jones,newsmast.social,Weather,weather,false +Leslie_Jones,newsmast.social,Women’s Voices,women_voices,false +Leslie_Jones,newsmast.social,Workers Rights,workers_rights,false +tayndua,newsmast.social,Social Sciences,social_sciences,false +tayndua,newsmast.social,Technology,technology,false +tayndua,newsmast.social,TV & Radio,tv_radio,false +tayndua,newsmast.social,US Politics,us_politics,false +tayndua,newsmast.social,Women’s Voices,women_voices,false +tayndua,newsmast.social,Workers Rights,workers_rights,false +tayndua,newsmast.social,Activism & Civil Rights,activism_civil_rights,true +tayndua,newsmast.social,AI,ai,false +tayndua,newsmast.social,Black Voices,black_voices,false +tayndua,newsmast.social,Books & Literature,books_literature,false +tayndua,newsmast.social,Business,business,false +tayndua,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +tayndua,newsmast.social,Disabled Voices,disabled_voices,false +tayndua,newsmast.social,Government & Policy,government_policy,false +tayndua,newsmast.social,Humanities,humanities,false +tayndua,newsmast.social,LGBTQ+,lgbtq,false +tayndua,newsmast.social,Markets & Finance,markets_finance,false +tayndua,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false +tayndua,newsmast.social,Movies,movies,false +tayndua,newsmast.social,Performing Arts,performing_arts,false +tayndua,newsmast.social,Pets,pets,false +tayndua,newsmast.social,Philosophy,philosophy,false +tayndua,newsmast.social,Politics,politics,false +tayndua,newsmast.social,Poverty & Inequality,poverty_inequality,false +tayndua,newsmast.social,Social Media,social_media,false +giff,newsmast.social,Biology,biology,false +giff,newsmast.social,Breaking News,breaking_news,true +giff,newsmast.social,Chemistry,chemistry,false +giff,newsmast.social,Government & Policy,government_policy,false +giff,newsmast.social,Healthcare,healthcare,false +giff,newsmast.social,History,history,false +giff,newsmast.social,Mathematics,mathematics,false +giff,newsmast.social,Journalism & Comment,news_comment_data,false +giff,newsmast.social,Physics,physics,false +giff,newsmast.social,Politics,politics,false +giff,newsmast.social,Science,science,false +giff,newsmast.social,Social Media,social_media,false +giff,newsmast.social,Social Sciences,social_sciences,false +giff,newsmast.social,Space,space,false +giff,newsmast.social,Technology,technology,false +giff,newsmast.social,US Sport,us_sport,false +SithuBoo,newsmast.social,Breaking News,breaking_news,true +SithuBoo,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +SithuBoo,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false +SithuBoo,newsmast.social,Journalism & Comment,news_comment_data,false +SithuBoo,newsmast.social,Poverty & Inequality,poverty_inequality,false +SithuBoo,newsmast.social,Social Media,social_media,false +SithuBoo,newsmast.social,Ukraine Invasion,ukraine_invasion,false +SithuBoo,newsmast.social,Weather,weather,false +Simon,newsmast.social,Activism & Civil Rights,activism_civil_rights,false +Simon,newsmast.social,AI,ai,false +Simon,newsmast.social,Architecture & Design,architecture_design,false +Simon,newsmast.social,Biology,biology,false +Simon,newsmast.social,Black Voices,black_voices,false +Simon,newsmast.social,Books & Literature,books_literature,false +Simon,newsmast.social,Breaking News,breaking_news,false +Simon,newsmast.social,Business,business,false +Simon,newsmast.social,Chemistry,chemistry,false +Simon,newsmast.social,Creative Arts,creative_arts,false +Simon,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +Simon,newsmast.social,Disabled Voices,disabled_voices,false +Simon,newsmast.social,Engineering,engineering,false +Simon,newsmast.social,Gaming,gaming,false +Simon,newsmast.social,History,history,false +Simon,newsmast.social,Humanities,humanities,false +Simon,newsmast.social,Humour,humour,false +Simon,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false +Simon,newsmast.social,Immigrants Rights,immigrants_rights,false +Simon,newsmast.social,Indigenous Peoples,indigenous_peoples,false +Simon,newsmast.social,Markets & Finance,markets_finance,false +Simon,newsmast.social,Mathematics,mathematics,false +Simon,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false +Simon,newsmast.social,Movies,movies,false +Simon,newsmast.social,Music,music,false +Simon,newsmast.social,Nature & Wildlife,nature_wildlife,false +Simon,newsmast.social,Journalism & Comment,news_comment_data,false +Simon,newsmast.social,Performing Arts,performing_arts,false +Simon,newsmast.social,Philosophy,philosophy,false +Simon,newsmast.social,Photography,photography,false +Simon,newsmast.social,Physics,physics,false +Simon,newsmast.social,Poverty & Inequality,poverty_inequality,false +Simon,newsmast.social,Programming,programming,false +Simon,newsmast.social,Puzzles,puzzles,false +Simon,newsmast.social,Science,science,false +Simon,newsmast.social,Social Media,social_media,false +Simon,newsmast.social,Social Sciences,social_sciences,false +Simon,newsmast.social,Space,space,false +Simon,newsmast.social,Technology,technology,true +Simon,newsmast.social,TV & Radio,tv_radio,false +Simon,newsmast.social,Ukraine Invasion,ukraine_invasion,false +Simon,newsmast.social,Visual Arts,visual_arts,false +Simon,newsmast.social,Weather,weather,false +Simon,newsmast.social,Women’s Voices,women_voices,false +game,newsmast.social,Breaking News,breaking_news,false +game,newsmast.social,Creative Arts,creative_arts,false +game,newsmast.social,Food & Drink,food_drink,false +game,newsmast.social,Humour,humour,true +game,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false +game,newsmast.social,Nature & Wildlife,nature_wildlife,false +game,newsmast.social,Journalism & Comment,news_comment_data,false +game,newsmast.social,Pets,pets,false +game,newsmast.social,Puzzles,puzzles,false +game,newsmast.social,Social Media,social_media,false +game,newsmast.social,Travel,travel,false +game,newsmast.social,Ukraine Invasion,ukraine_invasion,false +game,newsmast.social,Weather,weather,false +violiver,newsmast.social,Activism & Civil Rights,activism_civil_rights,false +violiver,newsmast.social,LGBTQ+,lgbtq,true +violiver,newsmast.social,Music,music,false +violiver,newsmast.social,Performing Arts,performing_arts,false +violiver,newsmast.social,Science,science,false +Binary_MinKhant,newsmast.social,Journalism & Comment,news_comment_data,true +Binary_MinKhant,newsmast.social,Social Media,social_media,false +Binary_MinKhant,newsmast.social,Ukraine Invasion,ukraine_invasion,false +Binary_MinKhant,newsmast.social,Weather,weather,false +Binary_MinKhant,newsmast.social,Breaking News,breaking_news,false +Binary_MinKhant,newsmast.social,Climate change,climate_change,false +Binary_MinKhant,newsmast.social,Energy & Pollution,energy_pollution,false +Binary_MinKhant,newsmast.social,Environment,environment,false +Binary_MinKhant,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false +Binary_MinKhant,newsmast.social,Indigenous Peoples,indigenous_peoples,false +Binary_MinKhant,newsmast.social,Disabled Voices,disabled_voices,false +Binary_MinKhant,newsmast.social,LGBTQ+,lgbtq,false +Binary_MinKhant,newsmast.social,Immigrants Rights,immigrants_rights,false +Binary_MinKhant,newsmast.social,Activism & Civil Rights,activism_civil_rights,false +Binary_MinKhant,newsmast.social,Black Voices,black_voices,false +Binary_MinKhant,newsmast.social,Women’s Voices,women_voices,false +Binary_MinKhant,newsmast.social,Markets & Finance,markets_finance,false +Binary_MinKhant,newsmast.social,Business,business,false +Binary_MinKhant,newsmast.social,Workers Rights,workers_rights,false +Binary_MinKhant,newsmast.social,Engineering,engineering,false +Binary_MinKhant,newsmast.social,Technology,technology,false +Binary_MinKhant,newsmast.social,AI,ai,false +Binary_MinKhant,newsmast.social,Programming,programming,false +Binary_MinKhant,newsmast.social,Chemistry,chemistry,false +Binary_MinKhant,newsmast.social,Science,science,false +Binary_MinKhant,newsmast.social,Space,space,false +Binary_MinKhant,newsmast.social,Biology,biology,false +Binary_MinKhant,newsmast.social,Mathematics,mathematics,false +Binary_MinKhant,newsmast.social,Physics,physics,false +Binary_MinKhant,newsmast.social,History,history,false +Binary_MinKhant,newsmast.social,Humanities,humanities,false +Binary_MinKhant,newsmast.social,Social Sciences,social_sciences,false +Binary_MinKhant,newsmast.social,Philosophy,philosophy,false +Binary_MinKhant,newsmast.social,Sport,sport,false +Binary_MinKhant,newsmast.social,Football,football,false +Binary_MinKhant,newsmast.social,US Sport,us_sport,false +Binary_MinKhant,newsmast.social,Creative Arts,creative_arts,false +Binary_MinKhant,newsmast.social,Humour,humour,false +Binary_MinKhant,newsmast.social,Pets,pets,false +Binary_MinKhant,newsmast.social,Nature & Wildlife,nature_wildlife,false +Binary_MinKhant,newsmast.social,Food & Drink,food_drink,false +Binary_MinKhant,newsmast.social,Puzzles,puzzles,false +Binary_MinKhant,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false +Binary_MinKhant,newsmast.social,Travel,travel,false +Binary_MinKhant,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +Binary_MinKhant,newsmast.social,Poverty & Inequality,poverty_inequality,false +Binary_MinKhant,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false +Binary_MinKhant,newsmast.social,US Politics,us_politics,false +Binary_MinKhant,newsmast.social,Politics,politics,false +Binary_MinKhant,newsmast.social,Law & Justice,law_justice,false +Binary_MinKhant,newsmast.social,Healthcare,healthcare,false +Binary_MinKhant,newsmast.social,Academia & Research,academia_research,false +Binary_MinKhant,newsmast.social,Government & Policy,government_policy,false +Binary_MinKhant,newsmast.social,Visual Arts,visual_arts,false +Binary_MinKhant,newsmast.social,TV & Radio,tv_radio,false +Binary_MinKhant,newsmast.social,Photography,photography,false +Binary_MinKhant,newsmast.social,Performing Arts,performing_arts,false +Binary_MinKhant,newsmast.social,Music,music,false +Binary_MinKhant,newsmast.social,Movies,movies,false +Binary_MinKhant,newsmast.social,Gaming,gaming,false +Binary_MinKhant,newsmast.social,Books & Literature,books_literature,false +Binary_MinKhant,newsmast.social,Architecture & Design,architecture_design,false +sks1084,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false +sks1084,newsmast.social,Breaking News,breaking_news,false +sks1084,newsmast.social,Climate change,climate_change,false +sks1084,newsmast.social,Energy & Pollution,energy_pollution,false +sks1084,newsmast.social,Environment,environment,false +sks1084,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false +sks1084,newsmast.social,Social Media,social_media,false +sks1084,newsmast.social,Ukraine Invasion,ukraine_invasion,false +sks1084,newsmast.social,Weather,weather,true +aadyrocker,newsmast.social,Breaking News,breaking_news,true +aadyrocker,newsmast.social,Football,football,false +aadyrocker,newsmast.social,Journalism & Comment,news_comment_data,false +aadyrocker,newsmast.social,Sport,sport,false +aadyrocker,newsmast.social,US Sport,us_sport,false +MarciaHHendrick,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false +MarciaHHendrick,newsmast.social,Breaking News,breaking_news,false +MarciaHHendrick,newsmast.social,Climate change,climate_change,false +MarciaHHendrick,newsmast.social,Democracy & Human Rights,democracy_human_rights,true +MarciaHHendrick,newsmast.social,Energy & Pollution,energy_pollution,false +MarciaHHendrick,newsmast.social,Environment,environment,false +MarciaHHendrick,newsmast.social,Government & Policy,government_policy,false +MarciaHHendrick,newsmast.social,Law & Justice,law_justice,false +MarciaHHendrick,newsmast.social,Poverty & Inequality,poverty_inequality,false +MarciaHHendrick,newsmast.social,Ukraine Invasion,ukraine_invasion,false +MarciaHHendrick,newsmast.social,US Politics,us_politics,false +maungchawnwe,newsmast.social,Academia & Research,academia_research,false +maungchawnwe,newsmast.social,AI,ai,false +maungchawnwe,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false +maungchawnwe,newsmast.social,Biology,biology,false +maungchawnwe,newsmast.social,Breaking News,breaking_news,false +maungchawnwe,newsmast.social,Chemistry,chemistry,false +maungchawnwe,newsmast.social,Climate change,climate_change,false +maungchawnwe,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +maungchawnwe,newsmast.social,Energy & Pollution,energy_pollution,false +maungchawnwe,newsmast.social,Engineering,engineering,true +maungchawnwe,newsmast.social,Environment,environment,false +maungchawnwe,newsmast.social,Government & Policy,government_policy,false +maungchawnwe,newsmast.social,Healthcare,healthcare,false +maungchawnwe,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false +maungchawnwe,newsmast.social,Law & Justice,law_justice,false +maungchawnwe,newsmast.social,Mathematics,mathematics,false +maungchawnwe,newsmast.social,Journalism & Comment,news_comment_data,false +maungchawnwe,newsmast.social,Physics,physics,false +maungchawnwe,newsmast.social,Politics,politics,false +maungchawnwe,newsmast.social,Poverty & Inequality,poverty_inequality,false +maungchawnwe,newsmast.social,Programming,programming,false +maungchawnwe,newsmast.social,Science,science,false +maungchawnwe,newsmast.social,Social Media,social_media,false +maungchawnwe,newsmast.social,Space,space,false +maungchawnwe,newsmast.social,Technology,technology,false +maungchawnwe,newsmast.social,Ukraine Invasion,ukraine_invasion,false +maungchawnwe,newsmast.social,US Politics,us_politics,false +maungchawnwe,newsmast.social,Weather,weather,false +stuckiniceland,newsmast.social,Business,business,false +stuckiniceland,newsmast.social,Creative Arts,creative_arts,false +stuckiniceland,newsmast.social,Food & Drink,food_drink,false +stuckiniceland,newsmast.social,Humour,humour,false +stuckiniceland,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false +stuckiniceland,newsmast.social,Nature & Wildlife,nature_wildlife,false +stuckiniceland,newsmast.social,Pets,pets,false +stuckiniceland,newsmast.social,Photography,photography,false +stuckiniceland,newsmast.social,Puzzles,puzzles,false +stuckiniceland,newsmast.social,Travel,travel,true +HarveyJKaye,newsmast.social,Breaking News,breaking_news,false +HarveyJKaye,newsmast.social,Government & Policy,government_policy,false +HarveyJKaye,newsmast.social,History,history,false +HarveyJKaye,newsmast.social,Humanities,humanities,false +HarveyJKaye,newsmast.social,Journalism & Comment,news_comment_data,true +HarveyJKaye,newsmast.social,Social Sciences,social_sciences,false +HarveyJKaye,newsmast.social,Ukraine Invasion,ukraine_invasion,false +HarveyJKaye,newsmast.social,US Politics,us_politics,false +alemida30,newsmast.social,Breaking News,breaking_news,false +alemida30,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +alemida30,newsmast.social,Humanities,humanities,false +alemida30,newsmast.social,LGBTQ+,lgbtq,true +alemida30,newsmast.social,Social Media,social_media,false +CenTxHank,newsmast.social,History,history,true +CenTxHank,newsmast.social,Humanities,humanities,false +CenTxHank,newsmast.social,Philosophy,philosophy,false +CenTxHank,newsmast.social,Physics,physics,false +CenTxHank,newsmast.social,Space,space,false +puk4_heart,newsmast.social,AI,ai,false +puk4_heart,newsmast.social,Creative Arts,creative_arts,false +puk4_heart,newsmast.social,Engineering,engineering,false +puk4_heart,newsmast.social,Food & Drink,food_drink,false +puk4_heart,newsmast.social,Social Media,social_media,true +puk4_heart,newsmast.social,Weather,weather,false +Test_App,newsmast.social,AI,ai,false +Test_App,newsmast.social,Technology,technology,true +Test_App,newsmast.social,Nature & Wildlife,nature_wildlife,false +sithudev,newsmast.social,Academia & Research,academia_research,false +sithudev,newsmast.social,Activism & Civil Rights,activism_civil_rights,false +sithudev,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false +sithudev,newsmast.social,Black Voices,black_voices,false +sithudev,newsmast.social,Breaking News,breaking_news,true +sithudev,newsmast.social,Climate change,climate_change,false +sithudev,newsmast.social,Disabled Voices,disabled_voices,false +sithudev,newsmast.social,Energy & Pollution,energy_pollution,false +sithudev,newsmast.social,Environment,environment,false +sithudev,newsmast.social,Government & Policy,government_policy,false +sithudev,newsmast.social,Healthcare,healthcare,false +sithudev,newsmast.social,Immigrants Rights,immigrants_rights,false +sithudev,newsmast.social,Indigenous Peoples,indigenous_peoples,false +sithudev,newsmast.social,Law & Justice,law_justice,false +sithudev,newsmast.social,LGBTQ+,lgbtq,false +sithudev,newsmast.social,Journalism & Comment,news_comment_data,false +sithudev,newsmast.social,Politics,politics,false +sithudev,newsmast.social,Social Media,social_media,false +sithudev,newsmast.social,Ukraine Invasion,ukraine_invasion,false +sithudev,newsmast.social,US Politics,us_politics,false +sithudev,newsmast.social,Weather,weather,false +sithudev,newsmast.social,Women’s Voices,women_voices,false +sciencefeed,newsmast.social,Biology,biology,false +sciencefeed,newsmast.social,Chemistry,chemistry,false +sciencefeed,newsmast.social,Mathematics,mathematics,false +sciencefeed,newsmast.social,Physics,physics,false +sciencefeed,newsmast.social,Science,science,true +sciencefeed,newsmast.social,Space,space,false +environmentfeed,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false +environmentfeed,newsmast.social,Climate change,climate_change,false +environmentfeed,newsmast.social,Energy & Pollution,energy_pollution,false +environmentfeed,newsmast.social,Environment,environment,true +environmentfeed,newsmast.social,Poverty & Inequality,poverty_inequality,false +dpopa25,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false +dpopa25,newsmast.social,Books & Literature,books_literature,false +dpopa25,newsmast.social,Creative Arts,creative_arts,false +dpopa25,newsmast.social,Environment,environment,false +dpopa25,newsmast.social,Food & Drink,food_drink,false +dpopa25,newsmast.social,History,history,false +dpopa25,newsmast.social,Humanities,humanities,false +dpopa25,newsmast.social,Humour,humour,true +dpopa25,newsmast.social,Science,science,false +dpopa25,newsmast.social,Social Sciences,social_sciences,false +dpopa25,newsmast.social,Visual Arts,visual_arts,false +acastro,newsmast.social,AI,ai,true +acastro,newsmast.social,Architecture & Design,architecture_design,false +acastro,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false +acastro,newsmast.social,Books & Literature,books_literature,false +acastro,newsmast.social,Creative Arts,creative_arts,false +acastro,newsmast.social,Energy & Pollution,energy_pollution,false +acastro,newsmast.social,History,history,false +acastro,newsmast.social,Humanities,humanities,false +acastro,newsmast.social,Humour,humour,false +acastro,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false +acastro,newsmast.social,Music,music,false +acastro,newsmast.social,Philosophy,philosophy,false +acastro,newsmast.social,Puzzles,puzzles,false +acastro,newsmast.social,Social Sciences,social_sciences,false +acastro,newsmast.social,Space,space,false +acastro,newsmast.social,Technology,technology,false +acastro,newsmast.social,Visual Arts,visual_arts,false +cjapsmith,newsmast.social,Climate change,climate_change,false +cjapsmith,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +cjapsmith,newsmast.social,Environment,environment,false +cjapsmith,newsmast.social,Humanities,humanities,false +cjapsmith,newsmast.social,Philosophy,philosophy,true +cjapsmith,newsmast.social,Poverty & Inequality,poverty_inequality,false +impactphysio,newsmast.social,Breaking News,breaking_news,false +impactphysio,newsmast.social,Journalism & Comment,news_comment_data,false +impactphysio,newsmast.social,Social Media,social_media,true +impactphysio,newsmast.social,Ukraine Invasion,ukraine_invasion,false +impactphysio,newsmast.social,Weather,weather,false +eannac,newsmast.social,Government & Policy,government_policy,false +eannac,newsmast.social,Politics,politics,false +eannac,newsmast.social,Technology,technology,false +eannac,newsmast.social,US Politics,us_politics,false +eannac,newsmast.social,Weather,weather,false +eannac,newsmast.social,Science,science,false +eannac,newsmast.social,Philosophy,philosophy,false +eannac,newsmast.social,Law & Justice,law_justice,false +eannac,newsmast.social,Business,business,true +eannac,newsmast.social,Journalism & Comment,news_comment_data,false +eannac,newsmast.social,History,history,false +eannac,newsmast.social,Energy & Pollution,energy_pollution,false +eannac,newsmast.social,Social Media,social_media,false +eannac,newsmast.social,Social Sciences,social_sciences,false +eannac,newsmast.social,Climate change,climate_change,false +eannac,newsmast.social,Academia & Research,academia_research,false +eannac,newsmast.social,Space,space,false +eannac,newsmast.social,AI,ai,false +abchcz4p,newsmast.social,AI,ai,false +abchcz4p,newsmast.social,Breaking News,breaking_news,false +abchcz4p,newsmast.social,Football,football,false +abchcz4p,newsmast.social,Programming,programming,false +abchcz4p,newsmast.social,Science,science,false +abchcz4p,newsmast.social,Space,space,false +abchcz4p,newsmast.social,Sport,sport,false +abchcz4p,newsmast.social,Technology,technology,true +CELSET,newsmast.social,Breaking News,breaking_news,false +CELSET,newsmast.social,Law & Justice,law_justice,false +CELSET,newsmast.social,Politics,politics,false +CELSET,newsmast.social,US Politics,us_politics,false +CELSET,newsmast.social,Ukraine Invasion,ukraine_invasion,false +CELSET,newsmast.social,Social Media,social_media,false +CELSET,newsmast.social,Weather,weather,false +CELSET,newsmast.social,Healthcare,healthcare,false +CELSET,newsmast.social,Workers Rights,workers_rights,false +CELSET,newsmast.social,Social Sciences,social_sciences,false +CELSET,newsmast.social,History,history,false +CELSET,newsmast.social,Movies,movies,false +CELSET,newsmast.social,Music,music,false +CELSET,newsmast.social,Performing Arts,performing_arts,false +CELSET,newsmast.social,TV & Radio,tv_radio,false +CELSET,newsmast.social,Pets,pets,false +CELSET,newsmast.social,Creative Arts,creative_arts,false +CELSET,newsmast.social,Puzzles,puzzles,false +CELSET,newsmast.social,Nature & Wildlife,nature_wildlife,false +CELSET,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false +CELSET,newsmast.social,Humour,humour,false +CELSET,newsmast.social,Journalism & Comment,news_comment_data,false +CELSET,newsmast.social,Books & Literature,books_literature,false +CELSET,newsmast.social,Black Voices,black_voices,false +CELSET,newsmast.social,Immigrants Rights,immigrants_rights,false +CELSET,newsmast.social,Indigenous Peoples,indigenous_peoples,false +CELSET,newsmast.social,Women’s Voices,women_voices,false +CELSET,newsmast.social,Activism & Civil Rights,activism_civil_rights,false +CELSET,newsmast.social,Government & Policy,government_policy,true +marianaa,newsmast.social,Business,business,false +marianaa,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +marianaa,newsmast.social,Markets & Finance,markets_finance,false +marianaa,newsmast.social,Women’s Voices,women_voices,false +marianaa,newsmast.social,LGBTQ+,lgbtq,true j022,newsmast.social,Breaking News,breaking_news,false j022,newsmast.social,Markets & Finance,markets_finance,false j022,newsmast.social,Journalism & Comment,news_comment_data,false j022,newsmast.social,Weather,weather,false j022,newsmast.social,Workers Rights,workers_rights,true +jelly427,newsmast.social,Breaking News,breaking_news,false +jelly427,newsmast.social,Engineering,engineering,false +jelly427,newsmast.social,Football,football,false +jelly427,newsmast.social,Journalism & Comment,news_comment_data,false +jelly427,newsmast.social,Programming,programming,false +jelly427,newsmast.social,Social Media,social_media,false +jelly427,newsmast.social,Sport,sport,false +jelly427,newsmast.social,Technology,technology,false +jelly427,newsmast.social,Ukraine Invasion,ukraine_invasion,false +jelly427,newsmast.social,US Sport,us_sport,false +jelly427,newsmast.social,Weather,weather,false +jelly427,newsmast.social,AI,ai,true +shortstay,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,true +shortstay,newsmast.social,Books & Literature,books_literature,false +shortstay,newsmast.social,Breaking News,breaking_news,false +shortstay,newsmast.social,Climate change,climate_change,false +shortstay,newsmast.social,Philosophy,philosophy,false +stevetough,newsmast.social,AI,ai,false +stevetough,newsmast.social,Biology,biology,false +stevetough,newsmast.social,Breaking News,breaking_news,false +stevetough,newsmast.social,Chemistry,chemistry,false +stevetough,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +stevetough,newsmast.social,Engineering,engineering,false +stevetough,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false +stevetough,newsmast.social,Mathematics,mathematics,false +stevetough,newsmast.social,Journalism & Comment,news_comment_data,false +stevetough,newsmast.social,Physics,physics,false +stevetough,newsmast.social,Poverty & Inequality,poverty_inequality,false +stevetough,newsmast.social,Programming,programming,false +stevetough,newsmast.social,Science,science,false +stevetough,newsmast.social,Social Media,social_media,false +stevetough,newsmast.social,Space,space,false +stevetough,newsmast.social,Sport,sport,false +stevetough,newsmast.social,Ukraine Invasion,ukraine_invasion,false +stevetough,newsmast.social,US Sport,us_sport,false +stevetough,newsmast.social,Weather,weather,false +stevetough,newsmast.social,Government & Policy,government_policy,false +stevetough,newsmast.social,Academia & Research,academia_research,false +stevetough,newsmast.social,Healthcare,healthcare,false +stevetough,newsmast.social,Law & Justice,law_justice,false +stevetough,newsmast.social,Politics,politics,false +stevetough,newsmast.social,US Politics,us_politics,false +stevetough,newsmast.social,Environment,environment,false +stevetough,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false +stevetough,newsmast.social,Climate change,climate_change,false +stevetough,newsmast.social,Energy & Pollution,energy_pollution,false +stevetough,newsmast.social,Activism & Civil Rights,activism_civil_rights,false +stevetough,newsmast.social,Black Voices,black_voices,false +stevetough,newsmast.social,Disabled Voices,disabled_voices,false +stevetough,newsmast.social,Immigrants Rights,immigrants_rights,false +stevetough,newsmast.social,Indigenous Peoples,indigenous_peoples,false +stevetough,newsmast.social,LGBTQ+,lgbtq,false +stevetough,newsmast.social,Women’s Voices,women_voices,false +stevetough,newsmast.social,Business,business,false +stevetough,newsmast.social,Markets & Finance,markets_finance,false +stevetough,newsmast.social,Workers Rights,workers_rights,false +stevetough,newsmast.social,Technology,technology,false +stevetough,newsmast.social,Humanities,humanities,false +stevetough,newsmast.social,Social Sciences,social_sciences,false +stevetough,newsmast.social,History,history,true +stevetough,newsmast.social,Philosophy,philosophy,false +stevetough,newsmast.social,Architecture & Design,architecture_design,false +stevetough,newsmast.social,Books & Literature,books_literature,false +stevetough,newsmast.social,Gaming,gaming,false +stevetough,newsmast.social,Movies,movies,false +stevetough,newsmast.social,Music,music,false +stevetough,newsmast.social,Performing Arts,performing_arts,false +stevetough,newsmast.social,Photography,photography,false +stevetough,newsmast.social,TV & Radio,tv_radio,false +stevetough,newsmast.social,Visual Arts,visual_arts,false +stevetough,newsmast.social,Football,football,false +stevetough,newsmast.social,Creative Arts,creative_arts,false +stevetough,newsmast.social,Food & Drink,food_drink,false +stevetough,newsmast.social,Humour,humour,false +stevetough,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false +stevetough,newsmast.social,Nature & Wildlife,nature_wildlife,false +stevetough,newsmast.social,Pets,pets,false +stevetough,newsmast.social,Puzzles,puzzles,false +stevetough,newsmast.social,Travel,travel,false +michaelleib,newsmast.social,AI,ai,false +michaelleib,newsmast.social,Business,business,false +michaelleib,newsmast.social,Engineering,engineering,false +michaelleib,newsmast.social,Government & Policy,government_policy,false +michaelleib,newsmast.social,Markets & Finance,markets_finance,false +michaelleib,newsmast.social,Politics,politics,false +michaelleib,newsmast.social,Programming,programming,false +michaelleib,newsmast.social,Science,science,false +michaelleib,newsmast.social,Technology,technology,false +michaelleib,newsmast.social,Ukraine Invasion,ukraine_invasion,true +michaelleib,newsmast.social,US Politics,us_politics,false +Manjunatha,newsmast.social,AI,ai,false +Manjunatha,newsmast.social,Biology,biology,false +Manjunatha,newsmast.social,Humour,humour,false +Manjunatha,newsmast.social,Science,science,true +magnor,newsmast.social,Academia & Research,academia_research,false +magnor,newsmast.social,Activism & Civil Rights,activism_civil_rights,false +magnor,newsmast.social,AI,ai,false +magnor,newsmast.social,Breaking News,breaking_news,false +magnor,newsmast.social,Climate change,climate_change,false +magnor,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +magnor,newsmast.social,Energy & Pollution,energy_pollution,false +magnor,newsmast.social,Engineering,engineering,false +magnor,newsmast.social,Environment,environment,false +magnor,newsmast.social,Government & Policy,government_policy,false +magnor,newsmast.social,History,history,false +magnor,newsmast.social,LGBTQ+,lgbtq,false +magnor,newsmast.social,Mathematics,mathematics,false +magnor,newsmast.social,Journalism & Comment,news_comment_data,false +magnor,newsmast.social,Physics,physics,false +magnor,newsmast.social,Politics,politics,false +magnor,newsmast.social,Poverty & Inequality,poverty_inequality,false +magnor,newsmast.social,Programming,programming,false +magnor,newsmast.social,Social Media,social_media,false +magnor,newsmast.social,Space,space,false +magnor,newsmast.social,Technology,technology,false +magnor,newsmast.social,US Politics,us_politics,false +magnor,newsmast.social,Women’s Voices,women_voices,false +magnor,newsmast.social,Workers Rights,workers_rights,false +magnor,newsmast.social,Science,science,true +ppt556_365,newsmast.social,Activism & Civil Rights,activism_civil_rights,false +ppt556_365,newsmast.social,Black Voices,black_voices,false +ppt556_365,newsmast.social,Breaking News,breaking_news,false +ppt556_365,newsmast.social,Disabled Voices,disabled_voices,false +ppt556_365,newsmast.social,Immigrants Rights,immigrants_rights,false +ppt556_365,newsmast.social,Indigenous Peoples,indigenous_peoples,false +ppt556_365,newsmast.social,LGBTQ+,lgbtq,false +ppt556_365,newsmast.social,Journalism & Comment,news_comment_data,false +ppt556_365,newsmast.social,Social Media,social_media,true +ppt556_365,newsmast.social,Ukraine Invasion,ukraine_invasion,false +ppt556_365,newsmast.social,Weather,weather,false +ppt556_365,newsmast.social,Women’s Voices,women_voices,false +satnaing,newsmast.social,Breaking News,breaking_news,true +satnaing,newsmast.social,Journalism & Comment,news_comment_data,false +satnaing,newsmast.social,Social Media,social_media,false +satnaing,newsmast.social,Ukraine Invasion,ukraine_invasion,false +satnaing,newsmast.social,Weather,weather,false +wwrr,newsmast.social,AI,ai,false +wwrr,newsmast.social,Breaking News,breaking_news,true +wwrr,newsmast.social,Engineering,engineering,false +wwrr,newsmast.social,Government & Policy,government_policy,false +wwrr,newsmast.social,Healthcare,healthcare,false +wwrr,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false +wwrr,newsmast.social,Law & Justice,law_justice,false +wwrr,newsmast.social,Politics,politics,false +wwrr,newsmast.social,Poverty & Inequality,poverty_inequality,false +wwrr,newsmast.social,Programming,programming,false +wwrr,newsmast.social,Technology,technology,false +wwrr,newsmast.social,US Politics,us_politics,false +wolfw,newsmast.social,Academia & Research,academia_research,false +wolfw,newsmast.social,Activism & Civil Rights,activism_civil_rights,false +wolfw,newsmast.social,Books & Literature,books_literature,false +wolfw,newsmast.social,Breaking News,breaking_news,false +wolfw,newsmast.social,Democracy & Human Rights,democracy_human_rights,true +wolfw,newsmast.social,Movies,movies,false +wolfw,newsmast.social,Music,music,false +wolfw,newsmast.social,Journalism & Comment,news_comment_data,false +wolfw,newsmast.social,Performing Arts,performing_arts,false +wolfw,newsmast.social,Philosophy,philosophy,false +wolfw,newsmast.social,Politics,politics,false +wolfw,newsmast.social,Social Sciences,social_sciences,false +wolfw,newsmast.social,US Politics,us_politics,false +wolfw,newsmast.social,Visual Arts,visual_arts,false +wolfw,newsmast.social,Women’s Voices,women_voices,false +wolfw,newsmast.social,Workers Rights,workers_rights,false +callum,newsmast.social,Books & Literature,books_literature,false +callum,newsmast.social,Gaming,gaming,false +callum,newsmast.social,Movies,movies,true +callum,newsmast.social,Performing Arts,performing_arts,false +callum,newsmast.social,TV & Radio,tv_radio,false +callum,newsmast.social,Visual Arts,visual_arts,false +robbhoy,newsmast.social,AI,ai,false +robbhoy,newsmast.social,Architecture & Design,architecture_design,false +robbhoy,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false +robbhoy,newsmast.social,Books & Literature,books_literature,false +robbhoy,newsmast.social,Climate change,climate_change,false +robbhoy,newsmast.social,Energy & Pollution,energy_pollution,false +robbhoy,newsmast.social,Engineering,engineering,false +robbhoy,newsmast.social,Environment,environment,false +robbhoy,newsmast.social,Gaming,gaming,false +robbhoy,newsmast.social,Movies,movies,true +robbhoy,newsmast.social,Music,music,false +robbhoy,newsmast.social,Performing Arts,performing_arts,false +robbhoy,newsmast.social,Photography,photography,false +robbhoy,newsmast.social,Programming,programming,false +robbhoy,newsmast.social,Social Media,social_media,false +robbhoy,newsmast.social,Technology,technology,false +robbhoy,newsmast.social,TV & Radio,tv_radio,false +robbhoy,newsmast.social,Ukraine Invasion,ukraine_invasion,false +robbhoy,newsmast.social,Visual Arts,visual_arts,false +robbhoy,newsmast.social,Weather,weather,false +HotCoffee,newsmast.social,Physics,physics,false +HotCoffee,newsmast.social,Food & Drink,food_drink,false +HotCoffee,newsmast.social,Humour,humour,false +HotCoffee,newsmast.social,Pets,pets,false +HotCoffee,newsmast.social,Nature & Wildlife,nature_wildlife,false +HotCoffee,newsmast.social,Biology,biology,false +HotCoffee,newsmast.social,Breaking News,breaking_news,true +HotCoffee,newsmast.social,Chemistry,chemistry,false +HotCoffee,newsmast.social,Science,science,false +HotCoffee,newsmast.social,Social Media,social_media,false +HotCoffee,newsmast.social,Space,space,false +HotCoffee,newsmast.social,Technology,technology,false +HotCoffee,newsmast.social,Ukraine Invasion,ukraine_invasion,false +HotCoffee,newsmast.social,Movies,movies,false +HotCoffee,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false +chriskenshin,newsmast.social,Biology,biology,true +chriskenshin,newsmast.social,Business,business,false +chriskenshin,newsmast.social,Government & Policy,government_policy,false +chriskenshin,newsmast.social,Law & Justice,law_justice,false +chriskenshin,newsmast.social,Science,science,false +chriskenshin,newsmast.social,Technology,technology,false +chriskenshin,newsmast.social,Workers Rights,workers_rights,false +silly_hamster,newsmast.social,AI,ai,false +silly_hamster,newsmast.social,Biology,biology,true +silly_hamster,newsmast.social,Breaking News,breaking_news,false +silly_hamster,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +silly_hamster,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false +silly_hamster,newsmast.social,Journalism & Comment,news_comment_data,false +silly_hamster,newsmast.social,Physics,physics,false +silly_hamster,newsmast.social,Poverty & Inequality,poverty_inequality,false +silly_hamster,newsmast.social,Science,science,false +silly_hamster,newsmast.social,Social Media,social_media,false +silly_hamster,newsmast.social,Space,space,false +silly_hamster,newsmast.social,Technology,technology,false +petroofrats,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false +petroofrats,newsmast.social,Biology,biology,true +petroofrats,newsmast.social,Environment,environment,false +petroofrats,newsmast.social,Programming,programming,false +petroofrats,newsmast.social,Science,science,false +petroofrats,newsmast.social,Technology,technology,false +sharonk,newsmast.social,Markets & Finance,markets_finance,true +sharonk,newsmast.social,Activism & Civil Rights,activism_civil_rights,false +sharonk,newsmast.social,Black Voices,black_voices,false +sharonk,newsmast.social,Disabled Voices,disabled_voices,false +sharonk,newsmast.social,Immigrants Rights,immigrants_rights,false +sharonk,newsmast.social,Indigenous Peoples,indigenous_peoples,false +sharonk,newsmast.social,LGBTQ+,lgbtq,false +sharonk,newsmast.social,Women’s Voices,women_voices,false +sharonk,newsmast.social,Business,business,false +sharonk,newsmast.social,AI,ai,false +sharonk,newsmast.social,Workers Rights,workers_rights,false +sharonk,newsmast.social,Technology,technology,false +sithu_dev3,newsmast.social,Journalism & Comment,news_comment_data,false +sithu_dev3,newsmast.social,Creative Arts,creative_arts,false +sithu_dev3,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false +sithu_dev3,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +sithu_dev3,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,true +sithu_dev3,newsmast.social,Poverty & Inequality,poverty_inequality,false +sithu_dev3,newsmast.social,Politics,politics,false +sithu_dev3,newsmast.social,Ukraine Invasion,ukraine_invasion,false +sithu_dev3,newsmast.social,Weather,weather,false +sithu_dev3,newsmast.social,Environment,environment,false +sithu_dev3,newsmast.social,Immigrants Rights,immigrants_rights,false +WeCanFlipTS,newsmast.social,Activism & Civil Rights,activism_civil_rights,false +WeCanFlipTS,newsmast.social,AI,ai,false +WeCanFlipTS,newsmast.social,Business,business,false +WeCanFlipTS,newsmast.social,Government & Policy,government_policy,false +WeCanFlipTS,newsmast.social,Humanities,humanities,false +WeCanFlipTS,newsmast.social,Law & Justice,law_justice,false +WeCanFlipTS,newsmast.social,Markets & Finance,markets_finance,false +WeCanFlipTS,newsmast.social,Politics,politics,false +WeCanFlipTS,newsmast.social,Social Sciences,social_sciences,false +WeCanFlipTS,newsmast.social,Technology,technology,false +WeCanFlipTS,newsmast.social,Women’s Voices,women_voices,true +WeCanFlipTS,newsmast.social,Workers Rights,workers_rights,false 0j22,newsmast.social,Architecture & Design,architecture_design,false 0j22,newsmast.social,Books & Literature,books_literature,false 0j22,newsmast.social,Business,business,false -0j22,newsmast.social,Workers Rights,workers_rights,false 0j22,newsmast.social,Markets & Finance,markets_finance,true +0j22,newsmast.social,Workers Rights,workers_rights,false +DforDog,newsmast.social,Creative Arts,creative_arts,false +DforDog,newsmast.social,Humour,humour,false +DforDog,newsmast.social,Pets,pets,true +DforDog,newsmast.social,Philosophy,philosophy,false +DforDog,newsmast.social,Puzzles,puzzles,false +DforDog,newsmast.social,TV & Radio,tv_radio,false +kxgmdkvkg,newsmast.social,AI,ai,false +kxgmdkvkg,newsmast.social,Biology,biology,false +kxgmdkvkg,newsmast.social,Breaking News,breaking_news,true +kxgmdkvkg,newsmast.social,Chemistry,chemistry,false +kxgmdkvkg,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +kxgmdkvkg,newsmast.social,Engineering,engineering,false +kxgmdkvkg,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false +kxgmdkvkg,newsmast.social,Mathematics,mathematics,false +kxgmdkvkg,newsmast.social,Journalism & Comment,news_comment_data,false +kxgmdkvkg,newsmast.social,Physics,physics,false +kxgmdkvkg,newsmast.social,Poverty & Inequality,poverty_inequality,false +kxgmdkvkg,newsmast.social,Programming,programming,false +kxgmdkvkg,newsmast.social,Science,science,false +kxgmdkvkg,newsmast.social,Social Media,social_media,false +kxgmdkvkg,newsmast.social,Space,space,false +kxgmdkvkg,newsmast.social,Technology,technology,false +kxgmdkvkg,newsmast.social,Ukraine Invasion,ukraine_invasion,false +kxgmdkvkg,newsmast.social,Weather,weather,false +soundofamoped,newsmast.social,Academia & Research,academia_research,false +soundofamoped,newsmast.social,Architecture & Design,architecture_design,false +soundofamoped,newsmast.social,Biology,biology,false +soundofamoped,newsmast.social,Books & Literature,books_literature,false +soundofamoped,newsmast.social,Chemistry,chemistry,false +soundofamoped,newsmast.social,Creative Arts,creative_arts,false +soundofamoped,newsmast.social,Food & Drink,food_drink,false +soundofamoped,newsmast.social,Government & Policy,government_policy,false +soundofamoped,newsmast.social,Mathematics,mathematics,false +soundofamoped,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false +soundofamoped,newsmast.social,Music,music,false +soundofamoped,newsmast.social,Nature & Wildlife,nature_wildlife,false +soundofamoped,newsmast.social,Photography,photography,false +soundofamoped,newsmast.social,Physics,physics,false +soundofamoped,newsmast.social,Science,science,true +soundofamoped,newsmast.social,Space,space,false +soundofamoped,newsmast.social,Visual Arts,visual_arts,false +soundofamoped,newsmast.social,Humour,humour,false +soundofamoped,newsmast.social,Puzzles,puzzles,false +soundofamoped,newsmast.social,Pets,pets,false +soundofamoped,newsmast.social,Travel,travel,false +vespula,newsmast.social,Biology,biology,false +vespula,newsmast.social,Engineering,engineering,false +vespula,newsmast.social,Science,science,false +vespula,newsmast.social,Space,space,false +vespula,newsmast.social,Technology,technology,false +vespula,newsmast.social,AI,ai,true +Linguasia,newsmast.social,Architecture & Design,architecture_design,false +Linguasia,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false +Linguasia,newsmast.social,Books & Literature,books_literature,false +Linguasia,newsmast.social,Business,business,false +Linguasia,newsmast.social,Climate change,climate_change,false +Linguasia,newsmast.social,Creative Arts,creative_arts,false +Linguasia,newsmast.social,Energy & Pollution,energy_pollution,false +Linguasia,newsmast.social,Environment,environment,false +Linguasia,newsmast.social,Food & Drink,food_drink,false +Linguasia,newsmast.social,Gaming,gaming,false +Linguasia,newsmast.social,Humour,humour,false +Linguasia,newsmast.social,Markets & Finance,markets_finance,false +Linguasia,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false +Linguasia,newsmast.social,Movies,movies,false +Linguasia,newsmast.social,Music,music,false +Linguasia,newsmast.social,Nature & Wildlife,nature_wildlife,false +Linguasia,newsmast.social,Performing Arts,performing_arts,false +Linguasia,newsmast.social,Pets,pets,false +Linguasia,newsmast.social,Photography,photography,false +Linguasia,newsmast.social,Puzzles,puzzles,false +Linguasia,newsmast.social,Travel,travel,true +Linguasia,newsmast.social,TV & Radio,tv_radio,false +Linguasia,newsmast.social,Visual Arts,visual_arts,false +Linguasia,newsmast.social,Workers Rights,workers_rights,false +torogbeck,newsmast.social,Activism & Civil Rights,activism_civil_rights,false +torogbeck,newsmast.social,Creative Arts,creative_arts,false +torogbeck,newsmast.social,Government & Policy,government_policy,false +torogbeck,newsmast.social,History,history,false +torogbeck,newsmast.social,Humanities,humanities,false +torogbeck,newsmast.social,Humour,humour,false +torogbeck,newsmast.social,Law & Justice,law_justice,false +torogbeck,newsmast.social,LGBTQ+,lgbtq,false +torogbeck,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false +torogbeck,newsmast.social,Movies,movies,false +torogbeck,newsmast.social,Music,music,false +torogbeck,newsmast.social,Nature & Wildlife,nature_wildlife,false +torogbeck,newsmast.social,Journalism & Comment,news_comment_data,false +torogbeck,newsmast.social,Politics,politics,false +torogbeck,newsmast.social,Programming,programming,false +torogbeck,newsmast.social,Social Media,social_media,false +torogbeck,newsmast.social,Social Sciences,social_sciences,false +torogbeck,newsmast.social,Technology,technology,false +torogbeck,newsmast.social,TV & Radio,tv_radio,false +torogbeck,newsmast.social,US Politics,us_politics,false +torogbeck,newsmast.social,Weather,weather,false +torogbeck,newsmast.social,Breaking News,breaking_news,true +0j33,newsmast.social,AI,ai,true 0j33,newsmast.social,Business,business,false 0j33,newsmast.social,Engineering,engineering,false 0j33,newsmast.social,Markets & Finance,markets_finance,false 0j33,newsmast.social,Programming,programming,false -0j33,newsmast.social,AI,ai,true -0j30,newsmast.social,Business,business,false -0j30,newsmast.social,Creative Arts,creative_arts,false -0j30,newsmast.social,Humour,humour,false -0j30,newsmast.social,Markets & Finance,markets_finance,false -0j30,newsmast.social,Workers Rights,workers_rights,true -0j20,newsmast.social,Creative Arts,creative_arts,false -0j20,newsmast.social,Markets & Finance,markets_finance,false -0j20,newsmast.social,Technology,technology,false -0j20,newsmast.social,Workers Rights,workers_rights,false -0j20,newsmast.social,Business,business,true -fxdpntthm,newsmast.social,Biology,biology,false -Willow,newsmast.social,AI,ai,false -Willow,newsmast.social,Architecture & Design,architecture_design,false -Willow,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false -Willow,newsmast.social,Books & Literature,books_literature,false -Willow,newsmast.social,Business,business,false -Willow,newsmast.social,Environment,environment,false -Willow,newsmast.social,Philosophy,philosophy,false -Willow,newsmast.social,Programming,programming,false -Willow,newsmast.social,Social Sciences,social_sciences,false -Willow,newsmast.social,Visual Arts,visual_arts,false -Willow,newsmast.social,Climate change,climate_change,true -AlexiaPonchet,newsmast.social,US Sport,us_sport,false -AlexiaPonchet,newsmast.social,Football,football,false -Zahid11,newsmast.social,Academia & Research,academia_research,false -Zahid11,newsmast.social,Activism & Civil Rights,activism_civil_rights,false -Zahid11,newsmast.social,Architecture & Design,architecture_design,false -Zahid11,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false -Zahid11,newsmast.social,Biology,biology,false -Zahid11,newsmast.social,Black Voices,black_voices,false -emiliafilipowic,newsmast.social,Academia & Research,academia_research,false -emiliafilipowic,newsmast.social,Activism & Civil Rights,activism_civil_rights,false -emiliafilipowic,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false -emiliafilipowic,newsmast.social,Black Voices,black_voices,false -emiliafilipowic,newsmast.social,Breaking News,breaking_news,false -emiliafilipowic,newsmast.social,Climate change,climate_change,false -emiliafilipowic,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -emiliafilipowic,newsmast.social,Disabled Voices,disabled_voices,false -emiliafilipowic,newsmast.social,Energy & Pollution,energy_pollution,false -emiliafilipowic,newsmast.social,Environment,environment,false -emiliafilipowic,newsmast.social,Government & Policy,government_policy,false -emiliafilipowic,newsmast.social,Healthcare,healthcare,false -emiliafilipowic,newsmast.social,History,history,false -emiliafilipowic,newsmast.social,Humanities,humanities,false -emiliafilipowic,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false -emiliafilipowic,newsmast.social,Immigrants Rights,immigrants_rights,false -emiliafilipowic,newsmast.social,Indigenous Peoples,indigenous_peoples,false -emiliafilipowic,newsmast.social,Law & Justice,law_justice,false -emiliafilipowic,newsmast.social,LGBTQ+,lgbtq,false -emiliafilipowic,newsmast.social,Markets & Finance,markets_finance,false -emiliafilipowic,newsmast.social,Journalism & Comment,news_comment_data,false -emiliafilipowic,newsmast.social,Philosophy,philosophy,false -emiliafilipowic,newsmast.social,Politics,politics,false -emiliafilipowic,newsmast.social,Poverty & Inequality,poverty_inequality,false -emiliafilipowic,newsmast.social,Social Media,social_media,false -emiliafilipowic,newsmast.social,Social Sciences,social_sciences,false -emiliafilipowic,newsmast.social,Ukraine Invasion,ukraine_invasion,false -emiliafilipowic,newsmast.social,US Politics,us_politics,false -emiliafilipowic,newsmast.social,Weather,weather,false -emiliafilipowic,newsmast.social,Women’s Voices,women_voices,false -emiliafilipowic,newsmast.social,Workers Rights,workers_rights,false -emiliafilipowic,newsmast.social,Business,business,true -emiliafilipowic,newsmast.social,Gaming,gaming,false -Zahid11,newsmast.social,Books & Literature,books_literature,false -Zahid11,newsmast.social,Breaking News,breaking_news,false -Zahid11,newsmast.social,Business,business,false -Zahid11,newsmast.social,Chemistry,chemistry,false -Zahid11,newsmast.social,Climate change,climate_change,false -Zahid11,newsmast.social,Creative Arts,creative_arts,false -Zahid11,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -Zahid11,newsmast.social,Disabled Voices,disabled_voices,false -Zahid11,newsmast.social,Energy & Pollution,energy_pollution,false -Zahid11,newsmast.social,Engineering,engineering,false -csu,newsmast.social,AI,ai,false -csu,newsmast.social,Breaking News,breaking_news,false -csu,newsmast.social,Engineering,engineering,false -csu,newsmast.social,Mathematics,mathematics,false -csu,newsmast.social,Journalism & Comment,news_comment_data,false -csu,newsmast.social,Science,science,false -csu,newsmast.social,Social Media,social_media,false -csu,newsmast.social,Space,space,false -csu,newsmast.social,Technology,technology,false -csu,newsmast.social,Programming,programming,true -Zahid11,newsmast.social,Environment,environment,false -Zahid11,newsmast.social,AI,ai,true -qlp,linh.social,LGBTQ+,lgbtq,false -severus113,mastodon.social,Food & Drink,food_drink,false -severus113,mastodon.social,Humour,humour,false -severus113,mastodon.social,Mental Health & Wellbeing,mental_health_wellbeing,false -severus113,mastodon.social,Nature & Wildlife,nature_wildlife,false -severus113,mastodon.social,Pets,pets,false -severus113,mastodon.social,Puzzles,puzzles,false -severus113,mastodon.social,Travel,travel,false -severus113,mastodon.social,Creative Arts,creative_arts,true -neff,raphus.social,Architecture & Design,architecture_design,false -neff,raphus.social,Biodiversity & Rewilding,biodiversity_rewilding,false -neff,raphus.social,Indigenous Peoples,indigenous_peoples,false -neff,raphus.social,Photography,photography,false -neff,raphus.social,Visual Arts,visual_arts,false -neff,raphus.social,Women’s Voices,women_voices,false -neff,raphus.social,Gaming,gaming,true -myfender,mastodon.social,AI,ai,false -myfender,mastodon.social,Breaking News,breaking_news,false -myfender,mastodon.social,Engineering,engineering,false -myfender,mastodon.social,Politics,politics,false -myfender,mastodon.social,Technology,technology,true -sandwich,mastodon.world,Academia & Research,academia_research,false -sandwich,mastodon.world,Democracy & Human Rights,democracy_human_rights,false -sandwich,mastodon.world,Physics,physics,false -sandwich,mastodon.world,Politics,politics,false -sandwich,mastodon.world,Poverty & Inequality,poverty_inequality,false -sandwich,mastodon.world,Science,science,false -sandwich,mastodon.world,Social Media,social_media,false -sandwich,mastodon.world,Space,space,false -sandwich,mastodon.world,Technology,technology,false -sandwich,mastodon.world,US Sport,us_sport,false -sandwich,mastodon.world,Breaking News,breaking_news,true -Zahid11,newsmast.social,Food & Drink,food_drink,false -Zahid11,newsmast.social,Gaming,gaming,false -Zahid11,newsmast.social,Government & Policy,government_policy,false -Zahid11,newsmast.social,Healthcare,healthcare,false -Zahid11,newsmast.social,History,history,false -Zahid11,newsmast.social,Humanities,humanities,false -Zahid11,newsmast.social,Humour,humour,false -Zahid11,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false -Zahid11,newsmast.social,Immigrants Rights,immigrants_rights,false -Zahid11,newsmast.social,Indigenous Peoples,indigenous_peoples,false -Zahid11,newsmast.social,Law & Justice,law_justice,false -Zahid11,newsmast.social,LGBTQ+,lgbtq,false -Zahid11,newsmast.social,Markets & Finance,markets_finance,false -Zahid11,newsmast.social,Mathematics,mathematics,false -Zahid11,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false -Zahid11,newsmast.social,Movies,movies,false -Zahid11,newsmast.social,Music,music,false -Zahid11,newsmast.social,Nature & Wildlife,nature_wildlife,false -Zahid11,newsmast.social,Journalism & Comment,news_comment_data,false -Zahid11,newsmast.social,Performing Arts,performing_arts,false -Zahid11,newsmast.social,Pets,pets,false -Zahid11,newsmast.social,Philosophy,philosophy,false -Zahid11,newsmast.social,Photography,photography,false -Zahid11,newsmast.social,Physics,physics,false -Zahid11,newsmast.social,Politics,politics,false -Zahid11,newsmast.social,Poverty & Inequality,poverty_inequality,false -Zahid11,newsmast.social,Programming,programming,false -Zahid11,newsmast.social,Puzzles,puzzles,false -Zahid11,newsmast.social,Science,science,false -Zahid11,newsmast.social,Social Media,social_media,false -Zahid11,newsmast.social,Social Sciences,social_sciences,false -Zahid11,newsmast.social,Space,space,false -Zahid11,newsmast.social,Technology,technology,false -Zahid11,newsmast.social,Travel,travel,false -Zahid11,newsmast.social,TV & Radio,tv_radio,false -Zahid11,newsmast.social,Ukraine Invasion,ukraine_invasion,false -Zahid11,newsmast.social,US Politics,us_politics,false -Zahid11,newsmast.social,Visual Arts,visual_arts,false -Zahid11,newsmast.social,Weather,weather,false -Zahid11,newsmast.social,Women’s Voices,women_voices,false -Zahid11,newsmast.social,Workers Rights,workers_rights,false -qlp,linh.social,Journalism & Comment,news_comment_data,false -qlp,linh.social,Physics,physics,false -qlp,linh.social,Poverty & Inequality,poverty_inequality,false -qlp,linh.social,Programming,programming,false -qlp,linh.social,Science,science,false -goofy,newsmast.social,Journalism & Comment,news_comment_data,false -goofy,newsmast.social,Social Media,social_media,false -goofy,newsmast.social,Ukraine Invasion,ukraine_invasion,false -goofy,newsmast.social,Weather,weather,false -goofy,newsmast.social,Breaking News,breaking_news,true -bernardjensen,newsmast.social,Markets & Finance,markets_finance,false -bernardjensen,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false -bernardjensen,newsmast.social,Movies,movies,false -bernardjensen,newsmast.social,Music,music,false -bernardjensen,newsmast.social,Nature & Wildlife,nature_wildlife,false -bernardjensen,newsmast.social,Journalism & Comment,news_comment_data,false -bernardjensen,newsmast.social,Performing Arts,performing_arts,false -bernardjensen,newsmast.social,Philosophy,philosophy,false -bernardjensen,newsmast.social,Photography,photography,false -bernardjensen,newsmast.social,Politics,politics,false -bernardjensen,newsmast.social,Social Media,social_media,false -bernardjensen,newsmast.social,Social Sciences,social_sciences,false -bernardjensen,newsmast.social,Travel,travel,false -bernardjensen,newsmast.social,TV & Radio,tv_radio,false -bernardjensen,newsmast.social,US Politics,us_politics,false -bernardjensen,newsmast.social,Visual Arts,visual_arts,false -bernardjensen,newsmast.social,Women’s Voices,women_voices,false -bernardjensen,newsmast.social,Workers Rights,workers_rights,false -presidenttailor,newsmast.social,Business,business,false -presidenttailor,newsmast.social,Creative Arts,creative_arts,false -presidenttailor,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -presidenttailor,newsmast.social,Humanities,humanities,false -presidenttailor,newsmast.social,Markets & Finance,markets_finance,false -presidenttailor,newsmast.social,Journalism & Comment,news_comment_data,false -presidenttailor,newsmast.social,Social Media,social_media,false -presidenttailor,newsmast.social,Ukraine Invasion,ukraine_invasion,false -presidenttailor,newsmast.social,Weather,weather,false -presidenttailor,newsmast.social,Workers Rights,workers_rights,false -presidenttailor,newsmast.social,Breaking News,breaking_news,true -qlp,linh.social,Technology,technology,true -Miraculous,c.im,Architecture & Design,architecture_design,false -Miraculous,c.im,Books & Literature,books_literature,false -Miraculous,c.im,Breaking News,breaking_news,false -Miraculous,c.im,Movies,movies,false -Miraculous,c.im,Music,music,false -Miraculous,c.im,Journalism & Comment,news_comment_data,false -Miraculous,c.im,Performing Arts,performing_arts,false -Miraculous,c.im,Photography,photography,false -Miraculous,c.im,Social Media,social_media,false -Miraculous,c.im,TV & Radio,tv_radio,false -Miraculous,c.im,Ukraine Invasion,ukraine_invasion,false -Miraculous,c.im,Visual Arts,visual_arts,false -Miraculous,c.im,Weather,weather,false -Miraculous,c.im,Gaming,gaming,true -Lady_IniQ,newsmast.social,Architecture & Design,architecture_design,false -Lady_IniQ,newsmast.social,Gaming,gaming,false -Lady_IniQ,newsmast.social,Movies,movies,false -Lady_IniQ,newsmast.social,Nature & Wildlife,nature_wildlife,false -Lady_IniQ,newsmast.social,Pets,pets,false -Lady_IniQ,newsmast.social,Travel,travel,false -Lady_IniQ,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,true -Jon6705,mastodon.world,Activism & Civil Rights,activism_civil_rights,false -Jon6705,mastodon.world,AI,ai,false -Jon6705,mastodon.world,Biology,biology,false -Jon6705,mastodon.world,Black Voices,black_voices,false -Jon6705,mastodon.world,Breaking News,breaking_news,false -Jon6705,mastodon.world,Chemistry,chemistry,false -Jon6705,mastodon.world,Democracy & Human Rights,democracy_human_rights,false -Jon6705,mastodon.world,Disabled Voices,disabled_voices,false -Jon6705,mastodon.world,Energy & Pollution,energy_pollution,false -Jon6705,mastodon.world,Engineering,engineering,false -Jon6705,mastodon.world,Environment,environment,false -Jon6705,mastodon.world,History,history,false -Jon6705,mastodon.world,Humanities,humanities,false -Jon6705,mastodon.world,"Hunger, Disease & Water",hunger_disease_water,false -Jon6705,mastodon.world,Immigrants Rights,immigrants_rights,false -Jon6705,mastodon.world,Indigenous Peoples,indigenous_peoples,false -Jon6705,mastodon.world,LGBTQ+,lgbtq,false -Jon6705,mastodon.world,Mathematics,mathematics,false -Jon6705,mastodon.world,Journalism & Comment,news_comment_data,false -Jon6705,mastodon.world,Philosophy,philosophy,false -Jon6705,mastodon.world,Physics,physics,false -Jon6705,mastodon.world,Poverty & Inequality,poverty_inequality,false -Jon6705,mastodon.world,Programming,programming,false -Jon6705,mastodon.world,Science,science,false -Jon6705,mastodon.world,Social Media,social_media,false -Jon6705,mastodon.world,Social Sciences,social_sciences,false -Jon6705,mastodon.world,Space,space,false -Jon6705,mastodon.world,Technology,technology,false -Jon6705,mastodon.world,Ukraine Invasion,ukraine_invasion,false -Jon6705,mastodon.world,Weather,weather,false -Jon6705,mastodon.world,Women’s Voices,women_voices,false -tenndawa,www.lindyhop.community,Academia & Research,academia_research,false -tenndawa,www.lindyhop.community,AI,ai,false -Jon6705,mastodon.world,Climate change,climate_change,false -Jon6705,mastodon.world,Biodiversity & Rewilding,biodiversity_rewilding,true -Jon6705,mastodon.world,Nature & Wildlife,nature_wildlife,false -Jon6705,mastodon.world,Mental Health & Wellbeing,mental_health_wellbeing,false -tenndawa,www.lindyhop.community,Architecture & Design,architecture_design,false -tenndawa,www.lindyhop.community,Biodiversity & Rewilding,biodiversity_rewilding,false -tenndawa,www.lindyhop.community,Biology,biology,false -tenndawa,www.lindyhop.community,Black Voices,black_voices,false -tenndawa,www.lindyhop.community,Breaking News,breaking_news,false -tenndawa,www.lindyhop.community,Climate change,climate_change,false -tenndawa,www.lindyhop.community,Creative Arts,creative_arts,false -tenndawa,www.lindyhop.community,Democracy & Human Rights,democracy_human_rights,false -kevinflynn,newsmast.social,Government & Policy,government_policy,false -kevinflynn,newsmast.social,Science,science,false -kevinflynn,newsmast.social,Space,space,false -kevinflynn,newsmast.social,Technology,technology,false -kevinflynn,newsmast.social,Ukraine Invasion,ukraine_invasion,false -kevinflynn,newsmast.social,Breaking News,breaking_news,true -tenndawa,www.lindyhop.community,Disabled Voices,disabled_voices,false -tenndawa,www.lindyhop.community,Energy & Pollution,energy_pollution,false -tenndawa,www.lindyhop.community,Environment,environment,false -tenndawa,www.lindyhop.community,Food & Drink,food_drink,false -tenndawa,www.lindyhop.community,Gaming,gaming,false -tenndawa,www.lindyhop.community,Government & Policy,government_policy,false -tenndawa,www.lindyhop.community,Immigrants Rights,immigrants_rights,false -tenndawa,www.lindyhop.community,Law & Justice,law_justice,false -tenndawa,www.lindyhop.community,LGBTQ+,lgbtq,false -tenndawa,www.lindyhop.community,Mental Health & Wellbeing,mental_health_wellbeing,false -tenndawa,www.lindyhop.community,Nature & Wildlife,nature_wildlife,false -tenndawa,www.lindyhop.community,Pets,pets,false -tenndawa,www.lindyhop.community,Poverty & Inequality,poverty_inequality,false -tenndawa,www.lindyhop.community,Science,science,false -tenndawa,www.lindyhop.community,Social Media,social_media,false -tenndawa,www.lindyhop.community,Sport,sport,false -tenndawa,www.lindyhop.community,Technology,technology,false -tenndawa,www.lindyhop.community,Travel,travel,false -tenndawa,www.lindyhop.community,Activism & Civil Rights,activism_civil_rights,true +ModernArtifice,newsmast.social,AI,ai,false +ModernArtifice,newsmast.social,Books & Literature,books_literature,false +ModernArtifice,newsmast.social,Gaming,gaming,true +ModernArtifice,newsmast.social,Movies,movies,false +ModernArtifice,newsmast.social,Science,science,false +ModernArtifice,newsmast.social,Technology,technology,false +sahanakulur,newsmast.social,Academia & Research,academia_research,false +sahanakulur,newsmast.social,Architecture & Design,architecture_design,true +sahanakulur,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false +sahanakulur,newsmast.social,Books & Literature,books_literature,false +sahanakulur,newsmast.social,Creative Arts,creative_arts,false +sahanakulur,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +sahanakulur,newsmast.social,Environment,environment,false +sahanakulur,newsmast.social,Food & Drink,food_drink,false +sahanakulur,newsmast.social,Gaming,gaming,false +sahanakulur,newsmast.social,Movies,movies,false +sahanakulur,newsmast.social,Nature & Wildlife,nature_wildlife,false +sahanakulur,newsmast.social,Performing Arts,performing_arts,false +sahanakulur,newsmast.social,Pets,pets,false +sahanakulur,newsmast.social,Photography,photography,false +sahanakulur,newsmast.social,TV & Radio,tv_radio,false +sahanakulur,newsmast.social,Visual Arts,visual_arts,false +MinMaungHein,newsmast.social,Puzzles,puzzles,false +MinMaungHein,newsmast.social,Nature & Wildlife,nature_wildlife,false +MinMaungHein,newsmast.social,Humour,humour,false +MinMaungHein,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false +MinMaungHein,newsmast.social,Creative Arts,creative_arts,false +MinMaungHein,newsmast.social,Food & Drink,food_drink,false +MinMaungHein,newsmast.social,Travel,travel,false +MinMaungHein,newsmast.social,Pets,pets,false +MinMaungHein,newsmast.social,Science,science,true +MinMaungHein,newsmast.social,Physics,physics,false +MinMaungHein,newsmast.social,Humanities,humanities,false +MinMaungHein,newsmast.social,LGBTQ+,lgbtq,false +MinMaungHein,newsmast.social,Academia & Research,academia_research,false +MinMaungHein,newsmast.social,Climate change,climate_change,false +MinMaungHein,newsmast.social,Breaking News,breaking_news,false +MinMaungHein,newsmast.social,Environment,environment,false +MinMaungHein,newsmast.social,Photography,photography,false +SabahH,newsmast.social,Breaking News,breaking_news,false +SabahH,newsmast.social,Business,business,false +SabahH,newsmast.social,Creative Arts,creative_arts,false +SabahH,newsmast.social,Markets & Finance,markets_finance,false +SabahH,newsmast.social,Movies,movies,false +SabahH,newsmast.social,Music,music,false +SabahH,newsmast.social,Journalism & Comment,news_comment_data,true +SabahH,newsmast.social,Performing Arts,performing_arts,false +SabahH,newsmast.social,Photography,photography,false +SabahH,newsmast.social,Social Media,social_media,false +SabahH,newsmast.social,Travel,travel,false +SabahH,newsmast.social,TV & Radio,tv_radio,false +SabahH,newsmast.social,Visual Arts,visual_arts,false +Nyein,newsmast.social,Workers Rights,workers_rights,false +Nyein,newsmast.social,Journalism & Comment,news_comment_data,false +Nyein,newsmast.social,Performing Arts,performing_arts,false +Nyein,newsmast.social,TV & Radio,tv_radio,false +Nyein,newsmast.social,Music,music,false +Nyein,newsmast.social,Movies,movies,false +Nyein,newsmast.social,Visual Arts,visual_arts,false +Nyein,newsmast.social,History,history,false +Nyein,newsmast.social,Humanities,humanities,false +Nyein,newsmast.social,Social Sciences,social_sciences,false +Nyein,newsmast.social,Philosophy,philosophy,false +Nyein,newsmast.social,Programming,programming,false +Nyein,newsmast.social,Chemistry,chemistry,true +Nyein,newsmast.social,Engineering,engineering,false +Nyein,newsmast.social,Technology,technology,false +Nyein,newsmast.social,Social Media,social_media,false +Nyein,newsmast.social,Gaming,gaming,false +Nyein,newsmast.social,US Sport,us_sport,false +Nyein,newsmast.social,Food & Drink,food_drink,false +Nyein,newsmast.social,Sport,sport,false +Nyein,newsmast.social,Creative Arts,creative_arts,false +Nyein,newsmast.social,Ukraine Invasion,ukraine_invasion,false +Nyein,newsmast.social,Photography,photography,false +Nyein,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false +Nyein,newsmast.social,Poverty & Inequality,poverty_inequality,false +Nyein,newsmast.social,Football,football,false +jasonbcfcufc,newsmast.social,Breaking News,breaking_news,true +jasonbcfcufc,newsmast.social,Engineering,engineering,false +jasonbcfcufc,newsmast.social,Government & Policy,government_policy,false +jasonbcfcufc,newsmast.social,Social Media,social_media,false +jasonbcfcufc,newsmast.social,Technology,technology,false +Rich134,newsmast.social,Gaming,gaming,false +Rich134,newsmast.social,Movies,movies,true +Rich134,newsmast.social,Photography,photography,false +Rich134,newsmast.social,TV & Radio,tv_radio,false +Rich134,newsmast.social,Visual Arts,visual_arts,false +joshmike35,newsmast.social,Academia & Research,academia_research,true +joshmike35,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +joshmike35,newsmast.social,Government & Policy,government_policy,false +joshmike35,newsmast.social,Healthcare,healthcare,false +joshmike35,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false +joshmike35,newsmast.social,Law & Justice,law_justice,false +joshmike35,newsmast.social,Politics,politics,false +joshmike35,newsmast.social,Poverty & Inequality,poverty_inequality,false +joshmike35,newsmast.social,US Politics,us_politics,false +lanartri,newsmast.social,AI,ai,false +lanartri,newsmast.social,Architecture & Design,architecture_design,false +lanartri,newsmast.social,Books & Literature,books_literature,false +lanartri,newsmast.social,Breaking News,breaking_news,false +lanartri,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +lanartri,newsmast.social,Movies,movies,false +lanartri,newsmast.social,Music,music,false +lanartri,newsmast.social,Photography,photography,true +lanartri,newsmast.social,Programming,programming,false +lanartri,newsmast.social,Science,science,false +lanartri,newsmast.social,Space,space,false +lanartri,newsmast.social,Technology,technology,false +lanartri,newsmast.social,Visual Arts,visual_arts,false +beautycaters,newsmast.social,Food & Drink,food_drink,false +beautycaters,newsmast.social,Humour,humour,false +beautycaters,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false +beautycaters,newsmast.social,Nature & Wildlife,nature_wildlife,false +beautycaters,newsmast.social,Pets,pets,false +beautycaters,newsmast.social,Puzzles,puzzles,false +beautycaters,newsmast.social,Travel,travel,true +Krusti,newsmast.social,AI,ai,false +Krusti,newsmast.social,Creative Arts,creative_arts,false +Krusti,newsmast.social,Engineering,engineering,false +Krusti,newsmast.social,Food & Drink,food_drink,false +Krusti,newsmast.social,Humour,humour,false +Krusti,newsmast.social,Nature & Wildlife,nature_wildlife,false +Krusti,newsmast.social,Pets,pets,false +Krusti,newsmast.social,Programming,programming,false +Krusti,newsmast.social,Puzzles,puzzles,false +Krusti,newsmast.social,Technology,technology,false +Krusti,newsmast.social,Travel,travel,false +Krusti,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,true +roler34,newsmast.social,Activism & Civil Rights,activism_civil_rights,true +roler34,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false +roler34,newsmast.social,Black Voices,black_voices,false +roler34,newsmast.social,Climate change,climate_change,false +roler34,newsmast.social,Disabled Voices,disabled_voices,false +roler34,newsmast.social,Energy & Pollution,energy_pollution,false +roler34,newsmast.social,Environment,environment,false +roler34,newsmast.social,Immigrants Rights,immigrants_rights,false +roler34,newsmast.social,Indigenous Peoples,indigenous_peoples,false +roler34,newsmast.social,LGBTQ+,lgbtq,false +roler34,newsmast.social,Women’s Voices,women_voices,false +EdBowers101,newsmast.social,Markets & Finance,markets_finance,false +EdBowers101,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false +EdBowers101,newsmast.social,Business,business,false +EdBowers101,newsmast.social,Football,football,false +EdBowers101,newsmast.social,Sport,sport,true +EdBowers101,newsmast.social,Books & Literature,books_literature,false +CoopCoding,newsmast.social,AI,ai,false +CoopCoding,newsmast.social,Engineering,engineering,false +CoopCoding,newsmast.social,Programming,programming,true +CoopCoding,newsmast.social,Space,space,false +CoopCoding,newsmast.social,Technology,technology,false +Sylkeweb,newsmast.social,Environment,environment,false +Sylkeweb,newsmast.social,Food & Drink,food_drink,true +Sylkeweb,newsmast.social,Nature & Wildlife,nature_wildlife,false +Sylkeweb,newsmast.social,Science,science,false +Sylkeweb,newsmast.social,Social Sciences,social_sciences,false +Sylkeweb,newsmast.social,Social Media,social_media,false +Sylkeweb,newsmast.social,Energy & Pollution,energy_pollution,false +Sylkeweb,newsmast.social,Technology,technology,false +Sylkeweb,newsmast.social,Space,space,false +Sylkeweb,newsmast.social,History,history,false +Sylkeweb,newsmast.social,Breaking News,breaking_news,false +Sylkeweb,newsmast.social,Ukraine Invasion,ukraine_invasion,false +Sylkeweb,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +Sylkeweb,newsmast.social,Government & Policy,government_policy,false +Sylkeweb,newsmast.social,Climate change,climate_change,false +Sylkeweb,newsmast.social,Humanities,humanities,false +Gadget_Ry,newsmast.social,AI,ai,false +Gadget_Ry,newsmast.social,Breaking News,breaking_news,false +Gadget_Ry,newsmast.social,Politics,politics,false +Gadget_Ry,newsmast.social,Technology,technology,true +marcie,newsmast.social,Activism & Civil Rights,activism_civil_rights,false +marcie,newsmast.social,Breaking News,breaking_news,false +marcie,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +marcie,newsmast.social,Disabled Voices,disabled_voices,true +marcie,newsmast.social,Women’s Voices,women_voices,false +JeffreyStreeter,newsmast.social,Books & Literature,books_literature,true +JeffreyStreeter,newsmast.social,History,history,false +JeffreyStreeter,newsmast.social,Movies,movies,false +JeffreyStreeter,newsmast.social,Physics,physics,false +JeffreyStreeter,newsmast.social,Science,science,false +JeffreyStreeter,newsmast.social,Social Sciences,social_sciences,false +JeffreyStreeter,newsmast.social,Space,space,false +JeffreyStreeter,newsmast.social,Visual Arts,visual_arts,false +HarleyWarren,newsmast.social,Books & Literature,books_literature,false +HarleyWarren,newsmast.social,Breaking News,breaking_news,false +HarleyWarren,newsmast.social,Gaming,gaming,false +HarleyWarren,newsmast.social,Movies,movies,false +HarleyWarren,newsmast.social,Music,music,false +HarleyWarren,newsmast.social,Technology,technology,false +HarleyWarren,newsmast.social,Visual Arts,visual_arts,true +HarleyWarren,newsmast.social,Weather,weather,false +jimchapman,newsmast.social,Academia & Research,academia_research,false +jimchapman,newsmast.social,Activism & Civil Rights,activism_civil_rights,false +jimchapman,newsmast.social,AI,ai,false +jimchapman,newsmast.social,Architecture & Design,architecture_design,false +jimchapman,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false +jimchapman,newsmast.social,Biology,biology,false +jimchapman,newsmast.social,Black Voices,black_voices,false +jimchapman,newsmast.social,Books & Literature,books_literature,false +jimchapman,newsmast.social,Breaking News,breaking_news,false +jimchapman,newsmast.social,Business,business,false +jimchapman,newsmast.social,Chemistry,chemistry,false +jimchapman,newsmast.social,Climate change,climate_change,false +jimchapman,newsmast.social,Democracy & Human Rights,democracy_human_rights,true +jimchapman,newsmast.social,Disabled Voices,disabled_voices,false +jimchapman,newsmast.social,Energy & Pollution,energy_pollution,false +jimchapman,newsmast.social,Engineering,engineering,false +jimchapman,newsmast.social,Environment,environment,false +jimchapman,newsmast.social,Football,football,false +jimchapman,newsmast.social,Gaming,gaming,false +jimchapman,newsmast.social,Government & Policy,government_policy,false +jimchapman,newsmast.social,Healthcare,healthcare,false +jimchapman,newsmast.social,History,history,false +jimchapman,newsmast.social,Humanities,humanities,false +jimchapman,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false +jimchapman,newsmast.social,Immigrants Rights,immigrants_rights,false +jimchapman,newsmast.social,Indigenous Peoples,indigenous_peoples,false +jimchapman,newsmast.social,Law & Justice,law_justice,false +jimchapman,newsmast.social,LGBTQ+,lgbtq,false +jimchapman,newsmast.social,Markets & Finance,markets_finance,false +jimchapman,newsmast.social,Mathematics,mathematics,false +jimchapman,newsmast.social,Movies,movies,false +jimchapman,newsmast.social,Music,music,false +jimchapman,newsmast.social,Journalism & Comment,news_comment_data,false +jimchapman,newsmast.social,Performing Arts,performing_arts,false +jimchapman,newsmast.social,Philosophy,philosophy,false +jimchapman,newsmast.social,Photography,photography,false +jimchapman,newsmast.social,Physics,physics,false +jimchapman,newsmast.social,Politics,politics,false +jimchapman,newsmast.social,Poverty & Inequality,poverty_inequality,false +jimchapman,newsmast.social,Programming,programming,false +jimchapman,newsmast.social,Science,science,false +jimchapman,newsmast.social,Social Media,social_media,false +jimchapman,newsmast.social,Social Sciences,social_sciences,false +jimchapman,newsmast.social,Space,space,false +jimchapman,newsmast.social,Sport,sport,false +jimchapman,newsmast.social,Technology,technology,false +jimchapman,newsmast.social,TV & Radio,tv_radio,false +jimchapman,newsmast.social,Ukraine Invasion,ukraine_invasion,false +jimchapman,newsmast.social,US Politics,us_politics,false +jimchapman,newsmast.social,Visual Arts,visual_arts,false +jimchapman,newsmast.social,Weather,weather,false +jimchapman,newsmast.social,Women’s Voices,women_voices,false +jimchapman,newsmast.social,Workers Rights,workers_rights,false +Sven,newsmast.social,AI,ai,false +Sven,newsmast.social,Biology,biology,false +Sven,newsmast.social,Breaking News,breaking_news,true +Sven,newsmast.social,Business,business,false +Sven,newsmast.social,Healthcare,healthcare,false +Sven,newsmast.social,Mathematics,mathematics,false +Sven,newsmast.social,Physics,physics,false +Sven,newsmast.social,Programming,programming,false +Sven,newsmast.social,Space,space,false +Sven,newsmast.social,Technology,technology,false +Sven,newsmast.social,US Politics,us_politics,false +axonrg,newsmast.social,Gaming,gaming,false +axonrg,newsmast.social,Movies,movies,false +axonrg,newsmast.social,Politics,politics,false +axonrg,newsmast.social,Programming,programming,false +axonrg,newsmast.social,Science,science,false +axonrg,newsmast.social,Technology,technology,false +axonrg,newsmast.social,TV & Radio,tv_radio,false +axonrg,newsmast.social,US Politics,us_politics,false +axonrg,newsmast.social,Breaking News,breaking_news,true +railrecipe,newsmast.social,Business,business,false +railrecipe,newsmast.social,Food & Drink,food_drink,true +railrecipe,newsmast.social,Journalism & Comment,news_comment_data,false +railrecipe,newsmast.social,Travel,travel,false +railrecipe,newsmast.social,Weather,weather,false +IEF_FIE,newsmast.social,Activism & Civil Rights,activism_civil_rights,false +IEF_FIE,newsmast.social,Black Voices,black_voices,false +IEF_FIE,newsmast.social,Government & Policy,government_policy,false +IEF_FIE,newsmast.social,Healthcare,healthcare,false +IEF_FIE,newsmast.social,Immigrants Rights,immigrants_rights,false +IEF_FIE,newsmast.social,Indigenous Peoples,indigenous_peoples,false +IEF_FIE,newsmast.social,Politics,politics,true +IEF_FIE,newsmast.social,US Politics,us_politics,true +IEF_FIE,newsmast.social,Women’s Voices,women_voices,false +IEF_FIE,newsmast.social,Healthcare,healthcare,false +IEF_FIE,newsmast.social,Immigrants Rights,immigrants_rights,false +IEF_FIE,newsmast.social,Indigenous Peoples,indigenous_peoples,false +IEF_FIE,newsmast.social,Politics,politics,false +IEF_FIE,newsmast.social,US Politics,us_politics,false +IEF_FIE,newsmast.social,Women’s Voices,women_voices,false +IEF_FIE,newsmast.social,Activism & Civil Rights,activism_civil_rights,false +IEF_FIE,newsmast.social,Black Voices,black_voices,false +IEF_FIE,newsmast.social,Government & Policy,government_policy,false +GastroMedia,newsmast.social,AI,ai,false +GastroMedia,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false +GastroMedia,newsmast.social,Climate change,climate_change,false +GastroMedia,newsmast.social,Environment,environment,false +GastroMedia,newsmast.social,Food & Drink,food_drink,true +GastroMedia,newsmast.social,Humanities,humanities,false +GastroMedia,newsmast.social,Performing Arts,performing_arts,false +GastroMedia,newsmast.social,Photography,photography,false +GastroMedia,newsmast.social,Social Media,social_media,false +GastroMedia,newsmast.social,Social Sciences,social_sciences,false +GastroMedia,newsmast.social,Travel,travel,false +GastroMedia,newsmast.social,Visual Arts,visual_arts,false +smartphonology,newsmast.social,Academia & Research,academia_research,false +smartphonology,newsmast.social,AI,ai,false +smartphonology,newsmast.social,Breaking News,breaking_news,true +smartphonology,newsmast.social,Engineering,engineering,false +smartphonology,newsmast.social,Government & Policy,government_policy,false +smartphonology,newsmast.social,Healthcare,healthcare,false +smartphonology,newsmast.social,Law & Justice,law_justice,false +smartphonology,newsmast.social,Journalism & Comment,news_comment_data,false +smartphonology,newsmast.social,Politics,politics,false +smartphonology,newsmast.social,Programming,programming,false +smartphonology,newsmast.social,Social Media,social_media,false +smartphonology,newsmast.social,Technology,technology,false +smartphonology,newsmast.social,Ukraine Invasion,ukraine_invasion,false +smartphonology,newsmast.social,US Politics,us_politics,false +smartphonology,newsmast.social,Weather,weather,false +tthcreation,newsmast.social,Breaking News,breaking_news,false +tthcreation,newsmast.social,Business,business,false +tthcreation,newsmast.social,Markets & Finance,markets_finance,false +tthcreation,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false +tthcreation,newsmast.social,Photography,photography,false +tthcreation,newsmast.social,Travel,travel,true +tthcreation,newsmast.social,Women’s Voices,women_voices,false +sandos,newsmast.social,AI,ai,true +sandos,newsmast.social,Biology,biology,false +sandos,newsmast.social,Books & Literature,books_literature,false +sandos,newsmast.social,Breaking News,breaking_news,false +sandos,newsmast.social,Environment,environment,false +sandos,newsmast.social,Food & Drink,food_drink,false +sandos,newsmast.social,Gaming,gaming,false +sandos,newsmast.social,Humour,humour,false +sandos,newsmast.social,Mathematics,mathematics,false +sandos,newsmast.social,Movies,movies,false +sandos,newsmast.social,Music,music,false +sandos,newsmast.social,Philosophy,philosophy,false +sandos,newsmast.social,Photography,photography,false +sandos,newsmast.social,Physics,physics,false +sandos,newsmast.social,Programming,programming,false +sandos,newsmast.social,Puzzles,puzzles,false +sandos,newsmast.social,Space,space,false +sandos,newsmast.social,Technology,technology,false +sandos,newsmast.social,Travel,travel,false +sandos,newsmast.social,TV & Radio,tv_radio,false +spatial1,newsmast.social,AI,ai,false +spatial1,newsmast.social,Business,business,true +spatial1,newsmast.social,Engineering,engineering,false +spatial1,newsmast.social,Markets & Finance,markets_finance,false +spatial1,newsmast.social,Technology,technology,false +magbeat,newsmast.social,AI,ai,false +magbeat,newsmast.social,Breaking News,breaking_news,false +magbeat,newsmast.social,Journalism & Comment,news_comment_data,false +magbeat,newsmast.social,Programming,programming,false +magbeat,newsmast.social,Social Media,social_media,false +magbeat,newsmast.social,Engineering,engineering,true +JimJQ,newsmast.social,Breaking News,breaking_news,false +JimJQ,newsmast.social,Climate change,climate_change,false +JimJQ,newsmast.social,Politics,politics,false +JimJQ,newsmast.social,Science,science,false +JimJQ,newsmast.social,Technology,technology,false +JimJQ,newsmast.social,US Politics,us_politics,true +travelpast50,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false +travelpast50,newsmast.social,Books & Literature,books_literature,false +travelpast50,newsmast.social,History,history,false +travelpast50,newsmast.social,Journalism & Comment,news_comment_data,false +travelpast50,newsmast.social,Photography,photography,false +travelpast50,newsmast.social,Travel,travel,true +travelpast50,newsmast.social,Visual Arts,visual_arts,false +0j30,newsmast.social,Business,business,false +0j30,newsmast.social,Creative Arts,creative_arts,false +0j30,newsmast.social,Humour,humour,false +0j30,newsmast.social,Markets & Finance,markets_finance,false +0j30,newsmast.social,Workers Rights,workers_rights,true +If_This_Goes_On,newsmast.social,LGBTQ+,lgbtq,false +If_This_Goes_On,newsmast.social,Movies,movies,false +If_This_Goes_On,newsmast.social,Music,music,false +If_This_Goes_On,newsmast.social,Performing Arts,performing_arts,false +If_This_Goes_On,newsmast.social,Philosophy,philosophy,false +If_This_Goes_On,newsmast.social,Photography,photography,false +If_This_Goes_On,newsmast.social,Social Sciences,social_sciences,false +If_This_Goes_On,newsmast.social,TV & Radio,tv_radio,false +If_This_Goes_On,newsmast.social,Visual Arts,visual_arts,false +If_This_Goes_On,newsmast.social,Women’s Voices,women_voices,false +If_This_Goes_On,newsmast.social,Activism & Civil Rights,activism_civil_rights,false +If_This_Goes_On,newsmast.social,Architecture & Design,architecture_design,false +If_This_Goes_On,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false +If_This_Goes_On,newsmast.social,Black Voices,black_voices,false +If_This_Goes_On,newsmast.social,Books & Literature,books_literature,true +If_This_Goes_On,newsmast.social,Climate change,climate_change,false +If_This_Goes_On,newsmast.social,Disabled Voices,disabled_voices,false +If_This_Goes_On,newsmast.social,Energy & Pollution,energy_pollution,false +If_This_Goes_On,newsmast.social,Environment,environment,false +If_This_Goes_On,newsmast.social,Gaming,gaming,false +If_This_Goes_On,newsmast.social,History,history,false +If_This_Goes_On,newsmast.social,Humanities,humanities,false +If_This_Goes_On,newsmast.social,Immigrants Rights,immigrants_rights,false +If_This_Goes_On,newsmast.social,Indigenous Peoples,indigenous_peoples,false +patnawomens,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false +patnawomens,newsmast.social,Energy & Pollution,energy_pollution,false +patnawomens,newsmast.social,Government & Policy,government_policy,false +patnawomens,newsmast.social,Law & Justice,law_justice,false +patnawomens,newsmast.social,Academia & Research,academia_research,true +gabbab1,newsmast.social,Academia & Research,academia_research,false +gabbab1,newsmast.social,Activism & Civil Rights,activism_civil_rights,false +gabbab1,newsmast.social,AI,ai,false +gabbab1,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false +gabbab1,newsmast.social,Black Voices,black_voices,false +gabbab1,newsmast.social,Breaking News,breaking_news,false +gabbab1,newsmast.social,Business,business,false +gabbab1,newsmast.social,Climate change,climate_change,false +gabbab1,newsmast.social,Democracy & Human Rights,democracy_human_rights,true +gabbab1,newsmast.social,Disabled Voices,disabled_voices,false +gabbab1,newsmast.social,Energy & Pollution,energy_pollution,false +gabbab1,newsmast.social,Engineering,engineering,false +gabbab1,newsmast.social,Environment,environment,false +gabbab1,newsmast.social,Government & Policy,government_policy,false +gabbab1,newsmast.social,Healthcare,healthcare,false +gabbab1,newsmast.social,History,history,false +gabbab1,newsmast.social,Humanities,humanities,false +gabbab1,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false +gabbab1,newsmast.social,Immigrants Rights,immigrants_rights,false +gabbab1,newsmast.social,Indigenous Peoples,indigenous_peoples,false +gabbab1,newsmast.social,Law & Justice,law_justice,false +gabbab1,newsmast.social,LGBTQ+,lgbtq,false +gabbab1,newsmast.social,Markets & Finance,markets_finance,false +gabbab1,newsmast.social,Journalism & Comment,news_comment_data,false +gabbab1,newsmast.social,Philosophy,philosophy,false +gabbab1,newsmast.social,Politics,politics,false +gabbab1,newsmast.social,Poverty & Inequality,poverty_inequality,false +gabbab1,newsmast.social,Programming,programming,false +gabbab1,newsmast.social,Social Media,social_media,false +gabbab1,newsmast.social,Social Sciences,social_sciences,false +gabbab1,newsmast.social,Technology,technology,false +gabbab1,newsmast.social,Ukraine Invasion,ukraine_invasion,false +gabbab1,newsmast.social,US Politics,us_politics,false +gabbab1,newsmast.social,Weather,weather,false +gabbab1,newsmast.social,Women’s Voices,women_voices,false +gabbab1,newsmast.social,Workers Rights,workers_rights,false +scottcaneat,newsmast.social,Architecture & Design,architecture_design,false +scottcaneat,newsmast.social,Creative Arts,creative_arts,false +scottcaneat,newsmast.social,Food & Drink,food_drink,true +scottcaneat,newsmast.social,Nature & Wildlife,nature_wildlife,false +scottcaneat,newsmast.social,Travel,travel,false +srijit,newsmast.social,Academia & Research,academia_research,false +srijit,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false +srijit,newsmast.social,Biology,biology,false +srijit,newsmast.social,Breaking News,breaking_news,false +srijit,newsmast.social,Chemistry,chemistry,false +srijit,newsmast.social,Climate change,climate_change,false +srijit,newsmast.social,Democracy & Human Rights,democracy_human_rights,true +srijit,newsmast.social,Energy & Pollution,energy_pollution,false +srijit,newsmast.social,Government & Policy,government_policy,false +srijit,newsmast.social,Healthcare,healthcare,false +srijit,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false +srijit,newsmast.social,Law & Justice,law_justice,false +srijit,newsmast.social,Mathematics,mathematics,false +srijit,newsmast.social,Journalism & Comment,news_comment_data,false +srijit,newsmast.social,Physics,physics,false +srijit,newsmast.social,Politics,politics,false +srijit,newsmast.social,Poverty & Inequality,poverty_inequality,false +srijit,newsmast.social,Science,science,false +srijit,newsmast.social,Social Media,social_media,false +srijit,newsmast.social,Space,space,false +srijit,newsmast.social,Ukraine Invasion,ukraine_invasion,false +srijit,newsmast.social,US Politics,us_politics,false +srijit,newsmast.social,Weather,weather,false +srijit,newsmast.social,Environment,environment,false +tbutler,newsmast.social,AI,ai,false +tbutler,newsmast.social,History,history,false +tbutler,newsmast.social,Humanities,humanities,false +tbutler,newsmast.social,Journalism & Comment,news_comment_data,true +tbutler,newsmast.social,Philosophy,philosophy,false +tbutler,newsmast.social,Politics,politics,false +tbutler,newsmast.social,Programming,programming,false +tbutler,newsmast.social,Social Media,social_media,false +tbutler,newsmast.social,Social Sciences,social_sciences,false +tbutler,newsmast.social,Technology,technology,false +tbutler,newsmast.social,Ukraine Invasion,ukraine_invasion,false +tbutler,newsmast.social,US Politics,us_politics,false +seosiri,newsmast.social,Biology,biology,false +seosiri,newsmast.social,Business,business,true +seosiri,newsmast.social,Chemistry,chemistry,false +seosiri,newsmast.social,Markets & Finance,markets_finance,false +seosiri,newsmast.social,Mathematics,mathematics,false +seosiri,newsmast.social,Physics,physics,false +seosiri,newsmast.social,Science,science,false +seosiri,newsmast.social,Space,space,false +seosiri,newsmast.social,Workers Rights,workers_rights,false +Mihajlo,newsmast.social,AI,ai,false +Mihajlo,newsmast.social,Breaking News,breaking_news,false +Mihajlo,newsmast.social,Football,football,false +Mihajlo,newsmast.social,Movies,movies,false +Mihajlo,newsmast.social,Music,music,false +Mihajlo,newsmast.social,Social Media,social_media,false +Mihajlo,newsmast.social,Sport,sport,true +Mihajlo,newsmast.social,Technology,technology,false +Mihajlo,newsmast.social,TV & Radio,tv_radio,false +Mihajlo,newsmast.social,Weather,weather,false +incnews,newsmast.social,Academia & Research,academia_research,false +incnews,newsmast.social,Breaking News,breaking_news,false +incnews,newsmast.social,Business,business,false +incnews,newsmast.social,Government & Policy,government_policy,false +incnews,newsmast.social,Healthcare,healthcare,false +incnews,newsmast.social,Law & Justice,law_justice,false +incnews,newsmast.social,Markets & Finance,markets_finance,false +incnews,newsmast.social,Politics,politics,false +incnews,newsmast.social,Social Media,social_media,false +incnews,newsmast.social,Ukraine Invasion,ukraine_invasion,false +incnews,newsmast.social,US Politics,us_politics,false +incnews,newsmast.social,Weather,weather,false +incnews,newsmast.social,Workers Rights,workers_rights,false +incnews,newsmast.social,Journalism & Comment,news_comment_data,true leonfeuer,newsmast.social,Academia & Research,academia_research,false leonfeuer,newsmast.social,Breaking News,breaking_news,false -toadthepaladin,freesky.world,LGBTQ+,lgbtq,false -toadthepaladin,freesky.world,Activism & Civil Rights,activism_civil_rights,false -toadthepaladin,freesky.world,AI,ai,false -toadthepaladin,freesky.world,Biodiversity & Rewilding,biodiversity_rewilding,false -toadthepaladin,freesky.world,Black Voices,black_voices,false -toadthepaladin,freesky.world,Breaking News,breaking_news,false -toadthepaladin,freesky.world,Climate change,climate_change,false -toadthepaladin,freesky.world,Creative Arts,creative_arts,false -toadthepaladin,freesky.world,Democracy & Human Rights,democracy_human_rights,false -toadthepaladin,freesky.world,Disabled Voices,disabled_voices,false -toadthepaladin,freesky.world,Energy & Pollution,energy_pollution,false -toadthepaladin,freesky.world,Engineering,engineering,false -toadthepaladin,freesky.world,Environment,environment,false -toadthepaladin,freesky.world,Humour,humour,true leonfeuer,newsmast.social,Government & Policy,government_policy,false leonfeuer,newsmast.social,Healthcare,healthcare,false leonfeuer,newsmast.social,History,history,false leonfeuer,newsmast.social,Humanities,humanities,false -toadthepaladin,freesky.world,"Hunger, Disease & Water",hunger_disease_water,false -toadthepaladin,freesky.world,Immigrants Rights,immigrants_rights,false -toadthepaladin,freesky.world,Indigenous Peoples,indigenous_peoples,false -toadthepaladin,freesky.world,Journalism & Comment,news_comment_data,false -toadthepaladin,freesky.world,Poverty & Inequality,poverty_inequality,false -toadthepaladin,freesky.world,Programming,programming,false -toadthepaladin,freesky.world,Puzzles,puzzles,false -toadthepaladin,freesky.world,Social Media,social_media,false -toadthepaladin,freesky.world,Ukraine Invasion,ukraine_invasion,false -toadthepaladin,freesky.world,US Politics,us_politics,false -toadthepaladin,freesky.world,Weather,weather,false -toadthepaladin,freesky.world,Women’s Voices,women_voices,false leonfeuer,newsmast.social,Law & Justice,law_justice,false leonfeuer,newsmast.social,Journalism & Comment,news_comment_data,false leonfeuer,newsmast.social,Philosophy,philosophy,false leonfeuer,newsmast.social,Politics,politics,false +leonfeuer,newsmast.social,Social Media,social_media,true leonfeuer,newsmast.social,Social Sciences,social_sciences,false leonfeuer,newsmast.social,Ukraine Invasion,ukraine_invasion,false leonfeuer,newsmast.social,US Politics,us_politics,false leonfeuer,newsmast.social,Weather,weather,false -leonfeuer,newsmast.social,Social Media,social_media,true +Travelwisesr,newsmast.social,AI,ai,true +Travelwisesr,newsmast.social,Business,business,false +Travelwisesr,newsmast.social,Music,music,false +Travelwisesr,newsmast.social,Photography,photography,false +Travelwisesr,newsmast.social,Visual Arts,visual_arts,false +Annon,newsmast.social,Books & Literature,books_literature,false +Annon,newsmast.social,Gaming,gaming,false +Annon,newsmast.social,History,history,false +Annon,newsmast.social,Movies,movies,false +Annon,newsmast.social,Music,music,false +Annon,newsmast.social,Programming,programming,true +Annon,newsmast.social,Social Sciences,social_sciences,false +Annon,newsmast.social,Space,space,false +Annon,newsmast.social,Technology,technology,false +Annon,newsmast.social,Visual Arts,visual_arts,false +Annon,newsmast.social,Creative Arts,creative_arts,false +Annon,newsmast.social,Nature & Wildlife,nature_wildlife,false +Annon,newsmast.social,Puzzles,puzzles,false +Annon,newsmast.social,Food & Drink,food_drink,false +Annon,newsmast.social,Pets,pets,false +Annon,newsmast.social,Humour,humour,false +Tom,newsmast.social,Books & Literature,books_literature,false +Tom,newsmast.social,Environment,environment,false +Tom,newsmast.social,Movies,movies,false +Tom,newsmast.social,Music,music,false +Tom,newsmast.social,Journalism & Comment,news_comment_data,false +Tom,newsmast.social,Social Media,social_media,false +Tom,newsmast.social,Ukraine Invasion,ukraine_invasion,false +Tom,newsmast.social,Weather,weather,false +Tom,newsmast.social,Breaking News,breaking_news,true +davetechg,newsmast.social,AI,ai,false +davetechg,newsmast.social,Business,business,false +davetechg,newsmast.social,Engineering,engineering,false +davetechg,newsmast.social,Markets & Finance,markets_finance,false +davetechg,newsmast.social,Technology,technology,true +WorldTravelFam,newsmast.social,Food & Drink,food_drink,false +WorldTravelFam,newsmast.social,Humour,humour,false +WorldTravelFam,newsmast.social,Nature & Wildlife,nature_wildlife,false +WorldTravelFam,newsmast.social,Pets,pets,false +WorldTravelFam,newsmast.social,Travel,travel,true +aunghtetnay,newsmast.social,Academia & Research,academia_research,true +aunghtetnay,newsmast.social,Academia & Research,academia_research,false +aunghtetnay,newsmast.social,AI,ai,false +aunghtetnay,newsmast.social,AI,ai,false +aunghtetnay,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false +aunghtetnay,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false +aunghtetnay,newsmast.social,Breaking News,breaking_news,false +aunghtetnay,newsmast.social,Breaking News,breaking_news,false +aunghtetnay,newsmast.social,Climate change,climate_change,false +aunghtetnay,newsmast.social,Climate change,climate_change,false +aunghtetnay,newsmast.social,Energy & Pollution,energy_pollution,false +aunghtetnay,newsmast.social,Energy & Pollution,energy_pollution,false +aunghtetnay,newsmast.social,Engineering,engineering,false +aunghtetnay,newsmast.social,Engineering,engineering,false +aunghtetnay,newsmast.social,Environment,environment,false +aunghtetnay,newsmast.social,Environment,environment,false +aunghtetnay,newsmast.social,Government & Policy,government_policy,false +aunghtetnay,newsmast.social,Government & Policy,government_policy,false +aunghtetnay,newsmast.social,Healthcare,healthcare,false +aunghtetnay,newsmast.social,Healthcare,healthcare,false +aunghtetnay,newsmast.social,Law & Justice,law_justice,false +aunghtetnay,newsmast.social,Law & Justice,law_justice,false +aunghtetnay,newsmast.social,Journalism & Comment,news_comment_data,false +aunghtetnay,newsmast.social,Journalism & Comment,news_comment_data,false +aunghtetnay,newsmast.social,Politics,politics,false +aunghtetnay,newsmast.social,Politics,politics,false +aunghtetnay,newsmast.social,Programming,programming,false +aunghtetnay,newsmast.social,Programming,programming,false +aunghtetnay,newsmast.social,Social Media,social_media,false +aunghtetnay,newsmast.social,Social Media,social_media,false +aunghtetnay,newsmast.social,Technology,technology,false +aunghtetnay,newsmast.social,Technology,technology,false +aunghtetnay,newsmast.social,Ukraine Invasion,ukraine_invasion,false +aunghtetnay,newsmast.social,US Politics,us_politics,false +aunghtetnay,newsmast.social,Ukraine Invasion,ukraine_invasion,false +aunghtetnay,newsmast.social,Weather,weather,false +aunghtetnay,newsmast.social,US Politics,us_politics,false +aunghtetnay,newsmast.social,Weather,weather,false +0j20,newsmast.social,Business,business,true +0j20,newsmast.social,Creative Arts,creative_arts,false +0j20,newsmast.social,Markets & Finance,markets_finance,false +0j20,newsmast.social,Technology,technology,false +0j20,newsmast.social,Workers Rights,workers_rights,false +ahnay,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false +ahnay,newsmast.social,Business,business,false +ahnay,newsmast.social,Climate change,climate_change,false +ahnay,newsmast.social,Energy & Pollution,energy_pollution,false +ahnay,newsmast.social,Environment,environment,false +ahnay,newsmast.social,Markets & Finance,markets_finance,false +ahnay,newsmast.social,Workers Rights,workers_rights,true +dko10440,newsmast.social,AI,ai,false +dko10440,newsmast.social,Architecture & Design,architecture_design,false +dko10440,newsmast.social,Breaking News,breaking_news,false +dko10440,newsmast.social,Creative Arts,creative_arts,false +dko10440,newsmast.social,Food & Drink,food_drink,false +dko10440,newsmast.social,Humour,humour,false +dko10440,newsmast.social,Movies,movies,false +dko10440,newsmast.social,Music,music,false +dko10440,newsmast.social,Nature & Wildlife,nature_wildlife,false +dko10440,newsmast.social,Journalism & Comment,news_comment_data,false +dko10440,newsmast.social,Photography,photography,true +dko10440,newsmast.social,Physics,physics,false +dko10440,newsmast.social,Science,science,false +dko10440,newsmast.social,Space,space,false +dko10440,newsmast.social,Technology,technology,false +dko10440,newsmast.social,Travel,travel,false +dko10440,newsmast.social,TV & Radio,tv_radio,false +dko10440,newsmast.social,Ukraine Invasion,ukraine_invasion,false +vile_person,newsmast.social,Books & Literature,books_literature,false +vile_person,newsmast.social,Climate change,climate_change,false +vile_person,newsmast.social,Democracy & Human Rights,democracy_human_rights,true +vile_person,newsmast.social,Energy & Pollution,energy_pollution,false +vile_person,newsmast.social,Environment,environment,false +vile_person,newsmast.social,Gaming,gaming,false +vile_person,newsmast.social,LGBTQ+,lgbtq,false +vile_person,newsmast.social,Mathematics,mathematics,false +vile_person,newsmast.social,Music,music,false +vile_person,newsmast.social,Journalism & Comment,news_comment_data,false +vile_person,newsmast.social,Philosophy,philosophy,false +vile_person,newsmast.social,Photography,photography,false +vile_person,newsmast.social,Poverty & Inequality,poverty_inequality,false +vile_person,newsmast.social,Programming,programming,false +vile_person,newsmast.social,Women’s Voices,women_voices,false +smikwily,newsmast.social,Breaking News,breaking_news,true +smikwily,newsmast.social,Humour,humour,false +smikwily,newsmast.social,Pets,pets,false +smikwily,newsmast.social,Puzzles,puzzles,false +smikwily,newsmast.social,Social Media,social_media,false +smikwily,newsmast.social,Technology,technology,false +smikwily,newsmast.social,Gaming,gaming,false +smikwily,newsmast.social,Movies,movies,false +smikwily,newsmast.social,TV & Radio,tv_radio,false +LawyerSchiff,newsmast.social,Academia & Research,academia_research,false +LawyerSchiff,newsmast.social,Activism & Civil Rights,activism_civil_rights,false +LawyerSchiff,newsmast.social,Architecture & Design,architecture_design,false +LawyerSchiff,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false +LawyerSchiff,newsmast.social,Business,business,false +LawyerSchiff,newsmast.social,Climate change,climate_change,false +LawyerSchiff,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +LawyerSchiff,newsmast.social,Environment,environment,false +LawyerSchiff,newsmast.social,Food & Drink,food_drink,false +LawyerSchiff,newsmast.social,Government & Policy,government_policy,false +LawyerSchiff,newsmast.social,Healthcare,healthcare,false +LawyerSchiff,newsmast.social,History,history,false +LawyerSchiff,newsmast.social,Humour,humour,false +LawyerSchiff,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false +LawyerSchiff,newsmast.social,Law & Justice,law_justice,true +LawyerSchiff,newsmast.social,Markets & Finance,markets_finance,false +LawyerSchiff,newsmast.social,Nature & Wildlife,nature_wildlife,false +LawyerSchiff,newsmast.social,Journalism & Comment,news_comment_data,false +LawyerSchiff,newsmast.social,Performing Arts,performing_arts,false +LawyerSchiff,newsmast.social,Politics,politics,false +LawyerSchiff,newsmast.social,Poverty & Inequality,poverty_inequality,false +LawyerSchiff,newsmast.social,Social Media,social_media,false +LawyerSchiff,newsmast.social,Social Sciences,social_sciences,false +LawyerSchiff,newsmast.social,Space,space,false +LawyerSchiff,newsmast.social,Travel,travel,false +LawyerSchiff,newsmast.social,TV & Radio,tv_radio,false +LawyerSchiff,newsmast.social,US Politics,us_politics,false +LawyerSchiff,newsmast.social,Visual Arts,visual_arts,false +LawyerSchiff,newsmast.social,Workers Rights,workers_rights,false +paradym3,newsmast.social,Ukraine Invasion,ukraine_invasion,false +paradym3,newsmast.social,US Politics,us_politics,false +paradym3,newsmast.social,Weather,weather,false +paradym3,newsmast.social,Workers Rights,workers_rights,false +paradym3,newsmast.social,Academia & Research,academia_research,false +paradym3,newsmast.social,AI,ai,false +paradym3,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false +paradym3,newsmast.social,Biology,biology,false +paradym3,newsmast.social,Breaking News,breaking_news,true +paradym3,newsmast.social,Business,business,false +paradym3,newsmast.social,Chemistry,chemistry,false +paradym3,newsmast.social,Climate change,climate_change,false +paradym3,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +paradym3,newsmast.social,Energy & Pollution,energy_pollution,false +paradym3,newsmast.social,Engineering,engineering,false +paradym3,newsmast.social,Environment,environment,false +paradym3,newsmast.social,Food & Drink,food_drink,false +paradym3,newsmast.social,Gaming,gaming,false +paradym3,newsmast.social,Government & Policy,government_policy,false +paradym3,newsmast.social,Healthcare,healthcare,false +paradym3,newsmast.social,History,history,false +paradym3,newsmast.social,Humanities,humanities,false +paradym3,newsmast.social,Humour,humour,false +paradym3,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false +paradym3,newsmast.social,Law & Justice,law_justice,false +paradym3,newsmast.social,Markets & Finance,markets_finance,false +paradym3,newsmast.social,Mathematics,mathematics,false +paradym3,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false +paradym3,newsmast.social,Movies,movies,false +paradym3,newsmast.social,Music,music,false +paradym3,newsmast.social,Nature & Wildlife,nature_wildlife,false +paradym3,newsmast.social,Journalism & Comment,news_comment_data,false +paradym3,newsmast.social,Pets,pets,false +paradym3,newsmast.social,Philosophy,philosophy,false +paradym3,newsmast.social,Physics,physics,false +paradym3,newsmast.social,Politics,politics,false +paradym3,newsmast.social,Poverty & Inequality,poverty_inequality,false +paradym3,newsmast.social,Programming,programming,false +paradym3,newsmast.social,Puzzles,puzzles,false +paradym3,newsmast.social,Science,science,false +paradym3,newsmast.social,Social Media,social_media,false +paradym3,newsmast.social,Social Sciences,social_sciences,false +paradym3,newsmast.social,Space,space,false +paradym3,newsmast.social,Technology,technology,false +paradym3,newsmast.social,Travel,travel,false +paradym3,newsmast.social,TV & Radio,tv_radio,false +paradym3,newsmast.social,Ukraine Invasion,ukraine_invasion,false +paradym3,newsmast.social,US Politics,us_politics,false +paradym3,newsmast.social,Weather,weather,false +paradym3,newsmast.social,Workers Rights,workers_rights,false +TechFinancials,newsmast.social,AI,ai,false +TechFinancials,newsmast.social,Breaking News,breaking_news,true +TechFinancials,newsmast.social,Journalism & Comment,news_comment_data,false +TechFinancials,newsmast.social,Social Media,social_media,false +TechFinancials,newsmast.social,Technology,technology,false +ilwtm,newsmast.social,AI,ai,false +ilwtm,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false +ilwtm,newsmast.social,Breaking News,breaking_news,false +ilwtm,newsmast.social,Creative Arts,creative_arts,false +ilwtm,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +ilwtm,newsmast.social,Environment,environment,false +ilwtm,newsmast.social,Photography,photography,false +ilwtm,newsmast.social,Poverty & Inequality,poverty_inequality,false +ilwtm,newsmast.social,Technology,technology,false +ilwtm,newsmast.social,Travel,travel,true +ilwtm,newsmast.social,Visual Arts,visual_arts,false +lunabase,newsmast.social,AI,ai,true +lunabase,newsmast.social,Breaking News,breaking_news,false +lunabase,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +lunabase,newsmast.social,Engineering,engineering,false +lunabase,newsmast.social,Programming,programming,false +lunabase,newsmast.social,Science,science,false +lunabase,newsmast.social,Space,space,false +lunabase,newsmast.social,Technology,technology,false +lunabase,newsmast.social,Ukraine Invasion,ukraine_invasion,false +Frank_Zafiro,newsmast.social,AI,ai,false +Frank_Zafiro,newsmast.social,Creative Arts,creative_arts,false +Frank_Zafiro,newsmast.social,History,history,false +Frank_Zafiro,newsmast.social,Humanities,humanities,false +Frank_Zafiro,newsmast.social,Humour,humour,false +Frank_Zafiro,newsmast.social,LGBTQ+,lgbtq,false +Frank_Zafiro,newsmast.social,Movies,movies,false +Frank_Zafiro,newsmast.social,Music,music,false +Frank_Zafiro,newsmast.social,Philosophy,philosophy,false +Frank_Zafiro,newsmast.social,Physics,physics,false +Frank_Zafiro,newsmast.social,Science,science,false +Frank_Zafiro,newsmast.social,Social Sciences,social_sciences,false +Frank_Zafiro,newsmast.social,Space,space,false +Frank_Zafiro,newsmast.social,Sport,sport,false +Frank_Zafiro,newsmast.social,Technology,technology,false +Frank_Zafiro,newsmast.social,TV & Radio,tv_radio,false +Frank_Zafiro,newsmast.social,US Sport,us_sport,false +Frank_Zafiro,newsmast.social,Women’s Voices,women_voices,false +Frank_Zafiro,newsmast.social,Books & Literature,books_literature,true +wooWike23,newsmast.social,Breaking News,breaking_news,false +wooWike23,newsmast.social,Journalism & Comment,news_comment_data,false +wooWike23,newsmast.social,Social Media,social_media,false +wooWike23,newsmast.social,Ukraine Invasion,ukraine_invasion,false +wooWike23,newsmast.social,Weather,weather,true +wingingittravel,newsmast.social,Activism & Civil Rights,activism_civil_rights,false +wingingittravel,newsmast.social,AI,ai,false +wingingittravel,newsmast.social,Books & Literature,books_literature,false +wingingittravel,newsmast.social,Food & Drink,food_drink,false +wingingittravel,newsmast.social,Humour,humour,false +wingingittravel,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false +wingingittravel,newsmast.social,Music,music,false +wingingittravel,newsmast.social,Philosophy,philosophy,false +wingingittravel,newsmast.social,Technology,technology,false +wingingittravel,newsmast.social,Travel,travel,true +kess111,newsmast.social,Breaking News,breaking_news,true +kess111,newsmast.social,Journalism & Comment,news_comment_data,false +kess111,newsmast.social,Social Media,social_media,false +kess111,newsmast.social,Ukraine Invasion,ukraine_invasion,false +kess111,newsmast.social,Weather,weather,false +isobelwalster,newsmast.social,Books & Literature,books_literature,false +isobelwalster,newsmast.social,Breaking News,breaking_news,false +isobelwalster,newsmast.social,Humour,humour,false +isobelwalster,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false +isobelwalster,newsmast.social,Movies,movies,false +isobelwalster,newsmast.social,Journalism & Comment,news_comment_data,false +isobelwalster,newsmast.social,Pets,pets,false +isobelwalster,newsmast.social,Puzzles,puzzles,false +isobelwalster,newsmast.social,Social Media,social_media,false +isobelwalster,newsmast.social,Travel,travel,true +boribori,newsmast.social,AI,ai,false +boribori,newsmast.social,Breaking News,breaking_news,false +boribori,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +boribori,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false +boribori,newsmast.social,Physics,physics,false +boribori,newsmast.social,Poverty & Inequality,poverty_inequality,false +boribori,newsmast.social,Science,science,false +boribori,newsmast.social,Space,space,false +boribori,newsmast.social,Technology,technology,false +boribori,newsmast.social,Ukraine Invasion,ukraine_invasion,true +Andi,newsmast.social,AI,ai,false +Andi,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false +Andi,newsmast.social,Biology,biology,false +Andi,newsmast.social,Chemistry,chemistry,false +Andi,newsmast.social,Climate change,climate_change,false +Andi,newsmast.social,Energy & Pollution,energy_pollution,false +Andi,newsmast.social,Engineering,engineering,false +Andi,newsmast.social,Environment,environment,false +Andi,newsmast.social,Mathematics,mathematics,false +Andi,newsmast.social,Physics,physics,false +Andi,newsmast.social,Programming,programming,false +Andi,newsmast.social,Science,science,true +Andi,newsmast.social,Space,space,false +Andi,newsmast.social,Technology,technology,false +Mercedes,newsmast.social,TV & Radio,tv_radio,false +Mercedes,newsmast.social,Visual Arts,visual_arts,false +Mercedes,newsmast.social,Architecture & Design,architecture_design,false +Mercedes,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false +Mercedes,newsmast.social,Books & Literature,books_literature,false +Mercedes,newsmast.social,Climate change,climate_change,false +Mercedes,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +Mercedes,newsmast.social,Energy & Pollution,energy_pollution,false +Mercedes,newsmast.social,Environment,environment,false +Mercedes,newsmast.social,Gaming,gaming,false +Mercedes,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false +Mercedes,newsmast.social,Movies,movies,false +Mercedes,newsmast.social,Music,music,true +Mercedes,newsmast.social,Performing Arts,performing_arts,false +Mercedes,newsmast.social,Photography,photography,false +Mercedes,newsmast.social,Poverty & Inequality,poverty_inequality,false +Mercedes,newsmast.social,TV & Radio,tv_radio,false +Mercedes,newsmast.social,Visual Arts,visual_arts,false +WayneDupreeShow,newsmast.social,Black Voices,black_voices,false +WayneDupreeShow,newsmast.social,Breaking News,breaking_news,false +WayneDupreeShow,newsmast.social,Food & Drink,food_drink,false +WayneDupreeShow,newsmast.social,Government & Policy,government_policy,false +WayneDupreeShow,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false +WayneDupreeShow,newsmast.social,Journalism & Comment,news_comment_data,false +WayneDupreeShow,newsmast.social,Politics,politics,false +WayneDupreeShow,newsmast.social,Social Media,social_media,false +WayneDupreeShow,newsmast.social,TV & Radio,tv_radio,false +WayneDupreeShow,newsmast.social,US Politics,us_politics,true +research,newsmast.social,AI,ai,false +research,newsmast.social,Biology,biology,false +research,newsmast.social,Chemistry,chemistry,false +research,newsmast.social,Engineering,engineering,false +research,newsmast.social,Journalism & Comment,news_comment_data,false +research,newsmast.social,Physics,physics,false +research,newsmast.social,Science,science,true +research,newsmast.social,Space,space,false +research,newsmast.social,Technology,technology,false +rogergraf,newsmast.social,AI,ai,false +rogergraf,newsmast.social,Breaking News,breaking_news,true +rogergraf,newsmast.social,History,history,false +rogergraf,newsmast.social,Humanities,humanities,false +rogergraf,newsmast.social,Philosophy,philosophy,false +rogergraf,newsmast.social,Science,science,false +rogergraf,newsmast.social,Social Sciences,social_sciences,false +rogergraf,newsmast.social,Technology,technology,false +rogergraf,newsmast.social,Books & Literature,books_literature,false +rogergraf,newsmast.social,Movies,movies,false +rogergraf,newsmast.social,Music,music,false +rogergraf,newsmast.social,TV & Radio,tv_radio,false +rogergraf,newsmast.social,Visual Arts,visual_arts,false +rogergraf,newsmast.social,Sport,sport,false +rogergraf,newsmast.social,Football,football,false +rogergraf,newsmast.social,Creative Arts,creative_arts,false +rogergraf,newsmast.social,Food & Drink,food_drink,false +rogergraf,newsmast.social,Humour,humour,false +rogergraf,newsmast.social,Nature & Wildlife,nature_wildlife,false +rogergraf,newsmast.social,Pets,pets,false +rogergraf,newsmast.social,Puzzles,puzzles,false +rogergraf,newsmast.social,Travel,travel,false +r0yaL,newsmast.social,Breaking News,breaking_news,false +r0yaL,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +r0yaL,newsmast.social,Government & Policy,government_policy,false +r0yaL,newsmast.social,Science,science,false +r0yaL,newsmast.social,Technology,technology,true +hardindr,newsmast.social,Biology,biology,false +hardindr,newsmast.social,Breaking News,breaking_news,false +hardindr,newsmast.social,Chemistry,chemistry,true +hardindr,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +hardindr,newsmast.social,Government & Policy,government_policy,false +hardindr,newsmast.social,History,history,false +hardindr,newsmast.social,Humanities,humanities,false +hardindr,newsmast.social,Law & Justice,law_justice,false +hardindr,newsmast.social,Mathematics,mathematics,false +hardindr,newsmast.social,Philosophy,philosophy,false +hardindr,newsmast.social,Physics,physics,false +hardindr,newsmast.social,Poverty & Inequality,poverty_inequality,false +hardindr,newsmast.social,Social Sciences,social_sciences,false +hardindr,newsmast.social,US Politics,us_politics,false +guchengsnakee,newsmast.social,AI,ai,true +guchengsnakee,newsmast.social,Markets & Finance,markets_finance,false +guchengsnakee,newsmast.social,Mathematics,mathematics,false +guchengsnakee,newsmast.social,Programming,programming,false +guchengsnakee,newsmast.social,Science,science,false +guchengsnakee,newsmast.social,Technology,technology,false +alexdickson,newsmast.social,Creative Arts,creative_arts,false +alexdickson,newsmast.social,Food & Drink,food_drink,false +alexdickson,newsmast.social,History,history,false +alexdickson,newsmast.social,Humanities,humanities,false +alexdickson,newsmast.social,Humour,humour,false +alexdickson,newsmast.social,Markets & Finance,markets_finance,false +alexdickson,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false +alexdickson,newsmast.social,Nature & Wildlife,nature_wildlife,false +alexdickson,newsmast.social,Pets,pets,false +alexdickson,newsmast.social,Philosophy,philosophy,false +alexdickson,newsmast.social,Puzzles,puzzles,false +alexdickson,newsmast.social,Social Sciences,social_sciences,false +alexdickson,newsmast.social,Workers Rights,workers_rights,false +alexdickson,newsmast.social,Business,business,true +DrMikeWatts,newsmast.social,Biology,biology,false +DrMikeWatts,newsmast.social,Climate change,climate_change,false +DrMikeWatts,newsmast.social,Programming,programming,false +DrMikeWatts,newsmast.social,Science,science,false +DrMikeWatts,newsmast.social,AI,ai,true +JessJ,newsmast.social,Activism & Civil Rights,activism_civil_rights,false +JessJ,newsmast.social,LGBTQ+,lgbtq,true +JessJ,newsmast.social,Programming,programming,false +JessJ,newsmast.social,Space,space,false +JessJ,newsmast.social,Women’s Voices,women_voices,false +Salexkenyon,newsmast.social,Activism & Civil Rights,activism_civil_rights,false +Salexkenyon,newsmast.social,Breaking News,breaking_news,false +Salexkenyon,newsmast.social,Climate change,climate_change,true +Salexkenyon,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +Salexkenyon,newsmast.social,Environment,environment,false +Salexkenyon,newsmast.social,Government & Policy,government_policy,false +Salexkenyon,newsmast.social,Immigrants Rights,immigrants_rights,false +Salexkenyon,newsmast.social,Journalism & Comment,news_comment_data,false +Salexkenyon,newsmast.social,Philosophy,philosophy,false +Salexkenyon,newsmast.social,Politics,politics,false +Salexkenyon,newsmast.social,Poverty & Inequality,poverty_inequality,false +Salexkenyon,newsmast.social,US Politics,us_politics,false +Salexkenyon,newsmast.social,Women’s Voices,women_voices,false +ballhaus,newsmast.social,Music,music,true +ballhaus,newsmast.social,History,history,false +ballhaus,newsmast.social,Mathematics,mathematics,false +ballhaus,newsmast.social,Movies,movies,false +ballhaus,newsmast.social,Performing Arts,performing_arts,false +ballhaus,newsmast.social,Philosophy,philosophy,false +ballhaus,newsmast.social,Photography,photography,false +ballhaus,newsmast.social,Science,science,false +ballhaus,newsmast.social,Social Sciences,social_sciences,false +ballhaus,newsmast.social,Space,space,false +ballhaus,newsmast.social,Visual Arts,visual_arts,false +ppttest456,newsmast.social,Academia & Research,academia_research,true +ppttest456,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +ppttest456,newsmast.social,Government & Policy,government_policy,false +ppttest456,newsmast.social,Healthcare,healthcare,false +ppttest456,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false +ppttest456,newsmast.social,Law & Justice,law_justice,false +ppttest456,newsmast.social,Politics,politics,false +ppttest456,newsmast.social,Poverty & Inequality,poverty_inequality,false +ppttest456,newsmast.social,US Politics,us_politics,false +JohnJVaccaro,newsmast.social,AI,ai,false +JohnJVaccaro,newsmast.social,Biology,biology,false +JohnJVaccaro,newsmast.social,Business,business,false +JohnJVaccaro,newsmast.social,Chemistry,chemistry,false +JohnJVaccaro,newsmast.social,Climate change,climate_change,false +JohnJVaccaro,newsmast.social,Energy & Pollution,energy_pollution,false +JohnJVaccaro,newsmast.social,Engineering,engineering,false +JohnJVaccaro,newsmast.social,Mathematics,mathematics,false +JohnJVaccaro,newsmast.social,Physics,physics,false +JohnJVaccaro,newsmast.social,Programming,programming,false +JohnJVaccaro,newsmast.social,Science,science,true +JohnJVaccaro,newsmast.social,Space,space,false +JohnJVaccaro,newsmast.social,Technology,technology,false +suthit,newsmast.social,AI,ai,false +suthit,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false +suthit,newsmast.social,Climate change,climate_change,false +suthit,newsmast.social,Energy & Pollution,energy_pollution,false +suthit,newsmast.social,Engineering,engineering,false +suthit,newsmast.social,Environment,environment,true +suthit,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false +suthit,newsmast.social,Poverty & Inequality,poverty_inequality,false +suthit,newsmast.social,Programming,programming,false +tom_webler,newsmast.social,Academia & Research,academia_research,false +tom_webler,newsmast.social,AI,ai,false +tom_webler,newsmast.social,Climate change,climate_change,false +tom_webler,newsmast.social,Energy & Pollution,energy_pollution,false +tom_webler,newsmast.social,Government & Policy,government_policy,true +tom_webler,newsmast.social,US Politics,us_politics,false +chatter,newsmast.social,Breaking News,breaking_news,false +chatter,newsmast.social,Journalism & Comment,news_comment_data,false +chatter,newsmast.social,Social Media,social_media,false +chatter,newsmast.social,Ukraine Invasion,ukraine_invasion,true +chatter,newsmast.social,Weather,weather,false +dave42w,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false +dave42w,newsmast.social,Climate change,climate_change,false +dave42w,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +dave42w,newsmast.social,Energy & Pollution,energy_pollution,false +dave42w,newsmast.social,Poverty & Inequality,poverty_inequality,false +dave42w,newsmast.social,Programming,programming,true +aydnkocek,newsmast.social,Academia & Research,academia_research,false +aydnkocek,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +aydnkocek,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false +aydnkocek,newsmast.social,Indigenous Peoples,indigenous_peoples,false +aydnkocek,newsmast.social,Politics,politics,true +sintrenton,newsmast.social,Breaking News,breaking_news,true +sintrenton,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +sintrenton,newsmast.social,Government & Policy,government_policy,false +sintrenton,newsmast.social,Humanities,humanities,false +sintrenton,newsmast.social,Law & Justice,law_justice,false +sintrenton,newsmast.social,Politics,politics,false +sintrenton,newsmast.social,Social Sciences,social_sciences,false +sintrenton,newsmast.social,Technology,technology,false +Chourouk,newsmast.social,Activism & Civil Rights,activism_civil_rights,false +Chourouk,newsmast.social,Black Voices,black_voices,false +Chourouk,newsmast.social,Books & Literature,books_literature,false +Chourouk,newsmast.social,Climate change,climate_change,false +Chourouk,newsmast.social,Disabled Voices,disabled_voices,false +Chourouk,newsmast.social,Energy & Pollution,energy_pollution,false +Chourouk,newsmast.social,Environment,environment,false +Chourouk,newsmast.social,Humanities,humanities,false +Chourouk,newsmast.social,Immigrants Rights,immigrants_rights,false +Chourouk,newsmast.social,Indigenous Peoples,indigenous_peoples,false +Chourouk,newsmast.social,LGBTQ+,lgbtq,false +Chourouk,newsmast.social,Movies,movies,false +Chourouk,newsmast.social,Music,music,false +Chourouk,newsmast.social,Performing Arts,performing_arts,false +Chourouk,newsmast.social,Politics,politics,false +Chourouk,newsmast.social,Poverty & Inequality,poverty_inequality,false +Chourouk,newsmast.social,TV & Radio,tv_radio,false +Chourouk,newsmast.social,US Politics,us_politics,false +Chourouk,newsmast.social,Visual Arts,visual_arts,false +Chourouk,newsmast.social,Women’s Voices,women_voices,false +Chourouk,newsmast.social,Democracy & Human Rights,democracy_human_rights,true +plus,newsmast.social,Academia & Research,academia_research,false +plus,newsmast.social,Activism & Civil Rights,activism_civil_rights,false +plus,newsmast.social,AI,ai,false +plus,newsmast.social,Architecture & Design,architecture_design,false +plus,newsmast.social,Black Voices,black_voices,false +plus,newsmast.social,Books & Literature,books_literature,false +plus,newsmast.social,Breaking News,breaking_news,true +plus,newsmast.social,Business,business,false +plus,newsmast.social,Creative Arts,creative_arts,false +plus,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +plus,newsmast.social,Disabled Voices,disabled_voices,false +plus,newsmast.social,Engineering,engineering,false +plus,newsmast.social,Food & Drink,food_drink,false +plus,newsmast.social,Gaming,gaming,false +plus,newsmast.social,Government & Policy,government_policy,false +plus,newsmast.social,Healthcare,healthcare,false +plus,newsmast.social,History,history,false +plus,newsmast.social,Humanities,humanities,false +plus,newsmast.social,Humour,humour,false +plus,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false +plus,newsmast.social,Immigrants Rights,immigrants_rights,false +plus,newsmast.social,Indigenous Peoples,indigenous_peoples,false +plus,newsmast.social,Law & Justice,law_justice,false +plus,newsmast.social,LGBTQ+,lgbtq,false +plus,newsmast.social,Markets & Finance,markets_finance,false +plus,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false +plus,newsmast.social,Movies,movies,false +plus,newsmast.social,Music,music,false +plus,newsmast.social,Nature & Wildlife,nature_wildlife,false +plus,newsmast.social,Journalism & Comment,news_comment_data,false +plus,newsmast.social,Performing Arts,performing_arts,false +plus,newsmast.social,Pets,pets,false +plus,newsmast.social,Philosophy,philosophy,false +plus,newsmast.social,Photography,photography,false +plus,newsmast.social,Politics,politics,false +plus,newsmast.social,Poverty & Inequality,poverty_inequality,false +plus,newsmast.social,Programming,programming,false +plus,newsmast.social,Puzzles,puzzles,false +plus,newsmast.social,Social Media,social_media,false +plus,newsmast.social,Social Sciences,social_sciences,false +plus,newsmast.social,Technology,technology,false +plus,newsmast.social,Travel,travel,false +plus,newsmast.social,TV & Radio,tv_radio,false +plus,newsmast.social,Ukraine Invasion,ukraine_invasion,false +plus,newsmast.social,US Politics,us_politics,false +plus,newsmast.social,Visual Arts,visual_arts,false +plus,newsmast.social,Weather,weather,false +plus,newsmast.social,Women’s Voices,women_voices,false +plus,newsmast.social,Workers Rights,workers_rights,false +jt1p5,newsmast.social,Democracy & Human Rights,democracy_human_rights,true +jt1p5,newsmast.social,Government & Policy,government_policy,false +jt1p5,newsmast.social,Law & Justice,law_justice,false +jt1p5,newsmast.social,Politics,politics,false +jt1p5,newsmast.social,US Politics,us_politics,false +SilverRainbow,newsmast.social,History,history,false +SilverRainbow,newsmast.social,Programming,programming,false +SilverRainbow,newsmast.social,Science,science,true +SilverRainbow,newsmast.social,Space,space,false +SilverRainbow,newsmast.social,Technology,technology,false +Empiricism,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false +Empiricism,newsmast.social,Biology,biology,false +Empiricism,newsmast.social,Chemistry,chemistry,false +Empiricism,newsmast.social,Climate change,climate_change,false +Empiricism,newsmast.social,Energy & Pollution,energy_pollution,false +Empiricism,newsmast.social,Environment,environment,false +Empiricism,newsmast.social,Mathematics,mathematics,false +Empiricism,newsmast.social,Philosophy,philosophy,false +Empiricism,newsmast.social,Physics,physics,false +Empiricism,newsmast.social,Science,science,true +Empiricism,newsmast.social,Social Sciences,social_sciences,false +Empiricism,newsmast.social,Space,space,false +Eklektikos,newsmast.social,Academia & Research,academia_research,false +Eklektikos,newsmast.social,AI,ai,false +Eklektikos,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false +Eklektikos,newsmast.social,Biology,biology,false +Eklektikos,newsmast.social,Books & Literature,books_literature,false +Eklektikos,newsmast.social,Breaking News,breaking_news,true +Eklektikos,newsmast.social,Business,business,false +Eklektikos,newsmast.social,Chemistry,chemistry,false +Eklektikos,newsmast.social,Climate change,climate_change,false +Eklektikos,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +Eklektikos,newsmast.social,Energy & Pollution,energy_pollution,false +Eklektikos,newsmast.social,Engineering,engineering,false +Eklektikos,newsmast.social,Environment,environment,false +Eklektikos,newsmast.social,Government & Policy,government_policy,false +Eklektikos,newsmast.social,Healthcare,healthcare,false +Eklektikos,newsmast.social,History,history,false +Eklektikos,newsmast.social,Humanities,humanities,false +Eklektikos,newsmast.social,Humour,humour,false +Eklektikos,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false +Eklektikos,newsmast.social,Law & Justice,law_justice,false +Eklektikos,newsmast.social,Markets & Finance,markets_finance,false +Eklektikos,newsmast.social,Mathematics,mathematics,false +Eklektikos,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false +Eklektikos,newsmast.social,Movies,movies,false +Eklektikos,newsmast.social,Nature & Wildlife,nature_wildlife,false +Eklektikos,newsmast.social,Journalism & Comment,news_comment_data,false +Eklektikos,newsmast.social,Philosophy,philosophy,false +Eklektikos,newsmast.social,Physics,physics,false +Eklektikos,newsmast.social,Politics,politics,false +Eklektikos,newsmast.social,Poverty & Inequality,poverty_inequality,false +Eklektikos,newsmast.social,Programming,programming,false +Eklektikos,newsmast.social,Puzzles,puzzles,false +Eklektikos,newsmast.social,Science,science,false +Eklektikos,newsmast.social,Social Media,social_media,false +Eklektikos,newsmast.social,Social Sciences,social_sciences,false +Eklektikos,newsmast.social,Space,space,false +Eklektikos,newsmast.social,Sport,sport,false +Eklektikos,newsmast.social,Technology,technology,false +Eklektikos,newsmast.social,TV & Radio,tv_radio,false +Eklektikos,newsmast.social,US Politics,us_politics,false +Eklektikos,newsmast.social,Workers Rights,workers_rights,false +FamilyLawExpert,newsmast.social,Breaking News,breaking_news,false +FamilyLawExpert,newsmast.social,Democracy & Human Rights,democracy_human_rights,true +FamilyLawExpert,newsmast.social,Humanities,humanities,false +FamilyLawExpert,newsmast.social,Poverty & Inequality,poverty_inequality,false +FamilyLawExpert,newsmast.social,Social Media,social_media,false +FamilyLawExpert,newsmast.social,Social Sciences,social_sciences,false +OFMagazine,newsmast.social,Breaking News,breaking_news,false +OFMagazine,newsmast.social,History,history,false +OFMagazine,newsmast.social,Music,music,false +OFMagazine,newsmast.social,Journalism & Comment,news_comment_data,true +OFMagazine,newsmast.social,Social Media,social_media,false +OFMagazine,newsmast.social,Business,business,false +Startupradio,newsmast.social,AI,ai,false +Startupradio,newsmast.social,Business,business,false +Startupradio,newsmast.social,Engineering,engineering,false +Startupradio,newsmast.social,Markets & Finance,markets_finance,false +Startupradio,newsmast.social,Programming,programming,false +Startupradio,newsmast.social,Technology,technology,true +Startupradio,newsmast.social,Workers Rights,workers_rights,false +thejustinto,newsmast.social,AI,ai,false +thejustinto,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false +thejustinto,newsmast.social,Biology,biology,false +thejustinto,newsmast.social,Breaking News,breaking_news,false +thejustinto,newsmast.social,Chemistry,chemistry,false +thejustinto,newsmast.social,Climate change,climate_change,false +thejustinto,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +thejustinto,newsmast.social,Energy & Pollution,energy_pollution,false +thejustinto,newsmast.social,Engineering,engineering,true +thejustinto,newsmast.social,Environment,environment,false +thejustinto,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false +thejustinto,newsmast.social,Mathematics,mathematics,false +thejustinto,newsmast.social,Journalism & Comment,news_comment_data,false +thejustinto,newsmast.social,Physics,physics,false +thejustinto,newsmast.social,Poverty & Inequality,poverty_inequality,false +thejustinto,newsmast.social,Programming,programming,false +thejustinto,newsmast.social,Science,science,false +thejustinto,newsmast.social,Social Media,social_media,false +thejustinto,newsmast.social,Space,space,false +thejustinto,newsmast.social,Technology,technology,false +thejustinto,newsmast.social,Ukraine Invasion,ukraine_invasion,false +thejustinto,newsmast.social,Weather,weather,false +Toex,newsmast.social,Breaking News,breaking_news,false +Toex,newsmast.social,Science,science,true +Toex,newsmast.social,Social Media,social_media,false +Toex,newsmast.social,Space,space,false +Toex,newsmast.social,Weather,weather,false +vlp00,newsmast.social,Breaking News,breaking_news,false +vlp00,newsmast.social,Engineering,engineering,false +vlp00,newsmast.social,Journalism & Comment,news_comment_data,false +vlp00,newsmast.social,Programming,programming,false +vlp00,newsmast.social,Social Media,social_media,false +vlp00,newsmast.social,Technology,technology,false +vlp00,newsmast.social,Ukraine Invasion,ukraine_invasion,false +vlp00,newsmast.social,Weather,weather,false +vlp00,newsmast.social,AI,ai,true +vlp00,newsmast.social,US Politics,us_politics,false +vlp00,newsmast.social,Government & Policy,government_policy,false +vlp00,newsmast.social,Politics,politics,false +vlp00,newsmast.social,Academia & Research,academia_research,false +vlp00,newsmast.social,Healthcare,healthcare,false +vlp00,newsmast.social,Law & Justice,law_justice,false +vlp00,newsmast.social,Markets & Finance,markets_finance,false +vlp00,newsmast.social,Business,business,false +vlp00,newsmast.social,Workers Rights,workers_rights,false +mombian,newsmast.social,Government & Policy,government_policy,false +mombian,newsmast.social,Activism & Civil Rights,activism_civil_rights,false +mombian,newsmast.social,Books & Literature,books_literature,false +mombian,newsmast.social,Food & Drink,food_drink,false +mombian,newsmast.social,History,history,false +mombian,newsmast.social,LGBTQ+,lgbtq,true +mombian,newsmast.social,Women’s Voices,women_voices,false +mombian,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +exakat,newsmast.social,Engineering,engineering,false +exakat,newsmast.social,Mathematics,mathematics,false +exakat,newsmast.social,Physics,physics,false +exakat,newsmast.social,Programming,programming,true +exakat,newsmast.social,Space,space,false +sitothebo,newsmast.social,AI,ai,false +sitothebo,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +sitothebo,newsmast.social,Engineering,engineering,false +sitothebo,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false +sitothebo,newsmast.social,Journalism & Comment,news_comment_data,false +sitothebo,newsmast.social,Poverty & Inequality,poverty_inequality,false +sitothebo,newsmast.social,Programming,programming,false +sitothebo,newsmast.social,Social Media,social_media,false +sitothebo,newsmast.social,Technology,technology,false +sitothebo,newsmast.social,Ukraine Invasion,ukraine_invasion,false +sitothebo,newsmast.social,Weather,weather,false +sitothebo,newsmast.social,Breaking News,breaking_news,true +gospelsong,newsmast.social,Activism & Civil Rights,activism_civil_rights,false +gospelsong,newsmast.social,Black Voices,black_voices,false +gospelsong,newsmast.social,Breaking News,breaking_news,true +gospelsong,newsmast.social,Business,business,false +gospelsong,newsmast.social,Creative Arts,creative_arts,false +gospelsong,newsmast.social,Disabled Voices,disabled_voices,false +gospelsong,newsmast.social,Food & Drink,food_drink,false +gospelsong,newsmast.social,Football,football,false +gospelsong,newsmast.social,Humour,humour,false +gospelsong,newsmast.social,Immigrants Rights,immigrants_rights,false +gospelsong,newsmast.social,Indigenous Peoples,indigenous_peoples,false +gospelsong,newsmast.social,LGBTQ+,lgbtq,false +gospelsong,newsmast.social,Markets & Finance,markets_finance,false +gospelsong,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false +gospelsong,newsmast.social,Nature & Wildlife,nature_wildlife,false +gospelsong,newsmast.social,Journalism & Comment,news_comment_data,false +gospelsong,newsmast.social,Pets,pets,false +gospelsong,newsmast.social,Puzzles,puzzles,false +gospelsong,newsmast.social,Social Media,social_media,false +gospelsong,newsmast.social,Sport,sport,false +gospelsong,newsmast.social,Travel,travel,false +gospelsong,newsmast.social,Ukraine Invasion,ukraine_invasion,false +gospelsong,newsmast.social,US Sport,us_sport,false +gospelsong,newsmast.social,Weather,weather,false +gospelsong,newsmast.social,Women’s Voices,women_voices,false +gospelsong,newsmast.social,Workers Rights,workers_rights,false +msafaksari,newsmast.social,AI,ai,true +msafaksari,newsmast.social,History,history,false +msafaksari,newsmast.social,Movies,movies,false +msafaksari,newsmast.social,Photography,photography,false +msafaksari,newsmast.social,Social Sciences,social_sciences,false +VaniaG,newsmast.social,Breaking News,breaking_news,true +VaniaG,newsmast.social,Government & Policy,government_policy,false +VaniaG,newsmast.social,Healthcare,healthcare,false +VaniaG,newsmast.social,Science,science,false +VaniaG,newsmast.social,Ukraine Invasion,ukraine_invasion,false +DadeMutphy,newsmast.social,AI,ai,false +DadeMutphy,newsmast.social,Biology,biology,false +DadeMutphy,newsmast.social,Breaking News,breaking_news,true +DadeMutphy,newsmast.social,Chemistry,chemistry,false +DadeMutphy,newsmast.social,Engineering,engineering,false +DadeMutphy,newsmast.social,Mathematics,mathematics,false +DadeMutphy,newsmast.social,Journalism & Comment,news_comment_data,false +DadeMutphy,newsmast.social,Physics,physics,false +DadeMutphy,newsmast.social,Programming,programming,false +DadeMutphy,newsmast.social,Science,science,false +DadeMutphy,newsmast.social,Social Media,social_media,false +DadeMutphy,newsmast.social,Space,space,false +DadeMutphy,newsmast.social,Technology,technology,false +DadeMutphy,newsmast.social,Ukraine Invasion,ukraine_invasion,false +DadeMutphy,newsmast.social,Weather,weather,false +strayegg,newsmast.social,AI,ai,false +strayegg,newsmast.social,Biology,biology,false +strayegg,newsmast.social,Chemistry,chemistry,false +strayegg,newsmast.social,Creative Arts,creative_arts,false +strayegg,newsmast.social,Engineering,engineering,false +strayegg,newsmast.social,Food & Drink,food_drink,false +strayegg,newsmast.social,History,history,false +strayegg,newsmast.social,Humanities,humanities,false +strayegg,newsmast.social,Humour,humour,false +strayegg,newsmast.social,LGBTQ+,lgbtq,false +strayegg,newsmast.social,Mathematics,mathematics,false +strayegg,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false +strayegg,newsmast.social,Nature & Wildlife,nature_wildlife,false +strayegg,newsmast.social,Pets,pets,false +strayegg,newsmast.social,Philosophy,philosophy,false +strayegg,newsmast.social,Physics,physics,false +strayegg,newsmast.social,Programming,programming,true +strayegg,newsmast.social,Science,science,false +strayegg,newsmast.social,Social Sciences,social_sciences,false +strayegg,newsmast.social,Space,space,false +strayegg,newsmast.social,Technology,technology,false +strayegg,newsmast.social,Travel,travel,false +metilli,newsmast.social,AI,ai,false +metilli,newsmast.social,Architecture & Design,architecture_design,false +metilli,newsmast.social,Biology,biology,false +metilli,newsmast.social,Books & Literature,books_literature,false +metilli,newsmast.social,Breaking News,breaking_news,false +metilli,newsmast.social,Chemistry,chemistry,false +metilli,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +metilli,newsmast.social,Engineering,engineering,false +metilli,newsmast.social,Gaming,gaming,false +metilli,newsmast.social,Government & Policy,government_policy,false +metilli,newsmast.social,Healthcare,healthcare,false +metilli,newsmast.social,History,history,false +metilli,newsmast.social,Humanities,humanities,false +metilli,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false +metilli,newsmast.social,Law & Justice,law_justice,false +metilli,newsmast.social,Mathematics,mathematics,false +metilli,newsmast.social,Movies,movies,false +metilli,newsmast.social,Music,music,false +metilli,newsmast.social,Journalism & Comment,news_comment_data,false +metilli,newsmast.social,Performing Arts,performing_arts,false +metilli,newsmast.social,Philosophy,philosophy,false +metilli,newsmast.social,Photography,photography,false +metilli,newsmast.social,Physics,physics,false +metilli,newsmast.social,Politics,politics,false +metilli,newsmast.social,Poverty & Inequality,poverty_inequality,false +metilli,newsmast.social,Programming,programming,false +metilli,newsmast.social,Science,science,false +metilli,newsmast.social,Social Media,social_media,false +metilli,newsmast.social,Social Sciences,social_sciences,false +metilli,newsmast.social,Space,space,false +metilli,newsmast.social,Technology,technology,false +metilli,newsmast.social,TV & Radio,tv_radio,false +metilli,newsmast.social,Ukraine Invasion,ukraine_invasion,false +metilli,newsmast.social,US Politics,us_politics,false +metilli,newsmast.social,Visual Arts,visual_arts,false +metilli,newsmast.social,Weather,weather,false +metilli,newsmast.social,Academia & Research,academia_research,true +justinw,newsmast.social,Academia & Research,academia_research,false +justinw,newsmast.social,Activism & Civil Rights,activism_civil_rights,false +justinw,newsmast.social,AI,ai,false +justinw,newsmast.social,Black Voices,black_voices,false +justinw,newsmast.social,Books & Literature,books_literature,false +justinw,newsmast.social,Breaking News,breaking_news,false +justinw,newsmast.social,Climate change,climate_change,false +justinw,newsmast.social,Creative Arts,creative_arts,false +justinw,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +justinw,newsmast.social,Disabled Voices,disabled_voices,false +justinw,newsmast.social,Energy & Pollution,energy_pollution,false +justinw,newsmast.social,Environment,environment,false +justinw,newsmast.social,Food & Drink,food_drink,false +justinw,newsmast.social,Government & Policy,government_policy,false +justinw,newsmast.social,Healthcare,healthcare,false +justinw,newsmast.social,History,history,false +justinw,newsmast.social,Humanities,humanities,false +justinw,newsmast.social,Humour,humour,false +justinw,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false +justinw,newsmast.social,Immigrants Rights,immigrants_rights,false +justinw,newsmast.social,Indigenous Peoples,indigenous_peoples,false +justinw,newsmast.social,Law & Justice,law_justice,false +justinw,newsmast.social,LGBTQ+,lgbtq,false +justinw,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false +justinw,newsmast.social,Movies,movies,true +justinw,newsmast.social,Music,music,false +justinw,newsmast.social,Journalism & Comment,news_comment_data,false +justinw,newsmast.social,Performing Arts,performing_arts,false +justinw,newsmast.social,Pets,pets,false +justinw,newsmast.social,Philosophy,philosophy,false +justinw,newsmast.social,Photography,photography,false +justinw,newsmast.social,Politics,politics,false +justinw,newsmast.social,Poverty & Inequality,poverty_inequality,false +justinw,newsmast.social,Social Sciences,social_sciences,false +justinw,newsmast.social,Technology,technology,false +justinw,newsmast.social,Travel,travel,false +justinw,newsmast.social,TV & Radio,tv_radio,false +justinw,newsmast.social,US Politics,us_politics,false +justinw,newsmast.social,Visual Arts,visual_arts,false +justinw,newsmast.social,Weather,weather,false +justinw,newsmast.social,Women’s Voices,women_voices,false +qurquma,newsmast.social,Movies,movies,false +qurquma,newsmast.social,Science,science,false +qurquma,newsmast.social,Sport,sport,false +qurquma,newsmast.social,US Sport,us_sport,false +qurquma,newsmast.social,Football,football,true +kevinbugati,newsmast.social,Academia & Research,academia_research,false +kevinbugati,newsmast.social,Biology,biology,false +kevinbugati,newsmast.social,Breaking News,breaking_news,true +kevinbugati,newsmast.social,Chemistry,chemistry,false +kevinbugati,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +kevinbugati,newsmast.social,Government & Policy,government_policy,false +kevinbugati,newsmast.social,Healthcare,healthcare,false +kevinbugati,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false +kevinbugati,newsmast.social,Law & Justice,law_justice,false +kevinbugati,newsmast.social,Mathematics,mathematics,false +kevinbugati,newsmast.social,Journalism & Comment,news_comment_data,false +kevinbugati,newsmast.social,Physics,physics,false +kevinbugati,newsmast.social,Politics,politics,false +kevinbugati,newsmast.social,Poverty & Inequality,poverty_inequality,false +kevinbugati,newsmast.social,Science,science,false +kevinbugati,newsmast.social,Social Media,social_media,false +kevinbugati,newsmast.social,Space,space,false +kevinbugati,newsmast.social,Ukraine Invasion,ukraine_invasion,false +kevinbugati,newsmast.social,US Politics,us_politics,false +kevinbugati,newsmast.social,Weather,weather,false +doctorambient,newsmast.social,Academia & Research,academia_research,false +doctorambient,newsmast.social,Chemistry,chemistry,false +doctorambient,newsmast.social,History,history,false +doctorambient,newsmast.social,Physics,physics,false +doctorambient,newsmast.social,Science,science,false +doctorambient,newsmast.social,Social Sciences,social_sciences,false +doctorambient,newsmast.social,Mathematics,mathematics,true +atom,newsmast.social,Biology,biology,false +atom,newsmast.social,Chemistry,chemistry,false +atom,newsmast.social,Mathematics,mathematics,false +atom,newsmast.social,Physics,physics,false +atom,newsmast.social,Science,science,false +atom,newsmast.social,Space,space,false +atom,newsmast.social,Technology,technology,true +bartfaitamas,newsmast.social,AI,ai,false +bartfaitamas,newsmast.social,Biology,biology,false +bartfaitamas,newsmast.social,Chemistry,chemistry,false +bartfaitamas,newsmast.social,Climate change,climate_change,false +bartfaitamas,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +bartfaitamas,newsmast.social,Engineering,engineering,false +bartfaitamas,newsmast.social,Environment,environment,false +bartfaitamas,newsmast.social,Government & Policy,government_policy,false +bartfaitamas,newsmast.social,Mathematics,mathematics,false +bartfaitamas,newsmast.social,Physics,physics,false +bartfaitamas,newsmast.social,Politics,politics,false +bartfaitamas,newsmast.social,Poverty & Inequality,poverty_inequality,false +bartfaitamas,newsmast.social,Programming,programming,true +bartfaitamas,newsmast.social,Science,science,false +bartfaitamas,newsmast.social,Space,space,false +bartfaitamas,newsmast.social,Technology,technology,false +roggim,newsmast.social,Breaking News,breaking_news,true +roggim,newsmast.social,Football,football,false +roggim,newsmast.social,Humour,humour,false +roggim,newsmast.social,Social Media,social_media,false +roggim,newsmast.social,Travel,travel,false +yemyatthu_cs,newsmast.social,AI,ai,false +yemyatthu_cs,newsmast.social,Engineering,engineering,false +yemyatthu_cs,newsmast.social,Football,football,true +yemyatthu_cs,newsmast.social,Programming,programming,false +yemyatthu_cs,newsmast.social,Sport,sport,false +yemyatthu_cs,newsmast.social,Technology,technology,false +yemyatthu_cs,newsmast.social,US Sport,us_sport,false +realgnomidad,newsmast.social,Academia & Research,academia_research,false +realgnomidad,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +realgnomidad,newsmast.social,Government & Policy,government_policy,true +realgnomidad,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false +realgnomidad,newsmast.social,Law & Justice,law_justice,false +realgnomidad,newsmast.social,Politics,politics,false +realgnomidad,newsmast.social,Poverty & Inequality,poverty_inequality,false +realgnomidad,newsmast.social,US Politics,us_politics,false +niroran,newsmast.social,AI,ai,false +niroran,newsmast.social,Breaking News,breaking_news,true +niroran,newsmast.social,Business,business,false +niroran,newsmast.social,Climate change,climate_change,false +niroran,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +niroran,newsmast.social,Environment,environment,false +niroran,newsmast.social,Government & Policy,government_policy,false +niroran,newsmast.social,Markets & Finance,markets_finance,false +niroran,newsmast.social,Movies,movies,false +niroran,newsmast.social,Music,music,false +niroran,newsmast.social,Journalism & Comment,news_comment_data,false +niroran,newsmast.social,Politics,politics,false +niroran,newsmast.social,Science,science,false +niroran,newsmast.social,Social Media,social_media,false +niroran,newsmast.social,Space,space,false +niroran,newsmast.social,Technology,technology,false +niroran,newsmast.social,TV & Radio,tv_radio,false +niroran,newsmast.social,US Politics,us_politics,false +evil_k,newsmast.social,History,history,false +evil_k,newsmast.social,Philosophy,philosophy,false +evil_k,newsmast.social,Physics,physics,false +evil_k,newsmast.social,Science,science,false +evil_k,newsmast.social,Social Sciences,social_sciences,false +evil_k,newsmast.social,Space,space,true +group,newsmast.social,Breaking News,breaking_news,true +m0bi,newsmast.social,Breaking News,breaking_news,false +m0bi,newsmast.social,Journalism & Comment,news_comment_data,false +m0bi,newsmast.social,Programming,programming,true +m0bi,newsmast.social,Science,science,false +m0bi,newsmast.social,Space,space,false +m0bi,newsmast.social,Ukraine Invasion,ukraine_invasion,false +m0bi,newsmast.social,Engineering,engineering,false +m0bi,newsmast.social,AI,ai,false +emenikeng,newsmast.social,AI,ai,false +emenikeng,newsmast.social,Business,business,false +emenikeng,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +emenikeng,newsmast.social,Engineering,engineering,false +emenikeng,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false +emenikeng,newsmast.social,Markets & Finance,markets_finance,true +emenikeng,newsmast.social,Poverty & Inequality,poverty_inequality,false +emenikeng,newsmast.social,Programming,programming,false +emenikeng,newsmast.social,Technology,technology,false +emenikeng,newsmast.social,Workers Rights,workers_rights,false +frejusdabord,newsmast.social,Academia & Research,academia_research,false +frejusdabord,newsmast.social,Government & Policy,government_policy,false +frejusdabord,newsmast.social,Healthcare,healthcare,false +frejusdabord,newsmast.social,Law & Justice,law_justice,false +frejusdabord,newsmast.social,Politics,politics,true +frejusdabord,newsmast.social,US Politics,us_politics,false +ritesh,newsmast.social,Biology,biology,false +ritesh,newsmast.social,Food & Drink,food_drink,false +ritesh,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false +ritesh,newsmast.social,Social Media,social_media,false +ritesh,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,true +testpp34,newsmast.social,Academia & Research,academia_research,false +testpp34,newsmast.social,Government & Policy,government_policy,true +testpp34,newsmast.social,Healthcare,healthcare,false +testpp34,newsmast.social,Law & Justice,law_justice,false +testpp34,newsmast.social,Politics,politics,false +testpp34,newsmast.social,US Politics,us_politics,false +islandknabo,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false +islandknabo,newsmast.social,Biology,biology,false +islandknabo,newsmast.social,Breaking News,breaking_news,false +islandknabo,newsmast.social,Chemistry,chemistry,false +islandknabo,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,true +islandknabo,newsmast.social,Mathematics,mathematics,false +islandknabo,newsmast.social,Journalism & Comment,news_comment_data,false +islandknabo,newsmast.social,Physics,physics,false +islandknabo,newsmast.social,Science,science,false +islandknabo,newsmast.social,Space,space,false +Alex_Y,newsmast.social,Architecture & Design,architecture_design,false +Alex_Y,newsmast.social,Breaking News,breaking_news,false +Alex_Y,newsmast.social,Movies,movies,false +Alex_Y,newsmast.social,Physics,physics,false +Alex_Y,newsmast.social,Ukraine Invasion,ukraine_invasion,true +peterthepainter,newsmast.social,Activism & Civil Rights,activism_civil_rights,false +peterthepainter,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +peterthepainter,newsmast.social,History,history,false +peterthepainter,newsmast.social,Humanities,humanities,false +peterthepainter,newsmast.social,Journalism & Comment,news_comment_data,false +peterthepainter,newsmast.social,Philosophy,philosophy,false +peterthepainter,newsmast.social,Ukraine Invasion,ukraine_invasion,false +peterthepainter,newsmast.social,Breaking News,breaking_news,true +brasmus,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false +brasmus,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +brasmus,newsmast.social,Environment,environment,false +brasmus,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false +brasmus,newsmast.social,Journalism & Comment,news_comment_data,false +brasmus,newsmast.social,Physics,physics,false +brasmus,newsmast.social,Science,science,false +brasmus,newsmast.social,Weather,weather,false +brasmus,newsmast.social,Energy & Pollution,energy_pollution,false +brasmus,newsmast.social,Climate change,climate_change,true +marcelo,newsmast.social,Democracy & Human Rights,democracy_human_rights,true +marcelo,newsmast.social,History,history,false +marcelo,newsmast.social,Journalism & Comment,news_comment_data,false +marcelo,newsmast.social,Philosophy,philosophy,false +marcelo,newsmast.social,Politics,politics,false +marcelo,newsmast.social,Social Sciences,social_sciences,false +marcelo,newsmast.social,Ukraine Invasion,ukraine_invasion,false +ruslan,newsmast.social,AI,ai,false +ruslan,newsmast.social,Architecture & Design,architecture_design,false +ruslan,newsmast.social,Biology,biology,false +ruslan,newsmast.social,Books & Literature,books_literature,false +ruslan,newsmast.social,Business,business,false +ruslan,newsmast.social,Chemistry,chemistry,false +ruslan,newsmast.social,Creative Arts,creative_arts,false +ruslan,newsmast.social,Engineering,engineering,false +ruslan,newsmast.social,Food & Drink,food_drink,false +ruslan,newsmast.social,Gaming,gaming,false +ruslan,newsmast.social,History,history,false +ruslan,newsmast.social,Humanities,humanities,false +ruslan,newsmast.social,Humour,humour,false +ruslan,newsmast.social,Markets & Finance,markets_finance,false +ruslan,newsmast.social,Mathematics,mathematics,false +ruslan,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false +ruslan,newsmast.social,Movies,movies,false +ruslan,newsmast.social,Music,music,true +ruslan,newsmast.social,Nature & Wildlife,nature_wildlife,false +ruslan,newsmast.social,Performing Arts,performing_arts,false +ruslan,newsmast.social,Pets,pets,false +ruslan,newsmast.social,Philosophy,philosophy,false +ruslan,newsmast.social,Photography,photography,false +ruslan,newsmast.social,Physics,physics,false +ruslan,newsmast.social,Programming,programming,false +ruslan,newsmast.social,Puzzles,puzzles,false +ruslan,newsmast.social,Science,science,false +ruslan,newsmast.social,Social Sciences,social_sciences,false +ruslan,newsmast.social,Space,space,false +ruslan,newsmast.social,Technology,technology,false +ruslan,newsmast.social,Travel,travel,false +ruslan,newsmast.social,TV & Radio,tv_radio,false +ruslan,newsmast.social,Ukraine Invasion,ukraine_invasion,false +ruslan,newsmast.social,Visual Arts,visual_arts,false +ruslan,newsmast.social,Workers Rights,workers_rights,false +hermitary,newsmast.social,Breaking News,breaking_news,true +hermitary,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +hermitary,newsmast.social,Government & Policy,government_policy,false +hermitary,newsmast.social,Journalism & Comment,news_comment_data,false +hermitary,newsmast.social,Politics,politics,false +noisediver,newsmast.social,AI,ai,false +noisediver,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false +noisediver,newsmast.social,Biology,biology,false +noisediver,newsmast.social,Chemistry,chemistry,false +noisediver,newsmast.social,Climate change,climate_change,false +noisediver,newsmast.social,Energy & Pollution,energy_pollution,false +noisediver,newsmast.social,Engineering,engineering,false +noisediver,newsmast.social,Environment,environment,false +noisediver,newsmast.social,Mathematics,mathematics,false +noisediver,newsmast.social,Physics,physics,false +noisediver,newsmast.social,Programming,programming,false +noisediver,newsmast.social,Science,science,true +noisediver,newsmast.social,Space,space,false +noisediver,newsmast.social,Technology,technology,false +noisediver,newsmast.social,Ukraine Invasion,ukraine_invasion,false +noisediver,newsmast.social,Philosophy,philosophy,false +noisediver,newsmast.social,Academia & Research,academia_research,false +noisediver,newsmast.social,Social Sciences,social_sciences,false +noisediver,newsmast.social,Poverty & Inequality,poverty_inequality,false +noisediver,newsmast.social,Social Media,social_media,false +noisediver,newsmast.social,Disabled Voices,disabled_voices,false +noisediver,newsmast.social,Healthcare,healthcare,false +noisediver,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false +noisediver,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false +HC_History,newsmast.social,Activism & Civil Rights,activism_civil_rights,false +HC_History,newsmast.social,Black Voices,black_voices,false +HC_History,newsmast.social,History,history,true +HC_History,newsmast.social,Humanities,humanities,false +HC_History,newsmast.social,Philosophy,philosophy,false +HC_History,newsmast.social,Social Sciences,social_sciences,false +HC_History,newsmast.social,Women’s Voices,women_voices,false +HC_History,newsmast.social,Books & Literature,books_literature,false +HC_History,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false +HC_History,newsmast.social,Travel,travel,false +HC_History,newsmast.social,Markets & Finance,markets_finance,false +HC_History,newsmast.social,Business,business,false +HC_History,newsmast.social,Climate change,climate_change,false +Andy,newsmast.social,Weather,weather,false +Andy,newsmast.social,Politics,politics,false +Andy,newsmast.social,Ukraine Invasion,ukraine_invasion,false +Andy,newsmast.social,Journalism & Comment,news_comment_data,false +Andy,newsmast.social,Breaking News,breaking_news,true +Andy,newsmast.social,Business,business,false +Andy,newsmast.social,Environment,environment,false +Andy,newsmast.social,Football,football,false +Andy,newsmast.social,Science,science,false +Andy,newsmast.social,Sport,sport,false +bismillah345,newsmast.social,AI,ai,true +bismillah345,newsmast.social,Breaking News,breaking_news,false +bismillah345,newsmast.social,Engineering,engineering,false +bismillah345,newsmast.social,Journalism & Comment,news_comment_data,false +bismillah345,newsmast.social,Programming,programming,false +bismillah345,newsmast.social,Social Media,social_media,false +bismillah345,newsmast.social,Technology,technology,false +bismillah345,newsmast.social,Ukraine Invasion,ukraine_invasion,false +bismillah345,newsmast.social,Weather,weather,false +chidreams,newsmast.social,Gaming,gaming,false +chidreams,newsmast.social,AI,ai,false +chidreams,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +chidreams,newsmast.social,Engineering,engineering,false +chidreams,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false +chidreams,newsmast.social,Poverty & Inequality,poverty_inequality,false +chidreams,newsmast.social,Programming,programming,false +chidreams,newsmast.social,Technology,technology,true +wfryer,newsmast.social,AI,ai,false +wfryer,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +wfryer,newsmast.social,History,history,true +wfryer,newsmast.social,Philosophy,philosophy,false +wfryer,newsmast.social,Social Sciences,social_sciences,false +darkjamal,newsmast.social,Journalism & Comment,news_comment_data,true +darkjamal,newsmast.social,Social Media,social_media,false +darkjamal,newsmast.social,Ukraine Invasion,ukraine_invasion,false +darkjamal,newsmast.social,Weather,weather,false +darkjamal,newsmast.social,Photography,photography,false +darkjamal,newsmast.social,Travel,travel,false +darkjamal,newsmast.social,Science,science,false +Petinder,newsmast.social,Environment,environment,false +Petinder,newsmast.social,Humanities,humanities,false +Petinder,newsmast.social,Journalism & Comment,news_comment_data,false +Petinder,newsmast.social,Social Media,social_media,false +Petinder,newsmast.social,Social Sciences,social_sciences,true +ravi101,newsmast.social,AI,ai,false +ravi101,newsmast.social,Business,business,false +ravi101,newsmast.social,Markets & Finance,markets_finance,false +ravi101,newsmast.social,Science,science,false +ravi101,newsmast.social,Technology,technology,true +Kschroeder,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false +Kschroeder,newsmast.social,Climate change,climate_change,false +Kschroeder,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +Kschroeder,newsmast.social,Space,space,true +Kschroeder,newsmast.social,Technology,technology,false +mattmoehr,newsmast.social,Books & Literature,books_literature,false +mattmoehr,newsmast.social,Football,football,false +mattmoehr,newsmast.social,History,history,false +mattmoehr,newsmast.social,Humanities,humanities,false +mattmoehr,newsmast.social,Mathematics,mathematics,false +mattmoehr,newsmast.social,Philosophy,philosophy,false +mattmoehr,newsmast.social,Photography,photography,false +mattmoehr,newsmast.social,Physics,physics,false +mattmoehr,newsmast.social,Social Sciences,social_sciences,true +mattmoehr,newsmast.social,Space,space,false +mattmoehr,newsmast.social,Sport,sport,false +mattmoehr,newsmast.social,US Sport,us_sport,false +mattmoehr,newsmast.social,Visual Arts,visual_arts,false +travtasy,newsmast.social,Architecture & Design,architecture_design,false +travtasy,newsmast.social,Food & Drink,food_drink,false +travtasy,newsmast.social,Photography,photography,false +travtasy,newsmast.social,Travel,travel,true +travtasy,newsmast.social,Visual Arts,visual_arts,false +yethiha_codigo,newsmast.social,Breaking News,breaking_news,true +yethiha_codigo,newsmast.social,Journalism & Comment,news_comment_data,false +yethiha_codigo,newsmast.social,Social Media,social_media,false +yethiha_codigo,newsmast.social,Ukraine Invasion,ukraine_invasion,false +yethiha_codigo,newsmast.social,Weather,weather,false +chino,newsmast.social,AI,ai,false +chino,newsmast.social,Breaking News,breaking_news,true +chino,newsmast.social,Business,business,false +chino,newsmast.social,Markets & Finance,markets_finance,false +chino,newsmast.social,Science,science,false +chino,newsmast.social,Space,space,false +chino,newsmast.social,Technology,technology,false +Caramel,newsmast.social,AI,ai,false +Caramel,newsmast.social,Movies,movies,false +Caramel,newsmast.social,Music,music,false +Caramel,newsmast.social,Performing Arts,performing_arts,false +Caramel,newsmast.social,Photography,photography,false +Caramel,newsmast.social,Programming,programming,true +Caramel,newsmast.social,Technology,technology,false +Caramel,newsmast.social,TV & Radio,tv_radio,false +Caramel,newsmast.social,Visual Arts,visual_arts,false +catherinerhyde,newsmast.social,Energy & Pollution,energy_pollution,false +catherinerhyde,newsmast.social,Physics,physics,false +catherinerhyde,newsmast.social,Science,science,false +catherinerhyde,newsmast.social,Space,space,true +catherinerhyde,newsmast.social,Technology,technology,false +DarkAlomox,newsmast.social,Architecture & Design,architecture_design,true +DarkAlomox,newsmast.social,Books & Literature,books_literature,false +DarkAlomox,newsmast.social,Gaming,gaming,false +DarkAlomox,newsmast.social,Movies,movies,false +DarkAlomox,newsmast.social,Music,music,false +nexstepphysio,newsmast.social,Breaking News,breaking_news,true +nexstepphysio,newsmast.social,Business,business,false +nexstepphysio,newsmast.social,Markets & Finance,markets_finance,false +nexstepphysio,newsmast.social,Journalism & Comment,news_comment_data,false +nexstepphysio,newsmast.social,Social Media,social_media,false +nexstepphysio,newsmast.social,Ukraine Invasion,ukraine_invasion,false +nexstepphysio,newsmast.social,Weather,weather,false +nexstepphysio,newsmast.social,Workers Rights,workers_rights,false +minusgefuel,newsmast.social,AI,ai,false +minusgefuel,newsmast.social,Engineering,engineering,false +minusgefuel,newsmast.social,Humour,humour,false +minusgefuel,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false +minusgefuel,newsmast.social,Pets,pets,false +minusgefuel,newsmast.social,Programming,programming,false +minusgefuel,newsmast.social,Social Media,social_media,false +minusgefuel,newsmast.social,Technology,technology,true +Hayleyk1970,newsmast.social,Architecture & Design,architecture_design,false +Hayleyk1970,newsmast.social,Books & Literature,books_literature,false +Hayleyk1970,newsmast.social,Breaking News,breaking_news,false +Hayleyk1970,newsmast.social,Creative Arts,creative_arts,false +Hayleyk1970,newsmast.social,Food & Drink,food_drink,false +Hayleyk1970,newsmast.social,Gaming,gaming,false +Hayleyk1970,newsmast.social,Humour,humour,false +Hayleyk1970,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false +Hayleyk1970,newsmast.social,Movies,movies,false +Hayleyk1970,newsmast.social,Music,music,false +Hayleyk1970,newsmast.social,Nature & Wildlife,nature_wildlife,false +Hayleyk1970,newsmast.social,Performing Arts,performing_arts,false +Hayleyk1970,newsmast.social,Pets,pets,false +Hayleyk1970,newsmast.social,Photography,photography,false +Hayleyk1970,newsmast.social,Puzzles,puzzles,false +Hayleyk1970,newsmast.social,Social Media,social_media,false +Hayleyk1970,newsmast.social,Travel,travel,false +Hayleyk1970,newsmast.social,TV & Radio,tv_radio,false +Hayleyk1970,newsmast.social,Visual Arts,visual_arts,false +Hayleyk1970,newsmast.social,Weather,weather,true +Hayleyk1970,newsmast.social,Women’s Voices,women_voices,false +wbbdaily,newsmast.social,AI,ai,false +wbbdaily,newsmast.social,Architecture & Design,architecture_design,false +wbbdaily,newsmast.social,Books & Literature,books_literature,false +wbbdaily,newsmast.social,Creative Arts,creative_arts,false +wbbdaily,newsmast.social,Engineering,engineering,false +wbbdaily,newsmast.social,Food & Drink,food_drink,false +wbbdaily,newsmast.social,Football,football,false +wbbdaily,newsmast.social,Gaming,gaming,false +wbbdaily,newsmast.social,History,history,false +wbbdaily,newsmast.social,Humanities,humanities,false +wbbdaily,newsmast.social,Humour,humour,false +wbbdaily,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false +wbbdaily,newsmast.social,Movies,movies,false +wbbdaily,newsmast.social,Music,music,false +wbbdaily,newsmast.social,Nature & Wildlife,nature_wildlife,false +wbbdaily,newsmast.social,Performing Arts,performing_arts,false +wbbdaily,newsmast.social,Pets,pets,false +wbbdaily,newsmast.social,Philosophy,philosophy,false +wbbdaily,newsmast.social,Photography,photography,false +wbbdaily,newsmast.social,Programming,programming,false +wbbdaily,newsmast.social,Puzzles,puzzles,false +wbbdaily,newsmast.social,Social Sciences,social_sciences,false +wbbdaily,newsmast.social,Sport,sport,true +wbbdaily,newsmast.social,Technology,technology,false +wbbdaily,newsmast.social,Travel,travel,false +wbbdaily,newsmast.social,TV & Radio,tv_radio,false +wbbdaily,newsmast.social,US Sport,us_sport,false +wbbdaily,newsmast.social,Visual Arts,visual_arts,false +EiEi,newsmast.social,AI,ai,false +EiEi,newsmast.social,Biology,biology,false +EiEi,newsmast.social,Chemistry,chemistry,false +EiEi,newsmast.social,Engineering,engineering,false +EiEi,newsmast.social,Environment,environment,false +EiEi,newsmast.social,Mathematics,mathematics,false +EiEi,newsmast.social,Physics,physics,false +EiEi,newsmast.social,Programming,programming,false +EiEi,newsmast.social,Science,science,false +EiEi,newsmast.social,Space,space,false +EiEi,newsmast.social,Technology,technology,true +EngineerFinance,newsmast.social,Breaking News,breaking_news,false +EngineerFinance,newsmast.social,Creative Arts,creative_arts,false +EngineerFinance,newsmast.social,Food & Drink,food_drink,false +EngineerFinance,newsmast.social,Humour,humour,false +EngineerFinance,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false +EngineerFinance,newsmast.social,Nature & Wildlife,nature_wildlife,false +EngineerFinance,newsmast.social,Journalism & Comment,news_comment_data,true +EngineerFinance,newsmast.social,Pets,pets,false +EngineerFinance,newsmast.social,Puzzles,puzzles,false +EngineerFinance,newsmast.social,Social Media,social_media,false +EngineerFinance,newsmast.social,Travel,travel,false +EngineerFinance,newsmast.social,Ukraine Invasion,ukraine_invasion,false +EngineerFinance,newsmast.social,Weather,weather,false spacealgae,newsmast.social,Academia & Research,academia_research,false spacealgae,newsmast.social,AI,ai,false spacealgae,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false spacealgae,newsmast.social,Biology,biology,false spacealgae,newsmast.social,Breaking News,breaking_news,false spacealgae,newsmast.social,Chemistry,chemistry,false +spacealgae,newsmast.social,Climate change,climate_change,true spacealgae,newsmast.social,Democracy & Human Rights,democracy_human_rights,false spacealgae,newsmast.social,Energy & Pollution,energy_pollution,false spacealgae,newsmast.social,Engineering,engineering,false @@ -23479,697 +10919,2377 @@ spacealgae,newsmast.social,Technology,technology,false spacealgae,newsmast.social,Ukraine Invasion,ukraine_invasion,false spacealgae,newsmast.social,US Politics,us_politics,false spacealgae,newsmast.social,Weather,weather,false -spacealgae,newsmast.social,Climate change,climate_change,true -yuriiname,twiukraine.com,AI,ai,true -yuriiname,twiukraine.com,Humour,humour,false -yuriiname,twiukraine.com,Programming,programming,false -yuriiname,twiukraine.com,Social Sciences,social_sciences,false -yuriiname,twiukraine.com,Technology,technology,false -VeXHarbinger,mastodon.social,AI,ai,false -VeXHarbinger,mastodon.social,Biology,biology,false -VeXHarbinger,mastodon.social,Chemistry,chemistry,false -VeXHarbinger,mastodon.social,Engineering,engineering,false -VeXHarbinger,mastodon.social,Mathematics,mathematics,false -VeXHarbinger,mastodon.social,Physics,physics,false -VeXHarbinger,mastodon.social,Science,science,false -VeXHarbinger,mastodon.social,Space,space,false -VeXHarbinger,mastodon.social,Technology,technology,false -VeXHarbinger,mastodon.social,Programming,programming,true -jakofields,mastodon.social,Academia & Research,academia_research,false -jakofields,mastodon.social,Breaking News,breaking_news,false -jakofields,mastodon.social,Government & Policy,government_policy,false -jakofields,mastodon.social,Politics,politics,false -jakofields,mastodon.social,Activism & Civil Rights,activism_civil_rights,true -joonatanitkonen,mstdn.social,Breaking News,breaking_news,false -joonatanitkonen,mstdn.social,Gaming,gaming,false -joonatanitkonen,mstdn.social,Journalism & Comment,news_comment_data,false -joonatanitkonen,mstdn.social,Technology,technology,false -joonatanitkonen,mstdn.social,TV & Radio,tv_radio,false -joonatanitkonen,mstdn.social,Movies,movies,true -frejusdabord,newsmast.social,Academia & Research,academia_research,false -frejusdabord,newsmast.social,Government & Policy,government_policy,false -frejusdabord,newsmast.social,Healthcare,healthcare,false -frejusdabord,newsmast.social,Law & Justice,law_justice,false -frejusdabord,newsmast.social,US Politics,us_politics,false -frejusdabord,newsmast.social,Politics,politics,true -ralfbecker,mastodon.social,Architecture & Design,architecture_design,false -ralfbecker,mastodon.social,Breaking News,breaking_news,false -ralfbecker,mastodon.social,Business,business,false -ralfbecker,mastodon.social,Creative Arts,creative_arts,false -ralfbecker,mastodon.social,Technology,technology,true -DocumentingReal,newsmast.social,Academia & Research,academia_research,false -DocumentingReal,newsmast.social,Breaking News,breaking_news,false -DocumentingReal,newsmast.social,Government & Policy,government_policy,false -DocumentingReal,newsmast.social,Law & Justice,law_justice,false -DocumentingReal,newsmast.social,Journalism & Comment,news_comment_data,false -DocumentingReal,newsmast.social,Politics,politics,false -DocumentingReal,newsmast.social,Social Media,social_media,false -DocumentingReal,newsmast.social,Ukraine Invasion,ukraine_invasion,false -DocumentingReal,newsmast.social,Weather,weather,false -DocumentingReal,newsmast.social,US Politics,us_politics,true -ivanovabr,mastodon.social,Visual Arts,visual_arts,false -ivanovabr,mastodon.social,Movies,movies,true -introvertcatto,mstdn.party,AI,ai,false -introvertcatto,mstdn.party,Books & Literature,books_literature,false -introvertcatto,mstdn.party,Football,football,false -introvertcatto,mstdn.party,History,history,false -technicat,universeodon.com,AI,ai,false -technicat,universeodon.com,Engineering,engineering,false -technicat,universeodon.com,Government & Policy,government_policy,false -technicat,universeodon.com,Healthcare,healthcare,false -technicat,universeodon.com,Technology,technology,false -technicat,universeodon.com,US Politics,us_politics,false -technicat,universeodon.com,Programming,programming,true -introvertcatto,mstdn.party,Philosophy,philosophy,false -introvertcatto,mstdn.party,Photography,photography,false -introvertcatto,mstdn.party,Science,science,false -introvertcatto,mstdn.party,Social Sciences,social_sciences,false -introvertcatto,mstdn.party,Sport,sport,false -introvertcatto,mstdn.party,Technology,technology,false -introvertcatto,mstdn.party,Breaking News,breaking_news,true -blablalinux,mastodon.blablalinux.be,Engineering,engineering,false -blablalinux,mastodon.blablalinux.be,Programming,programming,false -blablalinux,mastodon.blablalinux.be,Science,science,false -blablalinux,mastodon.blablalinux.be,Travel,travel,false -blablalinux,mastodon.blablalinux.be,Technology,technology,true -LukaszHorodecki,pol.social,Activism & Civil Rights,activism_civil_rights,false -LukaszHorodecki,pol.social,Breaking News,breaking_news,false -LukaszHorodecki,pol.social,Democracy & Human Rights,democracy_human_rights,false -LukaszHorodecki,pol.social,Poverty & Inequality,poverty_inequality,false -LukaszHorodecki,pol.social,Climate change,climate_change,true -rinnal,@mastodon.social,Academia & Research,academia_research,false -rinnal,@mastodon.social,Activism & Civil Rights,activism_civil_rights,false -rinnal,@mastodon.social,Biodiversity & Rewilding,biodiversity_rewilding,false -rinnal,@mastodon.social,Biology,biology,false -rinnal,@mastodon.social,Black Voices,black_voices,false -rinnal,@mastodon.social,Chemistry,chemistry,false -rinnal,@mastodon.social,Climate change,climate_change,false -rinnal,@mastodon.social,Democracy & Human Rights,democracy_human_rights,false -rinnal,@mastodon.social,Disabled Voices,disabled_voices,false -rinnal,@mastodon.social,Energy & Pollution,energy_pollution,false -rinnal,@mastodon.social,Environment,environment,false -rinnal,@mastodon.social,Government & Policy,government_policy,false -rinnal,@mastodon.social,Healthcare,healthcare,false -rinnal,@mastodon.social,History,history,false -rinnal,@mastodon.social,Humanities,humanities,false -rinnal,@mastodon.social,"Hunger, Disease & Water",hunger_disease_water,false -rinnal,@mastodon.social,Immigrants Rights,immigrants_rights,false -rinnal,@mastodon.social,Indigenous Peoples,indigenous_peoples,false -rinnal,@mastodon.social,Law & Justice,law_justice,false -rinnal,@mastodon.social,LGBTQ+,lgbtq,false -rinnal,@mastodon.social,Mathematics,mathematics,false -rinnal,@mastodon.social,Journalism & Comment,news_comment_data,false -rinnal,@mastodon.social,Philosophy,philosophy,false -rinnal,@mastodon.social,Physics,physics,false -rinnal,@mastodon.social,Politics,politics,false -rinnal,@mastodon.social,Poverty & Inequality,poverty_inequality,false -rinnal,@mastodon.social,Science,science,false -rinnal,@mastodon.social,Social Media,social_media,false -rinnal,@mastodon.social,Social Sciences,social_sciences,false -rinnal,@mastodon.social,Space,space,false -rinnal,@mastodon.social,Ukraine Invasion,ukraine_invasion,false -rinnal,@mastodon.social,US Politics,us_politics,false -rinnal,@mastodon.social,Weather,weather,false -rinnal,@mastodon.social,Women’s Voices,women_voices,false -rinnal,@mastodon.social,Breaking News,breaking_news,true -gelbphoenix,social.gelbphoenix.de,Breaking News,breaking_news,false -gelbphoenix,social.gelbphoenix.de,Business,business,false -gelbphoenix,social.gelbphoenix.de,Markets & Finance,markets_finance,false -gelbphoenix,social.gelbphoenix.de,Journalism & Comment,news_comment_data,false -gelbphoenix,social.gelbphoenix.de,Programming,programming,false -gelbphoenix,social.gelbphoenix.de,Technology,technology,false -gelbphoenix,social.gelbphoenix.de,LGBTQ+,lgbtq,true -mcg,social.lol,Climate change,climate_change,false -mcg,social.lol,Environment,environment,false -mcg,social.lol,Government & Policy,government_policy,false -mcg,social.lol,Healthcare,healthcare,false -mcg,social.lol,Journalism & Comment,news_comment_data,false -mcg,social.lol,Physics,physics,false -mcg,social.lol,Politics,politics,false -mcg,social.lol,Programming,programming,false -mcg,social.lol,Science,science,false -mcg,social.lol,Space,space,false -mcg,social.lol,Breaking News,breaking_news,true -MarkDW,mstdn.social,Biodiversity & Rewilding,biodiversity_rewilding,false -MarkDW,mstdn.social,Engineering,engineering,false -MarkDW,mstdn.social,Healthcare,healthcare,false -MarkDW,mstdn.social,Politics,politics,false -MarkDW,mstdn.social,Technology,technology,false -MarkDW,mstdn.social,Climate change,climate_change,true -wslfeed,channel.org,LGBTQ+,lgbtq,false -wslfeed,channel.org,Journalism & Comment,news_comment_data,false -wslfeed,channel.org,Sport,sport,false -wslfeed,channel.org,Women’s Voices,women_voices,false -wslfeed,channel.org,Football,football,true -evilk,mastodon.social,Engineering,engineering,false -evilk,mastodon.social,Government & Policy,government_policy,false -evilk,mastodon.social,Healthcare,healthcare,false -evilk,mastodon.social,Law & Justice,law_justice,false -evilk,mastodon.social,Politics,politics,false -evilk,mastodon.social,Programming,programming,false -evilk,mastodon.social,Technology,technology,false -evilk,mastodon.social,Ukraine Invasion,ukraine_invasion,false -evilk,mastodon.social,US Politics,us_politics,false -evilk,mastodon.social,Breaking News,breaking_news,true -0014,mastodon.social,Architecture & Design,architecture_design,false -0014,mastodon.social,Books & Literature,books_literature,false -0014,mastodon.social,Gaming,gaming,false -0014,mastodon.social,Music,music,false -0014,mastodon.social,Performing Arts,performing_arts,false -0014,mastodon.social,Photography,photography,false -0014,mastodon.social,TV & Radio,tv_radio,false -0014,mastodon.social,Visual Arts,visual_arts,false -0014,mastodon.social,Movies,movies,true +SithuBo,newsmast.social,Biology,biology,false +SithuBo,newsmast.social,Chemistry,chemistry,false +SithuBo,newsmast.social,Football,football,false +SithuBo,newsmast.social,Mathematics,mathematics,false +SithuBo,newsmast.social,Journalism & Comment,news_comment_data,false +SithuBo,newsmast.social,Physics,physics,false +SithuBo,newsmast.social,Science,science,false +SithuBo,newsmast.social,Social Media,social_media,false +SithuBo,newsmast.social,Space,space,false +SithuBo,newsmast.social,Sport,sport,false +SithuBo,newsmast.social,Ukraine Invasion,ukraine_invasion,false +SithuBo,newsmast.social,US Sport,us_sport,false +SithuBo,newsmast.social,Weather,weather,false +SithuBo,newsmast.social,Breaking News,breaking_news,true +SithuBo,newsmast.social,AI,ai,false +SithuBo,newsmast.social,Programming,programming,false +SithuBo,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +SithuBo,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false +SithuBo,newsmast.social,Poverty & Inequality,poverty_inequality,false +SithuBo,newsmast.social,Government & Policy,government_policy,false +SithuBo,newsmast.social,Academia & Research,academia_research,false +SithuBo,newsmast.social,Healthcare,healthcare,false +SithuBo,newsmast.social,Law & Justice,law_justice,false +SithuBo,newsmast.social,Politics,politics,false +SithuBo,newsmast.social,US Politics,us_politics,false +SithuBo,newsmast.social,Environment,environment,false +SithuBo,newsmast.social,Climate change,climate_change,false +SithuBo,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false +SithuBo,newsmast.social,Energy & Pollution,energy_pollution,false +SithuBo,newsmast.social,Activism & Civil Rights,activism_civil_rights,false +SithuBo,newsmast.social,Black Voices,black_voices,false +SithuBo,newsmast.social,Disabled Voices,disabled_voices,false +SithuBo,newsmast.social,Immigrants Rights,immigrants_rights,false +SithuBo,newsmast.social,Indigenous Peoples,indigenous_peoples,false +SithuBo,newsmast.social,LGBTQ+,lgbtq,false +SithuBo,newsmast.social,Women’s Voices,women_voices,false +SithuBo,newsmast.social,Business,business,false +SithuBo,newsmast.social,Markets & Finance,markets_finance,false +SithuBo,newsmast.social,Workers Rights,workers_rights,false +SithuBo,newsmast.social,Technology,technology,false +SithuBo,newsmast.social,Engineering,engineering,false +SithuBo,newsmast.social,Humanities,humanities,false +SithuBo,newsmast.social,Social Sciences,social_sciences,false +SithuBo,newsmast.social,History,history,false +SithuBo,newsmast.social,Philosophy,philosophy,false +SithuBo,newsmast.social,Creative Arts,creative_arts,false +SithuBo,newsmast.social,Food & Drink,food_drink,false +SithuBo,newsmast.social,Humour,humour,false +SithuBo,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false +SithuBo,newsmast.social,Nature & Wildlife,nature_wildlife,false +SithuBo,newsmast.social,Pets,pets,false +SithuBo,newsmast.social,Puzzles,puzzles,false +SithuBo,newsmast.social,Travel,travel,false +SithuBo,newsmast.social,Architecture & Design,architecture_design,false +SithuBo,newsmast.social,Books & Literature,books_literature,false +SithuBo,newsmast.social,Gaming,gaming,false +SithuBo,newsmast.social,Movies,movies,false +SithuBo,newsmast.social,Music,music,false +SithuBo,newsmast.social,Performing Arts,performing_arts,false +SithuBo,newsmast.social,Photography,photography,false +SithuBo,newsmast.social,TV & Radio,tv_radio,false +SithuBo,newsmast.social,Visual Arts,visual_arts,false +SithuBo,newsmast.social,Private Community,private-community,false +djape11,newsmast.social,AI,ai,false +djape11,newsmast.social,Breaking News,breaking_news,false +djape11,newsmast.social,Climate change,climate_change,false +djape11,newsmast.social,Food & Drink,food_drink,false +djape11,newsmast.social,Markets & Finance,markets_finance,false +djape11,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false +djape11,newsmast.social,Technology,technology,true +djape11,newsmast.social,Travel,travel,false +babygirl,newsmast.social,Food & Drink,food_drink,false +babygirl,newsmast.social,Football,football,false +babygirl,newsmast.social,Humour,humour,false +babygirl,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false +babygirl,newsmast.social,Nature & Wildlife,nature_wildlife,false +babygirl,newsmast.social,Pets,pets,false +babygirl,newsmast.social,Puzzles,puzzles,false +babygirl,newsmast.social,Sport,sport,false +babygirl,newsmast.social,Travel,travel,false +babygirl,newsmast.social,US Sport,us_sport,false +babygirl,newsmast.social,Creative Arts,creative_arts,true +KyawZinLinn123,newsmast.social,AI,ai,false +KyawZinLinn123,newsmast.social,Biology,biology,false +KyawZinLinn123,newsmast.social,Chemistry,chemistry,false +KyawZinLinn123,newsmast.social,Engineering,engineering,false +KyawZinLinn123,newsmast.social,Mathematics,mathematics,false +KyawZinLinn123,newsmast.social,Physics,physics,false +KyawZinLinn123,newsmast.social,Programming,programming,true +KyawZinLinn123,newsmast.social,Science,science,false +KyawZinLinn123,newsmast.social,Space,space,false +KyawZinLinn123,newsmast.social,Technology,technology,false +hrbrmstr,newsmast.social,Academia & Research,academia_research,false +hrbrmstr,newsmast.social,AI,ai,false +hrbrmstr,newsmast.social,Breaking News,breaking_news,false +hrbrmstr,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +hrbrmstr,newsmast.social,Engineering,engineering,false +hrbrmstr,newsmast.social,Government & Policy,government_policy,false +hrbrmstr,newsmast.social,Healthcare,healthcare,false +hrbrmstr,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false +hrbrmstr,newsmast.social,Law & Justice,law_justice,false +hrbrmstr,newsmast.social,Journalism & Comment,news_comment_data,false +hrbrmstr,newsmast.social,Politics,politics,false +hrbrmstr,newsmast.social,Poverty & Inequality,poverty_inequality,false +hrbrmstr,newsmast.social,Programming,programming,false +hrbrmstr,newsmast.social,Social Media,social_media,false +hrbrmstr,newsmast.social,Technology,technology,true +hrbrmstr,newsmast.social,Ukraine Invasion,ukraine_invasion,false +hrbrmstr,newsmast.social,US Politics,us_politics,false +hrbrmstr,newsmast.social,Weather,weather,false +Downes,newsmast.social,Academia & Research,academia_research,false +Downes,newsmast.social,AI,ai,false +Downes,newsmast.social,Breaking News,breaking_news,false +Downes,newsmast.social,Journalism & Comment,news_comment_data,true +Downes,newsmast.social,Philosophy,philosophy,false +Downes,newsmast.social,Programming,programming,false +Downes,newsmast.social,Science,science,false +Downes,newsmast.social,Social Media,social_media,false +Downes,newsmast.social,Space,space,false +Downes,newsmast.social,Technology,technology,false +mgye,newsmast.social,Academia & Research,academia_research,true +mgye,newsmast.social,Activism & Civil Rights,activism_civil_rights,false +mgye,newsmast.social,AI,ai,false +mgye,newsmast.social,Biology,biology,false +mgye,newsmast.social,Black Voices,black_voices,false +mgye,newsmast.social,Business,business,false +mgye,newsmast.social,Chemistry,chemistry,false +mgye,newsmast.social,Disabled Voices,disabled_voices,false +mgye,newsmast.social,Engineering,engineering,false +mgye,newsmast.social,Government & Policy,government_policy,false +mgye,newsmast.social,Healthcare,healthcare,false +mgye,newsmast.social,Immigrants Rights,immigrants_rights,false +mgye,newsmast.social,Indigenous Peoples,indigenous_peoples,false +mgye,newsmast.social,Law & Justice,law_justice,false +mgye,newsmast.social,LGBTQ+,lgbtq,false +mgye,newsmast.social,Markets & Finance,markets_finance,false +mgye,newsmast.social,Mathematics,mathematics,false +mgye,newsmast.social,Physics,physics,false +mgye,newsmast.social,Politics,politics,false +mgye,newsmast.social,Programming,programming,false +mgye,newsmast.social,Science,science,false +mgye,newsmast.social,Space,space,false +mgye,newsmast.social,Technology,technology,false +mgye,newsmast.social,US Politics,us_politics,false +mgye,newsmast.social,Women’s Voices,women_voices,false +mgye,newsmast.social,Workers Rights,workers_rights,false +janrif,newsmast.social,Activism & Civil Rights,activism_civil_rights,false +janrif,newsmast.social,AI,ai,false +janrif,newsmast.social,Breaking News,breaking_news,false +janrif,newsmast.social,Business,business,false +janrif,newsmast.social,Government & Policy,government_policy,false +janrif,newsmast.social,Healthcare,healthcare,false +janrif,newsmast.social,History,history,false +janrif,newsmast.social,Humanities,humanities,false +janrif,newsmast.social,Immigrants Rights,immigrants_rights,false +janrif,newsmast.social,Indigenous Peoples,indigenous_peoples,false +janrif,newsmast.social,Law & Justice,law_justice,false +janrif,newsmast.social,Markets & Finance,markets_finance,false +janrif,newsmast.social,Journalism & Comment,news_comment_data,false +janrif,newsmast.social,Philosophy,philosophy,false +janrif,newsmast.social,Politics,politics,true +janrif,newsmast.social,Social Media,social_media,false +janrif,newsmast.social,Social Sciences,social_sciences,false +janrif,newsmast.social,Technology,technology,false +janrif,newsmast.social,Ukraine Invasion,ukraine_invasion,false +janrif,newsmast.social,US Politics,us_politics,false +janrif,newsmast.social,Weather,weather,false +janrif,newsmast.social,Women’s Voices,women_voices,false +janrif,newsmast.social,Workers Rights,workers_rights,false +DadeMurphy,newsmast.social,Breaking News,breaking_news,true +seehearpodcast,newsmast.social,Mathematics,mathematics,false +seehearpodcast,newsmast.social,Movies,movies,false +seehearpodcast,newsmast.social,Music,music,true +seehearpodcast,newsmast.social,Philosophy,philosophy,false +seehearpodcast,newsmast.social,Physics,physics,false +OhnMyint,newsmast.social,Academia & Research,academia_research,false +OhnMyint,newsmast.social,Breaking News,breaking_news,false +OhnMyint,newsmast.social,Government & Policy,government_policy,false +OhnMyint,newsmast.social,Healthcare,healthcare,true +OhnMyint,newsmast.social,Law & Justice,law_justice,false +OhnMyint,newsmast.social,Politics,politics,false +OhnMyint,newsmast.social,US Politics,us_politics,false +bridgeteam,newsmast.social,Academia & Research,academia_research,false +bridgeteam,newsmast.social,Architecture & Design,architecture_design,false +bridgeteam,newsmast.social,Biology,biology,false +bridgeteam,newsmast.social,Breaking News,breaking_news,false +bridgeteam,newsmast.social,Chemistry,chemistry,false +bridgeteam,newsmast.social,Creative Arts,creative_arts,false +bridgeteam,newsmast.social,Food & Drink,food_drink,false +bridgeteam,newsmast.social,Gaming,gaming,false +bridgeteam,newsmast.social,Government & Policy,government_policy,false +bridgeteam,newsmast.social,Healthcare,healthcare,false +bridgeteam,newsmast.social,History,history,false +bridgeteam,newsmast.social,Humanities,humanities,false +bridgeteam,newsmast.social,Humour,humour,false +bridgeteam,newsmast.social,Law & Justice,law_justice,false +bridgeteam,newsmast.social,Mathematics,mathematics,false +bridgeteam,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false +bridgeteam,newsmast.social,Movies,movies,false +bridgeteam,newsmast.social,Music,music,false +bridgeteam,newsmast.social,Nature & Wildlife,nature_wildlife,false +bridgeteam,newsmast.social,Journalism & Comment,news_comment_data,false +bridgeteam,newsmast.social,Performing Arts,performing_arts,false +bridgeteam,newsmast.social,Pets,pets,false +bridgeteam,newsmast.social,Philosophy,philosophy,false +bridgeteam,newsmast.social,Photography,photography,false +bridgeteam,newsmast.social,Physics,physics,false +bridgeteam,newsmast.social,Politics,politics,false +bridgeteam,newsmast.social,Puzzles,puzzles,false +bridgeteam,newsmast.social,Science,science,false +bridgeteam,newsmast.social,Social Media,social_media,false +bridgeteam,newsmast.social,Social Sciences,social_sciences,false +bridgeteam,newsmast.social,Space,space,false +bridgeteam,newsmast.social,Travel,travel,false +bridgeteam,newsmast.social,TV & Radio,tv_radio,false +bridgeteam,newsmast.social,Ukraine Invasion,ukraine_invasion,false +bridgeteam,newsmast.social,US Politics,us_politics,false +bridgeteam,newsmast.social,Visual Arts,visual_arts,false +bridgeteam,newsmast.social,Weather,weather,false +bridgeteam,newsmast.social,Books & Literature,books_literature,true +deadsuperhero,newsmast.social,Engineering,engineering,false +deadsuperhero,newsmast.social,LGBTQ+,lgbtq,false +deadsuperhero,newsmast.social,Programming,programming,false +deadsuperhero,newsmast.social,Technology,technology,true +deadsuperhero,newsmast.social,Workers Rights,workers_rights,false +berot3,newsmast.social,AI,ai,true +berot3,newsmast.social,Breaking News,breaking_news,false +berot3,newsmast.social,Journalism & Comment,news_comment_data,false +berot3,newsmast.social,Programming,programming,false +berot3,newsmast.social,Social Media,social_media,false +berot3,newsmast.social,Technology,technology,false +berot3,newsmast.social,Ukraine Invasion,ukraine_invasion,false +berot3,newsmast.social,Weather,weather,false +alzatari,newsmast.social,Academia & Research,academia_research,true +alzatari,newsmast.social,Activism & Civil Rights,activism_civil_rights,false +alzatari,newsmast.social,Architecture & Design,architecture_design,false +alzatari,newsmast.social,Books & Literature,books_literature,false +alzatari,newsmast.social,Breaking News,breaking_news,false +alzatari,newsmast.social,Creative Arts,creative_arts,false +alzatari,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +alzatari,newsmast.social,Food & Drink,food_drink,false +alzatari,newsmast.social,Government & Policy,government_policy,false +alzatari,newsmast.social,Healthcare,healthcare,false +alzatari,newsmast.social,History,history,false +alzatari,newsmast.social,Humanities,humanities,false +alzatari,newsmast.social,Humour,humour,false +alzatari,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false +alzatari,newsmast.social,Indigenous Peoples,indigenous_peoples,false +alzatari,newsmast.social,Law & Justice,law_justice,false +alzatari,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false +alzatari,newsmast.social,Nature & Wildlife,nature_wildlife,false +alzatari,newsmast.social,Journalism & Comment,news_comment_data,false +alzatari,newsmast.social,Pets,pets,false +alzatari,newsmast.social,Philosophy,philosophy,false +alzatari,newsmast.social,Photography,photography,false +alzatari,newsmast.social,Politics,politics,false +alzatari,newsmast.social,Poverty & Inequality,poverty_inequality,false +alzatari,newsmast.social,Puzzles,puzzles,false +alzatari,newsmast.social,Social Media,social_media,false +alzatari,newsmast.social,Social Sciences,social_sciences,false +alzatari,newsmast.social,Travel,travel,false +alzatari,newsmast.social,Ukraine Invasion,ukraine_invasion,false +alzatari,newsmast.social,US Politics,us_politics,false +alzatari,newsmast.social,Visual Arts,visual_arts,false +alzatari,newsmast.social,Weather,weather,false +textdump,newsmast.social,Ukraine Invasion,ukraine_invasion,true +textdump,newsmast.social,Academia & Research,academia_research,false +textdump,newsmast.social,Architecture & Design,architecture_design,false +textdump,newsmast.social,Biology,biology,false +textdump,newsmast.social,Books & Literature,books_literature,false +textdump,newsmast.social,Breaking News,breaking_news,false +textdump,newsmast.social,Chemistry,chemistry,false +textdump,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +textdump,newsmast.social,Gaming,gaming,false +textdump,newsmast.social,Government & Policy,government_policy,false +textdump,newsmast.social,Healthcare,healthcare,false +textdump,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false +textdump,newsmast.social,Law & Justice,law_justice,false +textdump,newsmast.social,Mathematics,mathematics,false +textdump,newsmast.social,Movies,movies,false +textdump,newsmast.social,Music,music,false +textdump,newsmast.social,Journalism & Comment,news_comment_data,false +textdump,newsmast.social,Performing Arts,performing_arts,false +textdump,newsmast.social,Photography,photography,false +textdump,newsmast.social,Physics,physics,false +textdump,newsmast.social,Politics,politics,false +textdump,newsmast.social,Poverty & Inequality,poverty_inequality,false +textdump,newsmast.social,Science,science,false +textdump,newsmast.social,Social Media,social_media,false +textdump,newsmast.social,Space,space,false +textdump,newsmast.social,TV & Radio,tv_radio,false +textdump,newsmast.social,US Politics,us_politics,false +textdump,newsmast.social,Visual Arts,visual_arts,false +textdump,newsmast.social,Weather,weather,false +dylan_thiam,newsmast.social,AI,ai,false +dylan_thiam,newsmast.social,Biology,biology,false +dylan_thiam,newsmast.social,Markets & Finance,markets_finance,true +dylan_thiam,newsmast.social,Space,space,false +dylan_thiam,newsmast.social,Technology,technology,false +sophia,newsmast.social,Activism & Civil Rights,activism_civil_rights,false +sophia,newsmast.social,AI,ai,false +sophia,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false +sophia,newsmast.social,Black Voices,black_voices,false +sophia,newsmast.social,Climate change,climate_change,false +sophia,newsmast.social,Disabled Voices,disabled_voices,false +sophia,newsmast.social,Energy & Pollution,energy_pollution,false +sophia,newsmast.social,Engineering,engineering,false +sophia,newsmast.social,Environment,environment,true +sophia,newsmast.social,Immigrants Rights,immigrants_rights,false +sophia,newsmast.social,Indigenous Peoples,indigenous_peoples,false +sophia,newsmast.social,LGBTQ+,lgbtq,false +sophia,newsmast.social,Programming,programming,false +sophia,newsmast.social,Technology,technology,false +sophia,newsmast.social,Women’s Voices,women_voices,false +zheka296,newsmast.social,Breaking News,breaking_news,false +zheka296,newsmast.social,Chemistry,chemistry,false +zheka296,newsmast.social,Immigrants Rights,immigrants_rights,false +zheka296,newsmast.social,Mathematics,mathematics,false +zheka296,newsmast.social,Weather,weather,true +MilitaryAfrica,newsmast.social,Academia & Research,academia_research,false +MilitaryAfrica,newsmast.social,Breaking News,breaking_news,false +MilitaryAfrica,newsmast.social,Business,business,false +MilitaryAfrica,newsmast.social,Government & Policy,government_policy,true +MilitaryAfrica,newsmast.social,Healthcare,healthcare,false +MilitaryAfrica,newsmast.social,Law & Justice,law_justice,false +MilitaryAfrica,newsmast.social,Markets & Finance,markets_finance,false +MilitaryAfrica,newsmast.social,Journalism & Comment,news_comment_data,false +MilitaryAfrica,newsmast.social,Politics,politics,false +MilitaryAfrica,newsmast.social,Social Media,social_media,false +MilitaryAfrica,newsmast.social,Ukraine Invasion,ukraine_invasion,false +MilitaryAfrica,newsmast.social,US Politics,us_politics,false +MilitaryAfrica,newsmast.social,Weather,weather,false +MilitaryAfrica,newsmast.social,Workers Rights,workers_rights,false +worldbyisa,newsmast.social,Architecture & Design,architecture_design,false +worldbyisa,newsmast.social,Books & Literature,books_literature,false +worldbyisa,newsmast.social,Creative Arts,creative_arts,false +worldbyisa,newsmast.social,Nature & Wildlife,nature_wildlife,false +worldbyisa,newsmast.social,Travel,travel,true +emeraldphysio,newsmast.social,Breaking News,breaking_news,false +emeraldphysio,newsmast.social,Journalism & Comment,news_comment_data,false +emeraldphysio,newsmast.social,Social Media,social_media,false +emeraldphysio,newsmast.social,Ukraine Invasion,ukraine_invasion,true +emeraldphysio,newsmast.social,Weather,weather,false +johnvoorhees,newsmast.social,Breaking News,breaking_news,false +johnvoorhees,newsmast.social,Gaming,gaming,false +johnvoorhees,newsmast.social,Movies,movies,false +johnvoorhees,newsmast.social,Music,music,false +johnvoorhees,newsmast.social,Technology,technology,true +johnvoorhees,newsmast.social,TV & Radio,tv_radio,false mohammadromjan,newsmast.social,Breaking News,breaking_news,false mohammadromjan,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false mohammadromjan,newsmast.social,Nature & Wildlife,nature_wildlife,false mohammadromjan,newsmast.social,Philosophy,philosophy,false -mohammadromjan,newsmast.social,Ukraine Invasion,ukraine_invasion,false mohammadromjan,newsmast.social,Travel,travel,true -fas_dan,mastodon.social,Architecture & Design,architecture_design,false -fas_dan,mastodon.social,Books & Literature,books_literature,false -fas_dan,mastodon.social,Music,music,false -fas_dan,mastodon.social,Photography,photography,false -fas_dan,mastodon.social,Gaming,gaming,true -Caiocvsilva,mastodon.social,AI,ai,false -Caiocvsilva,mastodon.social,Breaking News,breaking_news,false -Caiocvsilva,mastodon.social,Programming,programming,false -Caiocvsilva,mastodon.social,Science,science,false -Caiocvsilva,mastodon.social,Technology,technology,true -mohammed,newsmast.social,Biology,biology,false -mohammed,newsmast.social,History,history,false -mohammed,newsmast.social,Humanities,humanities,false -mohammed,newsmast.social,Philosophy,philosophy,false -mohammed,newsmast.social,Social Sciences,social_sciences,false -mohammed,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,true -jtarde23,newsmast.social,Creative Arts,creative_arts,false -jtarde23,newsmast.social,Humour,humour,false -jtarde23,newsmast.social,Travel,travel,false -jtarde23,newsmast.social,Visual Arts,visual_arts,false -jtarde23,newsmast.social,Photography,photography,true -kaerisonic,newsmast.social,Academia & Research,academia_research,false -kaerisonic,newsmast.social,Activism & Civil Rights,activism_civil_rights,false -kaerisonic,newsmast.social,AI,ai,false -kaerisonic,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false -kaerisonic,newsmast.social,Biology,biology,false -kaerisonic,newsmast.social,Business,business,false -kaerisonic,newsmast.social,Climate change,climate_change,false -kaerisonic,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -TheTepidEmperor,mastodon.social,Football,football,false -TheTepidEmperor,mastodon.social,Humour,humour,false -TheTepidEmperor,mastodon.social,Law & Justice,law_justice,false -TheTepidEmperor,mastodon.social,Music,music,false -TheTepidEmperor,mastodon.social,Politics,politics,false -TheTepidEmperor,mastodon.social,Social Media,social_media,false -TheTepidEmperor,mastodon.social,Breaking News,breaking_news,true -itsmywink,pixelfed.fr,Nature & Wildlife,nature_wildlife,false -itsmywink,pixelfed.fr,Travel,travel,false -itsmywink,pixelfed.fr,Photography,photography,true -muhammedkizilkaya,sosyal.nextconnect.app,AI,ai,false -muhammedkizilkaya,sosyal.nextconnect.app,Engineering,engineering,false -muhammedkizilkaya,sosyal.nextconnect.app,Science,science,false -muhammedkizilkaya,sosyal.nextconnect.app,Technology,technology,false -muhammedkizilkaya,sosyal.nextconnect.app,Programming,programming,true -mieg,waag.social,Biodiversity & Rewilding,biodiversity_rewilding,false -mieg,waag.social,Democracy & Human Rights,democracy_human_rights,false -mieg,waag.social,Environment,environment,false -mieg,waag.social,Social Media,social_media,false -mieg,waag.social,Climate change,climate_change,true -yunandar,mastodon.social,Academia & Research,academia_research,false -yunandar,mastodon.social,Biology,biology,false -yunandar,mastodon.social,Chemistry,chemistry,false -yunandar,mastodon.social,Engineering,engineering,false -yunandar,mastodon.social,Government & Policy,government_policy,false -yunandar,mastodon.social,Healthcare,healthcare,false -yunandar,mastodon.social,Law & Justice,law_justice,false -yunandar,mastodon.social,Mathematics,mathematics,false -yunandar,mastodon.social,Physics,physics,false -yunandar,mastodon.social,Politics,politics,false -yunandar,mastodon.social,Programming,programming,false -yunandar,mastodon.social,Science,science,false -yunandar,mastodon.social,Space,space,false -yunandar,mastodon.social,Technology,technology,false -yunandar,mastodon.social,US Politics,us_politics,false -yunandar,mastodon.social,AI,ai,true +mohammadromjan,newsmast.social,Ukraine Invasion,ukraine_invasion,false +Loukas,newsmast.social,Activism & Civil Rights,activism_civil_rights,false +Loukas,newsmast.social,Breaking News,breaking_news,false +Loukas,newsmast.social,Journalism & Comment,news_comment_data,false +Loukas,newsmast.social,Politics,politics,false +Loukas,newsmast.social,Government & Policy,government_policy,true +tatkotel,newsmast.social,AI,ai,false +tatkotel,newsmast.social,Architecture & Design,architecture_design,false +tatkotel,newsmast.social,Books & Literature,books_literature,false +tatkotel,newsmast.social,Breaking News,breaking_news,true +tatkotel,newsmast.social,Engineering,engineering,false +tatkotel,newsmast.social,Gaming,gaming,false +tatkotel,newsmast.social,Movies,movies,false +tatkotel,newsmast.social,Music,music,false +tatkotel,newsmast.social,Journalism & Comment,news_comment_data,false +tatkotel,newsmast.social,Performing Arts,performing_arts,false +tatkotel,newsmast.social,Photography,photography,false +tatkotel,newsmast.social,Programming,programming,false +tatkotel,newsmast.social,Social Media,social_media,false +tatkotel,newsmast.social,Technology,technology,false +tatkotel,newsmast.social,TV & Radio,tv_radio,false +tatkotel,newsmast.social,Ukraine Invasion,ukraine_invasion,false +tatkotel,newsmast.social,Visual Arts,visual_arts,false +tatkotel,newsmast.social,Weather,weather,false +mattybob,newsmast.social,Biology,biology,true +mattybob,newsmast.social,Breaking News,breaking_news,false +mattybob,newsmast.social,Climate change,climate_change,false +mattybob,newsmast.social,Football,football,false +mattybob,newsmast.social,Government & Policy,government_policy,false +mattybob,newsmast.social,Politics,politics,false +mattybob,newsmast.social,Science,science,false +mattybob,newsmast.social,US Politics,us_politics,false +true,newsmast.social,AI,ai,false +true,newsmast.social,Biology,biology,false +true,newsmast.social,Humour,humour,false +true,newsmast.social,Programming,programming,false +true,newsmast.social,Science,science,false +true,newsmast.social,Space,space,false +true,newsmast.social,Technology,technology,true +true,newsmast.social,Travel,travel,false +multimodal,newsmast.social,Disabled Voices,disabled_voices,true +multimodal,newsmast.social,LGBTQ+,lgbtq,false +multimodal,newsmast.social,Philosophy,philosophy,false +multimodal,newsmast.social,Science,science,false +multimodal,newsmast.social,Social Sciences,social_sciences,false +khaled57,newsmast.social,Creative Arts,creative_arts,false +khaled57,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +khaled57,newsmast.social,Food & Drink,food_drink,false +khaled57,newsmast.social,Humour,humour,false +khaled57,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false +khaled57,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,true +khaled57,newsmast.social,Nature & Wildlife,nature_wildlife,false +khaled57,newsmast.social,Pets,pets,false +khaled57,newsmast.social,Poverty & Inequality,poverty_inequality,false +khaled57,newsmast.social,Puzzles,puzzles,false +khaled57,newsmast.social,Travel,travel,false +macelynne919,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false +macelynne919,newsmast.social,Business,business,false +macelynne919,newsmast.social,Climate change,climate_change,false +macelynne919,newsmast.social,Creative Arts,creative_arts,false +macelynne919,newsmast.social,Energy & Pollution,energy_pollution,false +macelynne919,newsmast.social,Environment,environment,false +macelynne919,newsmast.social,Food & Drink,food_drink,false +macelynne919,newsmast.social,Humour,humour,false +macelynne919,newsmast.social,Markets & Finance,markets_finance,false +macelynne919,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,true +macelynne919,newsmast.social,Nature & Wildlife,nature_wildlife,false +macelynne919,newsmast.social,Pets,pets,false +macelynne919,newsmast.social,Puzzles,puzzles,false +macelynne919,newsmast.social,Travel,travel,false +macelynne919,newsmast.social,Workers Rights,workers_rights,false +justwatch,newsmast.social,Academia & Research,academia_research,false +justwatch,newsmast.social,Activism & Civil Rights,activism_civil_rights,false +justwatch,newsmast.social,AI,ai,false +justwatch,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false +justwatch,newsmast.social,Black Voices,black_voices,false +justwatch,newsmast.social,Breaking News,breaking_news,true +justwatch,newsmast.social,Business,business,false +justwatch,newsmast.social,Climate change,climate_change,false +justwatch,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +justwatch,newsmast.social,Disabled Voices,disabled_voices,false +justwatch,newsmast.social,Energy & Pollution,energy_pollution,false +justwatch,newsmast.social,Engineering,engineering,false +justwatch,newsmast.social,Environment,environment,false +justwatch,newsmast.social,Government & Policy,government_policy,false +justwatch,newsmast.social,Healthcare,healthcare,false +justwatch,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false +justwatch,newsmast.social,Immigrants Rights,immigrants_rights,false +justwatch,newsmast.social,Indigenous Peoples,indigenous_peoples,false +justwatch,newsmast.social,Law & Justice,law_justice,false +justwatch,newsmast.social,LGBTQ+,lgbtq,false +justwatch,newsmast.social,Markets & Finance,markets_finance,false +justwatch,newsmast.social,Journalism & Comment,news_comment_data,false +justwatch,newsmast.social,Politics,politics,false +justwatch,newsmast.social,Poverty & Inequality,poverty_inequality,false +justwatch,newsmast.social,Programming,programming,false +justwatch,newsmast.social,Social Media,social_media,false +justwatch,newsmast.social,Technology,technology,false +justwatch,newsmast.social,Ukraine Invasion,ukraine_invasion,false +justwatch,newsmast.social,US Politics,us_politics,false +justwatch,newsmast.social,Weather,weather,false +justwatch,newsmast.social,Women’s Voices,women_voices,false +justwatch,newsmast.social,Workers Rights,workers_rights,false +fatemah,newsmast.social,Biology,biology,false +fatemah,newsmast.social,Chemistry,chemistry,false +fatemah,newsmast.social,Creative Arts,creative_arts,false +fatemah,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +fatemah,newsmast.social,Food & Drink,food_drink,false +fatemah,newsmast.social,Government & Policy,government_policy,false +fatemah,newsmast.social,Healthcare,healthcare,false +fatemah,newsmast.social,Humanities,humanities,false +fatemah,newsmast.social,Humour,humour,false +fatemah,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false +fatemah,newsmast.social,Law & Justice,law_justice,false +fatemah,newsmast.social,Mathematics,mathematics,false +fatemah,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,true +fatemah,newsmast.social,Nature & Wildlife,nature_wildlife,false +fatemah,newsmast.social,Pets,pets,false +fatemah,newsmast.social,Philosophy,philosophy,false +fatemah,newsmast.social,Physics,physics,false +fatemah,newsmast.social,Politics,politics,false +fatemah,newsmast.social,Poverty & Inequality,poverty_inequality,false +fatemah,newsmast.social,Puzzles,puzzles,false +fatemah,newsmast.social,Science,science,false +fatemah,newsmast.social,Space,space,false +fatemah,newsmast.social,Travel,travel,false +fatemah,newsmast.social,US Politics,us_politics,false +Abrikosoff,newsmast.social,AI,ai,false +Abrikosoff,newsmast.social,Climate change,climate_change,false +Abrikosoff,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +Abrikosoff,newsmast.social,Energy & Pollution,energy_pollution,false +Abrikosoff,newsmast.social,Engineering,engineering,false +Abrikosoff,newsmast.social,Environment,environment,false +Abrikosoff,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false +Abrikosoff,newsmast.social,Mathematics,mathematics,false +Abrikosoff,newsmast.social,Science,science,false +Abrikosoff,newsmast.social,Space,space,false +Abrikosoff,newsmast.social,Technology,technology,false +Abrikosoff,newsmast.social,Physics,physics,true +weblink,newsmast.social,Technology,technology,true +weblink,newsmast.social,AI,ai,false +weblink,newsmast.social,Disabled Voices,disabled_voices,false +weblink,newsmast.social,Energy & Pollution,energy_pollution,false +weblink,newsmast.social,Engineering,engineering,false +weblink,newsmast.social,Humanities,humanities,false +weblink,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false +weblink,newsmast.social,Programming,programming,false +weblink,newsmast.social,Science,science,false +weblink,newsmast.social,Space,space,false +weblink,newsmast.social,Humour,humour,false +xjxjxjx,newsmast.social,Gaming,gaming,false +xjxjxjx,newsmast.social,AI,ai,false +xjxjxjx,newsmast.social,Architecture & Design,architecture_design,false +xjxjxjx,newsmast.social,Books & Literature,books_literature,false +xjxjxjx,newsmast.social,Breaking News,breaking_news,false +xjxjxjx,newsmast.social,Engineering,engineering,false +xjxjxjx,newsmast.social,History,history,false +xjxjxjx,newsmast.social,Humanities,humanities,false +xjxjxjx,newsmast.social,Movies,movies,false +xjxjxjx,newsmast.social,Music,music,false +xjxjxjx,newsmast.social,Journalism & Comment,news_comment_data,false +xjxjxjx,newsmast.social,Performing Arts,performing_arts,false +xjxjxjx,newsmast.social,Philosophy,philosophy,false +xjxjxjx,newsmast.social,Photography,photography,true +xjxjxjx,newsmast.social,Programming,programming,false +xjxjxjx,newsmast.social,Social Media,social_media,false +xjxjxjx,newsmast.social,Social Sciences,social_sciences,false +xjxjxjx,newsmast.social,Technology,technology,false +xjxjxjx,newsmast.social,TV & Radio,tv_radio,false +xjxjxjx,newsmast.social,Ukraine Invasion,ukraine_invasion,false +xjxjxjx,newsmast.social,Visual Arts,visual_arts,false +xjxjxjx,newsmast.social,Weather,weather,false +Pavel,newsmast.social,AI,ai,false +Pavel,newsmast.social,Programming,programming,false +Pavel,newsmast.social,Social Media,social_media,false +Pavel,newsmast.social,Social Sciences,social_sciences,false +Pavel,newsmast.social,Philosophy,philosophy,true +natbas,newsmast.social,Academia & Research,academia_research,false +natbas,newsmast.social,Books & Literature,books_literature,true +natbas,newsmast.social,Breaking News,breaking_news,false +natbas,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +natbas,newsmast.social,Environment,environment,false +natbas,newsmast.social,Humanities,humanities,false +natbas,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false +natbas,newsmast.social,Journalism & Comment,news_comment_data,false +natbas,newsmast.social,Philosophy,philosophy,false +natbas,newsmast.social,Physics,physics,false +natbas,newsmast.social,Poverty & Inequality,poverty_inequality,false +natbas,newsmast.social,Science,science,false +natbas,newsmast.social,Social Sciences,social_sciences,false +natbas,newsmast.social,Weather,weather,false +natbas,newsmast.social,Politics,politics,false +nigelp,newsmast.social,AI,ai,false +nigelp,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false +nigelp,newsmast.social,Biology,biology,false +nigelp,newsmast.social,Breaking News,breaking_news,false +nigelp,newsmast.social,Chemistry,chemistry,false +nigelp,newsmast.social,Climate change,climate_change,false +nigelp,newsmast.social,Energy & Pollution,energy_pollution,false +nigelp,newsmast.social,Engineering,engineering,false +nigelp,newsmast.social,Environment,environment,false +nigelp,newsmast.social,Food & Drink,food_drink,false +nigelp,newsmast.social,Gaming,gaming,false +nigelp,newsmast.social,Humour,humour,false +nigelp,newsmast.social,Movies,movies,false +nigelp,newsmast.social,Music,music,false +nigelp,newsmast.social,Nature & Wildlife,nature_wildlife,false +nigelp,newsmast.social,Journalism & Comment,news_comment_data,false +nigelp,newsmast.social,Photography,photography,false +nigelp,newsmast.social,Physics,physics,false +nigelp,newsmast.social,Programming,programming,false +nigelp,newsmast.social,Science,science,false +nigelp,newsmast.social,Social Media,social_media,false +nigelp,newsmast.social,Technology,technology,true +nigelp,newsmast.social,Ukraine Invasion,ukraine_invasion,false +nigelp,newsmast.social,Weather,weather,false +satvika,newsmast.social,Technology,technology,true +sttanner,newsmast.social,Technology,technology,true +petri,newsmast.social,Breaking News,breaking_news,false +petri,newsmast.social,Engineering,engineering,false +petri,newsmast.social,Programming,programming,false +petri,newsmast.social,Science,science,false +petri,newsmast.social,Space,space,false +petri,newsmast.social,Technology,technology,true +petri,newsmast.social,Weather,weather,false +snoopy,newsmast.social,Architecture & Design,architecture_design,false +snoopy,newsmast.social,Biology,biology,false +snoopy,newsmast.social,Chemistry,chemistry,false +snoopy,newsmast.social,Humanities,humanities,false +snoopy,newsmast.social,Mathematics,mathematics,false +snoopy,newsmast.social,Movies,movies,false +snoopy,newsmast.social,Photography,photography,false +snoopy,newsmast.social,Physics,physics,false +snoopy,newsmast.social,Science,science,false +snoopy,newsmast.social,Social Sciences,social_sciences,false +snoopy,newsmast.social,Space,space,false +snoopy,newsmast.social,Visual Arts,visual_arts,false +snoopy,newsmast.social,Gaming,gaming,true +snoopy,newsmast.social,Disabled Voices,disabled_voices,false +lydiechen,newsmast.social,AI,ai,false +lydiechen,newsmast.social,Business,business,false +lydiechen,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +lydiechen,newsmast.social,Markets & Finance,markets_finance,true +lydiechen,newsmast.social,Technology,technology,false +kabtohin2020,newsmast.social,AI,ai,true +kabtohin2020,newsmast.social,Climate change,climate_change,false +kabtohin2020,newsmast.social,Energy & Pollution,energy_pollution,false +kabtohin2020,newsmast.social,Environment,environment,false +kabtohin2020,newsmast.social,Football,football,false +kabtohin2020,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false +kabtohin2020,newsmast.social,Technology,technology,false +NurseTed,newsmast.social,Breaking News,breaking_news,true +NurseTed,newsmast.social,Journalism & Comment,news_comment_data,false +NurseTed,newsmast.social,Social Media,social_media,false +NurseTed,newsmast.social,Ukraine Invasion,ukraine_invasion,false +NurseTed,newsmast.social,Weather,weather,false +donald13,newsmast.social,Academia & Research,academia_research,true +donald13,newsmast.social,Activism & Civil Rights,activism_civil_rights,false +donald13,newsmast.social,AI,ai,false +donald13,newsmast.social,Architecture & Design,architecture_design,false +donald13,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false +donald13,newsmast.social,Biology,biology,false +donald13,newsmast.social,Black Voices,black_voices,false +donald13,newsmast.social,Books & Literature,books_literature,false +donald13,newsmast.social,Breaking News,breaking_news,false +donald13,newsmast.social,Business,business,false +donald13,newsmast.social,Chemistry,chemistry,false +donald13,newsmast.social,Climate change,climate_change,false +donald13,newsmast.social,Creative Arts,creative_arts,false +donald13,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +donald13,newsmast.social,Disabled Voices,disabled_voices,false +donald13,newsmast.social,Energy & Pollution,energy_pollution,false +donald13,newsmast.social,Engineering,engineering,false +donald13,newsmast.social,Environment,environment,false +donald13,newsmast.social,Food & Drink,food_drink,false +donald13,newsmast.social,Football,football,false +donald13,newsmast.social,Gaming,gaming,false +donald13,newsmast.social,Government & Policy,government_policy,false +donald13,newsmast.social,Healthcare,healthcare,false +donald13,newsmast.social,History,history,false +donald13,newsmast.social,Humanities,humanities,false +donald13,newsmast.social,Humour,humour,false +donald13,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false +donald13,newsmast.social,Immigrants Rights,immigrants_rights,false +donald13,newsmast.social,Indigenous Peoples,indigenous_peoples,false +donald13,newsmast.social,Law & Justice,law_justice,false +donald13,newsmast.social,LGBTQ+,lgbtq,false +donald13,newsmast.social,Markets & Finance,markets_finance,false +donald13,newsmast.social,Mathematics,mathematics,false +donald13,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false +donald13,newsmast.social,Movies,movies,false +donald13,newsmast.social,Music,music,false +donald13,newsmast.social,Nature & Wildlife,nature_wildlife,false +donald13,newsmast.social,Journalism & Comment,news_comment_data,false +donald13,newsmast.social,Performing Arts,performing_arts,false +donald13,newsmast.social,Pets,pets,false +donald13,newsmast.social,Philosophy,philosophy,false +donald13,newsmast.social,Photography,photography,false +donald13,newsmast.social,Physics,physics,false +donald13,newsmast.social,Politics,politics,false +donald13,newsmast.social,Poverty & Inequality,poverty_inequality,false +donald13,newsmast.social,Programming,programming,false +donald13,newsmast.social,Puzzles,puzzles,false +donald13,newsmast.social,Science,science,false +donald13,newsmast.social,Social Media,social_media,false +donald13,newsmast.social,Social Sciences,social_sciences,false +donald13,newsmast.social,Space,space,false +donald13,newsmast.social,Sport,sport,false +donald13,newsmast.social,Technology,technology,false +donald13,newsmast.social,Travel,travel,false +donald13,newsmast.social,TV & Radio,tv_radio,false +donald13,newsmast.social,Ukraine Invasion,ukraine_invasion,false +donald13,newsmast.social,US Politics,us_politics,false +donald13,newsmast.social,US Sport,us_sport,false +donald13,newsmast.social,Visual Arts,visual_arts,false +donald13,newsmast.social,Weather,weather,false +donald13,newsmast.social,Women’s Voices,women_voices,false +donald13,newsmast.social,Workers Rights,workers_rights,false +joanathx,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false +joanathx,newsmast.social,Nature & Wildlife,nature_wildlife,false +joanathx,newsmast.social,Travel,travel,true +joanathx,newsmast.social,AI,ai,false +joanathx,newsmast.social,Technology,technology,false +joanathx,newsmast.social,Engineering,engineering,false +joanathx,newsmast.social,Programming,programming,false +dianirawan,newsmast.social,Academia & Research,academia_research,false +dianirawan,newsmast.social,Breaking News,breaking_news,false +dianirawan,newsmast.social,Government & Policy,government_policy,true +dianirawan,newsmast.social,Healthcare,healthcare,false +dianirawan,newsmast.social,Law & Justice,law_justice,false +dianirawan,newsmast.social,Journalism & Comment,news_comment_data,false +dianirawan,newsmast.social,Politics,politics,false +dianirawan,newsmast.social,Social Media,social_media,false +dianirawan,newsmast.social,Ukraine Invasion,ukraine_invasion,false +dianirawan,newsmast.social,US Politics,us_politics,false +dianirawan,newsmast.social,Weather,weather,false +shoqv4,newsmast.social,Breaking News,breaking_news,false +shoqv4,newsmast.social,Government & Policy,government_policy,false +shoqv4,newsmast.social,Journalism & Comment,news_comment_data,false +shoqv4,newsmast.social,Science,science,false +shoqv4,newsmast.social,Social Media,social_media,false +shoqv4,newsmast.social,Space,space,false +shoqv4,newsmast.social,US Politics,us_politics,true +rajudbg,newsmast.social,AI,ai,true +rajudbg,newsmast.social,Journalism & Comment,news_comment_data,false +rajudbg,newsmast.social,Social Media,social_media,false +rajudbg,newsmast.social,Ukraine Invasion,ukraine_invasion,false +rajudbg,newsmast.social,Weather,weather,false +m2knmst,newsmast.social,Activism & Civil Rights,activism_civil_rights,false +m2knmst,newsmast.social,Black Voices,black_voices,false +m2knmst,newsmast.social,Breaking News,breaking_news,true +m2knmst,newsmast.social,Disabled Voices,disabled_voices,false +m2knmst,newsmast.social,History,history,false +m2knmst,newsmast.social,Humanities,humanities,false +m2knmst,newsmast.social,Immigrants Rights,immigrants_rights,false +m2knmst,newsmast.social,Indigenous Peoples,indigenous_peoples,false +m2knmst,newsmast.social,LGBTQ+,lgbtq,false +m2knmst,newsmast.social,Journalism & Comment,news_comment_data,false +m2knmst,newsmast.social,Philosophy,philosophy,false +m2knmst,newsmast.social,Social Media,social_media,false +m2knmst,newsmast.social,Social Sciences,social_sciences,false +m2knmst,newsmast.social,Ukraine Invasion,ukraine_invasion,false +m2knmst,newsmast.social,Weather,weather,false +m2knmst,newsmast.social,Women’s Voices,women_voices,false +m2knewsmast,newsmast.social,Academia & Research,academia_research,false +m2knewsmast,newsmast.social,Breaking News,breaking_news,true +m2knewsmast,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +m2knewsmast,newsmast.social,Government & Policy,government_policy,false +m2knewsmast,newsmast.social,Healthcare,healthcare,false +m2knewsmast,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false +m2knewsmast,newsmast.social,Law & Justice,law_justice,false +m2knewsmast,newsmast.social,Journalism & Comment,news_comment_data,false +m2knewsmast,newsmast.social,Politics,politics,false +m2knewsmast,newsmast.social,Poverty & Inequality,poverty_inequality,false +m2knewsmast,newsmast.social,Social Media,social_media,false +m2knewsmast,newsmast.social,Ukraine Invasion,ukraine_invasion,false +m2knewsmast,newsmast.social,US Politics,us_politics,false +m2knewsmast,newsmast.social,Weather,weather,false +poke,newsmast.social,AI,ai,false +poke,newsmast.social,Architecture & Design,architecture_design,false +poke,newsmast.social,Breaking News,breaking_news,false +poke,newsmast.social,Business,business,false +poke,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +poke,newsmast.social,Engineering,engineering,false +poke,newsmast.social,Government & Policy,government_policy,false +poke,newsmast.social,Law & Justice,law_justice,false +poke,newsmast.social,Markets & Finance,markets_finance,false +poke,newsmast.social,Movies,movies,false +poke,newsmast.social,Music,music,false +poke,newsmast.social,Journalism & Comment,news_comment_data,false +poke,newsmast.social,Photography,photography,false +poke,newsmast.social,Programming,programming,false +poke,newsmast.social,Science,science,false +poke,newsmast.social,Technology,technology,true +poke,newsmast.social,US Politics,us_politics,false +poke,newsmast.social,Workers Rights,workers_rights,false +irlrefuge,newsmast.social,Technology,technology,true +cbattlegear,newsmast.social,AI,ai,false +cbattlegear,newsmast.social,Breaking News,breaking_news,false +cbattlegear,newsmast.social,Business,business,false +cbattlegear,newsmast.social,Engineering,engineering,false +cbattlegear,newsmast.social,Mathematics,mathematics,false +cbattlegear,newsmast.social,Journalism & Comment,news_comment_data,false +cbattlegear,newsmast.social,Physics,physics,false +cbattlegear,newsmast.social,Programming,programming,true +cbattlegear,newsmast.social,Science,science,false +cbattlegear,newsmast.social,Space,space,false +cbattlegear,newsmast.social,Technology,technology,false +heimoshuiyu,newsmast.social,Breaking News,breaking_news,true +heimoshuiyu,newsmast.social,Journalism & Comment,news_comment_data,false +heimoshuiyu,newsmast.social,Social Media,social_media,false +heimoshuiyu,newsmast.social,Ukraine Invasion,ukraine_invasion,false +heimoshuiyu,newsmast.social,Weather,weather,false +mttaggart,newsmast.social,Academia & Research,academia_research,false +mttaggart,newsmast.social,Activism & Civil Rights,activism_civil_rights,false +mttaggart,newsmast.social,AI,ai,false +mttaggart,newsmast.social,Architecture & Design,architecture_design,false +mttaggart,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false +mttaggart,newsmast.social,Biology,biology,false +mttaggart,newsmast.social,Black Voices,black_voices,false +mttaggart,newsmast.social,Books & Literature,books_literature,false +mttaggart,newsmast.social,Breaking News,breaking_news,false +mttaggart,newsmast.social,Business,business,false +mttaggart,newsmast.social,Chemistry,chemistry,false +mttaggart,newsmast.social,Climate change,climate_change,false +mttaggart,newsmast.social,Creative Arts,creative_arts,false +mttaggart,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +mttaggart,newsmast.social,Disabled Voices,disabled_voices,false +mttaggart,newsmast.social,Energy & Pollution,energy_pollution,false +mttaggart,newsmast.social,Engineering,engineering,false +mttaggart,newsmast.social,Environment,environment,false +mttaggart,newsmast.social,Food & Drink,food_drink,false +mttaggart,newsmast.social,Gaming,gaming,false +mttaggart,newsmast.social,Government & Policy,government_policy,false +mttaggart,newsmast.social,Healthcare,healthcare,false +mttaggart,newsmast.social,History,history,false +mttaggart,newsmast.social,Humanities,humanities,false +mttaggart,newsmast.social,Humour,humour,false +mttaggart,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false +mttaggart,newsmast.social,Immigrants Rights,immigrants_rights,false +mttaggart,newsmast.social,Indigenous Peoples,indigenous_peoples,false +mttaggart,newsmast.social,Law & Justice,law_justice,false +mttaggart,newsmast.social,LGBTQ+,lgbtq,false +mttaggart,newsmast.social,Markets & Finance,markets_finance,false +mttaggart,newsmast.social,Mathematics,mathematics,false +mttaggart,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false +mttaggart,newsmast.social,Movies,movies,false +mttaggart,newsmast.social,Music,music,false +mttaggart,newsmast.social,Nature & Wildlife,nature_wildlife,false +mttaggart,newsmast.social,Journalism & Comment,news_comment_data,false +mttaggart,newsmast.social,Performing Arts,performing_arts,false +mttaggart,newsmast.social,Pets,pets,false +mttaggart,newsmast.social,Philosophy,philosophy,false +mttaggart,newsmast.social,Photography,photography,false +mttaggart,newsmast.social,Physics,physics,false +mttaggart,newsmast.social,Politics,politics,false +mttaggart,newsmast.social,Poverty & Inequality,poverty_inequality,false +mttaggart,newsmast.social,Programming,programming,false +mttaggart,newsmast.social,Puzzles,puzzles,false +mttaggart,newsmast.social,Science,science,false +mttaggart,newsmast.social,Social Media,social_media,false +mttaggart,newsmast.social,Social Sciences,social_sciences,false +mttaggart,newsmast.social,Space,space,false +mttaggart,newsmast.social,Technology,technology,true +mttaggart,newsmast.social,Travel,travel,false +mttaggart,newsmast.social,TV & Radio,tv_radio,false +mttaggart,newsmast.social,Ukraine Invasion,ukraine_invasion,false +mttaggart,newsmast.social,US Politics,us_politics,false +mttaggart,newsmast.social,Visual Arts,visual_arts,false +mttaggart,newsmast.social,Weather,weather,false +mttaggart,newsmast.social,Women’s Voices,women_voices,false +mttaggart,newsmast.social,Workers Rights,workers_rights,false +LiveMessy2024,newsmast.social,AI,ai,false +LiveMessy2024,newsmast.social,Breaking News,breaking_news,false +LiveMessy2024,newsmast.social,Business,business,false +LiveMessy2024,newsmast.social,Creative Arts,creative_arts,false +LiveMessy2024,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +LiveMessy2024,newsmast.social,History,history,false +LiveMessy2024,newsmast.social,Humanities,humanities,false +LiveMessy2024,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false +LiveMessy2024,newsmast.social,LGBTQ+,lgbtq,false +LiveMessy2024,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false +LiveMessy2024,newsmast.social,Nature & Wildlife,nature_wildlife,false +LiveMessy2024,newsmast.social,Philosophy,philosophy,false +LiveMessy2024,newsmast.social,Poverty & Inequality,poverty_inequality,false +LiveMessy2024,newsmast.social,Social Sciences,social_sciences,false +LiveMessy2024,newsmast.social,Technology,technology,true +LiveMessy2024,newsmast.social,Weather,weather,false +LiveMessy2024,newsmast.social,Women’s Voices,women_voices,false +OpalTiger,newsmast.social,Activism & Civil Rights,activism_civil_rights,true +OpalTiger,newsmast.social,Architecture & Design,architecture_design,false +OpalTiger,newsmast.social,Books & Literature,books_literature,false +OpalTiger,newsmast.social,Breaking News,breaking_news,false +OpalTiger,newsmast.social,Creative Arts,creative_arts,false +OpalTiger,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +OpalTiger,newsmast.social,Disabled Voices,disabled_voices,false +OpalTiger,newsmast.social,History,history,false +OpalTiger,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false +OpalTiger,newsmast.social,Performing Arts,performing_arts,false +OpalTiger,newsmast.social,Politics,politics,false +OpalTiger,newsmast.social,Poverty & Inequality,poverty_inequality,false +OpalTiger,newsmast.social,Technology,technology,false +OpalTiger,newsmast.social,TV & Radio,tv_radio,false +OpalTiger,newsmast.social,Visual Arts,visual_arts,false +kakerlake,newsmast.social,Engineering,engineering,false +kakerlake,newsmast.social,Photography,photography,false +kakerlake,newsmast.social,Science,science,false +kakerlake,newsmast.social,Technology,technology,true +kakerlake,newsmast.social,Visual Arts,visual_arts,false +WhiteMode,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false +WhiteMode,newsmast.social,Climate change,climate_change,false +WhiteMode,newsmast.social,Energy & Pollution,energy_pollution,false +WhiteMode,newsmast.social,Environment,environment,false +WhiteMode,newsmast.social,Government & Policy,government_policy,false +WhiteMode,newsmast.social,Healthcare,healthcare,false +WhiteMode,newsmast.social,Law & Justice,law_justice,false +WhiteMode,newsmast.social,Politics,politics,false +WhiteMode,newsmast.social,US Politics,us_politics,false +WhiteMode,newsmast.social,Academia & Research,academia_research,true +WhiteMode,newsmast.social,Biology,biology,false +WhiteMode,newsmast.social,Journalism & Comment,news_comment_data,false +WhiteMode,newsmast.social,Nature & Wildlife,nature_wildlife,false +WhiteMode,newsmast.social,Photography,photography,false +WhiteMode,newsmast.social,Science,science,false +WhiteMode,newsmast.social,Chemistry,chemistry,false +WhiteMode,newsmast.social,Technology,technology,false +WhiteMode,newsmast.social,Programming,programming,false +WhiteMode,newsmast.social,Engineering,engineering,false +fwd7,newsmast.social,Academia & Research,academia_research,false +fwd7,newsmast.social,AI,ai,false +fwd7,newsmast.social,Books & Literature,books_literature,false +fwd7,newsmast.social,Breaking News,breaking_news,false +fwd7,newsmast.social,Football,football,false +fwd7,newsmast.social,Gaming,gaming,false +fwd7,newsmast.social,Government & Policy,government_policy,false +fwd7,newsmast.social,Music,music,false +fwd7,newsmast.social,Social Sciences,social_sciences,false +fwd7,newsmast.social,Sport,sport,false +fwd7,newsmast.social,Technology,technology,false +fwd7,newsmast.social,Law & Justice,law_justice,true +azizbnchikh,newsmast.social,Academia & Research,academia_research,true +azizbnchikh,newsmast.social,AI,ai,false +azizbnchikh,newsmast.social,Engineering,engineering,false +azizbnchikh,newsmast.social,Healthcare,healthcare,false +azizbnchikh,newsmast.social,Politics,politics,false +azizbnchikh,newsmast.social,US Politics,us_politics,false +markr,newsmast.social,AI,ai,false +markr,newsmast.social,Architecture & Design,architecture_design,false +markr,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false +markr,newsmast.social,Biology,biology,false +markr,newsmast.social,Books & Literature,books_literature,false +markr,newsmast.social,Chemistry,chemistry,false +markr,newsmast.social,Climate change,climate_change,false +markr,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +markr,newsmast.social,Energy & Pollution,energy_pollution,false +markr,newsmast.social,Engineering,engineering,false +markr,newsmast.social,Environment,environment,false +markr,newsmast.social,Gaming,gaming,false +markr,newsmast.social,History,history,false +markr,newsmast.social,Humanities,humanities,false +markr,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false +markr,newsmast.social,Mathematics,mathematics,false +markr,newsmast.social,Movies,movies,false +markr,newsmast.social,Music,music,false +markr,newsmast.social,Journalism & Comment,news_comment_data,false +markr,newsmast.social,Performing Arts,performing_arts,false +markr,newsmast.social,Philosophy,philosophy,false +markr,newsmast.social,Photography,photography,false +markr,newsmast.social,Physics,physics,false +markr,newsmast.social,Poverty & Inequality,poverty_inequality,false +markr,newsmast.social,Programming,programming,false +markr,newsmast.social,Science,science,false +markr,newsmast.social,Social Sciences,social_sciences,false +markr,newsmast.social,Space,space,false +markr,newsmast.social,Technology,technology,false +markr,newsmast.social,TV & Radio,tv_radio,false +markr,newsmast.social,Visual Arts,visual_arts,false +markr,newsmast.social,Breaking News,breaking_news,true +sebbz,newsmast.social,AI,ai,false +sebbz,newsmast.social,Breaking News,breaking_news,false +sebbz,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +sebbz,newsmast.social,Engineering,engineering,false +sebbz,newsmast.social,Humanities,humanities,false +sebbz,newsmast.social,Journalism & Comment,news_comment_data,false +sebbz,newsmast.social,Programming,programming,false +sebbz,newsmast.social,Social Sciences,social_sciences,false +sebbz,newsmast.social,Technology,technology,true +mkk001,newsmast.social,Activism & Civil Rights,activism_civil_rights,false +mkk001,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false +mkk001,newsmast.social,Black Voices,black_voices,false +mkk001,newsmast.social,Breaking News,breaking_news,true +mkk001,newsmast.social,Climate change,climate_change,false +mkk001,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +mkk001,newsmast.social,Disabled Voices,disabled_voices,false +mkk001,newsmast.social,Energy & Pollution,energy_pollution,false +mkk001,newsmast.social,Environment,environment,false +mkk001,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false +mkk001,newsmast.social,Immigrants Rights,immigrants_rights,false +mkk001,newsmast.social,Indigenous Peoples,indigenous_peoples,false +mkk001,newsmast.social,LGBTQ+,lgbtq,false +mkk001,newsmast.social,Journalism & Comment,news_comment_data,false +mkk001,newsmast.social,Poverty & Inequality,poverty_inequality,false +mkk001,newsmast.social,Social Media,social_media,false +mkk001,newsmast.social,Women’s Voices,women_voices,false +HariTulsidas,newsmast.social,AI,ai,false +HariTulsidas,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false +HariTulsidas,newsmast.social,Chemistry,chemistry,false +HariTulsidas,newsmast.social,Climate change,climate_change,false +HariTulsidas,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +HariTulsidas,newsmast.social,Energy & Pollution,energy_pollution,false +HariTulsidas,newsmast.social,Engineering,engineering,false +HariTulsidas,newsmast.social,Environment,environment,false +HariTulsidas,newsmast.social,History,history,false +HariTulsidas,newsmast.social,Humanities,humanities,false +HariTulsidas,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false +HariTulsidas,newsmast.social,Mathematics,mathematics,false +HariTulsidas,newsmast.social,Physics,physics,false +HariTulsidas,newsmast.social,Poverty & Inequality,poverty_inequality,false +HariTulsidas,newsmast.social,Programming,programming,false +HariTulsidas,newsmast.social,Science,science,true +HariTulsidas,newsmast.social,Social Sciences,social_sciences,false +HariTulsidas,newsmast.social,Space,space,false +HariTulsidas,newsmast.social,Technology,technology,false +HariTulsidas,newsmast.social,Philosophy,philosophy,false +HariTulsidas,newsmast.social,Journalism & Comment,news_comment_data,false +HariTulsidas,newsmast.social,Social Media,social_media,false +HariTulsidas,newsmast.social,Breaking News,breaking_news,false +HariTulsidas,newsmast.social,Government & Policy,government_policy,false +HariTulsidas,newsmast.social,Academia & Research,academia_research,false +HariTulsidas,newsmast.social,Healthcare,healthcare,false +HariTulsidas,newsmast.social,Law & Justice,law_justice,false +HariTulsidas,newsmast.social,Politics,politics,false +HariTulsidas,newsmast.social,US Politics,us_politics,false +HariTulsidas,newsmast.social,Business,business,false +HariTulsidas,newsmast.social,Markets & Finance,markets_finance,false +HariTulsidas,newsmast.social,Books & Literature,books_literature,false +HariTulsidas,newsmast.social,Movies,movies,false +HariTulsidas,newsmast.social,Creative Arts,creative_arts,false +HariTulsidas,newsmast.social,Humour,humour,false +HariTulsidas,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false +HariTulsidas,newsmast.social,Travel,travel,false +HariTulsidas,newsmast.social,Activism & Civil Rights,activism_civil_rights,false +HariTulsidas,newsmast.social,Indigenous Peoples,indigenous_peoples,false +HariTulsidas,newsmast.social,Photography,photography,false +HariTulsidas,newsmast.social,TV & Radio,tv_radio,false +HariTulsidas,newsmast.social,Performing Arts,performing_arts,false +HariTulsidas,newsmast.social,Music,music,false +HariTulsidas,newsmast.social,Architecture & Design,architecture_design,false +HariTulsidas,newsmast.social,Visual Arts,visual_arts,false +HariTulsidas,newsmast.social,Biology,biology,false +ThirdTime,newsmast.social,Journalism & Comment,news_comment_data,false +ThirdTime,newsmast.social,Social Media,social_media,false +ThirdTime,newsmast.social,Ukraine Invasion,ukraine_invasion,false +ThirdTime,newsmast.social,Weather,weather,false +ThirdTime,newsmast.social,Breaking News,breaking_news,true +ThirdTime,newsmast.social,Creative Arts,creative_arts,false +ThirdTime,newsmast.social,Programming,programming,false +ThirdTime,newsmast.social,Food & Drink,food_drink,false +ThirdTime,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +ThirdTime,newsmast.social,History,history,false +ThirdTime,newsmast.social,Social Sciences,social_sciences,false +ThirdTime,newsmast.social,Gaming,gaming,false +ThirdTime,newsmast.social,Photography,photography,false +ThirdTime,newsmast.social,US Sport,us_sport,false +ThirdTime,newsmast.social,Politics,politics,false +ThirdTime,newsmast.social,Poverty & Inequality,poverty_inequality,false +ThirdTime,newsmast.social,US Politics,us_politics,false +ThirdTime,newsmast.social,Environment,environment,false +ThirdTime,newsmast.social,Climate change,climate_change,false +ThirdTime,newsmast.social,LGBTQ+,lgbtq,false +ThirdTime,newsmast.social,Women’s Voices,women_voices,false +ThirdTime,newsmast.social,Business,business,false +ThirdTime,newsmast.social,Science,science,false +ThirdTime,newsmast.social,Space,space,false +ThirdTime,newsmast.social,Workers Rights,workers_rights,false +ThirdTime,newsmast.social,Technology,technology,false +ThirdTime,newsmast.social,Sport,sport,false +jcblautomoto,newsmast.social,AI,ai,false +jcblautomoto,newsmast.social,Architecture & Design,architecture_design,false +jcblautomoto,newsmast.social,Books & Literature,books_literature,false +jcblautomoto,newsmast.social,Creative Arts,creative_arts,false +jcblautomoto,newsmast.social,Engineering,engineering,false +jcblautomoto,newsmast.social,Food & Drink,food_drink,false +jcblautomoto,newsmast.social,Gaming,gaming,false +jcblautomoto,newsmast.social,Humour,humour,false +jcblautomoto,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false +jcblautomoto,newsmast.social,Movies,movies,false +jcblautomoto,newsmast.social,Music,music,false +jcblautomoto,newsmast.social,Nature & Wildlife,nature_wildlife,false +jcblautomoto,newsmast.social,Performing Arts,performing_arts,false +jcblautomoto,newsmast.social,Pets,pets,false +jcblautomoto,newsmast.social,Photography,photography,false +jcblautomoto,newsmast.social,Programming,programming,false +jcblautomoto,newsmast.social,Puzzles,puzzles,false +jcblautomoto,newsmast.social,Technology,technology,true +jcblautomoto,newsmast.social,Travel,travel,false +jcblautomoto,newsmast.social,TV & Radio,tv_radio,false +jcblautomoto,newsmast.social,Visual Arts,visual_arts,false +Stregabor,newsmast.social,Academia & Research,academia_research,false +Stregabor,newsmast.social,Activism & Civil Rights,activism_civil_rights,false +Stregabor,newsmast.social,AI,ai,false +Stregabor,newsmast.social,Black Voices,black_voices,false +Stregabor,newsmast.social,Breaking News,breaking_news,false +Stregabor,newsmast.social,Business,business,false +Stregabor,newsmast.social,Climate change,climate_change,true +Stregabor,newsmast.social,Disabled Voices,disabled_voices,false +Stregabor,newsmast.social,Engineering,engineering,false +Stregabor,newsmast.social,Environment,environment,false +Stregabor,newsmast.social,Government & Policy,government_policy,false +Stregabor,newsmast.social,Healthcare,healthcare,false +Stregabor,newsmast.social,Immigrants Rights,immigrants_rights,false +Stregabor,newsmast.social,Indigenous Peoples,indigenous_peoples,false +Stregabor,newsmast.social,Law & Justice,law_justice,false +Stregabor,newsmast.social,LGBTQ+,lgbtq,false +Stregabor,newsmast.social,Photography,photography,false +Stregabor,newsmast.social,Politics,politics,false +Stregabor,newsmast.social,Programming,programming,false +Stregabor,newsmast.social,Social Media,social_media,false +Stregabor,newsmast.social,Technology,technology,false +Stregabor,newsmast.social,US Politics,us_politics,false +Stregabor,newsmast.social,Women’s Voices,women_voices,false +Stregabor,newsmast.social,Workers Rights,workers_rights,false +yanmoenaing,newsmast.social,Business,business,false +yanmoenaing,newsmast.social,Chemistry,chemistry,false +yanmoenaing,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +yanmoenaing,newsmast.social,Engineering,engineering,false +yanmoenaing,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false +yanmoenaing,newsmast.social,Markets & Finance,markets_finance,false +yanmoenaing,newsmast.social,Mathematics,mathematics,false +yanmoenaing,newsmast.social,Physics,physics,false +yanmoenaing,newsmast.social,Poverty & Inequality,poverty_inequality,false +yanmoenaing,newsmast.social,Programming,programming,false +yanmoenaing,newsmast.social,Science,science,false +yanmoenaing,newsmast.social,Space,space,false +yanmoenaing,newsmast.social,Technology,technology,false +yanmoenaing,newsmast.social,Workers Rights,workers_rights,false +yanmoenaing,newsmast.social,AI,ai,true +yanmoenaing,newsmast.social,Biology,biology,false +min2k09,newsmast.social,Breaking News,breaking_news,true +min2k09,newsmast.social,Social Media,social_media,false +min2k09,newsmast.social,Ukraine Invasion,ukraine_invasion,false +min2k09,newsmast.social,Weather,weather,false +therfff,newsmast.social,AI,ai,true +therfff,newsmast.social,Biology,biology,false +therfff,newsmast.social,Business,business,false +therfff,newsmast.social,Chemistry,chemistry,false +therfff,newsmast.social,Engineering,engineering,false +therfff,newsmast.social,Markets & Finance,markets_finance,false +therfff,newsmast.social,Mathematics,mathematics,false +therfff,newsmast.social,Physics,physics,false +therfff,newsmast.social,Programming,programming,false +therfff,newsmast.social,Science,science,false +therfff,newsmast.social,Space,space,false +therfff,newsmast.social,Technology,technology,false +therfff,newsmast.social,Workers Rights,workers_rights,false +Magda,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false +Magda,newsmast.social,Books & Literature,books_literature,false +Magda,newsmast.social,Business,business,false +Magda,newsmast.social,Climate change,climate_change,false +Magda,newsmast.social,Creative Arts,creative_arts,false +Magda,newsmast.social,Energy & Pollution,energy_pollution,false +Magda,newsmast.social,Environment,environment,false +Magda,newsmast.social,Government & Policy,government_policy,false +Magda,newsmast.social,History,history,false +Magda,newsmast.social,Movies,movies,false +Magda,newsmast.social,Nature & Wildlife,nature_wildlife,false +Magda,newsmast.social,Journalism & Comment,news_comment_data,false +Magda,newsmast.social,Philosophy,philosophy,false +Magda,newsmast.social,Photography,photography,false +Magda,newsmast.social,Poverty & Inequality,poverty_inequality,false +Magda,newsmast.social,Technology,technology,false +Magda,newsmast.social,Travel,travel,false +Magda,newsmast.social,Workers Rights,workers_rights,false +Magda,newsmast.social,Architecture & Design,architecture_design,true +csu,newsmast.social,AI,ai,false +csu,newsmast.social,Breaking News,breaking_news,false +csu,newsmast.social,Engineering,engineering,false +csu,newsmast.social,Mathematics,mathematics,false +csu,newsmast.social,Journalism & Comment,news_comment_data,false +csu,newsmast.social,Programming,programming,true +csu,newsmast.social,Science,science,false +csu,newsmast.social,Social Media,social_media,false +csu,newsmast.social,Space,space,false +csu,newsmast.social,Technology,technology,false +clonnee,newsmast.social,AI,ai,true +clonnee,newsmast.social,Biology,biology,false +clonnee,newsmast.social,Chemistry,chemistry,false +clonnee,newsmast.social,Engineering,engineering,false +clonnee,newsmast.social,Mathematics,mathematics,false +clonnee,newsmast.social,Physics,physics,false +clonnee,newsmast.social,Programming,programming,false +clonnee,newsmast.social,Science,science,false +clonnee,newsmast.social,Space,space,false +clonnee,newsmast.social,Technology,technology,false +Johan,newsmast.social,Academia & Research,academia_research,false +Johan,newsmast.social,AI,ai,true +Johan,newsmast.social,Business,business,false +Johan,newsmast.social,Engineering,engineering,false +Johan,newsmast.social,Government & Policy,government_policy,false +Johan,newsmast.social,Healthcare,healthcare,false +Johan,newsmast.social,Law & Justice,law_justice,false +Johan,newsmast.social,Markets & Finance,markets_finance,false +Johan,newsmast.social,Politics,politics,false +Johan,newsmast.social,Programming,programming,false +Johan,newsmast.social,Technology,technology,false +Johan,newsmast.social,US Politics,us_politics,false +Johan,newsmast.social,Workers Rights,workers_rights,false +ShuaE,newsmast.social,AI,ai,false +ShuaE,newsmast.social,Engineering,engineering,true +ShuaE,newsmast.social,Pets,pets,false +ShuaE,newsmast.social,Programming,programming,false +ShuaE,newsmast.social,Technology,technology,false +daniellean,newsmast.social,Activism & Civil Rights,activism_civil_rights,false +daniellean,newsmast.social,Black Voices,black_voices,false +daniellean,newsmast.social,Breaking News,breaking_news,false +daniellean,newsmast.social,Climate change,climate_change,false +daniellean,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +daniellean,newsmast.social,Environment,environment,false +daniellean,newsmast.social,Government & Policy,government_policy,false +daniellean,newsmast.social,Humanities,humanities,false +daniellean,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false +daniellean,newsmast.social,Immigrants Rights,immigrants_rights,false +daniellean,newsmast.social,Indigenous Peoples,indigenous_peoples,false +daniellean,newsmast.social,LGBTQ+,lgbtq,true +daniellean,newsmast.social,Journalism & Comment,news_comment_data,false +daniellean,newsmast.social,Social Media,social_media,false +daniellean,newsmast.social,Social Sciences,social_sciences,false +daniellean,newsmast.social,Women’s Voices,women_voices,false +daniellean,newsmast.social,Ukraine Invasion,ukraine_invasion,false +daniellean,newsmast.social,Weather,weather,false +daniellean,newsmast.social,Academia & Research,academia_research,false +daniellean,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false +daniellean,newsmast.social,Disabled Voices,disabled_voices,false +daniellean,newsmast.social,Science,science,false +daniellean,newsmast.social,Poverty & Inequality,poverty_inequality,false +daniellean,newsmast.social,Politics,politics,false +daniellean,newsmast.social,US Politics,us_politics,false +daniellean,newsmast.social,Energy & Pollution,energy_pollution,false +PetRock,newsmast.social,Nature & Wildlife,nature_wildlife,true +PetRock,newsmast.social,Music,music,false +harrylyon,newsmast.social,Activism & Civil Rights,activism_civil_rights,false +harrylyon,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false +harrylyon,newsmast.social,Climate change,climate_change,false +harrylyon,newsmast.social,Disabled Voices,disabled_voices,false +harrylyon,newsmast.social,Energy & Pollution,energy_pollution,false +harrylyon,newsmast.social,Environment,environment,false +harrylyon,newsmast.social,Immigrants Rights,immigrants_rights,false +harrylyon,newsmast.social,Indigenous Peoples,indigenous_peoples,false +harrylyon,newsmast.social,LGBTQ+,lgbtq,false +harrylyon,newsmast.social,Black Voices,black_voices,true +Levicoisch,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false +Levicoisch,newsmast.social,Breaking News,breaking_news,true +Levicoisch,newsmast.social,Climate change,climate_change,false +Levicoisch,newsmast.social,Energy & Pollution,energy_pollution,false +Levicoisch,newsmast.social,Environment,environment,false +johnDaonld,newsmast.social,Architecture & Design,architecture_design,false +johnDaonld,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false +johnDaonld,newsmast.social,Books & Literature,books_literature,false +johnDaonld,newsmast.social,Climate change,climate_change,false +johnDaonld,newsmast.social,Energy & Pollution,energy_pollution,false +johnDaonld,newsmast.social,Gaming,gaming,false +johnDaonld,newsmast.social,History,history,false +johnDaonld,newsmast.social,Humanities,humanities,false +johnDaonld,newsmast.social,Movies,movies,false +johnDaonld,newsmast.social,Music,music,false +johnDaonld,newsmast.social,Performing Arts,performing_arts,false +johnDaonld,newsmast.social,Philosophy,philosophy,false +johnDaonld,newsmast.social,Photography,photography,false +johnDaonld,newsmast.social,Social Sciences,social_sciences,false +johnDaonld,newsmast.social,TV & Radio,tv_radio,false +johnDaonld,newsmast.social,Visual Arts,visual_arts,false +johnDaonld,newsmast.social,Environment,environment,true +jankjon,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,true +jankjon,newsmast.social,Breaking News,breaking_news,false +jankjon,newsmast.social,Climate change,climate_change,false +jankjon,newsmast.social,Energy & Pollution,energy_pollution,false +jankjon,newsmast.social,Environment,environment,false +jankjon,newsmast.social,Journalism & Comment,news_comment_data,false +jankjon,newsmast.social,Social Media,social_media,false +jankjon,newsmast.social,Ukraine Invasion,ukraine_invasion,false +instepphysio,newsmast.social,Academia & Research,academia_research,false +instepphysio,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false +instepphysio,newsmast.social,Climate change,climate_change,false +instepphysio,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +instepphysio,newsmast.social,Environment,environment,false +instepphysio,newsmast.social,Government & Policy,government_policy,false +instepphysio,newsmast.social,Healthcare,healthcare,false +instepphysio,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false +instepphysio,newsmast.social,Law & Justice,law_justice,false +instepphysio,newsmast.social,Politics,politics,false +instepphysio,newsmast.social,Poverty & Inequality,poverty_inequality,false +instepphysio,newsmast.social,US Politics,us_politics,false +instepphysio,newsmast.social,Energy & Pollution,energy_pollution,true +ToposInstitute,newsmast.social,AI,ai,false +ToposInstitute,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +ToposInstitute,newsmast.social,Engineering,engineering,false +ToposInstitute,newsmast.social,Mathematics,mathematics,true +ToposInstitute,newsmast.social,Poverty & Inequality,poverty_inequality,false +ToposInstitute,newsmast.social,Science,science,false +ToposInstitute,newsmast.social,Technology,technology,false +ToposInstitute,newsmast.social,Programming,programming,false +ToposInstitute,newsmast.social,Humanities,humanities,false +ToposInstitute,newsmast.social,Social Sciences,social_sciences,false +ToposInstitute,newsmast.social,Philosophy,philosophy,false +aaim,newsmast.social,Climate change,climate_change,false +aaim,newsmast.social,Energy & Pollution,energy_pollution,false +aaim,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,true +aaim,newsmast.social,Mathematics,mathematics,false +aaim,newsmast.social,Poverty & Inequality,poverty_inequality,false +aaim,newsmast.social,Science,science,false +Hwys2Railways,newsmast.social,Academia & Research,academia_research,false +Hwys2Railways,newsmast.social,Activism & Civil Rights,activism_civil_rights,false +Hwys2Railways,newsmast.social,AI,ai,false +Hwys2Railways,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false +Hwys2Railways,newsmast.social,Biology,biology,false +Hwys2Railways,newsmast.social,Black Voices,black_voices,false +Hwys2Railways,newsmast.social,Books & Literature,books_literature,false +Hwys2Railways,newsmast.social,Breaking News,breaking_news,false +Hwys2Railways,newsmast.social,Chemistry,chemistry,false +Hwys2Railways,newsmast.social,Climate change,climate_change,false +Hwys2Railways,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +Hwys2Railways,newsmast.social,Energy & Pollution,energy_pollution,false +Hwys2Railways,newsmast.social,Engineering,engineering,false +Hwys2Railways,newsmast.social,Environment,environment,true +Hwys2Railways,newsmast.social,Gaming,gaming,false +Hwys2Railways,newsmast.social,Government & Policy,government_policy,false +Hwys2Railways,newsmast.social,Healthcare,healthcare,false +Hwys2Railways,newsmast.social,History,history,false +Hwys2Railways,newsmast.social,Humanities,humanities,false +Hwys2Railways,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false +Hwys2Railways,newsmast.social,Immigrants Rights,immigrants_rights,false +Hwys2Railways,newsmast.social,Indigenous Peoples,indigenous_peoples,false +Hwys2Railways,newsmast.social,Law & Justice,law_justice,false +Hwys2Railways,newsmast.social,LGBTQ+,lgbtq,false +Hwys2Railways,newsmast.social,Mathematics,mathematics,false +Hwys2Railways,newsmast.social,Journalism & Comment,news_comment_data,false +Hwys2Railways,newsmast.social,Philosophy,philosophy,false +Hwys2Railways,newsmast.social,Physics,physics,false +Hwys2Railways,newsmast.social,Politics,politics,false +Hwys2Railways,newsmast.social,Poverty & Inequality,poverty_inequality,false +Hwys2Railways,newsmast.social,Programming,programming,false +Hwys2Railways,newsmast.social,Science,science,false +Hwys2Railways,newsmast.social,Social Sciences,social_sciences,false +Hwys2Railways,newsmast.social,Space,space,false +Hwys2Railways,newsmast.social,Technology,technology,false +Hwys2Railways,newsmast.social,Ukraine Invasion,ukraine_invasion,false +Hwys2Railways,newsmast.social,US Politics,us_politics,false +Hwys2Railways,newsmast.social,Visual Arts,visual_arts,false +Hwys2Railways,newsmast.social,Weather,weather,false +Hwys2Railways,newsmast.social,Women’s Voices,women_voices,false +valeriadepaiva,newsmast.social,AI,ai,false +valeriadepaiva,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false +valeriadepaiva,newsmast.social,Mathematics,mathematics,true +valeriadepaiva,newsmast.social,Poverty & Inequality,poverty_inequality,false +valeriadepaiva,newsmast.social,Programming,programming,false +Willow,newsmast.social,AI,ai,false +Willow,newsmast.social,Architecture & Design,architecture_design,false +Willow,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false +Willow,newsmast.social,Books & Literature,books_literature,false +Willow,newsmast.social,Business,business,false +Willow,newsmast.social,Climate change,climate_change,true +Willow,newsmast.social,Environment,environment,false +Willow,newsmast.social,Philosophy,philosophy,false +Willow,newsmast.social,Programming,programming,false +Willow,newsmast.social,Social Sciences,social_sciences,false +Willow,newsmast.social,Visual Arts,visual_arts,false +jcblhandtools,newsmast.social,Biology,biology,false +jcblhandtools,newsmast.social,Business,business,true +jcblhandtools,newsmast.social,Chemistry,chemistry,false +jcblhandtools,newsmast.social,Markets & Finance,markets_finance,false +jcblhandtools,newsmast.social,Mathematics,mathematics,false +jcblhandtools,newsmast.social,Physics,physics,false +jcblhandtools,newsmast.social,Science,science,false +jcblhandtools,newsmast.social,Space,space,false +jcblhandtools,newsmast.social,Workers Rights,workers_rights,false +47photography,newsmast.social,Photography,photography,true +47photography,newsmast.social,Creative Arts,creative_arts,false +47photography,newsmast.social,Social Media,social_media,false +47photography,newsmast.social,Breaking News,breaking_news,false +TechNieuws,newsmast.social,Breaking News,breaking_news,true +TechNieuws,newsmast.social,Business,business,false +TechNieuws,newsmast.social,Journalism & Comment,news_comment_data,false +TechNieuws,newsmast.social,Programming,programming,false +TechNieuws,newsmast.social,Social Media,social_media,false +TechNieuws,newsmast.social,Technology,technology,false +Natsurath,newsmast.social,Activism & Civil Rights,activism_civil_rights,false +Natsurath,newsmast.social,Biology,biology,false +Natsurath,newsmast.social,Black Voices,black_voices,false +Natsurath,newsmast.social,Chemistry,chemistry,false +Natsurath,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +Natsurath,newsmast.social,Engineering,engineering,false +Natsurath,newsmast.social,Food & Drink,food_drink,false +Natsurath,newsmast.social,Gaming,gaming,false +Natsurath,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false +Natsurath,newsmast.social,LGBTQ+,lgbtq,true +Natsurath,newsmast.social,Mathematics,mathematics,false +Natsurath,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false +Natsurath,newsmast.social,Movies,movies,false +Natsurath,newsmast.social,Nature & Wildlife,nature_wildlife,false +Natsurath,newsmast.social,Performing Arts,performing_arts,false +Natsurath,newsmast.social,Physics,physics,false +Natsurath,newsmast.social,Poverty & Inequality,poverty_inequality,false +Natsurath,newsmast.social,Programming,programming,false +Natsurath,newsmast.social,Science,science,false +Natsurath,newsmast.social,Social Media,social_media,false +Natsurath,newsmast.social,Space,space,false +Natsurath,newsmast.social,Technology,technology,false +Natsurath,newsmast.social,Travel,travel,false +Natsurath,newsmast.social,TV & Radio,tv_radio,false +Natsurath,newsmast.social,Ukraine Invasion,ukraine_invasion,false +Natsurath,newsmast.social,Weather,weather,false +Natsurath,newsmast.social,Women’s Voices,women_voices,false +JoeyJ0J0,newsmast.social,Academia & Research,academia_research,false +JoeyJ0J0,newsmast.social,Breaking News,breaking_news,false +JoeyJ0J0,newsmast.social,Healthcare,healthcare,false +JoeyJ0J0,newsmast.social,Journalism & Comment,news_comment_data,false +JoeyJ0J0,newsmast.social,Politics,politics,false +JoeyJ0J0,newsmast.social,Technology,technology,false +JoeyJ0J0,newsmast.social,Ukraine Invasion,ukraine_invasion,true +jamalpp,newsmast.social,Breaking News,breaking_news,true +jamalpp,newsmast.social,Journalism & Comment,news_comment_data,false +jamalpp,newsmast.social,Social Media,social_media,false +jamalpp,newsmast.social,Ukraine Invasion,ukraine_invasion,false +jamalpp,newsmast.social,Weather,weather,false +momentumphysio,newsmast.social,Breaking News,breaking_news,true +momentumphysio,newsmast.social,Journalism & Comment,news_comment_data,false +momentumphysio,newsmast.social,Social Media,social_media,false +momentumphysio,newsmast.social,Ukraine Invasion,ukraine_invasion,false +momentumphysio,newsmast.social,Weather,weather,false +harvinhentry,newsmast.social,Activism & Civil Rights,activism_civil_rights,false +harvinhentry,newsmast.social,AI,ai,false +harvinhentry,newsmast.social,Black Voices,black_voices,false +harvinhentry,newsmast.social,Disabled Voices,disabled_voices,false +harvinhentry,newsmast.social,Engineering,engineering,false +harvinhentry,newsmast.social,Immigrants Rights,immigrants_rights,false +harvinhentry,newsmast.social,Indigenous Peoples,indigenous_peoples,false +harvinhentry,newsmast.social,LGBTQ+,lgbtq,false +harvinhentry,newsmast.social,Programming,programming,false +harvinhentry,newsmast.social,Technology,technology,true +harvinhentry,newsmast.social,Women’s Voices,women_voices,false +Miaa,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false +Miaa,newsmast.social,Breaking News,breaking_news,true +Miaa,newsmast.social,Climate change,climate_change,false +Miaa,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +Miaa,newsmast.social,Environment,environment,false +han_smith,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false +han_smith,newsmast.social,Nature & Wildlife,nature_wildlife,false +han_smith,newsmast.social,Activism & Civil Rights,activism_civil_rights,false +han_smith,newsmast.social,Black Voices,black_voices,false +han_smith,newsmast.social,Breaking News,breaking_news,false +han_smith,newsmast.social,Climate change,climate_change,false +han_smith,newsmast.social,Disabled Voices,disabled_voices,false +han_smith,newsmast.social,Engineering,engineering,false +han_smith,newsmast.social,Environment,environment,false +han_smith,newsmast.social,Immigrants Rights,immigrants_rights,false +han_smith,newsmast.social,Indigenous Peoples,indigenous_peoples,false +han_smith,newsmast.social,LGBTQ+,lgbtq,true +han_smith,newsmast.social,Mathematics,mathematics,false +han_smith,newsmast.social,Journalism & Comment,news_comment_data,false +han_smith,newsmast.social,Physics,physics,false +han_smith,newsmast.social,Science,science,false +han_smith,newsmast.social,Social Sciences,social_sciences,false +han_smith,newsmast.social,Space,space,false +han_smith,newsmast.social,Weather,weather,false +han_smith,newsmast.social,Women’s Voices,women_voices,false +han_smith,newsmast.social,Workers Rights,workers_rights,false +notiska,newsmast.social,AI,ai,true +notiska,newsmast.social,Business,business,false +notiska,newsmast.social,Engineering,engineering,false +notiska,newsmast.social,Markets & Finance,markets_finance,false +notiska,newsmast.social,Programming,programming,false +notiska,newsmast.social,Technology,technology,false +notiska,newsmast.social,Workers Rights,workers_rights,false +neirda,newsmast.social,Football,football,false +neirda,newsmast.social,History,history,false +neirda,newsmast.social,Humanities,humanities,false +neirda,newsmast.social,Philosophy,philosophy,true +neirda,newsmast.social,Social Sciences,social_sciences,false +neirda,newsmast.social,Sport,sport,false +neirda,newsmast.social,US Sport,us_sport,false +michael,newsmast.social,Private Community,private-community,false +michael,newsmast.social,Visual Arts,visual_arts,false +michael,newsmast.social,Women’s Voices,women_voices,false +michael,newsmast.social,Social Media,social_media,true +michael,newsmast.social,Academia & Research,academia_research,false +michael,newsmast.social,Activism & Civil Rights,activism_civil_rights,false +michael,newsmast.social,Architecture & Design,architecture_design,false +michael,newsmast.social,Books & Literature,books_literature,false +michael,newsmast.social,Climate change,climate_change,false +michael,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +michael,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false +michael,newsmast.social,Indigenous Peoples,indigenous_peoples,false +michael,newsmast.social,Music,music,false +michael,newsmast.social,Nature & Wildlife,nature_wildlife,false +michael,newsmast.social,Journalism & Comment,news_comment_data,false +michael,newsmast.social,Photography,photography,false +michael,newsmast.social,Politics,politics,false +michael,newsmast.social,Poverty & Inequality,poverty_inequality,false +michael,newsmast.social,Space,space,false +michael,newsmast.social,US Politics,us_politics,false +michael,newsmast.social,Visual Arts,visual_arts,false +michael,newsmast.social,Women’s Voices,women_voices,false +Cappuccinogirl,newsmast.social,Activism & Civil Rights,activism_civil_rights,false +Cappuccinogirl,newsmast.social,Architecture & Design,architecture_design,false +Cappuccinogirl,newsmast.social,Books & Literature,books_literature,false +Cappuccinogirl,newsmast.social,History,history,true +Cappuccinogirl,newsmast.social,Humanities,humanities,false +Cappuccinogirl,newsmast.social,Philosophy,philosophy,false +Cappuccinogirl,newsmast.social,Photography,photography,false +Cappuccinogirl,newsmast.social,Politics,politics,false +Cappuccinogirl,newsmast.social,Social Sciences,social_sciences,false +Cappuccinogirl,newsmast.social,Women’s Voices,women_voices,false +Cappuccinogirl,newsmast.social,Workers Rights,workers_rights,false +Cappuccinogirl,newsmast.social,Music,music,false +Cappuccinogirl,newsmast.social,Travel,travel,false +Cappuccinogirl,newsmast.social,Academia & Research,academia_research,false +Cappuccinogirl,newsmast.social,Visual Arts,visual_arts,false +max,newsmast.social,Academia & Research,academia_research,false +max,newsmast.social,AI,ai,false +max,newsmast.social,Breaking News,breaking_news,false +max,newsmast.social,Environment,environment,false +max,newsmast.social,Government & Policy,government_policy,false +max,newsmast.social,Programming,programming,false +max,newsmast.social,Science,science,false +max,newsmast.social,Technology,technology,true +not_so_social,newsmast.social,AI,ai,false +not_so_social,newsmast.social,Biology,biology,false +not_so_social,newsmast.social,Chemistry,chemistry,false +not_so_social,newsmast.social,Engineering,engineering,false +not_so_social,newsmast.social,Humanities,humanities,false +not_so_social,newsmast.social,Mathematics,mathematics,false +not_so_social,newsmast.social,Physics,physics,false +not_so_social,newsmast.social,Programming,programming,false +not_so_social,newsmast.social,Science,science,false +not_so_social,newsmast.social,Social Sciences,social_sciences,false +not_so_social,newsmast.social,Space,space,false +not_so_social,newsmast.social,Technology,technology,true +tom2022,newsmast.social,Black Voices,black_voices,false +tom2022,newsmast.social,Indigenous Peoples,indigenous_peoples,false +tom2022,newsmast.social,LGBTQ+,lgbtq,true +tom2022,newsmast.social,Nature & Wildlife,nature_wildlife,false +tom2022,newsmast.social,Social Media,social_media,false +luked522,newsmast.social,Academia & Research,academia_research,false +luked522,newsmast.social,Architecture & Design,architecture_design,false +luked522,newsmast.social,Biology,biology,false +luked522,newsmast.social,Gaming,gaming,false +luked522,newsmast.social,Government & Policy,government_policy,false +luked522,newsmast.social,Humanities,humanities,false +luked522,newsmast.social,LGBTQ+,lgbtq,false +luked522,newsmast.social,Philosophy,philosophy,false +luked522,newsmast.social,Photography,photography,false +luked522,newsmast.social,Politics,politics,false +luked522,newsmast.social,Science,science,false +luked522,newsmast.social,Social Sciences,social_sciences,true +luked522,newsmast.social,Space,space,false +luked522,newsmast.social,TV & Radio,tv_radio,false +Tms12,newsmast.social,Creative Arts,creative_arts,false +Tms12,newsmast.social,Performing Arts,performing_arts,true +Tms12,newsmast.social,Science,science,false +Tms12,newsmast.social,Visual Arts,visual_arts,false +Tms12,newsmast.social,Markets & Finance,markets_finance,false +Tms12,newsmast.social,Workers Rights,workers_rights,false +miroslavglavic,newsmast.social,Breaking News,breaking_news,true +miroslavglavic,newsmast.social,Government & Policy,government_policy,false +miroslavglavic,newsmast.social,Law & Justice,law_justice,false +miroslavglavic,newsmast.social,Journalism & Comment,news_comment_data,false +miroslavglavic,newsmast.social,Weather,weather,false +physioemerald,newsmast.social,Biology,biology,false +physioemerald,newsmast.social,Chemistry,chemistry,true +physioemerald,newsmast.social,Creative Arts,creative_arts,false +physioemerald,newsmast.social,Food & Drink,food_drink,false +physioemerald,newsmast.social,Football,football,false +physioemerald,newsmast.social,History,history,false +physioemerald,newsmast.social,Humanities,humanities,false +physioemerald,newsmast.social,Humour,humour,false +physioemerald,newsmast.social,Mathematics,mathematics,false +physioemerald,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false +physioemerald,newsmast.social,Nature & Wildlife,nature_wildlife,false +physioemerald,newsmast.social,Pets,pets,false +physioemerald,newsmast.social,Philosophy,philosophy,false +physioemerald,newsmast.social,Physics,physics,false +physioemerald,newsmast.social,Puzzles,puzzles,false +physioemerald,newsmast.social,Science,science,false +physioemerald,newsmast.social,Social Sciences,social_sciences,false +physioemerald,newsmast.social,Space,space,false +physioemerald,newsmast.social,Sport,sport,false +physioemerald,newsmast.social,Travel,travel,false +physioemerald,newsmast.social,US Sport,us_sport,false +junctionpoint,newsmast.social,AI,ai,false +junctionpoint,newsmast.social,Business,business,true +junctionpoint,newsmast.social,Engineering,engineering,false +junctionpoint,newsmast.social,Football,football,false +junctionpoint,newsmast.social,Markets & Finance,markets_finance,false +junctionpoint,newsmast.social,Programming,programming,false +junctionpoint,newsmast.social,Sport,sport,false +junctionpoint,newsmast.social,Technology,technology,false +junctionpoint,newsmast.social,US Sport,us_sport,false +junctionpoint,newsmast.social,Workers Rights,workers_rights,false +yisem,newsmast.social,Breaking News,breaking_news,true +yisem,newsmast.social,Journalism & Comment,news_comment_data,false +yisem,newsmast.social,Social Media,social_media,false +yisem,newsmast.social,Ukraine Invasion,ukraine_invasion,false +yisem,newsmast.social,Weather,weather,false +stevebownan,newsmast.social,AI,ai,false +stevebownan,newsmast.social,Books & Literature,books_literature,false +stevebownan,newsmast.social,Breaking News,breaking_news,false +stevebownan,newsmast.social,Democracy & Human Rights,democracy_human_rights,true +stevebownan,newsmast.social,Food & Drink,food_drink,false +stevebownan,newsmast.social,Football,football,false +stevebownan,newsmast.social,Movies,movies,false +stevebownan,newsmast.social,Music,music,false +stevebownan,newsmast.social,Nature & Wildlife,nature_wildlife,false +stevebownan,newsmast.social,Journalism & Comment,news_comment_data,false +stevebownan,newsmast.social,Physics,physics,false +stevebownan,newsmast.social,Politics,politics,false +stevebownan,newsmast.social,Poverty & Inequality,poverty_inequality,false +stevebownan,newsmast.social,Programming,programming,false +stevebownan,newsmast.social,Science,science,false +stevebownan,newsmast.social,Space,space,false +stevebownan,newsmast.social,Technology,technology,false +stevebownan,newsmast.social,Travel,travel,false +ahmed90,newsmast.social,AI,ai,false +ahmed90,newsmast.social,Business,business,false +ahmed90,newsmast.social,Engineering,engineering,false +ahmed90,newsmast.social,Government & Policy,government_policy,false +ahmed90,newsmast.social,Healthcare,healthcare,false +ahmed90,newsmast.social,Markets & Finance,markets_finance,false +ahmed90,newsmast.social,Programming,programming,false +ahmed90,newsmast.social,Technology,technology,true +Jarhead2029,newsmast.social,AI,ai,false +Jarhead2029,newsmast.social,Biology,biology,false +Jarhead2029,newsmast.social,Breaking News,breaking_news,false +Jarhead2029,newsmast.social,Chemistry,chemistry,false +Jarhead2029,newsmast.social,Democracy & Human Rights,democracy_human_rights,true +Jarhead2029,newsmast.social,Government & Policy,government_policy,false +Jarhead2029,newsmast.social,Healthcare,healthcare,false +Jarhead2029,newsmast.social,Humanities,humanities,false +Jarhead2029,newsmast.social,Humour,humour,false +Jarhead2029,newsmast.social,Immigrants Rights,immigrants_rights,false +Jarhead2029,newsmast.social,Law & Justice,law_justice,false +Jarhead2029,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false +Jarhead2029,newsmast.social,Nature & Wildlife,nature_wildlife,false +Jarhead2029,newsmast.social,Pets,pets,false +Jarhead2029,newsmast.social,Philosophy,philosophy,false +Jarhead2029,newsmast.social,Physics,physics,false +Jarhead2029,newsmast.social,Politics,politics,false +Jarhead2029,newsmast.social,Poverty & Inequality,poverty_inequality,false +Jarhead2029,newsmast.social,Puzzles,puzzles,false +Jarhead2029,newsmast.social,Science,science,false +Jarhead2029,newsmast.social,Social Media,social_media,false +Jarhead2029,newsmast.social,Social Sciences,social_sciences,false +Jarhead2029,newsmast.social,Sport,sport,false +Jarhead2029,newsmast.social,Technology,technology,false +Jarhead2029,newsmast.social,Travel,travel,false +Jarhead2029,newsmast.social,Ukraine Invasion,ukraine_invasion,false +Jarhead2029,newsmast.social,US Politics,us_politics,false +Jarhead2029,newsmast.social,US Sport,us_sport,false +Jarhead2029,newsmast.social,Weather,weather,false +TuesdayReviewAU,newsmast.social,Books & Literature,books_literature,false +TuesdayReviewAU,newsmast.social,Breaking News,breaking_news,false +TuesdayReviewAU,newsmast.social,Gaming,gaming,false +TuesdayReviewAU,newsmast.social,Humanities,humanities,false +TuesdayReviewAU,newsmast.social,Movies,movies,true +TuesdayReviewAU,newsmast.social,Journalism & Comment,news_comment_data,false +TuesdayReviewAU,newsmast.social,Philosophy,philosophy,false +TuesdayReviewAU,newsmast.social,Social Media,social_media,false +TuesdayReviewAU,newsmast.social,Technology,technology,false +TuesdayReviewAU,newsmast.social,TV & Radio,tv_radio,false +TuesdayReviewAU,newsmast.social,Visual Arts,visual_arts,false +GlobalRewilding,newsmast.social,Academia & Research,academia_research,false +GlobalRewilding,newsmast.social,Climate change,climate_change,false +GlobalRewilding,newsmast.social,Environment,environment,false +GlobalRewilding,newsmast.social,Government & Policy,government_policy,false +GlobalRewilding,newsmast.social,Science,science,false +GlobalRewilding,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,true +Bubblefarts,newsmast.social,Biology,biology,false +Bubblefarts,newsmast.social,Creative Arts,creative_arts,false +Bubblefarts,newsmast.social,Physics,physics,false +Bubblefarts,newsmast.social,Puzzles,puzzles,false +Bubblefarts,newsmast.social,Activism & Civil Rights,activism_civil_rights,true +YNA,newsmast.social,Technology,technology,true +YNA,newsmast.social,Engineering,engineering,false +sev,newsmast.social,Philosophy,philosophy,false +sev,newsmast.social,Creative Arts,creative_arts,false +sev,newsmast.social,Journalism & Comment,news_comment_data,false +sev,newsmast.social,Breaking News,breaking_news,false +sev,newsmast.social,Weather,weather,false +sev,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false +sev,newsmast.social,Nature & Wildlife,nature_wildlife,false +sev,newsmast.social,Ukraine Invasion,ukraine_invasion,false +sev,newsmast.social,Social Media,social_media,false +sev,newsmast.social,Visual Arts,visual_arts,false +ommo,newsmast.social,Engineering,engineering,false +ommo,newsmast.social,Science,science,false +ommo,newsmast.social,Space,space,true +ommo,newsmast.social,Technology,technology,false +ommo,newsmast.social,Weather,weather,false +kaerypheur,newsmast.social,Academia & Research,academia_research,false +kaerypheur,newsmast.social,Activism & Civil Rights,activism_civil_rights,false +kaerypheur,newsmast.social,AI,ai,false +kaerypheur,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false +kaerypheur,newsmast.social,Biology,biology,false +kaerypheur,newsmast.social,Breaking News,breaking_news,false +kaerypheur,newsmast.social,Business,business,false +kaerypheur,newsmast.social,Climate change,climate_change,false +kaerypheur,newsmast.social,Creative Arts,creative_arts,false +kaerypheur,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +kaerypheur,newsmast.social,Disabled Voices,disabled_voices,false +kaerypheur,newsmast.social,Energy & Pollution,energy_pollution,false +kaerypheur,newsmast.social,Engineering,engineering,false +kaerypheur,newsmast.social,Environment,environment,false +kaerypheur,newsmast.social,Food & Drink,food_drink,false +kaerypheur,newsmast.social,Government & Policy,government_policy,false +kaerypheur,newsmast.social,Healthcare,healthcare,false +kaerypheur,newsmast.social,History,history,false +kaerypheur,newsmast.social,Humanities,humanities,false +kaerypheur,newsmast.social,Humour,humour,false +kaerypheur,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false +kaerypheur,newsmast.social,Immigrants Rights,immigrants_rights,false +kaerypheur,newsmast.social,Indigenous Peoples,indigenous_peoples,false +kaerypheur,newsmast.social,Law & Justice,law_justice,false +kaerypheur,newsmast.social,Markets & Finance,markets_finance,false +kaerypheur,newsmast.social,Mathematics,mathematics,false +kaerypheur,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,true +kaerypheur,newsmast.social,Nature & Wildlife,nature_wildlife,false +kaerypheur,newsmast.social,Journalism & Comment,news_comment_data,false +kaerypheur,newsmast.social,Pets,pets,false +kaerypheur,newsmast.social,Philosophy,philosophy,false +kaerypheur,newsmast.social,Politics,politics,false +kaerypheur,newsmast.social,Poverty & Inequality,poverty_inequality,false +kaerypheur,newsmast.social,Programming,programming,false +kaerypheur,newsmast.social,Puzzles,puzzles,false +kaerypheur,newsmast.social,Science,science,false +kaerypheur,newsmast.social,Social Media,social_media,false +kaerypheur,newsmast.social,Social Sciences,social_sciences,false +kaerypheur,newsmast.social,Space,space,false +kaerypheur,newsmast.social,Technology,technology,false +kaerypheur,newsmast.social,Travel,travel,false +kaerypheur,newsmast.social,Ukraine Invasion,ukraine_invasion,false +kaerypheur,newsmast.social,US Politics,us_politics,false +kaerypheur,newsmast.social,Weather,weather,false +kaerypheur,newsmast.social,Women’s Voices,women_voices,false +kaerypheur,newsmast.social,Workers Rights,workers_rights,false +channyeintun,newsmast.social,Academia & Research,academia_research,false +channyeintun,newsmast.social,AI,ai,false +channyeintun,newsmast.social,Creative Arts,creative_arts,false +channyeintun,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +channyeintun,newsmast.social,Engineering,engineering,false +channyeintun,newsmast.social,Food & Drink,food_drink,false +channyeintun,newsmast.social,Government & Policy,government_policy,false +channyeintun,newsmast.social,Healthcare,healthcare,false +channyeintun,newsmast.social,Humour,humour,false +channyeintun,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false +channyeintun,newsmast.social,Law & Justice,law_justice,false +channyeintun,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,true +channyeintun,newsmast.social,Nature & Wildlife,nature_wildlife,false +channyeintun,newsmast.social,Pets,pets,false +channyeintun,newsmast.social,Politics,politics,false +channyeintun,newsmast.social,Poverty & Inequality,poverty_inequality,false +channyeintun,newsmast.social,Programming,programming,false +channyeintun,newsmast.social,Puzzles,puzzles,false +channyeintun,newsmast.social,Technology,technology,false +channyeintun,newsmast.social,Travel,travel,false +channyeintun,newsmast.social,US Politics,us_politics,false +alemida44,newsmast.social,AI,ai,false +alemida44,newsmast.social,Breaking News,breaking_news,true +alemida44,newsmast.social,Engineering,engineering,false +alemida44,newsmast.social,Technology,technology,false +alemida44,newsmast.social,Ukraine Invasion,ukraine_invasion,false +Serious_Feather,newsmast.social,History,history,false +Serious_Feather,newsmast.social,Philosophy,philosophy,false +Serious_Feather,newsmast.social,Social Sciences,social_sciences,false +Serious_Feather,newsmast.social,Science,science,false +Serious_Feather,newsmast.social,Space,space,false +Serious_Feather,newsmast.social,Architecture & Design,architecture_design,false +Serious_Feather,newsmast.social,Law & Justice,law_justice,false +Serious_Feather,newsmast.social,Photography,photography,false +Serious_Feather,newsmast.social,Politics,politics,true +Serious_Feather,newsmast.social,Poverty & Inequality,poverty_inequality,false +Serious_Feather,newsmast.social,US Politics,us_politics,false +Serious_Feather,newsmast.social,Gaming,gaming,false +Serious_Feather,newsmast.social,Visual Arts,visual_arts,false +Serious_Feather,newsmast.social,Technology,technology,false +Serious_Feather,newsmast.social,Social Media,social_media,false +Serious_Feather,newsmast.social,Workers Rights,workers_rights,false +Serious_Feather,newsmast.social,Markets & Finance,markets_finance,false +Serious_Feather,newsmast.social,Business,business,false +Serious_Feather,newsmast.social,Movies,movies,false +Serious_Feather,newsmast.social,Music,music,false +Serious_Feather,newsmast.social,Performing Arts,performing_arts,false +Serious_Feather,newsmast.social,Books & Literature,books_literature,false +Serious_Feather,newsmast.social,Humanities,humanities,false +Serious_Feather,newsmast.social,Creative Arts,creative_arts,false +diamondlewis,newsmast.social,Breaking News,breaking_news,false +diamondlewis,newsmast.social,Journalism & Comment,news_comment_data,false +diamondlewis,newsmast.social,Ukraine Invasion,ukraine_invasion,false +diamondlewis,newsmast.social,Weather,weather,false +diamondlewis,newsmast.social,Social Media,social_media,true +familyphysio,newsmast.social,Academia & Research,academia_research,false +familyphysio,newsmast.social,Breaking News,breaking_news,false +familyphysio,newsmast.social,Government & Policy,government_policy,false +familyphysio,newsmast.social,Healthcare,healthcare,false +familyphysio,newsmast.social,Law & Justice,law_justice,true +familyphysio,newsmast.social,Journalism & Comment,news_comment_data,false +familyphysio,newsmast.social,Politics,politics,false +familyphysio,newsmast.social,Social Media,social_media,false +familyphysio,newsmast.social,Ukraine Invasion,ukraine_invasion,false +familyphysio,newsmast.social,US Politics,us_politics,false +familyphysio,newsmast.social,Weather,weather,false +John90,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,true +John90,newsmast.social,Breaking News,breaking_news,false +John90,newsmast.social,Climate change,climate_change,false +John90,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +John90,newsmast.social,Environment,environment,false +collected_cards,newsmast.social,History,history,false +collected_cards,newsmast.social,LGBTQ+,lgbtq,true +collected_cards,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false +collected_cards,newsmast.social,Music,music,false +collected_cards,newsmast.social,Nature & Wildlife,nature_wildlife,false +collected_cards,newsmast.social,Philosophy,philosophy,false +collected_cards,newsmast.social,Social Sciences,social_sciences,false +physioedmonton,newsmast.social,Journalism & Comment,news_comment_data,false +physioedmonton,newsmast.social,Social Media,social_media,false +physioedmonton,newsmast.social,Ukraine Invasion,ukraine_invasion,false +physioedmonton,newsmast.social,Weather,weather,false +physioedmonton,newsmast.social,Breaking News,breaking_news,true +ivan,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false +ivan,newsmast.social,Breaking News,breaking_news,true +ivan,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +ivan,newsmast.social,History,history,false +ivan,newsmast.social,Social Sciences,social_sciences,false +Clarke617,newsmast.social,Academia & Research,academia_research,false +Clarke617,newsmast.social,Breaking News,breaking_news,true +Clarke617,newsmast.social,Creative Arts,creative_arts,false +Clarke617,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +Clarke617,newsmast.social,Food & Drink,food_drink,false +Clarke617,newsmast.social,Government & Policy,government_policy,false +Clarke617,newsmast.social,Healthcare,healthcare,false +Clarke617,newsmast.social,Humour,humour,false +Clarke617,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false +Clarke617,newsmast.social,Law & Justice,law_justice,false +Clarke617,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false +Clarke617,newsmast.social,Nature & Wildlife,nature_wildlife,false +Clarke617,newsmast.social,Journalism & Comment,news_comment_data,false +Clarke617,newsmast.social,Pets,pets,false +Clarke617,newsmast.social,Politics,politics,false +Clarke617,newsmast.social,Poverty & Inequality,poverty_inequality,false +Clarke617,newsmast.social,Puzzles,puzzles,false +Clarke617,newsmast.social,Social Media,social_media,false +Clarke617,newsmast.social,Travel,travel,false +Clarke617,newsmast.social,Ukraine Invasion,ukraine_invasion,false +Clarke617,newsmast.social,US Politics,us_politics,false +Clarke617,newsmast.social,Weather,weather,false +Ypsilenna,newsmast.social,Gaming,gaming,false +Ypsilenna,newsmast.social,Music,music,false +Ypsilenna,newsmast.social,Performing Arts,performing_arts,false +Ypsilenna,newsmast.social,Photography,photography,false +Ypsilenna,newsmast.social,Visual Arts,visual_arts,true +martin3456,newsmast.social,Architecture & Design,architecture_design,false +martin3456,newsmast.social,Biology,biology,false +martin3456,newsmast.social,Books & Literature,books_literature,false +martin3456,newsmast.social,Breaking News,breaking_news,false +martin3456,newsmast.social,Business,business,false +martin3456,newsmast.social,Chemistry,chemistry,false +martin3456,newsmast.social,Creative Arts,creative_arts,false +martin3456,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +martin3456,newsmast.social,Food & Drink,food_drink,false +martin3456,newsmast.social,Football,football,false +martin3456,newsmast.social,Gaming,gaming,false +martin3456,newsmast.social,History,history,false +martin3456,newsmast.social,Humanities,humanities,false +martin3456,newsmast.social,Humour,humour,false +martin3456,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false +martin3456,newsmast.social,Markets & Finance,markets_finance,false +martin3456,newsmast.social,Mathematics,mathematics,false +martin3456,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false +martin3456,newsmast.social,Movies,movies,false +martin3456,newsmast.social,Music,music,false +martin3456,newsmast.social,Nature & Wildlife,nature_wildlife,false +martin3456,newsmast.social,Journalism & Comment,news_comment_data,false +martin3456,newsmast.social,Performing Arts,performing_arts,false +martin3456,newsmast.social,Pets,pets,false +martin3456,newsmast.social,Philosophy,philosophy,false +martin3456,newsmast.social,Photography,photography,false +martin3456,newsmast.social,Physics,physics,false +martin3456,newsmast.social,Poverty & Inequality,poverty_inequality,false +martin3456,newsmast.social,Puzzles,puzzles,false +martin3456,newsmast.social,Science,science,false +martin3456,newsmast.social,Social Media,social_media,false +martin3456,newsmast.social,Social Sciences,social_sciences,false +martin3456,newsmast.social,Space,space,false +martin3456,newsmast.social,Sport,sport,false +martin3456,newsmast.social,Travel,travel,false +martin3456,newsmast.social,TV & Radio,tv_radio,false +martin3456,newsmast.social,Ukraine Invasion,ukraine_invasion,false +martin3456,newsmast.social,US Sport,us_sport,false +martin3456,newsmast.social,Visual Arts,visual_arts,false +martin3456,newsmast.social,Weather,weather,false +martin3456,newsmast.social,Workers Rights,workers_rights,true +sylphrenetic,newsmast.social,Academia & Research,academia_research,false +sylphrenetic,newsmast.social,Philosophy,philosophy,false +sylphrenetic,newsmast.social,Programming,programming,true +sylphrenetic,newsmast.social,Science,science,false +sylphrenetic,newsmast.social,Social Sciences,social_sciences,false +sylphrenetic,newsmast.social,Technology,technology,false +sylphrenetic,newsmast.social,US Politics,us_politics,false +egc25,newsmast.social,Academia & Research,academia_research,false +egc25,newsmast.social,Activism & Civil Rights,activism_civil_rights,false +egc25,newsmast.social,Architecture & Design,architecture_design,false +egc25,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false +egc25,newsmast.social,Black Voices,black_voices,false +egc25,newsmast.social,Books & Literature,books_literature,false +egc25,newsmast.social,Breaking News,breaking_news,false +egc25,newsmast.social,Climate change,climate_change,false +egc25,newsmast.social,Disabled Voices,disabled_voices,false +egc25,newsmast.social,Energy & Pollution,energy_pollution,false +egc25,newsmast.social,Environment,environment,false +egc25,newsmast.social,Gaming,gaming,false +egc25,newsmast.social,Government & Policy,government_policy,false +egc25,newsmast.social,Healthcare,healthcare,false +egc25,newsmast.social,History,history,false +egc25,newsmast.social,Humanities,humanities,false +egc25,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false +egc25,newsmast.social,Immigrants Rights,immigrants_rights,false +egc25,newsmast.social,Indigenous Peoples,indigenous_peoples,false +egc25,newsmast.social,LGBTQ+,lgbtq,false +egc25,newsmast.social,Journalism & Comment,news_comment_data,false +egc25,newsmast.social,Philosophy,philosophy,false +egc25,newsmast.social,Photography,photography,false +egc25,newsmast.social,Poverty & Inequality,poverty_inequality,false +egc25,newsmast.social,Social Media,social_media,false +egc25,newsmast.social,Social Sciences,social_sciences,false +egc25,newsmast.social,Ukraine Invasion,ukraine_invasion,false +egc25,newsmast.social,Weather,weather,false +egc25,newsmast.social,Women’s Voices,women_voices,false +egc25,newsmast.social,Democracy & Human Rights,democracy_human_rights,true +Tyom,newsmast.social,Architecture & Design,architecture_design,false +Tyom,newsmast.social,Breaking News,breaking_news,false +Tyom,newsmast.social,Disabled Voices,disabled_voices,false +Tyom,newsmast.social,Humanities,humanities,false +Tyom,newsmast.social,Philosophy,philosophy,false +Tyom,newsmast.social,Social Sciences,social_sciences,true +emiliafilipowic,newsmast.social,Academia & Research,academia_research,false +emiliafilipowic,newsmast.social,Activism & Civil Rights,activism_civil_rights,false +emiliafilipowic,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false +emiliafilipowic,newsmast.social,Black Voices,black_voices,false +emiliafilipowic,newsmast.social,Breaking News,breaking_news,false +emiliafilipowic,newsmast.social,Business,business,true +emiliafilipowic,newsmast.social,Climate change,climate_change,false +emiliafilipowic,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +emiliafilipowic,newsmast.social,Disabled Voices,disabled_voices,false +emiliafilipowic,newsmast.social,Energy & Pollution,energy_pollution,false +emiliafilipowic,newsmast.social,Environment,environment,false +emiliafilipowic,newsmast.social,Government & Policy,government_policy,false +emiliafilipowic,newsmast.social,Healthcare,healthcare,false +emiliafilipowic,newsmast.social,History,history,false +emiliafilipowic,newsmast.social,Humanities,humanities,false +emiliafilipowic,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false +emiliafilipowic,newsmast.social,Immigrants Rights,immigrants_rights,false +emiliafilipowic,newsmast.social,Indigenous Peoples,indigenous_peoples,false +emiliafilipowic,newsmast.social,Law & Justice,law_justice,false +emiliafilipowic,newsmast.social,LGBTQ+,lgbtq,false +emiliafilipowic,newsmast.social,Markets & Finance,markets_finance,false +emiliafilipowic,newsmast.social,Journalism & Comment,news_comment_data,false +emiliafilipowic,newsmast.social,Philosophy,philosophy,false +emiliafilipowic,newsmast.social,Politics,politics,false +emiliafilipowic,newsmast.social,Poverty & Inequality,poverty_inequality,false +emiliafilipowic,newsmast.social,Social Media,social_media,false +emiliafilipowic,newsmast.social,Social Sciences,social_sciences,false +emiliafilipowic,newsmast.social,Ukraine Invasion,ukraine_invasion,false +emiliafilipowic,newsmast.social,US Politics,us_politics,false +emiliafilipowic,newsmast.social,Weather,weather,false +emiliafilipowic,newsmast.social,Women’s Voices,women_voices,false +emiliafilipowic,newsmast.social,Workers Rights,workers_rights,false +emiliafilipowic,newsmast.social,Gaming,gaming,false +0fj0,newsmast.social,Breaking News,breaking_news,true +0fj0,newsmast.social,Markets & Finance,markets_finance,false +0fj0,newsmast.social,Journalism & Comment,news_comment_data,false +0fj0,newsmast.social,Social Media,social_media,false +0fj0,newsmast.social,Technology,technology,false +0fj0,newsmast.social,Ukraine Invasion,ukraine_invasion,false +iop5,newsmast.social,Academia & Research,academia_research,false +iop5,newsmast.social,Democracy & Human Rights,democracy_human_rights,true +iop5,newsmast.social,Government & Policy,government_policy,false +iop5,newsmast.social,Healthcare,healthcare,false +iop5,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false +iop5,newsmast.social,Poverty & Inequality,poverty_inequality,false +sunrisephysio,newsmast.social,Business,business,true +sunrisephysio,newsmast.social,Football,football,false +sunrisephysio,newsmast.social,History,history,false +sunrisephysio,newsmast.social,Humanities,humanities,false +sunrisephysio,newsmast.social,Markets & Finance,markets_finance,false +sunrisephysio,newsmast.social,Philosophy,philosophy,false +sunrisephysio,newsmast.social,Social Sciences,social_sciences,false +sunrisephysio,newsmast.social,Sport,sport,false +sunrisephysio,newsmast.social,US Sport,us_sport,false +sunrisephysio,newsmast.social,Workers Rights,workers_rights,false +teowawki,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false +teowawki,newsmast.social,Biology,biology,false +teowawki,newsmast.social,Breaking News,breaking_news,true +teowawki,newsmast.social,Climate change,climate_change,false +teowawki,newsmast.social,Energy & Pollution,energy_pollution,false +teowawki,newsmast.social,Environment,environment,false +teowawki,newsmast.social,Government & Policy,government_policy,false +teowawki,newsmast.social,History,history,false +teowawki,newsmast.social,Philosophy,philosophy,false +teowawki,newsmast.social,Science,science,false +teowawki,newsmast.social,Social Sciences,social_sciences,false +teowawki,newsmast.social,Space,space,false +teowawki,newsmast.social,Technology,technology,false +teowawki,newsmast.social,US Politics,us_politics,false +tuckerm,newsmast.social,Pets,pets,false +tuckerm,newsmast.social,Biology,biology,false +tuckerm,newsmast.social,Breaking News,breaking_news,false +tuckerm,newsmast.social,Chemistry,chemistry,false +tuckerm,newsmast.social,History,history,false +tuckerm,newsmast.social,Humanities,humanities,false +tuckerm,newsmast.social,Mathematics,mathematics,false +tuckerm,newsmast.social,Journalism & Comment,news_comment_data,true +tuckerm,newsmast.social,Philosophy,philosophy,false +tuckerm,newsmast.social,Physics,physics,false +tuckerm,newsmast.social,Science,science,false +tuckerm,newsmast.social,Social Media,social_media,false +tuckerm,newsmast.social,Social Sciences,social_sciences,false +tuckerm,newsmast.social,Space,space,false +tuckerm,newsmast.social,Ukraine Invasion,ukraine_invasion,false +tuckerm,newsmast.social,US Sport,us_sport,false +tuckerm,newsmast.social,Weather,weather,false +tuckerm,newsmast.social,Puzzles,puzzles,false +BlesthThySoul,newsmast.social,Breaking News,breaking_news,true +BlesthThySoul,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +BlesthThySoul,newsmast.social,Government & Policy,government_policy,false +BlesthThySoul,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false +BlesthThySoul,newsmast.social,Law & Justice,law_justice,false +BlesthThySoul,newsmast.social,Journalism & Comment,news_comment_data,false +BlesthThySoul,newsmast.social,Politics,politics,false +BlesthThySoul,newsmast.social,Poverty & Inequality,poverty_inequality,false +BlesthThySoul,newsmast.social,Ukraine Invasion,ukraine_invasion,false +BlesthThySoul,newsmast.social,US Politics,us_politics,false +BlesthThySoul,newsmast.social,Programming,programming,false +keithramsey,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false +keithramsey,newsmast.social,Books & Literature,books_literature,false +keithramsey,newsmast.social,Climate change,climate_change,false +keithramsey,newsmast.social,Energy & Pollution,energy_pollution,false +keithramsey,newsmast.social,History,history,true +keithramsey,newsmast.social,Humanities,humanities,false +keithramsey,newsmast.social,Photography,photography,false +keithramsey,newsmast.social,Science,science,false +keithramsey,newsmast.social,Environment,environment,false +keithramsey,newsmast.social,Journalism & Comment,news_comment_data,false +keithramsey,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +keithramsey,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false +keithramsey,newsmast.social,Poverty & Inequality,poverty_inequality,false +keithramsey,newsmast.social,Activism & Civil Rights,activism_civil_rights,false +keithramsey,newsmast.social,Women’s Voices,women_voices,false +keithramsey,newsmast.social,LGBTQ+,lgbtq,false +keithramsey,newsmast.social,Indigenous Peoples,indigenous_peoples,false +keithramsey,newsmast.social,Immigrants Rights,immigrants_rights,false +keithramsey,newsmast.social,Disabled Voices,disabled_voices,false +keithramsey,newsmast.social,Black Voices,black_voices,false +keithramsey,newsmast.social,Architecture & Design,architecture_design,false +keithramsey,newsmast.social,Visual Arts,visual_arts,false +keithramsey,newsmast.social,Creative Arts,creative_arts,false +keithramsey,newsmast.social,Nature & Wildlife,nature_wildlife,false +Sahqon,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false +Sahqon,newsmast.social,Biology,biology,false +Sahqon,newsmast.social,Breaking News,breaking_news,false +Sahqon,newsmast.social,Climate change,climate_change,false +Sahqon,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +Sahqon,newsmast.social,Energy & Pollution,energy_pollution,false +Sahqon,newsmast.social,Environment,environment,false +Sahqon,newsmast.social,Government & Policy,government_policy,false +Sahqon,newsmast.social,Physics,physics,false +Sahqon,newsmast.social,Science,science,true emuwasabi,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false emuwasabi,newsmast.social,Climate change,climate_change,false emuwasabi,newsmast.social,Democracy & Human Rights,democracy_human_rights,false emuwasabi,newsmast.social,Energy & Pollution,energy_pollution,false emuwasabi,newsmast.social,Environment,environment,false emuwasabi,newsmast.social,US Politics,us_politics,true -gedvondur,hulvr.com,AI,ai,false -gedvondur,hulvr.com,Biology,biology,false -gedvondur,hulvr.com,Breaking News,breaking_news,false -gedvondur,hulvr.com,Business,business,false -gedvondur,hulvr.com,Chemistry,chemistry,false -gedvondur,hulvr.com,Engineering,engineering,false -gedvondur,hulvr.com,Journalism & Comment,news_comment_data,false -gedvondur,hulvr.com,Physics,physics,false -gedvondur,hulvr.com,Science,science,false -gedvondur,hulvr.com,Social Media,social_media,false -gedvondur,hulvr.com,Space,space,false -gedvondur,hulvr.com,Workers Rights,workers_rights,false -gedvondur,hulvr.com,Technology,technology,true -Radio_Progres,piaille.fr,Environment,environment,true -Radio_Progres,piaille.fr,TV & Radio,tv_radio,false -Radio_Progres,piaille.fr,Breaking News,breaking_news,false -kaerypheur,newsmast.social,Academia & Research,academia_research,false -kaerypheur,newsmast.social,Activism & Civil Rights,activism_civil_rights,false -kaerypheur,newsmast.social,AI,ai,false -kaerypheur,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false -kaerypheur,newsmast.social,Biology,biology,false -kaerypheur,newsmast.social,Breaking News,breaking_news,false -kaerypheur,newsmast.social,Business,business,false -kaerypheur,newsmast.social,Climate change,climate_change,false -DerekL,mastodonapp.uk,Climate change,climate_change,false -DerekL,mastodonapp.uk,Engineering,engineering,false -DerekL,mastodonapp.uk,Mathematics,mathematics,false -DerekL,mastodonapp.uk,Physics,physics,false -DerekL,mastodonapp.uk,Programming,programming,false -DerekL,mastodonapp.uk,Science,science,false -DerekL,mastodonapp.uk,Space,space,false -DerekL,mastodonapp.uk,Technology,technology,true -TheJamieDub1,mastodon.world,Activism & Civil Rights,activism_civil_rights,false -TheJamieDub1,mastodon.world,Books & Literature,books_literature,false -TheJamieDub1,mastodon.world,Breaking News,breaking_news,false -TheJamieDub1,mastodon.world,Business,business,false -TheJamieDub1,mastodon.world,Democracy & Human Rights,democracy_human_rights,false -TheJamieDub1,mastodon.world,Engineering,engineering,false -TheJamieDub1,mastodon.world,Gaming,gaming,false -TheJamieDub1,mastodon.world,Government & Policy,government_policy,false -TheJamieDub1,mastodon.world,Healthcare,healthcare,false -TheJamieDub1,mastodon.world,History,history,false -TheJamieDub1,mastodon.world,Humanities,humanities,false -TheJamieDub1,mastodon.world,LGBTQ+,lgbtq,false -TheJamieDub1,mastodon.world,Politics,politics,false -TheJamieDub1,mastodon.world,Social Sciences,social_sciences,false -TheJamieDub1,mastodon.world,Technology,technology,false -TheJamieDub1,mastodon.world,Weather,weather,false -TheJamieDub1,mastodon.world,Workers Rights,workers_rights,false -TheJamieDub1,mastodon.world,Markets & Finance,markets_finance,true -muhammedkizilkaya,sosyal.nextconnect.app,Environment,environment,false -pjoter9,newsmast.social,Academia & Research,academia_research,false -pjoter9,newsmast.social,Activism & Civil Rights,activism_civil_rights,false -pjoter9,newsmast.social,Architecture & Design,architecture_design,false -pjoter9,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false -pjoter9,newsmast.social,Biology,biology,false -pjoter9,newsmast.social,Black Voices,black_voices,false -pjoter9,newsmast.social,Breaking News,breaking_news,false -pjoter9,newsmast.social,Climate change,climate_change,false -pjoter9,newsmast.social,Creative Arts,creative_arts,false -pjoter9,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -pjoter9,newsmast.social,Disabled Voices,disabled_voices,false -pjoter9,newsmast.social,Energy & Pollution,energy_pollution,false -pjoter9,newsmast.social,Engineering,engineering,false -pjoter9,newsmast.social,Environment,environment,false -pjoter9,newsmast.social,Gaming,gaming,false -pjoter9,newsmast.social,Government & Policy,government_policy,false -pjoter9,newsmast.social,Healthcare,healthcare,false -pjoter9,newsmast.social,History,history,false -pjoter9,newsmast.social,Humanities,humanities,false -pjoter9,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false -pjoter9,newsmast.social,Immigrants Rights,immigrants_rights,false -pjoter9,newsmast.social,Indigenous Peoples,indigenous_peoples,false -pjoter9,newsmast.social,Law & Justice,law_justice,false -pjoter9,newsmast.social,LGBTQ+,lgbtq,false -pjoter9,newsmast.social,Movies,movies,false -pjoter9,newsmast.social,Music,music,false -pjoter9,newsmast.social,Nature & Wildlife,nature_wildlife,false -pjoter9,newsmast.social,Journalism & Comment,news_comment_data,false -pjoter9,newsmast.social,Performing Arts,performing_arts,false -pjoter9,newsmast.social,Pets,pets,false -pjoter9,newsmast.social,Philosophy,philosophy,false -pjoter9,newsmast.social,Photography,photography,false -pjoter9,newsmast.social,Politics,politics,false -pjoter9,newsmast.social,Poverty & Inequality,poverty_inequality,false -pjoter9,newsmast.social,Programming,programming,false -pjoter9,newsmast.social,Science,science,false -pjoter9,newsmast.social,Social Media,social_media,false -pjoter9,newsmast.social,Social Sciences,social_sciences,false -pjoter9,newsmast.social,Space,space,false -pjoter9,newsmast.social,Technology,technology,false -pjoter9,newsmast.social,TV & Radio,tv_radio,false -pjoter9,newsmast.social,Ukraine Invasion,ukraine_invasion,false -pjoter9,newsmast.social,US Politics,us_politics,false -pjoter9,newsmast.social,Visual Arts,visual_arts,false -pjoter9,newsmast.social,Weather,weather,false -pjoter9,newsmast.social,Women’s Voices,women_voices,false -pjoter9,newsmast.social,Books & Literature,books_literature,true -channyeintun,mastodon.social,Academia & Research,academia_research,false -channyeintun,mastodon.social,Breaking News,breaking_news,false -channyeintun,mastodon.social,Healthcare,healthcare,false -channyeintun,mastodon.social,Law & Justice,law_justice,false -channyeintun,mastodon.social,Journalism & Comment,news_comment_data,false -channyeintun,mastodon.social,Politics,politics,false -channyeintun,mastodon.social,Social Media,social_media,false -channyeintun,mastodon.social,Ukraine Invasion,ukraine_invasion,false -channyeintun,mastodon.social,US Politics,us_politics,false -channyeintun,mastodon.social,Weather,weather,false -channyeintun,mastodon.social,Government & Policy,government_policy,true -Ypsilenna,mastodon.social,Gaming,gaming,false -Ypsilenna,mastodon.social,Music,music,false -Ypsilenna,mastodon.social,Performing Arts,performing_arts,false -Ypsilenna,mastodon.social,Photography,photography,false -Ypsilenna,mastodon.social,Visual Arts,visual_arts,true -GersonDeWinter,mastodon.social,Mathematics,mathematics,false -GersonDeWinter,mastodon.social,Physics,physics,false -GersonDeWinter,mastodon.social,Programming,programming,false -GersonDeWinter,mastodon.social,Space,space,false -GersonDeWinter,mastodon.social,AI,ai,true -mini_panini,Mastodon.social,AI,ai,false -mini_panini,Mastodon.social,Business,business,false -mini_panini,Mastodon.social,Markets & Finance,markets_finance,false -mini_panini,Mastodon.social,Science,science,false -mini_panini,Mastodon.social,Technology,technology,true -ldcolton,masto.ai,Academia & Research,academia_research,false -ldcolton,masto.ai,Activism & Civil Rights,activism_civil_rights,false -ldcolton,masto.ai,Biodiversity & Rewilding,biodiversity_rewilding,false -ldcolton,masto.ai,Biology,biology,false -ldcolton,masto.ai,Black Voices,black_voices,false -ldcolton,masto.ai,Books & Literature,books_literature,false -ldcolton,masto.ai,Chemistry,chemistry,false -ldcolton,masto.ai,Climate change,climate_change,false -ldcolton,masto.ai,Democracy & Human Rights,democracy_human_rights,false -ldcolton,masto.ai,Disabled Voices,disabled_voices,false -ldcolton,masto.ai,Energy & Pollution,energy_pollution,false -ldcolton,masto.ai,Environment,environment,false -ldcolton,masto.ai,Football,football,false -ldcolton,masto.ai,Gaming,gaming,false -ldcolton,masto.ai,Government & Policy,government_policy,false -ldcolton,masto.ai,Healthcare,healthcare,false -ldcolton,masto.ai,Immigrants Rights,immigrants_rights,false -ldcolton,masto.ai,Indigenous Peoples,indigenous_peoples,false -ldcolton,masto.ai,Law & Justice,law_justice,false -ldcolton,masto.ai,LGBTQ+,lgbtq,false -ldcolton,masto.ai,Movies,movies,false -ldcolton,masto.ai,Music,music,false -ldcolton,masto.ai,Journalism & Comment,news_comment_data,false -ldcolton,masto.ai,Performing Arts,performing_arts,false -ldcolton,masto.ai,Photography,photography,false -ldcolton,masto.ai,Physics,physics,false -ldcolton,masto.ai,Politics,politics,false -ldcolton,masto.ai,Poverty & Inequality,poverty_inequality,false -ldcolton,masto.ai,Science,science,false -ldcolton,masto.ai,Space,space,false -ldcolton,masto.ai,Technology,technology,false -ldcolton,masto.ai,TV & Radio,tv_radio,false -ldcolton,masto.ai,Ukraine Invasion,ukraine_invasion,false -ldcolton,masto.ai,US Politics,us_politics,false -ldcolton,masto.ai,US Sport,us_sport,false -ldcolton,masto.ai,Visual Arts,visual_arts,false -ldcolton,masto.ai,Weather,weather,false -ldcolton,masto.ai,Women’s Voices,women_voices,false -ldcolton,masto.ai,Breaking News,breaking_news,true -bval,tinnies.club,Journalism & Comment,news_comment_data,false -bval,tinnies.club,Science,science,false -bval,tinnies.club,Space,space,false -bval,tinnies.club,Technology,technology,false -bval,tinnies.club,Breaking News,breaking_news,true -ravelin,mindly.social,Activism & Civil Rights,activism_civil_rights,false -ravelin,mindly.social,Biology,biology,false -ravelin,mindly.social,Black Voices,black_voices,false -ravelin,mindly.social,Breaking News,breaking_news,false -ravelin,mindly.social,Chemistry,chemistry,false -ravelin,mindly.social,Disabled Voices,disabled_voices,false -ravelin,mindly.social,Immigrants Rights,immigrants_rights,false -ravelin,mindly.social,Indigenous Peoples,indigenous_peoples,false -ravelin,mindly.social,LGBTQ+,lgbtq,false -ravelin,mindly.social,Mathematics,mathematics,false -ravelin,mindly.social,Physics,physics,false -ravelin,mindly.social,Science,science,false -ravelin,mindly.social,Women’s Voices,women_voices,false -ravelin,mindly.social,Space,space,true -LukaszHorodecki,mastodon.com.pl,Biodiversity & Rewilding,biodiversity_rewilding,false -LukaszHorodecki,mastodon.com.pl,Gaming,gaming,false -LukaszHorodecki,mastodon.com.pl,Movies,movies,false -s74rdus7,mastodon.social,US Politics,us_politics,true -LukaszHorodecki,mastodon.com.pl,Breaking News,breaking_news,false -LukaszHorodecki,mastodon.com.pl,Climate change,climate_change,true -alemida44,newsmast.social,AI,ai,false -alemida44,newsmast.social,Engineering,engineering,false -alemida44,newsmast.social,Technology,technology,false -alemida44,newsmast.social,Ukraine Invasion,ukraine_invasion,false -jl_fl,mastodon.social,Biodiversity & Rewilding,biodiversity_rewilding,false -jl_fl,mastodon.social,Environment,environment,false -jl_fl,mastodon.social,Science,science,false -jl_fl,mastodon.social,Space,space,false -alemida44,newsmast.social,Breaking News,breaking_news,true -danielsuguwa,mstdn.party,Engineering,engineering,false -danielsuguwa,mstdn.party,Gaming,gaming,false -danielsuguwa,mstdn.party,Physics,physics,false -danielsuguwa,mstdn.party,Programming,programming,false -danielsuguwa,mstdn.party,Space,space,true -s74rdus7,mastodon.social,Breaking News,breaking_news,false -s74rdus7,mastodon.social,Politics,politics,false -s74rdus7,mastodon.social,Science,science,false -s74rdus7,mastodon.social,Space,space,false -josef_huber,mastodon.social,Food & Drink,food_drink,false -josef_huber,mastodon.social,Humour,humour,false -josef_huber,mastodon.social,Programming,programming,false -josef_huber,mastodon.social,Science,science,false -josef_huber,mastodon.social,AI,ai,true -Bassey_Ijomanta,newsmast.social,Academia & Research,academia_research,false -Bassey_Ijomanta,newsmast.social,Government & Policy,government_policy,false -Bassey_Ijomanta,newsmast.social,Politics,politics,false -Bassey_Ijomanta,newsmast.social,US Politics,us_politics,false -Bassey_Ijomanta,newsmast.social,Social Sciences,social_sciences,true -jl_fl,mastodon.social,Climate change,climate_change,false -jl_fl,mastodon.social,Nature & Wildlife,nature_wildlife,false -lucia_efsun,@mastodon.social,Academia & Research,academia_research,false -lucia_efsun,@mastodon.social,Activism & Civil Rights,activism_civil_rights,false -lucia_efsun,@mastodon.social,AI,ai,false -lucia_efsun,@mastodon.social,Architecture & Design,architecture_design,false -lucia_efsun,@mastodon.social,Biodiversity & Rewilding,biodiversity_rewilding,false -lucia_efsun,@mastodon.social,Biology,biology,false -lucia_efsun,@mastodon.social,Black Voices,black_voices,false -lucia_efsun,@mastodon.social,Books & Literature,books_literature,false -lucia_efsun,@mastodon.social,Breaking News,breaking_news,false -lucia_efsun,@mastodon.social,Business,business,false -lucia_efsun,@mastodon.social,Chemistry,chemistry,false -lucia_efsun,@mastodon.social,Climate change,climate_change,false -lucia_efsun,@mastodon.social,Creative Arts,creative_arts,false -lucia_efsun,@mastodon.social,Democracy & Human Rights,democracy_human_rights,false -lucia_efsun,@mastodon.social,Disabled Voices,disabled_voices,false -lucia_efsun,@mastodon.social,Energy & Pollution,energy_pollution,false -lucia_efsun,@mastodon.social,Engineering,engineering,false -lucia_efsun,@mastodon.social,Environment,environment,false -lucia_efsun,@mastodon.social,Food & Drink,food_drink,false -lucia_efsun,@mastodon.social,Gaming,gaming,false -lucia_efsun,@mastodon.social,Government & Policy,government_policy,false -lucia_efsun,@mastodon.social,Healthcare,healthcare,false -lucia_efsun,@mastodon.social,History,history,false -lucia_efsun,@mastodon.social,Humanities,humanities,false -lucia_efsun,@mastodon.social,Humour,humour,false -lucia_efsun,@mastodon.social,"Hunger, Disease & Water",hunger_disease_water,false -lucia_efsun,@mastodon.social,Immigrants Rights,immigrants_rights,false -lucia_efsun,@mastodon.social,Indigenous Peoples,indigenous_peoples,false -lucia_efsun,@mastodon.social,Law & Justice,law_justice,false -lucia_efsun,@mastodon.social,LGBTQ+,lgbtq,false -lucia_efsun,@mastodon.social,Markets & Finance,markets_finance,false -lucia_efsun,@mastodon.social,Mathematics,mathematics,false -lucia_efsun,@mastodon.social,Mental Health & Wellbeing,mental_health_wellbeing,false -lucia_efsun,@mastodon.social,Movies,movies,false -lucia_efsun,@mastodon.social,Music,music,false -lucia_efsun,@mastodon.social,Nature & Wildlife,nature_wildlife,false -lucia_efsun,@mastodon.social,Journalism & Comment,news_comment_data,false -lucia_efsun,@mastodon.social,Performing Arts,performing_arts,false -lucia_efsun,@mastodon.social,Pets,pets,false -lucia_efsun,@mastodon.social,Philosophy,philosophy,false -lucia_efsun,@mastodon.social,Photography,photography,false -lucia_efsun,@mastodon.social,Physics,physics,false -lucia_efsun,@mastodon.social,Politics,politics,false -lucia_efsun,@mastodon.social,Poverty & Inequality,poverty_inequality,false -lucia_efsun,@mastodon.social,Programming,programming,false -lucia_efsun,@mastodon.social,Puzzles,puzzles,false -lucia_efsun,@mastodon.social,Science,science,false -lucia_efsun,@mastodon.social,Social Media,social_media,false -lucia_efsun,@mastodon.social,Social Sciences,social_sciences,false -lucia_efsun,@mastodon.social,Space,space,false -lucia_efsun,@mastodon.social,Technology,technology,false -lucia_efsun,@mastodon.social,Travel,travel,false -lucia_efsun,@mastodon.social,TV & Radio,tv_radio,false -lucia_efsun,@mastodon.social,US Politics,us_politics,false -lucia_efsun,@mastodon.social,Visual Arts,visual_arts,false -lucia_efsun,@mastodon.social,Weather,weather,false -lucia_efsun,@mastodon.social,Workers Rights,workers_rights,false -lucia_efsun,@mastodon.social,Women’s Voices,women_voices,true -JenniferLLawson,newsmast.social,Activism & Civil Rights,activism_civil_rights,false -JenniferLLawson,newsmast.social,AI,ai,false -JenniferLLawson,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false -JenniferLLawson,newsmast.social,Biology,biology,false -JenniferLLawson,newsmast.social,Black Voices,black_voices,false -JenniferLLawson,newsmast.social,Business,business,false -JenniferLLawson,newsmast.social,Chemistry,chemistry,false -JenniferLLawson,newsmast.social,Climate change,climate_change,false -JenniferLLawson,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -JenniferLLawson,newsmast.social,Disabled Voices,disabled_voices,false -JenniferLLawson,newsmast.social,Energy & Pollution,energy_pollution,false -JenniferLLawson,newsmast.social,Engineering,engineering,false -JenniferLLawson,newsmast.social,Environment,environment,false -JenniferLLawson,newsmast.social,Government & Policy,government_policy,false -JenniferLLawson,newsmast.social,Healthcare,healthcare,false -JenniferLLawson,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false -JenniferLLawson,newsmast.social,Immigrants Rights,immigrants_rights,false -JenniferLLawson,newsmast.social,Indigenous Peoples,indigenous_peoples,false -JenniferLLawson,newsmast.social,Law & Justice,law_justice,false -JenniferLLawson,newsmast.social,LGBTQ+,lgbtq,false -JenniferLLawson,newsmast.social,Markets & Finance,markets_finance,false -JenniferLLawson,newsmast.social,Mathematics,mathematics,true -ameliawampler,mastodon.social,AI,ai,false -ameliawampler,mastodon.social,Business,business,false -ameliawampler,mastodon.social,History,history,false -ameliawampler,mastodon.social,Philosophy,philosophy,false -ameliawampler,mastodon.social,Science,science,false -ameliawampler,mastodon.social,Space,space,false -ameliawampler,mastodon.social,Sport,sport,false -ameliawampler,mastodon.social,Technology,technology,false -ameliawampler,mastodon.social,Programming,programming,true -JenniferLLawson,newsmast.social,Physics,physics,false -JenniferLLawson,newsmast.social,Politics,politics,false -JenniferLLawson,newsmast.social,Poverty & Inequality,poverty_inequality,false -JenniferLLawson,newsmast.social,Programming,programming,false -JenniferLLawson,newsmast.social,Science,science,false -JenniferLLawson,newsmast.social,Space,space,false -JenniferLLawson,newsmast.social,Technology,technology,false -JenniferLLawson,newsmast.social,US Politics,us_politics,false -JenniferLLawson,newsmast.social,Women’s Voices,women_voices,false -JenniferLLawson,newsmast.social,Workers Rights,workers_rights,false -fas_dan,mastodon.social,Weather,weather,false -Linda,kind.social,Food & Drink,food_drink,false -Linda,kind.social,Mental Health & Wellbeing,mental_health_wellbeing,false -Linda,kind.social,Journalism & Comment,news_comment_data,false -Linda,kind.social,Social Media,social_media,false -Linda,kind.social,Breaking News,breaking_news,true -Rowena,mathstodon.xyz,Biology,biology,false -Rowena,mathstodon.xyz,Chemistry,chemistry,false -Rowena,mathstodon.xyz,Physics,physics,false -Rowena,mathstodon.xyz,Science,science,false -Rowena,mathstodon.xyz,Space,space,false -Rowena,mathstodon.xyz,Mathematics,mathematics,true -gyrusinczky,flipboard.social,Activism & Civil Rights,activism_civil_rights,false -gyrusinczky,flipboard.social,Architecture & Design,architecture_design,false -gyrusinczky,flipboard.social,Biodiversity & Rewilding,biodiversity_rewilding,false -gyrusinczky,flipboard.social,Biology,biology,false -gyrusinczky,flipboard.social,Black Voices,black_voices,false -gyrusinczky,flipboard.social,Books & Literature,books_literature,false -gyrusinczky,flipboard.social,Chemistry,chemistry,false -gyrusinczky,flipboard.social,Creative Arts,creative_arts,false -gyrusinczky,flipboard.social,Energy & Pollution,energy_pollution,false -gyrusinczky,flipboard.social,History,history,false -gyrusinczky,flipboard.social,Humanities,humanities,false -gyrusinczky,flipboard.social,Mathematics,mathematics,false -gyrusinczky,flipboard.social,Mental Health & Wellbeing,mental_health_wellbeing,false -gyrusinczky,flipboard.social,Nature & Wildlife,nature_wildlife,false -gyrusinczky,flipboard.social,Philosophy,philosophy,false -gyrusinczky,flipboard.social,Photography,photography,false -gyrusinczky,flipboard.social,Physics,physics,false -gyrusinczky,flipboard.social,Science,science,false -gyrusinczky,flipboard.social,Social Sciences,social_sciences,false -gyrusinczky,flipboard.social,Travel,travel,false -gyrusinczky,flipboard.social,Visual Arts,visual_arts,false -gyrusinczky,flipboard.social,Women’s Voices,women_voices,false -gyrusinczky,flipboard.social,Environment,environment,true -nidalamer,mastodon.social,Architecture & Design,architecture_design,false -nidalamer,mastodon.social,Biodiversity & Rewilding,biodiversity_rewilding,false -nidalamer,mastodon.social,Books & Literature,books_literature,false -nidalamer,mastodon.social,Climate change,climate_change,false -nidalamer,mastodon.social,Creative Arts,creative_arts,false -nidalamer,mastodon.social,Democracy & Human Rights,democracy_human_rights,false -nidalamer,mastodon.social,Engineering,engineering,false -nidalamer,mastodon.social,Environment,environment,false -nidalamer,mastodon.social,History,history,false -nidalamer,mastodon.social,Humanities,humanities,false -nidalamer,mastodon.social,Humour,humour,false -nidalamer,mastodon.social,Mental Health & Wellbeing,mental_health_wellbeing,false -nidalamer,mastodon.social,Movies,movies,false -nidalamer,mastodon.social,Nature & Wildlife,nature_wildlife,false -nidalamer,mastodon.social,Journalism & Comment,news_comment_data,false -nidalamer,mastodon.social,Performing Arts,performing_arts,false -nidalamer,mastodon.social,Philosophy,philosophy,false -nidalamer,mastodon.social,Politics,politics,false -nidalamer,mastodon.social,Poverty & Inequality,poverty_inequality,false -nidalamer,mastodon.social,Programming,programming,false -nidalamer,mastodon.social,Science,science,false -nidalamer,mastodon.social,Social Sciences,social_sciences,false -nidalamer,mastodon.social,Technology,technology,false -nidalamer,mastodon.social,Travel,travel,false -nidalamer,mastodon.social,Visual Arts,visual_arts,false -nidalamer,mastodon.social,Activism & Civil Rights,activism_civil_rights,true -lilythelonelygirl,tootworld.social,Breaking News,breaking_news,false -lilythelonelygirl,tootworld.social,Biodiversity & Rewilding,biodiversity_rewilding,false -lilythelonelygirl,tootworld.social,Business,business,false -lilythelonelygirl,tootworld.social,Climate change,climate_change,false -lilythelonelygirl,tootworld.social,Energy & Pollution,energy_pollution,false -lilythelonelygirl,tootworld.social,Environment,environment,false -lilythelonelygirl,tootworld.social,Markets & Finance,markets_finance,false -lilythelonelygirl,tootworld.social,Journalism & Comment,news_comment_data,false -lilythelonelygirl,tootworld.social,Ukraine Invasion,ukraine_invasion,false -lilythelonelygirl,tootworld.social,Weather,weather,false -lilythelonelygirl,tootworld.social,Workers Rights,workers_rights,false -lilythelonelygirl,tootworld.social,Social Media,social_media,true -nijicat,newsmast.social,Academia & Research,academia_research,false -nijicat,newsmast.social,Activism & Civil Rights,activism_civil_rights,false -nijicat,newsmast.social,Architecture & Design,architecture_design,false -nijicat,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false -nijicat,newsmast.social,Biology,biology,false -nijicat,newsmast.social,Black Voices,black_voices,false -nijicat,newsmast.social,Books & Literature,books_literature,false -nijicat,newsmast.social,Breaking News,breaking_news,false -nijicat,newsmast.social,Business,business,false -nijicat,newsmast.social,Chemistry,chemistry,false -nijicat,newsmast.social,Climate change,climate_change,false -nijicat,newsmast.social,Creative Arts,creative_arts,false -nijicat,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -nijicat,newsmast.social,Disabled Voices,disabled_voices,false -nijicat,newsmast.social,Energy & Pollution,energy_pollution,false -nijicat,newsmast.social,Engineering,engineering,false -nijicat,newsmast.social,Environment,environment,false -nijicat,newsmast.social,Food & Drink,food_drink,false -nijicat,newsmast.social,Football,football,false -nijicat,newsmast.social,Gaming,gaming,false -nijicat,newsmast.social,Government & Policy,government_policy,false -nijicat,newsmast.social,Healthcare,healthcare,false -nijicat,newsmast.social,History,history,false -nijicat,newsmast.social,Humanities,humanities,false -nijicat,newsmast.social,Humour,humour,false -nijicat,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false -nijicat,newsmast.social,Immigrants Rights,immigrants_rights,false -nijicat,newsmast.social,Indigenous Peoples,indigenous_peoples,false -nijicat,newsmast.social,Law & Justice,law_justice,false -nijicat,newsmast.social,LGBTQ+,lgbtq,false -nijicat,newsmast.social,Markets & Finance,markets_finance,false -nijicat,newsmast.social,Mathematics,mathematics,false -nijicat,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false -nijicat,newsmast.social,Movies,movies,false -nijicat,newsmast.social,Music,music,false -nijicat,newsmast.social,Nature & Wildlife,nature_wildlife,false -nijicat,newsmast.social,Journalism & Comment,news_comment_data,false -nijicat,newsmast.social,Performing Arts,performing_arts,false -nijicat,newsmast.social,Pets,pets,false -nijicat,newsmast.social,Philosophy,philosophy,false -nijicat,newsmast.social,Photography,photography,false -nijicat,newsmast.social,Physics,physics,false -nijicat,newsmast.social,Politics,politics,false -nijicat,newsmast.social,Poverty & Inequality,poverty_inequality,false -nijicat,newsmast.social,Programming,programming,false -nijicat,newsmast.social,Puzzles,puzzles,false -nijicat,newsmast.social,Science,science,false -nijicat,newsmast.social,Social Media,social_media,false -nijicat,newsmast.social,Social Sciences,social_sciences,false -nijicat,newsmast.social,Space,space,false -nijicat,newsmast.social,Sport,sport,false -nijicat,newsmast.social,Technology,technology,false -nijicat,newsmast.social,Travel,travel,false -nijicat,newsmast.social,TV & Radio,tv_radio,false -nijicat,newsmast.social,Ukraine Invasion,ukraine_invasion,false -nijicat,newsmast.social,US Politics,us_politics,false -nijicat,newsmast.social,US Sport,us_sport,false -nijicat,newsmast.social,Visual Arts,visual_arts,false -nijicat,newsmast.social,Weather,weather,false -nijicat,newsmast.social,Women’s Voices,women_voices,false -nijicat,newsmast.social,Workers Rights,workers_rights,false -nijicat,newsmast.social,AI,ai,true -fas_dan,mastodon.social,Breaking News,breaking_news,false +burnitdownpls,newsmast.social,Academia & Research,academia_research,true +burnitdownpls,newsmast.social,Architecture & Design,architecture_design,false +burnitdownpls,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false +burnitdownpls,newsmast.social,Biology,biology,false +burnitdownpls,newsmast.social,Books & Literature,books_literature,false +burnitdownpls,newsmast.social,Breaking News,breaking_news,false +burnitdownpls,newsmast.social,Chemistry,chemistry,false +burnitdownpls,newsmast.social,Climate change,climate_change,false +burnitdownpls,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +burnitdownpls,newsmast.social,Energy & Pollution,energy_pollution,false +burnitdownpls,newsmast.social,Environment,environment,false +burnitdownpls,newsmast.social,Gaming,gaming,false +burnitdownpls,newsmast.social,Government & Policy,government_policy,false +burnitdownpls,newsmast.social,Healthcare,healthcare,false +burnitdownpls,newsmast.social,History,history,false +burnitdownpls,newsmast.social,Humanities,humanities,false +burnitdownpls,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false +burnitdownpls,newsmast.social,Law & Justice,law_justice,false +burnitdownpls,newsmast.social,Mathematics,mathematics,false +burnitdownpls,newsmast.social,Movies,movies,false +burnitdownpls,newsmast.social,Music,music,false +burnitdownpls,newsmast.social,Journalism & Comment,news_comment_data,false +burnitdownpls,newsmast.social,Performing Arts,performing_arts,false +burnitdownpls,newsmast.social,Philosophy,philosophy,false +burnitdownpls,newsmast.social,Photography,photography,false +burnitdownpls,newsmast.social,Physics,physics,false +burnitdownpls,newsmast.social,Politics,politics,false +burnitdownpls,newsmast.social,Poverty & Inequality,poverty_inequality,false +burnitdownpls,newsmast.social,Science,science,false +burnitdownpls,newsmast.social,Social Media,social_media,false +burnitdownpls,newsmast.social,Social Sciences,social_sciences,false +burnitdownpls,newsmast.social,Space,space,false +burnitdownpls,newsmast.social,TV & Radio,tv_radio,false +burnitdownpls,newsmast.social,Ukraine Invasion,ukraine_invasion,false +burnitdownpls,newsmast.social,US Politics,us_politics,false +burnitdownpls,newsmast.social,Visual Arts,visual_arts,false +burnitdownpls,newsmast.social,Weather,weather,false +jtarde23,newsmast.social,Creative Arts,creative_arts,false +jtarde23,newsmast.social,Humour,humour,false +jtarde23,newsmast.social,Photography,photography,true +jtarde23,newsmast.social,Travel,travel,false +jtarde23,newsmast.social,Visual Arts,visual_arts,false +john_90,newsmast.social,Breaking News,breaking_news,false +john_90,newsmast.social,Journalism & Comment,news_comment_data,false +john_90,newsmast.social,Social Media,social_media,true +john_90,newsmast.social,Ukraine Invasion,ukraine_invasion,false +john_90,newsmast.social,Weather,weather,false +FreddieJ,newsmast.social,Movies,movies,false +FreddieJ,newsmast.social,Politics,politics,false +FreddieJ,newsmast.social,History,history,false +FreddieJ,newsmast.social,Indigenous Peoples,indigenous_peoples,false +FreddieJ,newsmast.social,Environment,environment,false +FreddieJ,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false +FreddieJ,newsmast.social,Climate change,climate_change,false +FreddieJ,newsmast.social,Disabled Voices,disabled_voices,false +FreddieJ,newsmast.social,Immigrants Rights,immigrants_rights,false +FreddieJ,newsmast.social,Workers Rights,workers_rights,false +FreddieJ,newsmast.social,Books & Literature,books_literature,false +FreddieJ,newsmast.social,Humanities,humanities,false +FreddieJ,newsmast.social,Visual Arts,visual_arts,false +FreddieJ,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +FreddieJ,newsmast.social,Poverty & Inequality,poverty_inequality,false +FreddieJ,newsmast.social,Activism & Civil Rights,activism_civil_rights,false +FreddieJ,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false +FreddieJ,newsmast.social,Government & Policy,government_policy,false +FreddieJ,newsmast.social,Energy & Pollution,energy_pollution,false +FreddieJ,newsmast.social,Black Voices,black_voices,false +FreddieJ,newsmast.social,Women’s Voices,women_voices,false +FreddieJ,newsmast.social,Social Sciences,social_sciences,false +FreddieJ,newsmast.social,AI,ai,false +FreddieJ,newsmast.social,Science,science,false +FreddieJ,newsmast.social,Nature & Wildlife,nature_wildlife,false +FreddieJ,newsmast.social,Journalism & Comment,news_comment_data,false +FreddieJ,newsmast.social,Social Media,social_media,false +FreddieJ,newsmast.social,Ukraine Invasion,ukraine_invasion,false +FreddieJ,newsmast.social,Photography,photography,true +FreddieJ,newsmast.social,Private Community,private-community,false +FreddieJ,newsmast.social,US Politics,us_politics,false +FreddieJ,newsmast.social,TV & Radio,tv_radio,false +FreddieJ,newsmast.social,Performing Arts,performing_arts,false +FreddieJ,newsmast.social,Music,music,false +FreddieJ,newsmast.social,Performing Arts,performing_arts,false +FreddieJ,newsmast.social,Gaming,gaming,false +FreddieJ,newsmast.social,Architecture & Design,architecture_design,false +FreddieJ,newsmast.social,Technology,technology,false +FreddieJ,newsmast.social,Programming,programming,false +FreddieJ,newsmast.social,Engineering,engineering,false +captnmnemo,newsmast.social,AI,ai,false +captnmnemo,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false +captnmnemo,newsmast.social,Books & Literature,books_literature,false +captnmnemo,newsmast.social,Disabled Voices,disabled_voices,true +captnmnemo,newsmast.social,Gaming,gaming,false +captnmnemo,newsmast.social,Journalism & Comment,news_comment_data,false +captnmnemo,newsmast.social,Programming,programming,false +captnmnemo,newsmast.social,Science,science,false +captnmnemo,newsmast.social,Visual Arts,visual_arts,false +captnmnemo,newsmast.social,Women’s Voices,women_voices,false +kevinflynn,newsmast.social,Breaking News,breaking_news,true +kevinflynn,newsmast.social,Government & Policy,government_policy,false +kevinflynn,newsmast.social,Science,science,false +kevinflynn,newsmast.social,Space,space,false +kevinflynn,newsmast.social,Technology,technology,false +kevinflynn,newsmast.social,Ukraine Invasion,ukraine_invasion,false +shelldoor,newsmast.social,AI,ai,false +shelldoor,newsmast.social,Breaking News,breaking_news,false +shelldoor,newsmast.social,Engineering,engineering,false +shelldoor,newsmast.social,Politics,politics,false +shelldoor,newsmast.social,Programming,programming,false +shelldoor,newsmast.social,Technology,technology,false +shelldoor,newsmast.social,Journalism & Comment,news_comment_data,true +tkruck6,newsmast.social,AI,ai,false +tkruck6,newsmast.social,Biology,biology,false +tkruck6,newsmast.social,Breaking News,breaking_news,false +tkruck6,newsmast.social,Chemistry,chemistry,false +tkruck6,newsmast.social,Engineering,engineering,false +tkruck6,newsmast.social,Healthcare,healthcare,false +tkruck6,newsmast.social,Mathematics,mathematics,false +tkruck6,newsmast.social,Physics,physics,false +tkruck6,newsmast.social,Politics,politics,false +tkruck6,newsmast.social,Programming,programming,false +tkruck6,newsmast.social,Science,science,false +tkruck6,newsmast.social,Social Media,social_media,true +tkruck6,newsmast.social,Space,space,false +tkruck6,newsmast.social,Technology,technology,false +tkruck6,newsmast.social,Weather,weather,false +Yunandar,newsmast.social,Climate change,climate_change,false +Yunandar,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +Yunandar,newsmast.social,Energy & Pollution,energy_pollution,false +Yunandar,newsmast.social,Environment,environment,false +Yunandar,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false +Yunandar,newsmast.social,Poverty & Inequality,poverty_inequality,false +Yunandar,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,true +Bassey_Ijomanta,newsmast.social,Academia & Research,academia_research,false +Bassey_Ijomanta,newsmast.social,Government & Policy,government_policy,false +Bassey_Ijomanta,newsmast.social,Politics,politics,false +Bassey_Ijomanta,newsmast.social,Social Sciences,social_sciences,true +Bassey_Ijomanta,newsmast.social,US Politics,us_politics,false +bbdjgfhjhhg,newsmast.social,AI,ai,false +bbdjgfhjhhg,newsmast.social,Technology,technology,false +bbdjgfhjhhg,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +bbdjgfhjhhg,newsmast.social,Engineering,engineering,false +bbdjgfhjhhg,newsmast.social,Breaking News,breaking_news,false +bbdjgfhjhhg,newsmast.social,Journalism & Comment,news_comment_data,false +bbdjgfhjhhg,newsmast.social,Social Media,social_media,true +bbdjgfhjhhg,newsmast.social,Ukraine Invasion,ukraine_invasion,false +bbdjgfhjhhg,newsmast.social,Weather,weather,false +bbdjgfhjhhg,newsmast.social,Programming,programming,false +bbdjgfhjhhg,newsmast.social,Poverty & Inequality,poverty_inequality,false +bbdjgfhjhhg,newsmast.social,Business,business,false +bbdjgfhjhhg,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false +2night,newsmast.social,Business,business,true +2night,newsmast.social,Social Media,social_media,false +goofy,newsmast.social,Breaking News,breaking_news,true +goofy,newsmast.social,Journalism & Comment,news_comment_data,false +goofy,newsmast.social,Social Media,social_media,false +goofy,newsmast.social,Ukraine Invasion,ukraine_invasion,false +goofy,newsmast.social,Weather,weather,false +saskia,newsmast.social,Pets,pets,false +saskia,newsmast.social,Humour,humour,false +saskia,newsmast.social,LGBTQ+,lgbtq,false +saskia,newsmast.social,Movies,movies,false +saskia,newsmast.social,Breaking News,breaking_news,false +saskia,newsmast.social,Photography,photography,false +saskia,newsmast.social,Gaming,gaming,false +saskia,newsmast.social,Space,space,false +saskia,newsmast.social,Sport,sport,false +saskia,newsmast.social,Books & Literature,books_literature,false +saskia,newsmast.social,Football,football,true +saskia,newsmast.social,Music,music,false +saskia,newsmast.social,History,history,false +saskia,newsmast.social,Nature & Wildlife,nature_wildlife,false +saskia,newsmast.social,Science,science,false +saskia,newsmast.social,Immigrants Rights,immigrants_rights,false +saskia,newsmast.social,Food & Drink,food_drink,false +saskia,newsmast.social,TV & Radio,tv_radio,false +saskia,newsmast.social,Social Media,social_media,false +saskia,newsmast.social,Energy & Pollution,energy_pollution,false +saskia,newsmast.social,Environment,environment,false +saskia,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false +saskia,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false +saskia,newsmast.social,Climate change,climate_change,false +saskia,newsmast.social,Journalism & Comment,news_comment_data,false +saskia,newsmast.social,Women’s Voices,women_voices,false +josaimaging,newsmast.social,AI,ai,false +josaimaging,newsmast.social,Business,business,true +josaimaging,newsmast.social,Engineering,engineering,false +josaimaging,newsmast.social,Markets & Finance,markets_finance,false +josaimaging,newsmast.social,Programming,programming,false +josaimaging,newsmast.social,Technology,technology,false +josaimaging,newsmast.social,Workers Rights,workers_rights,false +AlexiaPonchet,newsmast.social,Photography,photography,false +AlexiaPonchet,newsmast.social,Business,business,true +AlexiaPonchet,newsmast.social,History,history,false +AlexiaPonchet,newsmast.social,Movies,movies,false +AlexiaPonchet,newsmast.social,Markets & Finance,markets_finance,false +AlexiaPonchet,newsmast.social,Philosophy,philosophy,false +AlexiaPonchet,newsmast.social,Travel,travel,false +AlexiaPonchet,newsmast.social,Workers Rights,workers_rights,false +AlexiaPonchet,newsmast.social,Humanities,humanities,false +AlexiaPonchet,newsmast.social,Books & Literature,books_literature,false +AlexiaPonchet,newsmast.social,Visual Arts,visual_arts,false +AlexiaPonchet,newsmast.social,Humour,humour,false +AlexiaPonchet,newsmast.social,Nature & Wildlife,nature_wildlife,false +AlexiaPonchet,newsmast.social,Programming,programming,false +AlexiaPonchet,newsmast.social,Social Sciences,social_sciences,false +AlexiaPonchet,newsmast.social,Environment,environment,false +AlexiaPonchet,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false +AlexiaPonchet,newsmast.social,Poverty & Inequality,poverty_inequality,false +AlexiaPonchet,newsmast.social,Technology,technology,false +AlexiaPonchet,newsmast.social,Energy & Pollution,energy_pollution,false +AlexiaPonchet,newsmast.social,Architecture & Design,architecture_design,false +AlexiaPonchet,newsmast.social,TV & Radio,tv_radio,false +AlexiaPonchet,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false +AlexiaPonchet,newsmast.social,Puzzles,puzzles,false +AlexiaPonchet,newsmast.social,Gaming,gaming,false +AlexiaPonchet,newsmast.social,Music,music,false +AlexiaPonchet,newsmast.social,Creative Arts,creative_arts,false +AlexiaPonchet,newsmast.social,Pets,pets,false +AlexiaPonchet,newsmast.social,Engineering,engineering,false +AlexiaPonchet,newsmast.social,Performing Arts,performing_arts,false +AlexiaPonchet,newsmast.social,Sport,sport,false +AlexiaPonchet,newsmast.social,Food & Drink,food_drink,false +AlexiaPonchet,newsmast.social,AI,ai,false +AlexiaPonchet,newsmast.social,US Sport,us_sport,false +AlexiaPonchet,newsmast.social,Football,football,false +presidenttailor,newsmast.social,Breaking News,breaking_news,true +presidenttailor,newsmast.social,Business,business,false +presidenttailor,newsmast.social,Creative Arts,creative_arts,false +presidenttailor,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +presidenttailor,newsmast.social,Humanities,humanities,false +presidenttailor,newsmast.social,Markets & Finance,markets_finance,false +presidenttailor,newsmast.social,Journalism & Comment,news_comment_data,false +presidenttailor,newsmast.social,Social Media,social_media,false +presidenttailor,newsmast.social,Ukraine Invasion,ukraine_invasion,false +presidenttailor,newsmast.social,Weather,weather,false +presidenttailor,newsmast.social,Workers Rights,workers_rights,false +newsmast,newsmast.social,Activism & Civil Rights,activism_civil_rights,false +newsmast,newsmast.social,AI,ai,false +newsmast,newsmast.social,Architecture & Design,architecture_design,false +newsmast,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false +newsmast,newsmast.social,Biology,biology,false +newsmast,newsmast.social,Black Voices,black_voices,false +newsmast,newsmast.social,Books & Literature,books_literature,false +newsmast,newsmast.social,Breaking News,breaking_news,false +newsmast,newsmast.social,Business,business,false +newsmast,newsmast.social,Chemistry,chemistry,false +newsmast,newsmast.social,Climate change,climate_change,false +newsmast,newsmast.social,Creative Arts,creative_arts,false +newsmast,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +newsmast,newsmast.social,Disabled Voices,disabled_voices,false +newsmast,newsmast.social,Energy & Pollution,energy_pollution,false +newsmast,newsmast.social,Engineering,engineering,false +newsmast,newsmast.social,Environment,environment,false +newsmast,newsmast.social,Food & Drink,food_drink,false +newsmast,newsmast.social,Football,football,false +newsmast,newsmast.social,Gaming,gaming,false +newsmast,newsmast.social,Government & Policy,government_policy,false +newsmast,newsmast.social,Healthcare,healthcare,false +newsmast,newsmast.social,History,history,false +newsmast,newsmast.social,Humanities,humanities,false +newsmast,newsmast.social,Humour,humour,false +newsmast,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false +newsmast,newsmast.social,Immigrants Rights,immigrants_rights,false +newsmast,newsmast.social,Indigenous Peoples,indigenous_peoples,false +newsmast,newsmast.social,Poverty & Inequality,poverty_inequality,false +newsmast,newsmast.social,Law & Justice,law_justice,false +newsmast,newsmast.social,LGBTQ+,lgbtq,false +newsmast,newsmast.social,Markets & Finance,markets_finance,false +newsmast,newsmast.social,Mathematics,mathematics,false +newsmast,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false +newsmast,newsmast.social,Movies,movies,false +newsmast,newsmast.social,Music,music,false +newsmast,newsmast.social,Nature & Wildlife,nature_wildlife,false +newsmast,newsmast.social,Performing Arts,performing_arts,false +newsmast,newsmast.social,Pets,pets,false +newsmast,newsmast.social,Philosophy,philosophy,false +newsmast,newsmast.social,Photography,photography,false +newsmast,newsmast.social,Physics,physics,false +newsmast,newsmast.social,Politics,politics,false +newsmast,newsmast.social,Puzzles,puzzles,false +newsmast,newsmast.social,Science,science,false +newsmast,newsmast.social,Social Sciences,social_sciences,false +newsmast,newsmast.social,Space,space,false +newsmast,newsmast.social,Sport,sport,false +newsmast,newsmast.social,Technology,technology,false +newsmast,newsmast.social,Travel,travel,false +newsmast,newsmast.social,TV & Radio,tv_radio,false +newsmast,newsmast.social,Ukraine Invasion,ukraine_invasion,false +newsmast,newsmast.social,Visual Arts,visual_arts,false +newsmast,newsmast.social,Weather,weather,false +newsmast,newsmast.social,Women’s Voices,women_voices,false +newsmast,newsmast.social,Workers Rights,workers_rights,false +newsmast,newsmast.social,Journalism & Comment,news_comment_data,true +newsmast,newsmast.social,Social Media,social_media,false +newsmast,newsmast.social,Programming,programming,false +skk,newsmast.social,Activism & Civil Rights,activism_civil_rights,false +skk,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false +skk,newsmast.social,Biology,biology,false +skk,newsmast.social,Books & Literature,books_literature,false +skk,newsmast.social,Climate change,climate_change,false +skk,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +skk,newsmast.social,Energy & Pollution,energy_pollution,false +skk,newsmast.social,Environment,environment,false +skk,newsmast.social,Gaming,gaming,false +skk,newsmast.social,History,history,false +skk,newsmast.social,Humanities,humanities,false +skk,newsmast.social,Immigrants Rights,immigrants_rights,false +skk,newsmast.social,Indigenous Peoples,indigenous_peoples,false +skk,newsmast.social,Movies,movies,false +skk,newsmast.social,Music,music,false +skk,newsmast.social,Performing Arts,performing_arts,false +skk,newsmast.social,Photography,photography,false +skk,newsmast.social,Programming,programming,false +skk,newsmast.social,Science,science,false +skk,newsmast.social,Social Media,social_media,true +skk,newsmast.social,Space,space,false +skk,newsmast.social,Technology,technology,false +skk,newsmast.social,Visual Arts,visual_arts,false +skk,newsmast.social,Women’s Voices,women_voices,false +Blacktiger,newsmast.social,Food & Drink,food_drink,false +Blacktiger,newsmast.social,Photography,photography,false +Blacktiger,newsmast.social,Sport,sport,false +Blacktiger,newsmast.social,TV & Radio,tv_radio,false +Blacktiger,newsmast.social,Music,music,true +WestWifey,newsmast.social,Food & Drink,food_drink,true +WestWifey,newsmast.social,Humour,humour,false +WestWifey,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false +WestWifey,newsmast.social,Social Sciences,social_sciences,false +WestWifey,newsmast.social,Travel,travel,false +kaerisonic,newsmast.social,Academia & Research,academia_research,false +kaerisonic,newsmast.social,Activism & Civil Rights,activism_civil_rights,false +kaerisonic,newsmast.social,AI,ai,false +kaerisonic,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false +kaerisonic,newsmast.social,Biology,biology,false +kaerisonic,newsmast.social,Business,business,false +kaerisonic,newsmast.social,Climate change,climate_change,false +kaerisonic,newsmast.social,Democracy & Human Rights,democracy_human_rights,false kaerisonic,newsmast.social,Disabled Voices,disabled_voices,false kaerisonic,newsmast.social,Energy & Pollution,energy_pollution,false kaerisonic,newsmast.social,Environment,environment,false @@ -24183,49 +13303,13 @@ kaerisonic,newsmast.social,Indigenous Peoples,indigenous_peoples,false kaerisonic,newsmast.social,Law & Justice,law_justice,false kaerisonic,newsmast.social,Markets & Finance,markets_finance,false kaerisonic,newsmast.social,Mathematics,mathematics,false -acastro,newsmast.social,Architecture & Design,architecture_design,false -acastro,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false -acastro,newsmast.social,Books & Literature,books_literature,false -acastro,newsmast.social,Creative Arts,creative_arts,false -acastro,newsmast.social,Energy & Pollution,energy_pollution,false -acastro,newsmast.social,History,history,false -acastro,newsmast.social,Humanities,humanities,false -acastro,newsmast.social,Humour,humour,false -acastro,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false -acastro,newsmast.social,Music,music,false -acastro,newsmast.social,Philosophy,philosophy,false -acastro,newsmast.social,AI,ai,true kaerisonic,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,true -acastro,newsmast.social,Puzzles,puzzles,false -acastro,newsmast.social,Social Sciences,social_sciences,false -acastro,newsmast.social,Space,space,false -acastro,newsmast.social,Technology,technology,false -acastro,newsmast.social,Visual Arts,visual_arts,false -randmbits,mstdn.social,AI,ai,false -randmbits,mstdn.social,Markets & Finance,markets_finance,false -randmbits,mstdn.social,Technology,technology,false -randmbits,mstdn.social,US Sport,us_sport,false -randmbits,mstdn.social,Breaking News,breaking_news,true -randmbits,mstdn.social,Government & Policy,government_policy,false -randmbits,mstdn.social,Law & Justice,law_justice,false -randmbits,mstdn.social,Politics,politics,false -randmbits,mstdn.social,US Politics,us_politics,false -randmbits,mstdn.social,Environment,environment,false -randmbits,mstdn.social,Climate change,climate_change,false kaerisonic,newsmast.social,Nature & Wildlife,nature_wildlife,false kaerisonic,newsmast.social,Journalism & Comment,news_comment_data,false kaerisonic,newsmast.social,Pets,pets,false kaerisonic,newsmast.social,Politics,politics,false kaerisonic,newsmast.social,Poverty & Inequality,poverty_inequality,false kaerisonic,newsmast.social,Programming,programming,false -rogerms,sfba.social,Breaking News,breaking_news,false -rogerms,sfba.social,Engineering,engineering,false -rogerms,sfba.social,Programming,programming,false -rogerms,sfba.social,Science,science,false -rogerms,sfba.social,Technology,technology,false -rogerms,sfba.social,AI,ai,true -jl_fl,mastodon.social,History,history,false -jl_fl,mastodon.social,Photography,photography,true kaerisonic,newsmast.social,Science,science,false kaerisonic,newsmast.social,Social Media,social_media,false kaerisonic,newsmast.social,Social Sciences,social_sciences,false @@ -24235,452 +13319,226 @@ kaerisonic,newsmast.social,Travel,travel,false kaerisonic,newsmast.social,Ukraine Invasion,ukraine_invasion,false kaerisonic,newsmast.social,Weather,weather,false kaerisonic,newsmast.social,Women’s Voices,women_voices,false -postmanbrown,mastodon.social,AI,ai,false -postmanbrown,mastodon.social,Biodiversity & Rewilding,biodiversity_rewilding,false -postmanbrown,mastodon.social,Biology,biology,false -postmanbrown,mastodon.social,Chemistry,chemistry,false -postmanbrown,mastodon.social,Climate change,climate_change,false -postmanbrown,mastodon.social,Energy & Pollution,energy_pollution,false -postmanbrown,mastodon.social,Engineering,engineering,false -postmanbrown,mastodon.social,Environment,environment,false -postmanbrown,mastodon.social,History,history,false -postmanbrown,mastodon.social,Humanities,humanities,false -postmanbrown,mastodon.social,Mathematics,mathematics,false -postmanbrown,mastodon.social,Physics,physics,false -postmanbrown,mastodon.social,Programming,programming,false -postmanbrown,mastodon.social,Science,science,false -postmanbrown,mastodon.social,Social Sciences,social_sciences,false -postmanbrown,mastodon.social,Space,space,false -postmanbrown,mastodon.social,Technology,technology,false -postmanbrown,mastodon.social,US Sport,us_sport,false -postmanbrown,mastodon.social,Philosophy,philosophy,true -Oparator,mas.to,Biology,biology,false -Oparator,mas.to,Breaking News,breaking_news,false -Oparator,mas.to,Chemistry,chemistry,false -Oparator,mas.to,Climate change,climate_change,false -Oparator,mas.to,Energy & Pollution,energy_pollution,false -Oparator,mas.to,Engineering,engineering,false -Oparator,mas.to,Environment,environment,false -Oparator,mas.to,Physics,physics,false -Oparator,mas.to,Space,space,false -Oparator,mas.to,Technology,technology,false -Oparator,mas.to,Science,science,true -collected_cards,newsmast.social,History,history,false -collected_cards,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false -collected_cards,newsmast.social,Music,music,false -collected_cards,newsmast.social,Nature & Wildlife,nature_wildlife,false -collected_cards,newsmast.social,Philosophy,philosophy,false -collected_cards,newsmast.social,Social Sciences,social_sciences,false -collected_cards,newsmast.social,LGBTQ+,lgbtq,true -jlfl,social.vivaldi.net,Humanities,humanities,false -jlfl,social.vivaldi.net,Philosophy,philosophy,false -jlfl,social.vivaldi.net,Space,space,false -jlfl,social.vivaldi.net,Food & Drink,food_drink,false -jlfl,social.vivaldi.net,Humour,humour,false -jlfl,social.vivaldi.net,History,history,false -jlfl,social.vivaldi.net,Books & Literature,books_literature,false -jlfl,social.vivaldi.net,Nature & Wildlife,nature_wildlife,false -jlfl,social.vivaldi.net,Photography,photography,true -MichielFraters,mastodon.social,Architecture & Design,architecture_design,false -MichielFraters,mastodon.social,Biodiversity & Rewilding,biodiversity_rewilding,false -MichielFraters,mastodon.social,Biology,biology,false -MichielFraters,mastodon.social,Chemistry,chemistry,false -MichielFraters,mastodon.social,Energy & Pollution,energy_pollution,false -MichielFraters,mastodon.social,Environment,environment,false -MichielFraters,mastodon.social,Mathematics,mathematics,false -MichielFraters,mastodon.social,Photography,photography,false -MichielFraters,mastodon.social,Physics,physics,false -MichielFraters,mastodon.social,Science,science,false -MichielFraters,mastodon.social,Space,space,false -MichielFraters,mastodon.social,Visual Arts,visual_arts,false -MichielFraters,mastodon.social,Climate change,climate_change,true -Ypsilenna,newsmast.social,Gaming,gaming,false -Ypsilenna,newsmast.social,Music,music,false -Ypsilenna,newsmast.social,Performing Arts,performing_arts,false -Ypsilenna,newsmast.social,Photography,photography,false -Ypsilenna,newsmast.social,Visual Arts,visual_arts,true -kaerisonic,newsmast.social,Workers Rights,workers_rights,false -burnitdownpls,newsmast.social,Architecture & Design,architecture_design,false -burnitdownpls,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false -burnitdownpls,newsmast.social,Biology,biology,false -burnitdownpls,newsmast.social,Books & Literature,books_literature,false -burnitdownpls,newsmast.social,Breaking News,breaking_news,false -burnitdownpls,newsmast.social,Chemistry,chemistry,false -burnitdownpls,newsmast.social,Climate change,climate_change,false -burnitdownpls,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -burnitdownpls,newsmast.social,Energy & Pollution,energy_pollution,false -burnitdownpls,newsmast.social,Environment,environment,false -burnitdownpls,newsmast.social,Gaming,gaming,false -burnitdownpls,newsmast.social,Government & Policy,government_policy,false -burnitdownpls,newsmast.social,Healthcare,healthcare,false -burnitdownpls,newsmast.social,History,history,false -burnitdownpls,newsmast.social,Humanities,humanities,false -burnitdownpls,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false -burnitdownpls,newsmast.social,Law & Justice,law_justice,false -burnitdownpls,newsmast.social,Mathematics,mathematics,false -burnitdownpls,newsmast.social,Movies,movies,false -burnitdownpls,newsmast.social,Music,music,false -burnitdownpls,newsmast.social,Journalism & Comment,news_comment_data,false -burnitdownpls,newsmast.social,Performing Arts,performing_arts,false -burnitdownpls,newsmast.social,Philosophy,philosophy,false -burnitdownpls,newsmast.social,Photography,photography,false -burnitdownpls,newsmast.social,Physics,physics,false -burnitdownpls,newsmast.social,Politics,politics,false -burnitdownpls,newsmast.social,Poverty & Inequality,poverty_inequality,false -burnitdownpls,newsmast.social,Science,science,false -burnitdownpls,newsmast.social,Social Media,social_media,false -burnitdownpls,newsmast.social,Social Sciences,social_sciences,false -burnitdownpls,newsmast.social,Space,space,false -burnitdownpls,newsmast.social,TV & Radio,tv_radio,false -burnitdownpls,newsmast.social,Ukraine Invasion,ukraine_invasion,false -burnitdownpls,newsmast.social,US Politics,us_politics,false -burnitdownpls,newsmast.social,Visual Arts,visual_arts,false -burnitdownpls,newsmast.social,Weather,weather,false -burnitdownpls,newsmast.social,Academia & Research,academia_research,true -kaerypheur,newsmast.social,Creative Arts,creative_arts,false -kaerypheur,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -kaerypheur,newsmast.social,Disabled Voices,disabled_voices,false -kaerypheur,newsmast.social,Energy & Pollution,energy_pollution,false -kaerypheur,newsmast.social,Engineering,engineering,false -kaerypheur,newsmast.social,Environment,environment,false -kaerypheur,newsmast.social,Food & Drink,food_drink,false -kaerypheur,newsmast.social,Government & Policy,government_policy,false -kaerypheur,newsmast.social,Healthcare,healthcare,false -kaerypheur,newsmast.social,History,history,false -kaerypheur,newsmast.social,Humanities,humanities,false -kaerypheur,newsmast.social,Humour,humour,false -kaerypheur,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false -kaerypheur,newsmast.social,Immigrants Rights,immigrants_rights,false -kaerypheur,newsmast.social,Indigenous Peoples,indigenous_peoples,false -kaerypheur,newsmast.social,Law & Justice,law_justice,false -kaerypheur,newsmast.social,Markets & Finance,markets_finance,false -kaerypheur,newsmast.social,Mathematics,mathematics,false -kaerypheur,newsmast.social,Nature & Wildlife,nature_wildlife,false -kaerypheur,newsmast.social,Journalism & Comment,news_comment_data,false -kaerypheur,newsmast.social,Pets,pets,false -kaerypheur,newsmast.social,Philosophy,philosophy,false -kaerypheur,newsmast.social,Politics,politics,false -kaerypheur,newsmast.social,Poverty & Inequality,poverty_inequality,false -kaerypheur,newsmast.social,Programming,programming,false -kaerypheur,newsmast.social,Puzzles,puzzles,false -kaerypheur,newsmast.social,Science,science,false -kaerypheur,newsmast.social,Social Media,social_media,false -kaerypheur,newsmast.social,Social Sciences,social_sciences,false -kaerypheur,newsmast.social,Space,space,false -kaerypheur,newsmast.social,Technology,technology,false -kaerypheur,newsmast.social,Travel,travel,false -Acethe1st,newsmast.social,Academia & Research,academia_research,false -Acethe1st,newsmast.social,Activism & Civil Rights,activism_civil_rights,false -Acethe1st,newsmast.social,Architecture & Design,architecture_design,false -Acethe1st,newsmast.social,Biology,biology,false -Acethe1st,newsmast.social,Black Voices,black_voices,false -Acethe1st,newsmast.social,Books & Literature,books_literature,false -Acethe1st,newsmast.social,Breaking News,breaking_news,false -Acethe1st,newsmast.social,Chemistry,chemistry,false -Acethe1st,newsmast.social,Disabled Voices,disabled_voices,false -Acethe1st,newsmast.social,Gaming,gaming,false -Acethe1st,newsmast.social,Democracy & Human Rights,democracy_human_rights,true -kaerypheur,newsmast.social,Ukraine Invasion,ukraine_invasion,false -kaerypheur,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,true -Acethe1st,newsmast.social,Government & Policy,government_policy,false -Acethe1st,newsmast.social,Healthcare,healthcare,false -Acethe1st,newsmast.social,History,history,false -Acethe1st,newsmast.social,Humanities,humanities,false -Acethe1st,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false -Acethe1st,newsmast.social,Immigrants Rights,immigrants_rights,false -Acethe1st,newsmast.social,Indigenous Peoples,indigenous_peoples,false -Acethe1st,newsmast.social,Law & Justice,law_justice,false -Acethe1st,newsmast.social,LGBTQ+,lgbtq,false -Acethe1st,newsmast.social,Mathematics,mathematics,false -Acethe1st,newsmast.social,Movies,movies,false -Acethe1st,newsmast.social,Music,music,false -Acethe1st,newsmast.social,Journalism & Comment,news_comment_data,false -Acethe1st,newsmast.social,Performing Arts,performing_arts,false -Acethe1st,newsmast.social,Philosophy,philosophy,false -Acethe1st,newsmast.social,Photography,photography,false -Acethe1st,newsmast.social,Physics,physics,false -Acethe1st,newsmast.social,Politics,politics,false -Acethe1st,newsmast.social,Poverty & Inequality,poverty_inequality,false -Acethe1st,newsmast.social,Science,science,false -Acethe1st,newsmast.social,Social Media,social_media,false -Acethe1st,newsmast.social,Social Sciences,social_sciences,false -Acethe1st,newsmast.social,Space,space,false -Acethe1st,newsmast.social,TV & Radio,tv_radio,false -Acethe1st,newsmast.social,Ukraine Invasion,ukraine_invasion,false -Acethe1st,newsmast.social,US Politics,us_politics,false -Acethe1st,newsmast.social,Visual Arts,visual_arts,false -Acethe1st,newsmast.social,Weather,weather,false -Acethe1st,newsmast.social,Women’s Voices,women_voices,false -lexoyo,framapiaf.org,Disabled Voices,disabled_voices,false -lexoyo,framapiaf.org,Mathematics,mathematics,false -lexoyo,framapiaf.org,Physics,physics,false -lexoyo,framapiaf.org,Programming,programming,true -Polotman,mastodon.social,Architecture & Design,architecture_design,false -Polotman,mastodon.social,Books & Literature,books_literature,false -Polotman,mastodon.social,Gaming,gaming,false -Polotman,mastodon.social,Movies,movies,false -Polotman,mastodon.social,Music,music,false -Polotman,mastodon.social,Journalism & Comment,news_comment_data,false -Polotman,mastodon.social,Performing Arts,performing_arts,false -Polotman,mastodon.social,Photography,photography,false -Polotman,mastodon.social,Social Media,social_media,false -Polotman,mastodon.social,TV & Radio,tv_radio,false -Polotman,mastodon.social,Ukraine Invasion,ukraine_invasion,false -Polotman,mastodon.social,Weather,weather,false -Polotman,mastodon.social,Visual Arts,visual_arts,true -kaerypheur,newsmast.social,US Politics,us_politics,false -kaerypheur,newsmast.social,Weather,weather,false -kaerypheur,newsmast.social,Women’s Voices,women_voices,false -kaerypheur,newsmast.social,Workers Rights,workers_rights,false -stott,pkm.social,AI,ai,false -stott,pkm.social,Books & Literature,books_literature,false -stott,pkm.social,Breaking News,breaking_news,false -stott,pkm.social,Movies,movies,false -stott,pkm.social,Technology,technology,true -greenhombre,mstdn.social,Academia & Research,academia_research,false -greenhombre,mstdn.social,AI,ai,false -greenhombre,mstdn.social,Architecture & Design,architecture_design,false -greenhombre,mstdn.social,Biodiversity & Rewilding,biodiversity_rewilding,false -greenhombre,mstdn.social,Biology,biology,false -greenhombre,mstdn.social,Books & Literature,books_literature,false -greenhombre,mstdn.social,Chemistry,chemistry,false -greenhombre,mstdn.social,Climate change,climate_change,false -greenhombre,mstdn.social,Democracy & Human Rights,democracy_human_rights,false -greenhombre,mstdn.social,Energy & Pollution,energy_pollution,false -greenhombre,mstdn.social,Engineering,engineering,false -greenhombre,mstdn.social,Environment,environment,false -greenhombre,mstdn.social,Gaming,gaming,false -greenhombre,mstdn.social,Government & Policy,government_policy,false -greenhombre,mstdn.social,Healthcare,healthcare,false -greenhombre,mstdn.social,History,history,false -greenhombre,mstdn.social,Humanities,humanities,false -greenhombre,mstdn.social,"Hunger, Disease & Water",hunger_disease_water,false -greenhombre,mstdn.social,Law & Justice,law_justice,false -greenhombre,mstdn.social,Mathematics,mathematics,false -greenhombre,mstdn.social,Breaking News,breaking_news,true -sgtnasty,mastodon.social,Academia & Research,academia_research,false -sgtnasty,mastodon.social,Activism & Civil Rights,activism_civil_rights,false -sgtnasty,mastodon.social,AI,ai,false -sgtnasty,mastodon.social,Architecture & Design,architecture_design,false -sgtnasty,mastodon.social,Biodiversity & Rewilding,biodiversity_rewilding,false -sgtnasty,mastodon.social,Biology,biology,false -sgtnasty,mastodon.social,Books & Literature,books_literature,false -sgtnasty,mastodon.social,Breaking News,breaking_news,false -sgtnasty,mastodon.social,Chemistry,chemistry,false -sgtnasty,mastodon.social,Climate change,climate_change,false -sgtnasty,mastodon.social,Democracy & Human Rights,democracy_human_rights,false -sgtnasty,mastodon.social,Energy & Pollution,energy_pollution,false -sgtnasty,mastodon.social,Engineering,engineering,false -sgtnasty,mastodon.social,Environment,environment,false -sgtnasty,mastodon.social,Government & Policy,government_policy,false -sgtnasty,mastodon.social,Healthcare,healthcare,false -sgtnasty,mastodon.social,History,history,false -sgtnasty,mastodon.social,Humanities,humanities,false -sgtnasty,mastodon.social,"Hunger, Disease & Water",hunger_disease_water,false -sgtnasty,mastodon.social,Immigrants Rights,immigrants_rights,false -sgtnasty,mastodon.social,Law & Justice,law_justice,false -sgtnasty,mastodon.social,Mathematics,mathematics,false -sgtnasty,mastodon.social,Movies,movies,false -sgtnasty,mastodon.social,Music,music,false -sgtnasty,mastodon.social,Journalism & Comment,news_comment_data,false -sgtnasty,mastodon.social,Performing Arts,performing_arts,false -sgtnasty,mastodon.social,Philosophy,philosophy,false -sgtnasty,mastodon.social,Photography,photography,false -sgtnasty,mastodon.social,Physics,physics,false -sgtnasty,mastodon.social,Politics,politics,false -sgtnasty,mastodon.social,Poverty & Inequality,poverty_inequality,false -sgtnasty,mastodon.social,Programming,programming,false -sgtnasty,mastodon.social,Science,science,false -sgtnasty,mastodon.social,Social Media,social_media,false -sgtnasty,mastodon.social,Social Sciences,social_sciences,false -sgtnasty,mastodon.social,Space,space,false -sgtnasty,mastodon.social,Technology,technology,false -sgtnasty,mastodon.social,TV & Radio,tv_radio,false -sgtnasty,mastodon.social,Ukraine Invasion,ukraine_invasion,false -sgtnasty,mastodon.social,US Politics,us_politics,false -sgtnasty,mastodon.social,Visual Arts,visual_arts,false -sgtnasty,mastodon.social,Weather,weather,false -sgtnasty,mastodon.social,Gaming,gaming,true -greenhombre,mstdn.social,Movies,movies,false -greenhombre,mstdn.social,Music,music,false -greenhombre,mstdn.social,Journalism & Comment,news_comment_data,false -greenhombre,mstdn.social,Performing Arts,performing_arts,false -greenhombre,mstdn.social,Philosophy,philosophy,false -greenhombre,mstdn.social,Photography,photography,false -greenhombre,mstdn.social,Physics,physics,false -greenhombre,mstdn.social,Politics,politics,false -greenhombre,mstdn.social,Poverty & Inequality,poverty_inequality,false -greenhombre,mstdn.social,Programming,programming,false -greenhombre,mstdn.social,Science,science,false -greenhombre,mstdn.social,Social Media,social_media,false -greenhombre,mstdn.social,Social Sciences,social_sciences,false -greenhombre,mstdn.social,Space,space,false -greenhombre,mstdn.social,Technology,technology,false -greenhombre,mstdn.social,TV & Radio,tv_radio,false -greenhombre,mstdn.social,Ukraine Invasion,ukraine_invasion,false -greenhombre,mstdn.social,US Politics,us_politics,false -greenhombre,mstdn.social,Visual Arts,visual_arts,false -greenhombre,mstdn.social,Weather,weather,false -forumformadsuveraenitet,radikal.social,Activism & Civil Rights,activism_civil_rights,false -forumformadsuveraenitet,radikal.social,Biodiversity & Rewilding,biodiversity_rewilding,false -forumformadsuveraenitet,radikal.social,Climate change,climate_change,false -forumformadsuveraenitet,radikal.social,Environment,environment,false -forumformadsuveraenitet,radikal.social,Government & Policy,government_policy,false -forumformadsuveraenitet,radikal.social,"Hunger, Disease & Water",hunger_disease_water,false -forumformadsuveraenitet,radikal.social,Indigenous Peoples,indigenous_peoples,false -forumformadsuveraenitet,radikal.social,Poverty & Inequality,poverty_inequality,true -alzatari,newsmast.social,Activism & Civil Rights,activism_civil_rights,false -alzatari,newsmast.social,Architecture & Design,architecture_design,false -alzatari,newsmast.social,Books & Literature,books_literature,false -alzatari,newsmast.social,Breaking News,breaking_news,false -alzatari,newsmast.social,Creative Arts,creative_arts,false -alzatari,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -alzatari,newsmast.social,Food & Drink,food_drink,false -alzatari,newsmast.social,Government & Policy,government_policy,false -alzatari,newsmast.social,Healthcare,healthcare,false -alzatari,newsmast.social,History,history,false -alzatari,newsmast.social,Humanities,humanities,false -alzatari,newsmast.social,Humour,humour,false -alzatari,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false -alzatari,newsmast.social,Indigenous Peoples,indigenous_peoples,false -alzatari,newsmast.social,Law & Justice,law_justice,false -alzatari,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false -alzatari,newsmast.social,Nature & Wildlife,nature_wildlife,false -alzatari,newsmast.social,Journalism & Comment,news_comment_data,false -alzatari,newsmast.social,Pets,pets,false -alzatari,newsmast.social,Philosophy,philosophy,false -alzatari,newsmast.social,Photography,photography,false -alzatari,newsmast.social,Politics,politics,false -alzatari,newsmast.social,Poverty & Inequality,poverty_inequality,false -alzatari,newsmast.social,Puzzles,puzzles,false -alzatari,newsmast.social,Social Media,social_media,false -alzatari,newsmast.social,Social Sciences,social_sciences,false -alzatari,newsmast.social,Travel,travel,false -alzatari,newsmast.social,Ukraine Invasion,ukraine_invasion,false -alzatari,newsmast.social,US Politics,us_politics,false -alzatari,newsmast.social,Visual Arts,visual_arts,false -alzatari,newsmast.social,Weather,weather,false -alzatari,newsmast.social,Academia & Research,academia_research,true -jautero,indieweb.social,Activism & Civil Rights,activism_civil_rights,false -jautero,indieweb.social,Democracy & Human Rights,democracy_human_rights,false -jautero,indieweb.social,Energy & Pollution,energy_pollution,false -jautero,indieweb.social,Programming,programming,false -chrisclay,mastodon.social,Food & Drink,food_drink,true -PeteBleackley,wandering.shop,Books & Literature,books_literature,false -PeteBleackley,wandering.shop,Music,music,false -PeteBleackley,wandering.shop,Photography,photography,false -PeteBleackley,wandering.shop,Physics,physics,false -PeteBleackley,wandering.shop,Programming,programming,false -PeteBleackley,wandering.shop,Science,science,false -PeteBleackley,wandering.shop,Space,space,false -PeteBleackley,wandering.shop,Technology,technology,false -PeteBleackley,wandering.shop,AI,ai,true -jautero,indieweb.social,LGBTQ+,lgbtq,false -jautero,indieweb.social,Climate change,climate_change,true -chrisclay,mastodon.social,Architecture & Design,architecture_design,false -chrisclay,mastodon.social,Humour,humour,false -chrisclay,mastodon.social,Mental Health & Wellbeing,mental_health_wellbeing,false -chrisclay,mastodon.social,Music,music,false -chrisclay,mastodon.social,Photography,photography,false -chrisclay,mastodon.social,Technology,technology,false -chrisclay,mastodon.social,Travel,travel,false -chrisclay,mastodon.social,TV & Radio,tv_radio,false -jvk,mastodon.org.uk,Books & Literature,books_literature,false -jvk,mastodon.org.uk,Music,music,false -jvk,mastodon.org.uk,Photography,photography,false -jvk,mastodon.org.uk,TV & Radio,tv_radio,false -jvk,mastodon.org.uk,Visual Arts,visual_arts,true -stevetough,newsmast.social,AI,ai,false -stevetough,newsmast.social,Biology,biology,false -stevetough,newsmast.social,Breaking News,breaking_news,false -stevetough,newsmast.social,Chemistry,chemistry,false -stevetough,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -stevetough,newsmast.social,Engineering,engineering,false -stevetough,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false -stevetough,newsmast.social,Mathematics,mathematics,false -stevetough,newsmast.social,Journalism & Comment,news_comment_data,false -stevetough,newsmast.social,Physics,physics,false -stevetough,newsmast.social,Poverty & Inequality,poverty_inequality,false -stevetough,newsmast.social,Programming,programming,false -stevetough,newsmast.social,Science,science,false -stevetough,newsmast.social,Social Media,social_media,false -stevetough,newsmast.social,Space,space,false -stevetough,newsmast.social,Ukraine Invasion,ukraine_invasion,false -stevetough,newsmast.social,US Sport,us_sport,false -stevetough,newsmast.social,Weather,weather,false -arizpe,newsmast.social,Humour,humour,true -stevetough,newsmast.social,Government & Policy,government_policy,false -stevetough,newsmast.social,Academia & Research,academia_research,false -stevetough,newsmast.social,Healthcare,healthcare,false -stevetough,newsmast.social,Law & Justice,law_justice,false -stevetough,newsmast.social,Politics,politics,false -stevetough,newsmast.social,US Politics,us_politics,false -stevetough,newsmast.social,Environment,environment,false -stevetough,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false -stevetough,newsmast.social,Climate change,climate_change,false -stevetough,newsmast.social,Energy & Pollution,energy_pollution,false -stevetough,newsmast.social,Activism & Civil Rights,activism_civil_rights,false -stevetough,newsmast.social,Black Voices,black_voices,false -stevetough,newsmast.social,Disabled Voices,disabled_voices,false -stevetough,newsmast.social,Immigrants Rights,immigrants_rights,false -stevetough,newsmast.social,Indigenous Peoples,indigenous_peoples,false -stevetough,newsmast.social,LGBTQ+,lgbtq,false -stevetough,newsmast.social,Women’s Voices,women_voices,false -stevetough,newsmast.social,Business,business,false -stevetough,newsmast.social,Markets & Finance,markets_finance,false -stevetough,newsmast.social,Workers Rights,workers_rights,false -stevetough,newsmast.social,Technology,technology,false -stevetough,newsmast.social,Humanities,humanities,false -stevetough,newsmast.social,Social Sciences,social_sciences,false -stevetough,newsmast.social,Philosophy,philosophy,false -stevetough,newsmast.social,Architecture & Design,architecture_design,false -stevetough,newsmast.social,Books & Literature,books_literature,false -stevetough,newsmast.social,Gaming,gaming,false -stevetough,newsmast.social,Movies,movies,false -stevetough,newsmast.social,Music,music,false -stevetough,newsmast.social,Performing Arts,performing_arts,false -stevetough,newsmast.social,Photography,photography,false -stevetough,newsmast.social,TV & Radio,tv_radio,false -stevetough,newsmast.social,Visual Arts,visual_arts,false -stevetough,newsmast.social,Football,football,false -stevetough,newsmast.social,Creative Arts,creative_arts,false -stevetough,newsmast.social,Food & Drink,food_drink,false -stevetough,newsmast.social,Humour,humour,false -stevetough,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false -stevetough,newsmast.social,Nature & Wildlife,nature_wildlife,false -stevetough,newsmast.social,Pets,pets,false -stevetough,newsmast.social,Puzzles,puzzles,false -stevetough,newsmast.social,Travel,travel,false -stevetough,newsmast.social,Sport,sport,false -stevetough,newsmast.social,History,history,true -missioncontrol,fosstodon.org,Ukraine Invasion,ukraine_invasion,false -beta_123,newsmast.social,Indigenous Peoples,indigenous_peoples,false -Nyein,newsmast.social,Football,football,false -phillycodehound,indieweb.social,AI,ai,false -phillycodehound,indieweb.social,Biology,biology,false -phillycodehound,indieweb.social,Breaking News,breaking_news,false -phillycodehound,indieweb.social,Business,business,false -phillycodehound,indieweb.social,Chemistry,chemistry,false -phillycodehound,indieweb.social,Democracy & Human Rights,democracy_human_rights,false -phillycodehound,indieweb.social,Engineering,engineering,false -phillycodehound,indieweb.social,History,history,false -phillycodehound,indieweb.social,Humanities,humanities,false -phillycodehound,indieweb.social,Markets & Finance,markets_finance,false -phillycodehound,indieweb.social,Mathematics,mathematics,false -phillycodehound,indieweb.social,Journalism & Comment,news_comment_data,false -phillycodehound,indieweb.social,Philosophy,philosophy,false -phillycodehound,indieweb.social,Physics,physics,false -phillycodehound,indieweb.social,Poverty & Inequality,poverty_inequality,false -phillycodehound,indieweb.social,Programming,programming,false -phillycodehound,indieweb.social,Science,science,false -phillycodehound,indieweb.social,Social Media,social_media,false -phillycodehound,indieweb.social,Social Sciences,social_sciences,false -phillycodehound,indieweb.social,Space,space,false -phillycodehound,indieweb.social,Ukraine Invasion,ukraine_invasion,false -phillycodehound,indieweb.social,Weather,weather,false -phillycodehound,indieweb.social,Workers Rights,workers_rights,false -phillycodehound,indieweb.social,Technology,technology,true +kaerisonic,newsmast.social,Workers Rights,workers_rights,false +Zahid11,newsmast.social,Academia & Research,academia_research,false +Zahid11,newsmast.social,Activism & Civil Rights,activism_civil_rights,false +Zahid11,newsmast.social,AI,ai,true +Zahid11,newsmast.social,Architecture & Design,architecture_design,false +Zahid11,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false +Zahid11,newsmast.social,Biology,biology,false +Zahid11,newsmast.social,Black Voices,black_voices,false +Zahid11,newsmast.social,Books & Literature,books_literature,false +Zahid11,newsmast.social,Breaking News,breaking_news,false +Zahid11,newsmast.social,Business,business,false +Zahid11,newsmast.social,Chemistry,chemistry,false +Zahid11,newsmast.social,Climate change,climate_change,false +Zahid11,newsmast.social,Creative Arts,creative_arts,false +Zahid11,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +Zahid11,newsmast.social,Disabled Voices,disabled_voices,false +Zahid11,newsmast.social,Energy & Pollution,energy_pollution,false +Zahid11,newsmast.social,Engineering,engineering,false +Zahid11,newsmast.social,Environment,environment,false +Zahid11,newsmast.social,Food & Drink,food_drink,false +Zahid11,newsmast.social,Gaming,gaming,false +Zahid11,newsmast.social,Government & Policy,government_policy,false +Zahid11,newsmast.social,Healthcare,healthcare,false +Zahid11,newsmast.social,History,history,false +Zahid11,newsmast.social,Humanities,humanities,false +Zahid11,newsmast.social,Humour,humour,false +Zahid11,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false +Zahid11,newsmast.social,Immigrants Rights,immigrants_rights,false +Zahid11,newsmast.social,Indigenous Peoples,indigenous_peoples,false +Zahid11,newsmast.social,Law & Justice,law_justice,false +Zahid11,newsmast.social,LGBTQ+,lgbtq,false +Zahid11,newsmast.social,Markets & Finance,markets_finance,false +Zahid11,newsmast.social,Mathematics,mathematics,false +Zahid11,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false +Zahid11,newsmast.social,Movies,movies,false +Zahid11,newsmast.social,Music,music,false +Zahid11,newsmast.social,Nature & Wildlife,nature_wildlife,false +Zahid11,newsmast.social,Journalism & Comment,news_comment_data,false +Zahid11,newsmast.social,Performing Arts,performing_arts,false +Zahid11,newsmast.social,Pets,pets,false +Zahid11,newsmast.social,Philosophy,philosophy,false +Zahid11,newsmast.social,Photography,photography,false +Zahid11,newsmast.social,Physics,physics,false +Zahid11,newsmast.social,Politics,politics,false +Zahid11,newsmast.social,Poverty & Inequality,poverty_inequality,false +Zahid11,newsmast.social,Programming,programming,false +Zahid11,newsmast.social,Puzzles,puzzles,false +Zahid11,newsmast.social,Science,science,false +Zahid11,newsmast.social,Social Media,social_media,false +Zahid11,newsmast.social,Social Sciences,social_sciences,false +Zahid11,newsmast.social,Space,space,false +Zahid11,newsmast.social,Technology,technology,false +Zahid11,newsmast.social,Travel,travel,false +Zahid11,newsmast.social,TV & Radio,tv_radio,false +Zahid11,newsmast.social,Ukraine Invasion,ukraine_invasion,false +Zahid11,newsmast.social,US Politics,us_politics,false +Zahid11,newsmast.social,Visual Arts,visual_arts,false +Zahid11,newsmast.social,Weather,weather,false +Zahid11,newsmast.social,Women’s Voices,women_voices,false +Zahid11,newsmast.social,Workers Rights,workers_rights,false +bernardjensen,newsmast.social,Academia & Research,academia_research,false +bernardjensen,newsmast.social,Activism & Civil Rights,activism_civil_rights,false +bernardjensen,newsmast.social,Architecture & Design,architecture_design,false +bernardjensen,newsmast.social,Books & Literature,books_literature,false +bernardjensen,newsmast.social,Breaking News,breaking_news,true +bernardjensen,newsmast.social,Business,business,false +bernardjensen,newsmast.social,Creative Arts,creative_arts,false +bernardjensen,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +bernardjensen,newsmast.social,Disabled Voices,disabled_voices,false +bernardjensen,newsmast.social,Food & Drink,food_drink,false +bernardjensen,newsmast.social,Gaming,gaming,false +bernardjensen,newsmast.social,Government & Policy,government_policy,false +bernardjensen,newsmast.social,Healthcare,healthcare,false +bernardjensen,newsmast.social,Humanities,humanities,false +bernardjensen,newsmast.social,Humour,humour,false +bernardjensen,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false +bernardjensen,newsmast.social,Law & Justice,law_justice,false +bernardjensen,newsmast.social,Markets & Finance,markets_finance,false +bernardjensen,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false +bernardjensen,newsmast.social,Movies,movies,false +bernardjensen,newsmast.social,Music,music,false +bernardjensen,newsmast.social,Nature & Wildlife,nature_wildlife,false +bernardjensen,newsmast.social,Journalism & Comment,news_comment_data,false +bernardjensen,newsmast.social,Performing Arts,performing_arts,false +bernardjensen,newsmast.social,Philosophy,philosophy,false +bernardjensen,newsmast.social,Photography,photography,false +bernardjensen,newsmast.social,Politics,politics,false +bernardjensen,newsmast.social,Social Media,social_media,false +bernardjensen,newsmast.social,Social Sciences,social_sciences,false +bernardjensen,newsmast.social,Travel,travel,false +bernardjensen,newsmast.social,TV & Radio,tv_radio,false +bernardjensen,newsmast.social,US Politics,us_politics,false +bernardjensen,newsmast.social,Visual Arts,visual_arts,false +bernardjensen,newsmast.social,Women’s Voices,women_voices,false +bernardjensen,newsmast.social,Workers Rights,workers_rights,false +JenniferLLawson,newsmast.social,Activism & Civil Rights,activism_civil_rights,false +JenniferLLawson,newsmast.social,AI,ai,false +JenniferLLawson,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false +JenniferLLawson,newsmast.social,Biology,biology,false +JenniferLLawson,newsmast.social,Black Voices,black_voices,false +JenniferLLawson,newsmast.social,Business,business,false +JenniferLLawson,newsmast.social,Chemistry,chemistry,false +JenniferLLawson,newsmast.social,Climate change,climate_change,false +JenniferLLawson,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +JenniferLLawson,newsmast.social,Disabled Voices,disabled_voices,false +JenniferLLawson,newsmast.social,Energy & Pollution,energy_pollution,false +JenniferLLawson,newsmast.social,Engineering,engineering,false +JenniferLLawson,newsmast.social,Environment,environment,false +JenniferLLawson,newsmast.social,Government & Policy,government_policy,false +JenniferLLawson,newsmast.social,Healthcare,healthcare,false +JenniferLLawson,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false +JenniferLLawson,newsmast.social,Immigrants Rights,immigrants_rights,false +JenniferLLawson,newsmast.social,Indigenous Peoples,indigenous_peoples,false +JenniferLLawson,newsmast.social,Law & Justice,law_justice,false +JenniferLLawson,newsmast.social,LGBTQ+,lgbtq,false +JenniferLLawson,newsmast.social,Markets & Finance,markets_finance,false +JenniferLLawson,newsmast.social,Mathematics,mathematics,true +JenniferLLawson,newsmast.social,Physics,physics,false +JenniferLLawson,newsmast.social,Politics,politics,false +JenniferLLawson,newsmast.social,Poverty & Inequality,poverty_inequality,false +JenniferLLawson,newsmast.social,Programming,programming,false +JenniferLLawson,newsmast.social,Science,science,false +JenniferLLawson,newsmast.social,Space,space,false +JenniferLLawson,newsmast.social,Technology,technology,false +JenniferLLawson,newsmast.social,US Politics,us_politics,false +JenniferLLawson,newsmast.social,Women’s Voices,women_voices,false +JenniferLLawson,newsmast.social,Workers Rights,workers_rights,false +minkhantkyaw,newsmast.social,Journalism & Comment,news_comment_data,false +minkhantkyaw,newsmast.social,Poverty & Inequality,poverty_inequality,false +minkhantkyaw,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +minkhantkyaw,newsmast.social,Environment,environment,false +minkhantkyaw,newsmast.social,AI,ai,false +minkhantkyaw,newsmast.social,Technology,technology,true +pjoter9,newsmast.social,Academia & Research,academia_research,false +pjoter9,newsmast.social,Activism & Civil Rights,activism_civil_rights,false +pjoter9,newsmast.social,Architecture & Design,architecture_design,false +pjoter9,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false +pjoter9,newsmast.social,Biology,biology,false +pjoter9,newsmast.social,Black Voices,black_voices,false +pjoter9,newsmast.social,Books & Literature,books_literature,true +pjoter9,newsmast.social,Breaking News,breaking_news,false +pjoter9,newsmast.social,Climate change,climate_change,false +pjoter9,newsmast.social,Creative Arts,creative_arts,false +pjoter9,newsmast.social,Democracy & Human Rights,democracy_human_rights,false +pjoter9,newsmast.social,Disabled Voices,disabled_voices,false +pjoter9,newsmast.social,Energy & Pollution,energy_pollution,false +pjoter9,newsmast.social,Engineering,engineering,false +pjoter9,newsmast.social,Environment,environment,false +pjoter9,newsmast.social,Gaming,gaming,false +pjoter9,newsmast.social,Government & Policy,government_policy,false +pjoter9,newsmast.social,Healthcare,healthcare,false +pjoter9,newsmast.social,History,history,false +pjoter9,newsmast.social,Humanities,humanities,false +pjoter9,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false +pjoter9,newsmast.social,Immigrants Rights,immigrants_rights,false +pjoter9,newsmast.social,Indigenous Peoples,indigenous_peoples,false +pjoter9,newsmast.social,Law & Justice,law_justice,false +pjoter9,newsmast.social,LGBTQ+,lgbtq,false +pjoter9,newsmast.social,Movies,movies,false +pjoter9,newsmast.social,Music,music,false +pjoter9,newsmast.social,Nature & Wildlife,nature_wildlife,false +pjoter9,newsmast.social,Journalism & Comment,news_comment_data,false +pjoter9,newsmast.social,Performing Arts,performing_arts,false +pjoter9,newsmast.social,Pets,pets,false +pjoter9,newsmast.social,Philosophy,philosophy,false +pjoter9,newsmast.social,Photography,photography,false +pjoter9,newsmast.social,Politics,politics,false +pjoter9,newsmast.social,Poverty & Inequality,poverty_inequality,false +pjoter9,newsmast.social,Programming,programming,false +pjoter9,newsmast.social,Science,science,false +pjoter9,newsmast.social,Social Media,social_media,false +pjoter9,newsmast.social,Social Sciences,social_sciences,false +pjoter9,newsmast.social,Space,space,false +pjoter9,newsmast.social,Technology,technology,false +pjoter9,newsmast.social,TV & Radio,tv_radio,false +pjoter9,newsmast.social,Ukraine Invasion,ukraine_invasion,false +pjoter9,newsmast.social,US Politics,us_politics,false +pjoter9,newsmast.social,Visual Arts,visual_arts,false +pjoter9,newsmast.social,Weather,weather,false +pjoter9,newsmast.social,Women’s Voices,women_voices,false +anaslm10,newsmast.social,Science,science,false +anaslm10,newsmast.social,Space,space,false +anaslm10,newsmast.social,Sport,sport,false +anaslm10,newsmast.social,US Sport,us_sport,false +anaslm10,newsmast.social,Breaking News,breaking_news,true +KamalaHarrisWin,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false +KamalaHarrisWin,newsmast.social,Breaking News,breaking_news,true +KamalaHarrisWin,newsmast.social,Climate change,climate_change,false +KamalaHarrisWin,newsmast.social,Energy & Pollution,energy_pollution,false +KamalaHarrisWin,newsmast.social,Environment,environment,false +KamalaHarrisWin,newsmast.social,Journalism & Comment,news_comment_data,false +KamalaHarrisWin,newsmast.social,Social Media,social_media,false +KamalaHarrisWin,newsmast.social,Ukraine Invasion,ukraine_invasion,false +KamalaHarrisWin,newsmast.social,Weather,weather,false +dadonthemoveph,newsmast.social,Performing Arts,performing_arts,false +dadonthemoveph,newsmast.social,Humour,humour,false +dadonthemoveph,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false +dadonthemoveph,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false +dadonthemoveph,newsmast.social,Nature & Wildlife,nature_wildlife,false +dadonthemoveph,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false +dadonthemoveph,newsmast.social,Environment,environment,false +dadonthemoveph,newsmast.social,Food & Drink,food_drink,false +dadonthemoveph,newsmast.social,Movies,movies,false +dadonthemoveph,newsmast.social,Journalism & Comment,news_comment_data,false +dadonthemoveph,newsmast.social,Science,science,false +dadonthemoveph,newsmast.social,Travel,travel,true +dadonthemoveph,newsmast.social,Climate change,climate_change,false +dadonthemoveph,newsmast.social,Indigenous Peoples,indigenous_peoples,false +dadonthemoveph,newsmast.social,Philosophy,philosophy,false +dadonthemoveph,newsmast.social,Photography,photography,false +dadonthemoveph,newsmast.social,Biology,biology,false +dadonthemoveph,newsmast.social,Visual Arts,visual_arts,false +dadonthemoveph,newsmast.social,Space,space,false +dadonthemoveph,newsmast.social,Social Sciences,social_sciences,false +dadonthemoveph,newsmast.social,Creative Arts,creative_arts,false +dadonthemoveph,newsmast.social,Books & Literature,books_literature,false +dadonthemoveph,newsmast.social,History,history,false +dadonthemoveph,newsmast.social,Democracy & Human Rights,democracy_human_rights,false arizpe,newsmast.social,Food & Drink,food_drink,false +arizpe,newsmast.social,Humour,humour,true arizpe,newsmast.social,Nature & Wildlife,nature_wildlife,false arizpe,newsmast.social,Pets,pets,false arizpe,newsmast.social,Science,science,false @@ -24689,158 +13547,3 @@ arizpe,newsmast.social,Space,space,false arizpe,newsmast.social,Sport,sport,false arizpe,newsmast.social,Technology,technology,false arizpe,newsmast.social,Breaking News,breaking_news,false -Lugeiva,mastodon.social,Breaking News,breaking_news,false -Lugeiva,mastodon.social,Government & Policy,government_policy,false -Lugeiva,mastodon.social,Humour,humour,false -Lugeiva,mastodon.social,Nature & Wildlife,nature_wildlife,false -Lugeiva,mastodon.social,Technology,technology,false -Lugeiva,mastodon.social,TV & Radio,tv_radio,false -Lugeiva,mastodon.social,LGBTQ+,lgbtq,true -PlayAwfulThings,pixelfed.social,Biodiversity & Rewilding,biodiversity_rewilding,false -PlayAwfulThings,pixelfed.social,Breaking News,breaking_news,false -PlayAwfulThings,pixelfed.social,Climate change,climate_change,false -PlayAwfulThings,pixelfed.social,Energy & Pollution,energy_pollution,false -PlayAwfulThings,pixelfed.social,Journalism & Comment,news_comment_data,false -PlayAwfulThings,pixelfed.social,Social Media,social_media,false -PlayAwfulThings,pixelfed.social,Ukraine Invasion,ukraine_invasion,false -PlayAwfulThings,pixelfed.social,Weather,weather,false -PlayAwfulThings,pixelfed.social,Environment,environment,true -yisem,newsmast.social,Journalism & Comment,news_comment_data,false -yisem,newsmast.social,Social Media,social_media,false -yisem,newsmast.social,Ukraine Invasion,ukraine_invasion,false -yisem,newsmast.social,Weather,weather,false -yisem,newsmast.social,Breaking News,breaking_news,true -claytech1,mastodon.social,AI,ai,false -claytech1,mastodon.social,Engineering,engineering,false -claytech1,mastodon.social,Food & Drink,food_drink,false -claytech1,mastodon.social,Programming,programming,false -claytech1,mastodon.social,Technology,technology,true -ghfiii,mastodon.xyz,Breaking News,breaking_news,true -YNA,newsmast.social,Technology,technology,true -riaan,mastodon.social,Architecture & Design,architecture_design,false -riaan,mastodon.social,Books & Literature,books_literature,false -riaan,mastodon.social,Breaking News,breaking_news,false -riaan,mastodon.social,Engineering,engineering,false -riaan,mastodon.social,Gaming,gaming,false -riaan,mastodon.social,Movies,movies,false -riaan,mastodon.social,Music,music,false -riaan,mastodon.social,Journalism & Comment,news_comment_data,false -riaan,mastodon.social,Performing Arts,performing_arts,false -riaan,mastodon.social,Photography,photography,false -riaan,mastodon.social,Programming,programming,false -riaan,mastodon.social,Social Media,social_media,false -riaan,mastodon.social,Technology,technology,false -riaan,mastodon.social,TV & Radio,tv_radio,false -riaan,mastodon.social,Ukraine Invasion,ukraine_invasion,false -riaan,mastodon.social,Visual Arts,visual_arts,false -riaan,mastodon.social,Weather,weather,false -riaan,mastodon.social,AI,ai,true -joanathx,newsmast.social,Technology,technology,false -joanathx,newsmast.social,Engineering,engineering,false -joanathx,newsmast.social,Programming,programming,false -ymt_12,newsmast.social,Biology,biology,false -ymt_12,newsmast.social,Chemistry,chemistry,false -ymt_12,newsmast.social,Government & Policy,government_policy,false -ymt_12,newsmast.social,Healthcare,healthcare,false -ymt_12,newsmast.social,Law & Justice,law_justice,false -ymt_12,newsmast.social,Mathematics,mathematics,false -ymt_12,newsmast.social,Physics,physics,false -ymt_12,newsmast.social,Politics,politics,false -ymt_12,newsmast.social,Science,science,false -ymt_12,newsmast.social,Space,space,false -ymt_12,newsmast.social,US Politics,us_politics,false -ymt_12,newsmast.social,Academia & Research,academia_research,true -sev,newsmast.social,Creative Arts,creative_arts,false -ghfiii,mastodon.xyz,Environment,environment,false -ghfiii,mastodon.xyz,Journalism & Comment,news_comment_data,false -ghfiii,mastodon.xyz,Physics,physics,false -ghfiii,mastodon.xyz,Science,science,false -ghfiii,mastodon.xyz,Space,space,false -ghfiii,mastodon.xyz,Technology,technology,false -ghfiii,mastodon.xyz,Ukraine Invasion,ukraine_invasion,false -ghfiii,mastodon.xyz,Weather,weather,false -jwalterclark,mastodon.online,Academia & Research,academia_research,false -jwalterclark,mastodon.online,Activism & Civil Rights,activism_civil_rights,false -jwalterclark,mastodon.online,AI,ai,false -jwalterclark,mastodon.online,Architecture & Design,architecture_design,false -jwalterclark,mastodon.online,Biodiversity & Rewilding,biodiversity_rewilding,false -jwalterclark,mastodon.online,Biology,biology,false -jwalterclark,mastodon.online,Black Voices,black_voices,false -jwalterclark,mastodon.online,Books & Literature,books_literature,false -jwalterclark,mastodon.online,Business,business,false -jwalterclark,mastodon.online,Chemistry,chemistry,false -jwalterclark,mastodon.online,Climate change,climate_change,false -jwalterclark,mastodon.online,Creative Arts,creative_arts,false -jwalterclark,mastodon.online,Democracy & Human Rights,democracy_human_rights,false -jwalterclark,mastodon.online,Disabled Voices,disabled_voices,false -jwalterclark,mastodon.online,Energy & Pollution,energy_pollution,false -jwalterclark,mastodon.online,Engineering,engineering,false -jwalterclark,mastodon.online,Environment,environment,false -jwalterclark,mastodon.online,Food & Drink,food_drink,false -jwalterclark,mastodon.online,Gaming,gaming,false -jwalterclark,mastodon.online,Government & Policy,government_policy,false -jwalterclark,mastodon.online,Healthcare,healthcare,false -jwalterclark,mastodon.online,History,history,false -jwalterclark,mastodon.online,Humanities,humanities,false -jwalterclark,mastodon.online,Humour,humour,false -jwalterclark,mastodon.online,"Hunger, Disease & Water",hunger_disease_water,false -jwalterclark,mastodon.online,Immigrants Rights,immigrants_rights,false -jwalterclark,mastodon.online,Indigenous Peoples,indigenous_peoples,false -jwalterclark,mastodon.online,Law & Justice,law_justice,false -jwalterclark,mastodon.online,LGBTQ+,lgbtq,false -jwalterclark,mastodon.online,Markets & Finance,markets_finance,false -jwalterclark,mastodon.online,Mathematics,mathematics,false -jwalterclark,mastodon.online,Mental Health & Wellbeing,mental_health_wellbeing,false -jwalterclark,mastodon.online,Movies,movies,false -jwalterclark,mastodon.online,Music,music,false -jwalterclark,mastodon.online,Nature & Wildlife,nature_wildlife,false -jwalterclark,mastodon.online,Journalism & Comment,news_comment_data,false -jwalterclark,mastodon.online,Performing Arts,performing_arts,false -jwalterclark,mastodon.online,Pets,pets,false -jwalterclark,mastodon.online,Philosophy,philosophy,false -jwalterclark,mastodon.online,Photography,photography,false -jwalterclark,mastodon.online,Physics,physics,false -jwalterclark,mastodon.online,Politics,politics,false -jwalterclark,mastodon.online,Poverty & Inequality,poverty_inequality,false -jwalterclark,mastodon.online,Programming,programming,false -jwalterclark,mastodon.online,Puzzles,puzzles,false -jwalterclark,mastodon.online,Science,science,false -jwalterclark,mastodon.online,Social Media,social_media,false -jwalterclark,mastodon.online,Social Sciences,social_sciences,false -jwalterclark,mastodon.online,Space,space,false -jwalterclark,mastodon.online,Technology,technology,false -jwalterclark,mastodon.online,Travel,travel,false -jwalterclark,mastodon.online,TV & Radio,tv_radio,false -jwalterclark,mastodon.online,Ukraine Invasion,ukraine_invasion,false -jwalterclark,mastodon.online,US Politics,us_politics,false -jwalterclark,mastodon.online,Visual Arts,visual_arts,false -jwalterclark,mastodon.online,Weather,weather,false -jwalterclark,mastodon.online,Women’s Voices,women_voices,false -jwalterclark,mastodon.online,Workers Rights,workers_rights,false -jwalterclark,mastodon.online,Breaking News,breaking_news,true -skarnio,organica.social,Breaking News,breaking_news,false -skarnio,organica.social,Social Media,social_media,false -skarnio,organica.social,Ukraine Invasion,ukraine_invasion,false -skarnio,organica.social,Weather,weather,false -skarnio,organica.social,Journalism & Comment,news_comment_data,true -sev,newsmast.social,Journalism & Comment,news_comment_data,false -sev,newsmast.social,Breaking News,breaking_news,false -sev,newsmast.social,Weather,weather,false -YNA,newsmast.social,Engineering,engineering,false -ymt_12,newsmast.social,Journalism & Comment,news_comment_data,false -ymt_12,newsmast.social,Social Media,social_media,false -ymt_12,newsmast.social,Ukraine Invasion,ukraine_invasion,false -ymt_12,newsmast.social,Poverty & Inequality,poverty_inequality,false -ymt_12,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false -ymt_12,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -sev,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false -sev,newsmast.social,Nature & Wildlife,nature_wildlife,false -sev,newsmast.social,Ukraine Invasion,ukraine_invasion,false -sev,newsmast.social,Social Media,social_media,false -sev,newsmast.social,Visual Arts,visual_arts,false -greg,flipboard.social,AI,ai,false -greg,flipboard.social,Business,business,false -greg,flipboard.social,Engineering,engineering,false -greg,flipboard.social,Markets & Finance,markets_finance,false -greg,flipboard.social,Programming,programming,false -greg,flipboard.social,Technology,technology,true From fa23eb29cc9193205364624db4f9c7590a7f6ea7 Mon Sep 17 00:00:00 2001 From: Aung Kyaw Phyo Date: Tue, 8 Jul 2025 17:30:05 +0700 Subject: [PATCH 47/51] Improve the script --- app/jobs/migrate_newsmast_accounts_job.rb | 103 +- user_community_export.csv | 13552 +------------------- 2 files changed, 35 insertions(+), 13620 deletions(-) diff --git a/app/jobs/migrate_newsmast_accounts_job.rb b/app/jobs/migrate_newsmast_accounts_job.rb index 0f049a09..60af6200 100644 --- a/app/jobs/migrate_newsmast_accounts_job.rb +++ b/app/jobs/migrate_newsmast_accounts_job.rb @@ -2,7 +2,6 @@ class MigrateNewsmastAccountsJob < ApplicationJob queue_as :default - BATCH_SIZE = 100 def perform(csv_path = Rails.root.join('user_community_export.csv')) @missing_accounts = [] @@ -16,15 +15,9 @@ def perform(csv_path = Rails.root.join('user_community_export.csv')) Rails.logger.info "Starting migration of accounts from #{csv_path}" - batch = [] CSV.foreach(csv_path, headers: true) do |row| - batch << row - if batch.size >= BATCH_SIZE - process_batch(batch) - batch = [] - end + process_batch(row) end - process_batch(batch) if batch.any? # Output missing accounts at the end output_missing_accounts @@ -32,64 +25,45 @@ def perform(csv_path = Rails.root.join('user_community_export.csv')) private - def process_batch(rows) + def process_batch(row) # Preload communities - slugs = rows.map { |r| r['slug'].tr('_', '-') } - names = rows.map { |r| r['name'] } - communities = Community.where(slug: slugs, name: names, channel_type: 'newsmast').index_by { |c| [c.slug, c.name] } + 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 - acct_queries = rows.map { |r| "@#{r['username']}@#{r['domain']}" }.uniq - account_id_map = {} - acct_queries.each do |acct| - account_id_map[acct] = search_target_account_id(acct, @owner_token) - end - accounts = Account.where(id: account_id_map.values.compact).index_by(&:id) - - rows.each do |row| - username, domain, name, slug, is_primary = row.values_at('username', 'domain', 'name', 'slug', 'is_primary') - community = communities[[slug.tr('_', '-'), name]] - unless community - Rails.logger.error "Community not found: #{name} (#{slug.tr('_', '-')}) for user acct: #{username}@#{domain}" - next - end + + 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') - acct = "@#{username}@#{domain}" - target_account_id = account_id_map[acct] - target_account = accounts[target_account_id.to_i] - unless target_account - # Store missing account in array - @missing_accounts << { - username: username, - domain: domain, - acct: acct, - community_name: name, - community_slug: slug.tr('_', '-'), - target_account_id: target_account_id - } - Rails.logger.error "Account not found for user acct: #{username}@#{domain}" - next - end + if account + JoinedCommunity.where(account_id: account.id).destroy_all - is_primary_bool = ActiveModel::Type::Boolean.new.cast(is_primary) - joined_community = JoinedCommunity.find_by(account_id: target_account.id, patchwork_community_id: community.id) - if joined_community - if is_primary_bool - JoinedCommunity.where(account_id: target_account.id).where.not(id: joined_community.id).update_all(is_primary: false) - end - joined_community.update(is_primary: is_primary_bool) - Rails.logger.info "Updated joined_community for account #{username}@#{domain} in community #{name} (#{slug})" - else - if is_primary_bool - JoinedCommunity.where(account_id: target_account.id).update_all(is_primary: false) + existing_communities.each do |community| + + if primary_slug && (primary_slug == community.slug) + is_primary = true + else + is_primary = false end JoinedCommunity.create!( - account_id: target_account.id, + account_id: account.id, patchwork_community_id: community.id, - is_primary: is_primary_bool + is_primary: is_primary ) - Rails.logger.info "Created joined_community for account #{username}@#{domain} in community #{name} (#{slug})" + Rails.logger.info "Created joined_community for account #{handle}." + end + else + @missing_accounts << handle end end @@ -106,25 +80,14 @@ def output_missing_accounts Rails.logger.info "-" * 80 @missing_accounts.each_with_index do |account, index| - Rails.logger.info "#{index + 1}. #{account[:acct]} -> #{account[:community_name]} (#{account[:community_slug]})" - Rails.logger.info " Target ID: #{account[:target_account_id] || 'Not found'}" - end - - Rails.logger.info "-" * 80 - Rails.logger.info "Missing accounts by domain:" - domain_counts = @missing_accounts.group_by { |a| a[:domain] }.transform_values(&:count) - domain_counts.each do |domain, count| - Rails.logger.info " #{domain}: #{count} accounts" - end + Rails.logger.info "#{index + 1}. #{account}" + end end Rails.logger.info "="*80 end def search_target_account_id(query, owner_token) - @account_id_cache ||= {} - return @account_id_cache[query] if @account_id_cache.key?(query) - retries = 5 result = nil while retries >= 0 @@ -134,12 +97,10 @@ def search_target_account_id(query, owner_token) token: owner_token ).call if result.any? - @account_id_cache[query] = result.last['id'] return result.last['id'] end retries -= 1 end - @account_id_cache[query] = nil nil end diff --git a/user_community_export.csv b/user_community_export.csv index ba2ba757..5c4a7b39 100644 --- a/user_community_export.csv +++ b/user_community_export.csv @@ -1,13549 +1,3 @@ -username,domain,name,slug,is_primary -emilyjd,newsmast.social,Travel,travel,false -emilyjd,newsmast.social,Environment,environment,false -emilyjd,newsmast.social,Movies,movies,false -emilyjd,newsmast.social,Poverty & Inequality,poverty_inequality,false -emilyjd,newsmast.social,Humanities,humanities,false -emilyjd,newsmast.social,Social Sciences,social_sciences,false -emilyjd,newsmast.social,Music,music,false -emilyjd,newsmast.social,Space,space,false -emilyjd,newsmast.social,TV & Radio,tv_radio,false -emilyjd,newsmast.social,LGBTQ+,lgbtq,false -emilyjd,newsmast.social,Women’s Voices,women_voices,false -emilyjd,newsmast.social,Visual Arts,visual_arts,false -emilyjd,newsmast.social,Books & Literature,books_literature,false -emilyjd,newsmast.social,Climate change,climate_change,false -emilyjd,newsmast.social,Food & Drink,food_drink,false -emilyjd,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false -emilyjd,newsmast.social,Journalism & Comment,news_comment_data,true -emilyjd,newsmast.social,Creative Arts,creative_arts,false -emilyjd,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -robotmaths,newsmast.social,Government & Policy,government_policy,false -robotmaths,newsmast.social,Mathematics,mathematics,true -robotmaths,newsmast.social,Movies,movies,false -robotmaths,newsmast.social,Journalism & Comment,news_comment_data,false -robotmaths,newsmast.social,TV & Radio,tv_radio,false -mstepich,newsmast.social,Academia & Research,academia_research,false -mstepich,newsmast.social,AI,ai,false -mstepich,newsmast.social,Business,business,false -mstepich,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -mstepich,newsmast.social,Energy & Pollution,energy_pollution,false -mstepich,newsmast.social,Engineering,engineering,false -mstepich,newsmast.social,Environment,environment,false -mstepich,newsmast.social,Government & Policy,government_policy,false -mstepich,newsmast.social,Healthcare,healthcare,false -mstepich,newsmast.social,History,history,false -mstepich,newsmast.social,Humanities,humanities,false -mstepich,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false -mstepich,newsmast.social,Law & Justice,law_justice,false -mstepich,newsmast.social,Journalism & Comment,news_comment_data,true -mstepich,newsmast.social,Philosophy,philosophy,false -mstepich,newsmast.social,Politics,politics,false -mstepich,newsmast.social,Science,science,false -mstepich,newsmast.social,Social Sciences,social_sciences,false -mstepich,newsmast.social,Space,space,false -mstepich,newsmast.social,Technology,technology,false -mstepich,newsmast.social,Ukraine Invasion,ukraine_invasion,false -mstepich,newsmast.social,US Politics,us_politics,false -kamran,newsmast.social,Government & Policy,government_policy,false -kamran,newsmast.social,Breaking News,breaking_news,false -kamran,newsmast.social,Politics,politics,false -kamran,newsmast.social,Ukraine Invasion,ukraine_invasion,false -kamran,newsmast.social,Mathematics,mathematics,false -kamran,newsmast.social,Journalism & Comment,news_comment_data,true -princessbamboo,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false -princessbamboo,newsmast.social,Food & Drink,food_drink,true -princessbamboo,newsmast.social,Pets,pets,false -princessbamboo,newsmast.social,Travel,travel,false -YNDA,newsmast.social,Architecture & Design,architecture_design,false -YNDA,newsmast.social,Books & Literature,books_literature,false -YNDA,newsmast.social,Creative Arts,creative_arts,false -YNDA,newsmast.social,Food & Drink,food_drink,false -YNDA,newsmast.social,Gaming,gaming,false -YNDA,newsmast.social,Humour,humour,false -YNDA,newsmast.social,Markets & Finance,markets_finance,false -YNDA,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false -YNDA,newsmast.social,Movies,movies,false -YNDA,newsmast.social,Music,music,false -YNDA,newsmast.social,Nature & Wildlife,nature_wildlife,false -YNDA,newsmast.social,Performing Arts,performing_arts,false -YNDA,newsmast.social,Pets,pets,false -YNDA,newsmast.social,Photography,photography,false -YNDA,newsmast.social,Puzzles,puzzles,false -YNDA,newsmast.social,Travel,travel,false -YNDA,newsmast.social,TV & Radio,tv_radio,false -YNDA,newsmast.social,Visual Arts,visual_arts,false -YNDA,newsmast.social,Workers Rights,workers_rights,false -YNDA,newsmast.social,Business,business,true -AnnaJ,newsmast.social,Movies,movies,false -AnnaJ,newsmast.social,Activism & Civil Rights,activism_civil_rights,false -AnnaJ,newsmast.social,Journalism & Comment,news_comment_data,true -AnnaJ,newsmast.social,AI,ai,false -AnnaJ,newsmast.social,Books & Literature,books_literature,false -AnnaJ,newsmast.social,Humanities,humanities,false -AnnaJ,newsmast.social,Women’s Voices,women_voices,false -AnnaJ,newsmast.social,LGBTQ+,lgbtq,false -AnnaJ,newsmast.social,Black Voices,black_voices,false -AnnaJ,newsmast.social,Food & Drink,food_drink,false -AnnaJ,newsmast.social,Visual Arts,visual_arts,false -AnnaJ,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false -minkhantkyaw35,newsmast.social,Breaking News,breaking_news,false -minkhantkyaw35,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -minkhantkyaw35,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,true -minkhantkyaw35,newsmast.social,Poverty & Inequality,poverty_inequality,false -minkhantkyaw35,newsmast.social,Journalism & Comment,news_comment_data,false -minkhantkyaw35,newsmast.social,Politics,politics,false -minkhantkyaw35,newsmast.social,Ukraine Invasion,ukraine_invasion,false -minkhantkyaw35,newsmast.social,Weather,weather,false -minkhantkyaw35,newsmast.social,Environment,environment,false -minkhantkyaw35,newsmast.social,Immigrants Rights,immigrants_rights,false -sonbish,newsmast.social,Creative Arts,creative_arts,false -sonbish,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,true -sonbish,newsmast.social,Food & Drink,food_drink,false -sonbish,newsmast.social,Humour,humour,false -fs0c131y,newsmast.social,Breaking News,breaking_news,false -fs0c131y,newsmast.social,Politics,politics,false -fs0c131y,newsmast.social,Technology,technology,false -fs0c131y,newsmast.social,Ukraine Invasion,ukraine_invasion,false -fs0c131y,newsmast.social,Journalism & Comment,news_comment_data,true -thepopblog,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false -thepopblog,newsmast.social,Creative Arts,creative_arts,false -thepopblog,newsmast.social,Movies,movies,false -thepopblog,newsmast.social,Music,music,true -thepopblog,newsmast.social,TV & Radio,tv_radio,false -refugeescommunityupdate,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false -refugeescommunityupdate,newsmast.social,Poverty & Inequality,poverty_inequality,false -refugeescommunityupdate,newsmast.social,Immigrants Rights,immigrants_rights,true -kazwan,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false -kazwan,newsmast.social,AI,ai,false -kazwan,newsmast.social,Breaking News,breaking_news,false -kazwan,newsmast.social,Food & Drink,food_drink,false -kazwan,newsmast.social,Humour,humour,false -kazwan,newsmast.social,Journalism & Comment,news_comment_data,false -kazwan,newsmast.social,Space,space,false -kazwan,newsmast.social,Technology,technology,true -kazwan,newsmast.social,Travel,travel,false -kazwan,newsmast.social,Environment,environment,false -kazwan,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -dianajspencer,newsmast.social,Nature & Wildlife,nature_wildlife,false -dianajspencer,newsmast.social,AI,ai,false -dianajspencer,newsmast.social,Architecture & Design,architecture_design,false -dianajspencer,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false -dianajspencer,newsmast.social,Books & Literature,books_literature,false -dianajspencer,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -dianajspencer,newsmast.social,Environment,environment,false -dianajspencer,newsmast.social,History,history,false -dianajspencer,newsmast.social,Humanities,humanities,true -dianajspencer,newsmast.social,Movies,movies,false -dianajspencer,newsmast.social,Philosophy,philosophy,false -dianajspencer,newsmast.social,Photography,photography,false -dianajspencer,newsmast.social,Physics,physics,false -dianajspencer,newsmast.social,Science,science,false -dianajspencer,newsmast.social,Space,space,false -dianajspencer,newsmast.social,Technology,technology,false -dianajspencer,newsmast.social,Visual Arts,visual_arts,false -quincyocharles,newsmast.social,AI,ai,false -quincyocharles,newsmast.social,Biology,biology,false -quincyocharles,newsmast.social,Breaking News,breaking_news,false -quincyocharles,newsmast.social,Business,business,false -quincyocharles,newsmast.social,Chemistry,chemistry,false -quincyocharles,newsmast.social,Engineering,engineering,false -quincyocharles,newsmast.social,Football,football,true -quincyocharles,newsmast.social,Markets & Finance,markets_finance,false -quincyocharles,newsmast.social,Mathematics,mathematics,false -quincyocharles,newsmast.social,Journalism & Comment,news_comment_data,false -quincyocharles,newsmast.social,Physics,physics,false -quincyocharles,newsmast.social,Politics,politics,false -quincyocharles,newsmast.social,Science,science,false -quincyocharles,newsmast.social,Space,space,false -quincyocharles,newsmast.social,Sport,sport,false -quincyocharles,newsmast.social,Technology,technology,false -quincyocharles,newsmast.social,Ukraine Invasion,ukraine_invasion,false -quincyocharles,newsmast.social,Weather,weather,false -yangfengji,newsmast.social,AI,ai,true -yangfengji,newsmast.social,Breaking News,breaking_news,false -yangfengji,newsmast.social,Humanities,humanities,false -yangfengji,newsmast.social,Mathematics,mathematics,false -yangfengji,newsmast.social,Journalism & Comment,news_comment_data,false -yangfengji,newsmast.social,Philosophy,philosophy,false -yangfengji,newsmast.social,Programming,programming,false -yangfengji,newsmast.social,Science,science,false -yangfengji,newsmast.social,Social Sciences,social_sciences,false -yangfengji,newsmast.social,Technology,technology,false -DisabledWorld,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false -DisabledWorld,newsmast.social,AI,ai,false -DisabledWorld,newsmast.social,Biology,biology,false -DisabledWorld,newsmast.social,Books & Literature,books_literature,false -DisabledWorld,newsmast.social,Engineering,engineering,false -DisabledWorld,newsmast.social,Humanities,humanities,false -DisabledWorld,newsmast.social,Poverty & Inequality,poverty_inequality,false -DisabledWorld,newsmast.social,Nature & Wildlife,nature_wildlife,false -DisabledWorld,newsmast.social,Physics,physics,false -DisabledWorld,newsmast.social,Science,science,false -DisabledWorld,newsmast.social,Social Sciences,social_sciences,false -DisabledWorld,newsmast.social,Space,space,false -DisabledWorld,newsmast.social,Technology,technology,false -DisabledWorld,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,true -DisabledWorld,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -FinlandatWar,newsmast.social,Books & Literature,books_literature,false -FinlandatWar,newsmast.social,Breaking News,breaking_news,false -FinlandatWar,newsmast.social,Gaming,gaming,false -FinlandatWar,newsmast.social,History,history,true -FinlandatWar,newsmast.social,Humanities,humanities,false -FinlandatWar,newsmast.social,Movies,movies,false -FinlandatWar,newsmast.social,Journalism & Comment,news_comment_data,false -FinlandatWar,newsmast.social,TV & Radio,tv_radio,false -FinlandatWar,newsmast.social,Ukraine Invasion,ukraine_invasion,false -Shali,newsmast.social,Activism & Civil Rights,activism_civil_rights,false -Shali,newsmast.social,Breaking News,breaking_news,false -Shali,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -Shali,newsmast.social,Government & Policy,government_policy,false -Shali,newsmast.social,Poverty & Inequality,poverty_inequality,false -Shali,newsmast.social,Law & Justice,law_justice,false -Shali,newsmast.social,Journalism & Comment,news_comment_data,false -Shali,newsmast.social,Politics,politics,true -Shali,newsmast.social,Social Sciences,social_sciences,false -Shali,newsmast.social,Ukraine Invasion,ukraine_invasion,false -chamkaurghag,newsmast.social,Social Sciences,social_sciences,false -chamkaurghag,newsmast.social,AI,ai,false -chamkaurghag,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false -chamkaurghag,newsmast.social,Biology,biology,false -chamkaurghag,newsmast.social,Chemistry,chemistry,false -chamkaurghag,newsmast.social,Climate change,climate_change,false -chamkaurghag,newsmast.social,Energy & Pollution,energy_pollution,false -chamkaurghag,newsmast.social,Engineering,engineering,false -chamkaurghag,newsmast.social,Environment,environment,false -chamkaurghag,newsmast.social,Mathematics,mathematics,false -chamkaurghag,newsmast.social,Physics,physics,true -chamkaurghag,newsmast.social,Science,science,false -chamkaurghag,newsmast.social,Space,space,false -dollarbureau,newsmast.social,AI,ai,false -dollarbureau,newsmast.social,Breaking News,breaking_news,false -dollarbureau,newsmast.social,Business,business,false -dollarbureau,newsmast.social,Humour,humour,false -dollarbureau,newsmast.social,Markets & Finance,markets_finance,false -dollarbureau,newsmast.social,Journalism & Comment,news_comment_data,false -dollarbureau,newsmast.social,Technology,technology,false -dollarbureau,newsmast.social,Travel,travel,true -Lamech,newsmast.social,Nature & Wildlife,nature_wildlife,false -Lamech,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false -Lamech,newsmast.social,Climate change,climate_change,false -Lamech,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -Lamech,newsmast.social,Energy & Pollution,energy_pollution,false -Lamech,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false -Lamech,newsmast.social,Poverty & Inequality,poverty_inequality,false -Lamech,newsmast.social,Environment,environment,true -Lamech,newsmast.social,Immigrants Rights,immigrants_rights,false -awanderfulsole,newsmast.social,Architecture & Design,architecture_design,false -awanderfulsole,newsmast.social,Gaming,gaming,false -awanderfulsole,newsmast.social,Movies,movies,false -awanderfulsole,newsmast.social,Music,music,false -awanderfulsole,newsmast.social,Performing Arts,performing_arts,false -awanderfulsole,newsmast.social,Photography,photography,true -awanderfulsole,newsmast.social,TV & Radio,tv_radio,false -awanderfulsole,newsmast.social,Visual Arts,visual_arts,false -MarieGeneste,newsmast.social,Technology,technology,false -MarieGeneste,newsmast.social,Social Sciences,social_sciences,false -MarieGeneste,newsmast.social,Business,business,false -MarieGeneste,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false -MarieGeneste,newsmast.social,Climate change,climate_change,true -MarieGeneste,newsmast.social,Energy & Pollution,energy_pollution,false -MarieGeneste,newsmast.social,Environment,environment,false -aliegilbert,newsmast.social,Nature & Wildlife,nature_wildlife,false -aliegilbert,newsmast.social,Breaking News,breaking_news,true -aliegilbert,newsmast.social,Environment,environment,false -aliegilbert,newsmast.social,LGBTQ+,lgbtq,false -aliegilbert,newsmast.social,Journalism & Comment,news_comment_data,false -aliegilbert,newsmast.social,Science,science,false -aliegilbert,newsmast.social,Women’s Voices,women_voices,false -aliegilbert,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -salads4lunch,newsmast.social,Breaking News,breaking_news,false -salads4lunch,newsmast.social,Creative Arts,creative_arts,false -salads4lunch,newsmast.social,Food & Drink,food_drink,true -salads4lunch,newsmast.social,Humour,humour,false -salads4lunch,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false -salads4lunch,newsmast.social,Nature & Wildlife,nature_wildlife,false -salads4lunch,newsmast.social,Pets,pets,false -salads4lunch,newsmast.social,Puzzles,puzzles,false -salads4lunch,newsmast.social,Social Media,social_media,false -salads4lunch,newsmast.social,Travel,travel,false -Hope,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false -Hope,newsmast.social,Environment,environment,false -Hope,newsmast.social,Movies,movies,true -Hope,newsmast.social,Performing Arts,performing_arts,false -Hope,newsmast.social,TV & Radio,tv_radio,false -lspar002,newsmast.social,AI,ai,false -lspar002,newsmast.social,Breaking News,breaking_news,true -lspar002,newsmast.social,Pets,pets,false -lspar002,newsmast.social,Science,science,false -lspar002,newsmast.social,Social Sciences,social_sciences,false -thosgood,newsmast.social,Social Sciences,social_sciences,false -thosgood,newsmast.social,Books & Literature,books_literature,false -thosgood,newsmast.social,History,history,false -thosgood,newsmast.social,Humanities,humanities,false -thosgood,newsmast.social,Mathematics,mathematics,true -thosgood,newsmast.social,Philosophy,philosophy,false -theblogofdimi,newsmast.social,US Politics,us_politics,false -theblogofdimi,newsmast.social,Weather,weather,false -theblogofdimi,newsmast.social,History,history,true -theblogofdimi,newsmast.social,AI,ai,false -theblogofdimi,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false -theblogofdimi,newsmast.social,Biology,biology,false -theblogofdimi,newsmast.social,Books & Literature,books_literature,false -theblogofdimi,newsmast.social,Breaking News,breaking_news,false -theblogofdimi,newsmast.social,Business,business,false -theblogofdimi,newsmast.social,Chemistry,chemistry,false -theblogofdimi,newsmast.social,Climate change,climate_change,false -theblogofdimi,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -theblogofdimi,newsmast.social,Energy & Pollution,energy_pollution,false -theblogofdimi,newsmast.social,Engineering,engineering,false -theblogofdimi,newsmast.social,Environment,environment,false -theblogofdimi,newsmast.social,Government & Policy,government_policy,false -theblogofdimi,newsmast.social,Humanities,humanities,false -theblogofdimi,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false -theblogofdimi,newsmast.social,Law & Justice,law_justice,false -theblogofdimi,newsmast.social,Markets & Finance,markets_finance,false -theblogofdimi,newsmast.social,Mathematics,mathematics,false -theblogofdimi,newsmast.social,Music,music,false -theblogofdimi,newsmast.social,Journalism & Comment,news_comment_data,false -theblogofdimi,newsmast.social,Philosophy,philosophy,false -theblogofdimi,newsmast.social,Photography,photography,false -theblogofdimi,newsmast.social,Physics,physics,false -theblogofdimi,newsmast.social,Politics,politics,false -theblogofdimi,newsmast.social,Poverty & Inequality,poverty_inequality,false -theblogofdimi,newsmast.social,Science,science,false -theblogofdimi,newsmast.social,Social Media,social_media,false -theblogofdimi,newsmast.social,Social Sciences,social_sciences,false -theblogofdimi,newsmast.social,Space,space,false -theblogofdimi,newsmast.social,Technology,technology,false -theblogofdimi,newsmast.social,Ukraine Invasion,ukraine_invasion,false -bryancollins,newsmast.social,Markets & Finance,markets_finance,false -bryancollins,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false -bryancollins,newsmast.social,Movies,movies,false -bryancollins,newsmast.social,Music,music,false -bryancollins,newsmast.social,Nature & Wildlife,nature_wildlife,false -bryancollins,newsmast.social,Performing Arts,performing_arts,false -bryancollins,newsmast.social,Pets,pets,false -bryancollins,newsmast.social,Architecture & Design,architecture_design,false -bryancollins,newsmast.social,Photography,photography,false -bryancollins,newsmast.social,Books & Literature,books_literature,true -bryancollins,newsmast.social,Puzzles,puzzles,false -bryancollins,newsmast.social,Travel,travel,false -bryancollins,newsmast.social,Business,business,false -bryancollins,newsmast.social,TV & Radio,tv_radio,false -bryancollins,newsmast.social,Creative Arts,creative_arts,false -bryancollins,newsmast.social,Visual Arts,visual_arts,false -bryancollins,newsmast.social,Workers Rights,workers_rights,false -bryancollins,newsmast.social,Food & Drink,food_drink,false -bryancollins,newsmast.social,Gaming,gaming,false -bryancollins,newsmast.social,Humour,humour,false -bryancollins,newsmast.social,Markets & Finance,markets_finance,false -bryancollins,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false -bryancollins,newsmast.social,Movies,movies,false -bryancollins,newsmast.social,Music,music,false -bryancollins,newsmast.social,Nature & Wildlife,nature_wildlife,false -bryancollins,newsmast.social,Performing Arts,performing_arts,false -bryancollins,newsmast.social,Pets,pets,false -bryancollins,newsmast.social,Photography,photography,false -bryancollins,newsmast.social,Puzzles,puzzles,false -bryancollins,newsmast.social,Travel,travel,false -bryancollins,newsmast.social,TV & Radio,tv_radio,false -bryancollins,newsmast.social,Visual Arts,visual_arts,false -bryancollins,newsmast.social,Workers Rights,workers_rights,false -adanvers,newsmast.social,Academia & Research,academia_research,false -adanvers,newsmast.social,Biology,biology,false -adanvers,newsmast.social,Breaking News,breaking_news,false -adanvers,newsmast.social,Climate change,climate_change,false -adanvers,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -adanvers,newsmast.social,Government & Policy,government_policy,false -adanvers,newsmast.social,Healthcare,healthcare,false -adanvers,newsmast.social,History,history,false -adanvers,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false -adanvers,newsmast.social,Law & Justice,law_justice,false -adanvers,newsmast.social,Journalism & Comment,news_comment_data,false -adanvers,newsmast.social,Philosophy,philosophy,false -adanvers,newsmast.social,Politics,politics,false -adanvers,newsmast.social,Poverty & Inequality,poverty_inequality,false -adanvers,newsmast.social,Science,science,false -adanvers,newsmast.social,Technology,technology,false -adanvers,newsmast.social,US Politics,us_politics,false -adanvers,newsmast.social,Social Sciences,social_sciences,true -paing89,newsmast.social,Breaking News,breaking_news,true -paing89,newsmast.social,Journalism & Comment,news_comment_data,false -paing89,newsmast.social,Social Media,social_media,false -paing89,newsmast.social,Technology,technology,false -paing89,newsmast.social,Ukraine Invasion,ukraine_invasion,false -paing89,newsmast.social,Weather,weather,false -DemocracyAlarm,newsmast.social,Activism & Civil Rights,activism_civil_rights,false -DemocracyAlarm,newsmast.social,Breaking News,breaking_news,false -DemocracyAlarm,newsmast.social,Government & Policy,government_policy,false -DemocracyAlarm,newsmast.social,Law & Justice,law_justice,false -DemocracyAlarm,newsmast.social,Journalism & Comment,news_comment_data,true -DemocracyAlarm,newsmast.social,Social Media,social_media,false -DemocracyAlarm,newsmast.social,US Politics,us_politics,false -ekonomism,newsmast.social,Breaking News,breaking_news,true -ekonomism,newsmast.social,Government & Policy,government_policy,false -ekonomism,newsmast.social,Healthcare,healthcare,false -ekonomism,newsmast.social,Politics,politics,false -ekonomism,newsmast.social,Social Sciences,social_sciences,false -ekonomism,newsmast.social,Ukraine Invasion,ukraine_invasion,false -ekaasha,newsmast.social,AI,ai,false -ekaasha,newsmast.social,Business,business,false -ekaasha,newsmast.social,Creative Arts,creative_arts,false -ekaasha,newsmast.social,Engineering,engineering,false -ekaasha,newsmast.social,Food & Drink,food_drink,false -ekaasha,newsmast.social,Humour,humour,false -ekaasha,newsmast.social,Markets & Finance,markets_finance,true -ekaasha,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false -ekaasha,newsmast.social,Nature & Wildlife,nature_wildlife,false -ekaasha,newsmast.social,Pets,pets,false -ekaasha,newsmast.social,Programming,programming,false -ekaasha,newsmast.social,Puzzles,puzzles,false -ekaasha,newsmast.social,Technology,technology,false -ekaasha,newsmast.social,Travel,travel,false -ekaasha,newsmast.social,Workers Rights,workers_rights,false -Thiha,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false -Thiha,newsmast.social,AI,ai,false -Thiha,newsmast.social,Architecture & Design,architecture_design,false -Thiha,newsmast.social,Creative Arts,creative_arts,false -Thiha,newsmast.social,Food & Drink,food_drink,false -Thiha,newsmast.social,Football,football,false -Thiha,newsmast.social,Gaming,gaming,false -Thiha,newsmast.social,Humour,humour,false -Thiha,newsmast.social,Movies,movies,false -Thiha,newsmast.social,Music,music,false -Thiha,newsmast.social,Nature & Wildlife,nature_wildlife,false -Thiha,newsmast.social,Journalism & Comment,news_comment_data,false -Thiha,newsmast.social,Performing Arts,performing_arts,false -Thiha,newsmast.social,Pets,pets,false -Thiha,newsmast.social,Photography,photography,false -Thiha,newsmast.social,Politics,politics,false -Thiha,newsmast.social,Puzzles,puzzles,false -Thiha,newsmast.social,Social Sciences,social_sciences,false -Thiha,newsmast.social,Sport,sport,false -Thiha,newsmast.social,Technology,technology,true -Thiha,newsmast.social,Travel,travel,false -Thiha,newsmast.social,TV & Radio,tv_radio,false -Thiha,newsmast.social,Ukraine Invasion,ukraine_invasion,false -Thiha,newsmast.social,Visual Arts,visual_arts,false -Thiha,newsmast.social,Weather,weather,false -EMcParland,newsmast.social,Breaking News,breaking_news,false -EMcParland,newsmast.social,Government & Policy,government_policy,false -EMcParland,newsmast.social,Journalism & Comment,news_comment_data,false -EMcParland,newsmast.social,Politics,politics,false -EMcParland,newsmast.social,Social Media,social_media,false -EMcParland,newsmast.social,Ukraine Invasion,ukraine_invasion,true -PowellsParadigm,newsmast.social,Energy & Pollution,energy_pollution,false -PowellsParadigm,newsmast.social,AI,ai,false -PowellsParadigm,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false -PowellsParadigm,newsmast.social,Climate change,climate_change,false -PowellsParadigm,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -PowellsParadigm,newsmast.social,Environment,environment,false -PowellsParadigm,newsmast.social,History,history,false -PowellsParadigm,newsmast.social,Humanities,humanities,false -PowellsParadigm,newsmast.social,Journalism & Comment,news_comment_data,false -PowellsParadigm,newsmast.social,Philosophy,philosophy,false -PowellsParadigm,newsmast.social,Programming,programming,false -PowellsParadigm,newsmast.social,Science,science,false -PowellsParadigm,newsmast.social,Social Sciences,social_sciences,false -PowellsParadigm,newsmast.social,Space,space,false -PowellsParadigm,newsmast.social,Technology,technology,false -PowellsParadigm,newsmast.social,Ukraine Invasion,ukraine_invasion,false -PowellsParadigm,newsmast.social,Breaking News,breaking_news,true -ericovarjao,newsmast.social,AI,ai,false -ericovarjao,newsmast.social,Architecture & Design,architecture_design,false -ericovarjao,newsmast.social,Books & Literature,books_literature,false -ericovarjao,newsmast.social,Business,business,false -ericovarjao,newsmast.social,Creative Arts,creative_arts,false -ericovarjao,newsmast.social,Energy & Pollution,energy_pollution,false -ericovarjao,newsmast.social,Food & Drink,food_drink,false -ericovarjao,newsmast.social,History,history,false -ericovarjao,newsmast.social,Humanities,humanities,false -ericovarjao,newsmast.social,Law & Justice,law_justice,true -ericovarjao,newsmast.social,Markets & Finance,markets_finance,false -ericovarjao,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false -ericovarjao,newsmast.social,Movies,movies,false -ericovarjao,newsmast.social,Music,music,false -ericovarjao,newsmast.social,Philosophy,philosophy,false -ericovarjao,newsmast.social,Politics,politics,false -ericovarjao,newsmast.social,Social Sciences,social_sciences,false -ericovarjao,newsmast.social,Technology,technology,false -ericovarjao,newsmast.social,TV & Radio,tv_radio,false -ericovarjao,newsmast.social,Visual Arts,visual_arts,false -parben,newsmast.social,Breaking News,breaking_news,true -parben,newsmast.social,Journalism & Comment,news_comment_data,false -parben,newsmast.social,Social Media,social_media,false -parben,newsmast.social,Ukraine Invasion,ukraine_invasion,false -parben,newsmast.social,Weather,weather,false -sassyboi,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -sassyboi,newsmast.social,Government & Policy,government_policy,false -sassyboi,newsmast.social,Journalism & Comment,news_comment_data,false -sassyboi,newsmast.social,Poverty & Inequality,poverty_inequality,false -sassyboi,newsmast.social,Breaking News,breaking_news,true -dreamingawake09,newsmast.social,AI,ai,false -dreamingawake09,newsmast.social,Breaking News,breaking_news,false -dreamingawake09,newsmast.social,Creative Arts,creative_arts,false -dreamingawake09,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -dreamingawake09,newsmast.social,Engineering,engineering,false -dreamingawake09,newsmast.social,Food & Drink,food_drink,false -dreamingawake09,newsmast.social,Football,football,false -dreamingawake09,newsmast.social,History,history,false -dreamingawake09,newsmast.social,Humanities,humanities,false -dreamingawake09,newsmast.social,Humour,humour,false -dreamingawake09,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false -dreamingawake09,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false -dreamingawake09,newsmast.social,Nature & Wildlife,nature_wildlife,false -dreamingawake09,newsmast.social,Journalism & Comment,news_comment_data,false -dreamingawake09,newsmast.social,Pets,pets,false -dreamingawake09,newsmast.social,Philosophy,philosophy,false -dreamingawake09,newsmast.social,Poverty & Inequality,poverty_inequality,false -dreamingawake09,newsmast.social,Programming,programming,false -dreamingawake09,newsmast.social,Puzzles,puzzles,false -dreamingawake09,newsmast.social,Social Media,social_media,false -dreamingawake09,newsmast.social,Social Sciences,social_sciences,false -dreamingawake09,newsmast.social,Sport,sport,false -dreamingawake09,newsmast.social,Technology,technology,true -dreamingawake09,newsmast.social,Travel,travel,false -dreamingawake09,newsmast.social,Ukraine Invasion,ukraine_invasion,false -dreamingawake09,newsmast.social,US Sport,us_sport,false -dreamingawake09,newsmast.social,Weather,weather,false -DocumentingReal,newsmast.social,Academia & Research,academia_research,false -DocumentingReal,newsmast.social,Breaking News,breaking_news,false -DocumentingReal,newsmast.social,Government & Policy,government_policy,false -DocumentingReal,newsmast.social,Law & Justice,law_justice,false -DocumentingReal,newsmast.social,Journalism & Comment,news_comment_data,false -DocumentingReal,newsmast.social,Politics,politics,false -DocumentingReal,newsmast.social,Social Media,social_media,false -DocumentingReal,newsmast.social,Ukraine Invasion,ukraine_invasion,false -DocumentingReal,newsmast.social,US Politics,us_politics,true -DocumentingReal,newsmast.social,Weather,weather,false -dawnie,newsmast.social,Breaking News,breaking_news,false -dawnie,newsmast.social,Creative Arts,creative_arts,false -dawnie,newsmast.social,Food & Drink,food_drink,false -dawnie,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false -dawnie,newsmast.social,Nature & Wildlife,nature_wildlife,true -dawnie,newsmast.social,Pets,pets,false -dawnie,newsmast.social,Puzzles,puzzles,false -jayasax,newsmast.social,Activism & Civil Rights,activism_civil_rights,false -jayasax,newsmast.social,Architecture & Design,architecture_design,false -jayasax,newsmast.social,Black Voices,black_voices,false -jayasax,newsmast.social,Books & Literature,books_literature,false -jayasax,newsmast.social,Creative Arts,creative_arts,false -jayasax,newsmast.social,Disabled Voices,disabled_voices,false -jayasax,newsmast.social,Gaming,gaming,false -jayasax,newsmast.social,Humour,humour,false -jayasax,newsmast.social,Immigrants Rights,immigrants_rights,false -jayasax,newsmast.social,Indigenous Peoples,indigenous_peoples,false -jayasax,newsmast.social,LGBTQ+,lgbtq,false -jayasax,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false -jayasax,newsmast.social,Movies,movies,false -jayasax,newsmast.social,Music,music,false -jayasax,newsmast.social,Nature & Wildlife,nature_wildlife,false -jayasax,newsmast.social,Performing Arts,performing_arts,false -jayasax,newsmast.social,Pets,pets,false -jayasax,newsmast.social,Photography,photography,false -jayasax,newsmast.social,Puzzles,puzzles,false -jayasax,newsmast.social,Travel,travel,false -jayasax,newsmast.social,TV & Radio,tv_radio,false -jayasax,newsmast.social,Visual Arts,visual_arts,false -jayasax,newsmast.social,Women’s Voices,women_voices,false -jayasax,newsmast.social,Food & Drink,food_drink,true -kamalaharris,newsmast.social,Breaking News,breaking_news,true -kamalaharris,newsmast.social,Journalism & Comment,news_comment_data,false -kamalaharris,newsmast.social,Social Media,social_media,false -kamalaharris,newsmast.social,Ukraine Invasion,ukraine_invasion,false -kamalaharris,newsmast.social,Weather,weather,false -uobadam,newsmast.social,Academia & Research,academia_research,false -uobadam,newsmast.social,AI,ai,false -uobadam,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false -uobadam,newsmast.social,Biology,biology,false -uobadam,newsmast.social,Breaking News,breaking_news,true -uobadam,newsmast.social,Business,business,false -uobadam,newsmast.social,Chemistry,chemistry,false -uobadam,newsmast.social,Climate change,climate_change,false -uobadam,newsmast.social,Creative Arts,creative_arts,false -uobadam,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -uobadam,newsmast.social,Energy & Pollution,energy_pollution,false -uobadam,newsmast.social,Engineering,engineering,false -uobadam,newsmast.social,Environment,environment,false -uobadam,newsmast.social,Food & Drink,food_drink,false -uobadam,newsmast.social,Government & Policy,government_policy,false -uobadam,newsmast.social,Healthcare,healthcare,false -uobadam,newsmast.social,Humour,humour,false -uobadam,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false -uobadam,newsmast.social,Law & Justice,law_justice,false -uobadam,newsmast.social,Markets & Finance,markets_finance,false -uobadam,newsmast.social,Mathematics,mathematics,false -uobadam,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false -uobadam,newsmast.social,Nature & Wildlife,nature_wildlife,false -uobadam,newsmast.social,Journalism & Comment,news_comment_data,false -uobadam,newsmast.social,Pets,pets,false -uobadam,newsmast.social,Physics,physics,false -uobadam,newsmast.social,Politics,politics,false -uobadam,newsmast.social,Poverty & Inequality,poverty_inequality,false -uobadam,newsmast.social,Programming,programming,false -uobadam,newsmast.social,Puzzles,puzzles,false -uobadam,newsmast.social,Science,science,false -uobadam,newsmast.social,Social Media,social_media,false -uobadam,newsmast.social,Space,space,false -uobadam,newsmast.social,Technology,technology,false -uobadam,newsmast.social,Travel,travel,false -uobadam,newsmast.social,Ukraine Invasion,ukraine_invasion,false -uobadam,newsmast.social,US Politics,us_politics,false -uobadam,newsmast.social,Weather,weather,false -uobadam,newsmast.social,Workers Rights,workers_rights,false -Greenarchist,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false -Greenarchist,newsmast.social,Breaking News,breaking_news,false -Greenarchist,newsmast.social,Energy & Pollution,energy_pollution,false -Greenarchist,newsmast.social,Environment,environment,true -Greenarchist,newsmast.social,Science,science,false -beergeek,newsmast.social,AI,ai,true -beergeek,newsmast.social,Energy & Pollution,energy_pollution,false -beergeek,newsmast.social,Programming,programming,false -beergeek,newsmast.social,Technology,technology,false -beergeek,newsmast.social,Workers Rights,workers_rights,false -beergeek,newsmast.social,Gaming,gaming,false -beergeek,newsmast.social,Movies,movies,false -beergeek,newsmast.social,Music,music,false -beergeek,newsmast.social,Photography,photography,false -beergeek,newsmast.social,TV & Radio,tv_radio,false -beergeek,newsmast.social,Food & Drink,food_drink,false -beergeek,newsmast.social,Humour,humour,false -beergeek,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false -beergeek,newsmast.social,Puzzles,puzzles,false -beergeek,newsmast.social,Travel,travel,false -nijicat,newsmast.social,Academia & Research,academia_research,false -nijicat,newsmast.social,Activism & Civil Rights,activism_civil_rights,false -nijicat,newsmast.social,AI,ai,true -nijicat,newsmast.social,Architecture & Design,architecture_design,false -nijicat,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false -nijicat,newsmast.social,Biology,biology,false -nijicat,newsmast.social,Black Voices,black_voices,false -nijicat,newsmast.social,Books & Literature,books_literature,false -nijicat,newsmast.social,Breaking News,breaking_news,false -nijicat,newsmast.social,Business,business,false -nijicat,newsmast.social,Chemistry,chemistry,false -nijicat,newsmast.social,Climate change,climate_change,false -nijicat,newsmast.social,Creative Arts,creative_arts,false -nijicat,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -nijicat,newsmast.social,Disabled Voices,disabled_voices,false -nijicat,newsmast.social,Energy & Pollution,energy_pollution,false -nijicat,newsmast.social,Engineering,engineering,false -nijicat,newsmast.social,Environment,environment,false -nijicat,newsmast.social,Food & Drink,food_drink,false -nijicat,newsmast.social,Football,football,false -nijicat,newsmast.social,Gaming,gaming,false -nijicat,newsmast.social,Government & Policy,government_policy,false -nijicat,newsmast.social,Healthcare,healthcare,false -nijicat,newsmast.social,History,history,false -nijicat,newsmast.social,Humanities,humanities,false -nijicat,newsmast.social,Humour,humour,false -nijicat,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false -nijicat,newsmast.social,Immigrants Rights,immigrants_rights,false -nijicat,newsmast.social,Indigenous Peoples,indigenous_peoples,false -nijicat,newsmast.social,Law & Justice,law_justice,false -nijicat,newsmast.social,LGBTQ+,lgbtq,false -nijicat,newsmast.social,Markets & Finance,markets_finance,false -nijicat,newsmast.social,Mathematics,mathematics,false -nijicat,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false -nijicat,newsmast.social,Movies,movies,false -nijicat,newsmast.social,Music,music,false -nijicat,newsmast.social,Nature & Wildlife,nature_wildlife,false -nijicat,newsmast.social,Journalism & Comment,news_comment_data,false -nijicat,newsmast.social,Performing Arts,performing_arts,false -nijicat,newsmast.social,Pets,pets,false -nijicat,newsmast.social,Philosophy,philosophy,false -nijicat,newsmast.social,Photography,photography,false -nijicat,newsmast.social,Physics,physics,false -nijicat,newsmast.social,Politics,politics,false -nijicat,newsmast.social,Poverty & Inequality,poverty_inequality,false -nijicat,newsmast.social,Programming,programming,false -nijicat,newsmast.social,Puzzles,puzzles,false -nijicat,newsmast.social,Science,science,false -nijicat,newsmast.social,Social Media,social_media,false -nijicat,newsmast.social,Social Sciences,social_sciences,false -nijicat,newsmast.social,Space,space,false -nijicat,newsmast.social,Sport,sport,false -nijicat,newsmast.social,Technology,technology,false -nijicat,newsmast.social,Travel,travel,false -nijicat,newsmast.social,TV & Radio,tv_radio,false -nijicat,newsmast.social,Ukraine Invasion,ukraine_invasion,false -nijicat,newsmast.social,US Politics,us_politics,false -nijicat,newsmast.social,US Sport,us_sport,false -nijicat,newsmast.social,Visual Arts,visual_arts,false -nijicat,newsmast.social,Weather,weather,false -nijicat,newsmast.social,Women’s Voices,women_voices,false -nijicat,newsmast.social,Workers Rights,workers_rights,false -Capt_Canadia,newsmast.social,AI,ai,false -Capt_Canadia,newsmast.social,Biology,biology,false -Capt_Canadia,newsmast.social,Breaking News,breaking_news,false -Capt_Canadia,newsmast.social,Chemistry,chemistry,false -Capt_Canadia,newsmast.social,Engineering,engineering,false -Capt_Canadia,newsmast.social,Mathematics,mathematics,false -Capt_Canadia,newsmast.social,Journalism & Comment,news_comment_data,false -Capt_Canadia,newsmast.social,Physics,physics,false -Capt_Canadia,newsmast.social,Programming,programming,false -Capt_Canadia,newsmast.social,Science,science,false -Capt_Canadia,newsmast.social,Social Media,social_media,false -Capt_Canadia,newsmast.social,Space,space,false -Capt_Canadia,newsmast.social,Technology,technology,true -Capt_Canadia,newsmast.social,Ukraine Invasion,ukraine_invasion,false -Capt_Canadia,newsmast.social,Weather,weather,false -abc35,newsmast.social,Academia & Research,academia_research,false -abc35,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -abc35,newsmast.social,Healthcare,healthcare,false -abc35,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false -abc35,newsmast.social,Law & Justice,law_justice,false -abc35,newsmast.social,Politics,politics,false -abc35,newsmast.social,Poverty & Inequality,poverty_inequality,false -abc35,newsmast.social,US Politics,us_politics,false -abc35,newsmast.social,Government & Policy,government_policy,true -CameronOrdSmith,newsmast.social,AI,ai,false -CameronOrdSmith,newsmast.social,Climate change,climate_change,false -CameronOrdSmith,newsmast.social,Energy & Pollution,energy_pollution,true -CameronOrdSmith,newsmast.social,Programming,programming,false -CameronOrdSmith,newsmast.social,Ukraine Invasion,ukraine_invasion,false -hoer356,newsmast.social,Biology,biology,false -hoer356,newsmast.social,Chemistry,chemistry,true -hoer356,newsmast.social,History,history,false -hoer356,newsmast.social,Humanities,humanities,false -hoer356,newsmast.social,Mathematics,mathematics,false -hoer356,newsmast.social,Philosophy,philosophy,false -hoer356,newsmast.social,Physics,physics,false -hoer356,newsmast.social,Science,science,false -hoer356,newsmast.social,Social Sciences,social_sciences,false -hoer356,newsmast.social,Space,space,false -ThomasSixt,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -ThomasSixt,newsmast.social,Food & Drink,food_drink,true -ThomasSixt,newsmast.social,Journalism & Comment,news_comment_data,false -ThomasSixt,newsmast.social,Social Media,social_media,false -ThomasSixt,newsmast.social,Travel,travel,false -bret,newsmast.social,AI,ai,false -bret,newsmast.social,Breaking News,breaking_news,false -bret,newsmast.social,Business,business,false -bret,newsmast.social,Climate change,climate_change,false -bret,newsmast.social,Energy & Pollution,energy_pollution,false -bret,newsmast.social,Government & Policy,government_policy,false -bret,newsmast.social,Markets & Finance,markets_finance,false -bret,newsmast.social,Politics,politics,false -bret,newsmast.social,Social Media,social_media,false -bret,newsmast.social,Technology,technology,true -bret,newsmast.social,Ukraine Invasion,ukraine_invasion,false -bret,newsmast.social,US Politics,us_politics,false -breakingnews,newsmast.social,Breaking News,breaking_news,true -breakingnews,newsmast.social,Journalism & Comment,news_comment_data,false -breakingnews,newsmast.social,Social Media,social_media,false -breakingnews,newsmast.social,Ukraine Invasion,ukraine_invasion,false -breakingnews,newsmast.social,Weather,weather,false -blurredbylines,newsmast.social,Activism & Civil Rights,activism_civil_rights,false -blurredbylines,newsmast.social,Black Voices,black_voices,false -blurredbylines,newsmast.social,Disabled Voices,disabled_voices,false -blurredbylines,newsmast.social,Government & Policy,government_policy,false -blurredbylines,newsmast.social,Humanities,humanities,false -blurredbylines,newsmast.social,Immigrants Rights,immigrants_rights,false -blurredbylines,newsmast.social,Indigenous Peoples,indigenous_peoples,false -blurredbylines,newsmast.social,Law & Justice,law_justice,false -blurredbylines,newsmast.social,LGBTQ+,lgbtq,true -blurredbylines,newsmast.social,Journalism & Comment,news_comment_data,false -blurredbylines,newsmast.social,Politics,politics,false -blurredbylines,newsmast.social,Social Sciences,social_sciences,false -blurredbylines,newsmast.social,Women’s Voices,women_voices,false -bothuthesi,newsmast.social,AI,ai,false -bothuthesi,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false -bothuthesi,newsmast.social,Biology,biology,false -bothuthesi,newsmast.social,Breaking News,breaking_news,false -bothuthesi,newsmast.social,Chemistry,chemistry,false -bothuthesi,newsmast.social,Climate change,climate_change,false -bothuthesi,newsmast.social,Energy & Pollution,energy_pollution,false -bothuthesi,newsmast.social,Engineering,engineering,false -bothuthesi,newsmast.social,Environment,environment,false -bothuthesi,newsmast.social,Mathematics,mathematics,false -bothuthesi,newsmast.social,Journalism & Comment,news_comment_data,false -bothuthesi,newsmast.social,Physics,physics,false -bothuthesi,newsmast.social,Science,science,false -bothuthesi,newsmast.social,Social Media,social_media,false -bothuthesi,newsmast.social,Space,space,false -bothuthesi,newsmast.social,Technology,technology,false -bothuthesi,newsmast.social,Ukraine Invasion,ukraine_invasion,false -bothuthesi,newsmast.social,Weather,weather,false -bothuthesi,newsmast.social,Programming,programming,true -Caughtlight,newsmast.social,Breaking News,breaking_news,false -Caughtlight,newsmast.social,Football,football,true -Caughtlight,newsmast.social,Journalism & Comment,news_comment_data,false -Caughtlight,newsmast.social,Sport,sport,false -Caughtlight,newsmast.social,US Sport,us_sport,false -hanism,newsmast.social,AI,ai,false -hanism,newsmast.social,Biology,biology,false -hanism,newsmast.social,Breaking News,breaking_news,false -hanism,newsmast.social,Chemistry,chemistry,false -hanism,newsmast.social,Engineering,engineering,false -hanism,newsmast.social,Mathematics,mathematics,false -hanism,newsmast.social,Journalism & Comment,news_comment_data,false -hanism,newsmast.social,Physics,physics,false -hanism,newsmast.social,Programming,programming,false -hanism,newsmast.social,Science,science,false -hanism,newsmast.social,Space,space,true -hanism,newsmast.social,Technology,technology,false -palmeiras,newsmast.social,Black Voices,black_voices,true -palmeiras,newsmast.social,Breaking News,breaking_news,false -palmeiras,newsmast.social,Disabled Voices,disabled_voices,false -palmeiras,newsmast.social,Journalism & Comment,news_comment_data,false -palmeiras,newsmast.social,Social Media,social_media,false -mervecaldiran,newsmast.social,Nature & Wildlife,nature_wildlife,false -mervecaldiran,newsmast.social,Journalism & Comment,news_comment_data,false -mervecaldiran,newsmast.social,Performing Arts,performing_arts,false -mervecaldiran,newsmast.social,Philosophy,philosophy,false -mervecaldiran,newsmast.social,Activism & Civil Rights,activism_civil_rights,false -mervecaldiran,newsmast.social,Architecture & Design,architecture_design,false -mervecaldiran,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false -mervecaldiran,newsmast.social,Black Voices,black_voices,false -mervecaldiran,newsmast.social,Books & Literature,books_literature,false -mervecaldiran,newsmast.social,Breaking News,breaking_news,false -mervecaldiran,newsmast.social,Climate change,climate_change,false -mervecaldiran,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -mervecaldiran,newsmast.social,Energy & Pollution,energy_pollution,false -mervecaldiran,newsmast.social,Environment,environment,true -mervecaldiran,newsmast.social,Government & Policy,government_policy,false -mervecaldiran,newsmast.social,History,history,false -mervecaldiran,newsmast.social,Humanities,humanities,false -mervecaldiran,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false -mervecaldiran,newsmast.social,Immigrants Rights,immigrants_rights,false -mervecaldiran,newsmast.social,Indigenous Peoples,indigenous_peoples,false -mervecaldiran,newsmast.social,Poverty & Inequality,poverty_inequality,false -mervecaldiran,newsmast.social,Law & Justice,law_justice,false -mervecaldiran,newsmast.social,LGBTQ+,lgbtq,false -mervecaldiran,newsmast.social,Movies,movies,false -mervecaldiran,newsmast.social,Music,music,false -mervecaldiran,newsmast.social,Photography,photography,false -mervecaldiran,newsmast.social,Politics,politics,false -mervecaldiran,newsmast.social,Social Sciences,social_sciences,false -mervecaldiran,newsmast.social,Sport,sport,false -mervecaldiran,newsmast.social,TV & Radio,tv_radio,false -mervecaldiran,newsmast.social,Ukraine Invasion,ukraine_invasion,false -mervecaldiran,newsmast.social,Visual Arts,visual_arts,false -mervecaldiran,newsmast.social,Women’s Voices,women_voices,false -mervecaldiran,newsmast.social,Workers Rights,workers_rights,false -sas_test,newsmast.social,Breaking News,breaking_news,false -sas_test,newsmast.social,Social Media,social_media,false -sas_test,newsmast.social,Ukraine Invasion,ukraine_invasion,false -sas_test,newsmast.social,Weather,weather,false -sas_test,newsmast.social,Journalism & Comment,news_comment_data,true -sofiahvillar,newsmast.social,History,history,true -sofiahvillar,newsmast.social,Markets & Finance,markets_finance,false -sofiahvillar,newsmast.social,Philosophy,philosophy,false -sofiahvillar,newsmast.social,Politics,politics,false -sofiahvillar,newsmast.social,Social Sciences,social_sciences,false -Dineshvd,newsmast.social,Food & Drink,food_drink,false -Dineshvd,newsmast.social,Football,football,true -Dineshvd,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false -Dineshvd,newsmast.social,Puzzles,puzzles,false -Dineshvd,newsmast.social,Sport,sport,false -Dineshvd,newsmast.social,US Sport,us_sport,false -minkkyaw,newsmast.social,Breaking News,breaking_news,true -minkkyaw,newsmast.social,Journalism & Comment,news_comment_data,false -minkkyaw,newsmast.social,Social Media,social_media,false -minkkyaw,newsmast.social,Ukraine Invasion,ukraine_invasion,false -minkkyaw,newsmast.social,Weather,weather,false -sithubo_pt,newsmast.social,Academia & Research,academia_research,false -sithubo_pt,newsmast.social,Activism & Civil Rights,activism_civil_rights,false -sithubo_pt,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false -sithubo_pt,newsmast.social,Black Voices,black_voices,false -sithubo_pt,newsmast.social,Climate change,climate_change,false -sithubo_pt,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -sithubo_pt,newsmast.social,Disabled Voices,disabled_voices,false -sithubo_pt,newsmast.social,Energy & Pollution,energy_pollution,false -sithubo_pt,newsmast.social,Environment,environment,false -sithubo_pt,newsmast.social,Government & Policy,government_policy,false -sithubo_pt,newsmast.social,Healthcare,healthcare,false -sithubo_pt,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false -sithubo_pt,newsmast.social,Immigrants Rights,immigrants_rights,false -sithubo_pt,newsmast.social,Indigenous Peoples,indigenous_peoples,false -sithubo_pt,newsmast.social,Law & Justice,law_justice,false -sithubo_pt,newsmast.social,LGBTQ+,lgbtq,false -sithubo_pt,newsmast.social,Journalism & Comment,news_comment_data,false -sithubo_pt,newsmast.social,Politics,politics,false -sithubo_pt,newsmast.social,Poverty & Inequality,poverty_inequality,false -sithubo_pt,newsmast.social,Social Media,social_media,false -sithubo_pt,newsmast.social,Ukraine Invasion,ukraine_invasion,false -sithubo_pt,newsmast.social,US Politics,us_politics,false -sithubo_pt,newsmast.social,Weather,weather,false -sithubo_pt,newsmast.social,Women’s Voices,women_voices,false -sithubo_pt,newsmast.social,Breaking News,breaking_news,true -spanini,newsmast.social,Books & Literature,books_literature,false -spanini,newsmast.social,Business,business,true -spanini,newsmast.social,History,history,false -spanini,newsmast.social,Markets & Finance,markets_finance,false -spanini,newsmast.social,Philosophy,philosophy,false -spanini,newsmast.social,Workers Rights,workers_rights,false -gppainphysio,newsmast.social,AI,ai,false -gppainphysio,newsmast.social,Business,business,true -gppainphysio,newsmast.social,Engineering,engineering,false -gppainphysio,newsmast.social,Football,football,false -gppainphysio,newsmast.social,Markets & Finance,markets_finance,false -gppainphysio,newsmast.social,Programming,programming,false -gppainphysio,newsmast.social,Sport,sport,false -gppainphysio,newsmast.social,Technology,technology,false -gppainphysio,newsmast.social,US Sport,us_sport,false -gppainphysio,newsmast.social,Workers Rights,workers_rights,false -WelchE,newsmast.social,LGBTQ+,lgbtq,false -WelchE,newsmast.social,Indigenous Peoples,indigenous_peoples,false -WelchE,newsmast.social,Creative Arts,creative_arts,false -WelchE,newsmast.social,Food & Drink,food_drink,false -WelchE,newsmast.social,Nature & Wildlife,nature_wildlife,false -WelchE,newsmast.social,Puzzles,puzzles,false -WelchE,newsmast.social,Women’s Voices,women_voices,false -WelchE,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false -WelchE,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,true -WelchE,newsmast.social,Biology,biology,false -WelchE,newsmast.social,Physics,physics,false -WelchE,newsmast.social,Science,science,false -WelchE,newsmast.social,Space,space,false -JAVPPT,newsmast.social,Breaking News,breaking_news,false -JAVPPT,newsmast.social,Social Media,social_media,false -JAVPPT,newsmast.social,Technology,technology,false -JAVPPT,newsmast.social,Engineering,engineering,false -JAVPPT,newsmast.social,Programming,programming,true -JAVPPT,newsmast.social,Physics,physics,false -JAVPPT,newsmast.social,Space,space,false -JAVPPT,newsmast.social,Mathematics,mathematics,false -JAVPPT,newsmast.social,Science,science,false -JAVPPT,newsmast.social,Social Sciences,social_sciences,false -JAVPPT,newsmast.social,History,history,false -JAVPPT,newsmast.social,Philosophy,philosophy,false -JAVPPT,newsmast.social,Humanities,humanities,false -JAVPPT,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -JAVPPT,newsmast.social,Poverty & Inequality,poverty_inequality,false -JAVPPT,newsmast.social,Politics,politics,false -JAVPPT,newsmast.social,US Politics,us_politics,false -JAVPPT,newsmast.social,Climate change,climate_change,false -JAVPPT,newsmast.social,Environment,environment,false -JAVPPT,newsmast.social,LGBTQ+,lgbtq,false -JAVPPT,newsmast.social,Business,business,false -JAVPPT,newsmast.social,Workers Rights,workers_rights,false -JAVPPT,newsmast.social,Gaming,gaming,false -JAVPPT,newsmast.social,Sport,sport,false -JAVPPT,newsmast.social,US Sport,us_sport,false -JAVPPT,newsmast.social,Food & Drink,food_drink,false -JAVPPT,newsmast.social,Women’s Voices,women_voices,false -JAVPPT,newsmast.social,Photography,photography,false -JAVPPT,newsmast.social,Creative Arts,creative_arts,false -xavierho,newsmast.social,Academia & Research,academia_research,false -xavierho,newsmast.social,AI,ai,false -xavierho,newsmast.social,Breaking News,breaking_news,false -xavierho,newsmast.social,Journalism & Comment,news_comment_data,false -xavierho,newsmast.social,Politics,politics,false -xavierho,newsmast.social,Programming,programming,false -xavierho,newsmast.social,Technology,technology,true -xavierho,newsmast.social,Ukraine Invasion,ukraine_invasion,false -lwinmoepaing,newsmast.social,AI,ai,false -lwinmoepaing,newsmast.social,Engineering,engineering,false -lwinmoepaing,newsmast.social,Football,football,false -lwinmoepaing,newsmast.social,Programming,programming,false -lwinmoepaing,newsmast.social,Technology,technology,true -nothing34,newsmast.social,Academia & Research,academia_research,true -nothing34,newsmast.social,Government & Policy,government_policy,false -nothing34,newsmast.social,Healthcare,healthcare,false -nothing34,newsmast.social,Law & Justice,law_justice,false -nothing34,newsmast.social,Politics,politics,false -nothing34,newsmast.social,US Politics,us_politics,false -bilerico,newsmast.social,Breaking News,breaking_news,false -bilerico,newsmast.social,Food & Drink,food_drink,false -bilerico,newsmast.social,Humour,humour,false -bilerico,newsmast.social,LGBTQ+,lgbtq,true -bilerico,newsmast.social,US Politics,us_politics,false -LetsAnimePod,newsmast.social,Books & Literature,books_literature,false -LetsAnimePod,newsmast.social,Gaming,gaming,false -LetsAnimePod,newsmast.social,Humour,humour,false -LetsAnimePod,newsmast.social,Movies,movies,false -LetsAnimePod,newsmast.social,TV & Radio,tv_radio,true -RebecaM67,newsmast.social,AI,ai,false -RebecaM67,newsmast.social,Breaking News,breaking_news,true -RebecaM67,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -RebecaM67,newsmast.social,Government & Policy,government_policy,false -RebecaM67,newsmast.social,History,history,false -RebecaM67,newsmast.social,Humanities,humanities,false -RebecaM67,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false -RebecaM67,newsmast.social,Law & Justice,law_justice,false -RebecaM67,newsmast.social,Philosophy,philosophy,false -RebecaM67,newsmast.social,Politics,politics,false -RebecaM67,newsmast.social,Technology,technology,false -olympusmoans,newsmast.social,Academia & Research,academia_research,false -olympusmoans,newsmast.social,AI,ai,false -olympusmoans,newsmast.social,Breaking News,breaking_news,false -olympusmoans,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -olympusmoans,newsmast.social,Engineering,engineering,false -olympusmoans,newsmast.social,Government & Policy,government_policy,false -olympusmoans,newsmast.social,Healthcare,healthcare,false -olympusmoans,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false -olympusmoans,newsmast.social,Law & Justice,law_justice,false -olympusmoans,newsmast.social,Journalism & Comment,news_comment_data,false -olympusmoans,newsmast.social,Politics,politics,true -olympusmoans,newsmast.social,Poverty & Inequality,poverty_inequality,false -olympusmoans,newsmast.social,Programming,programming,false -olympusmoans,newsmast.social,Social Media,social_media,false -olympusmoans,newsmast.social,Technology,technology,false -olympusmoans,newsmast.social,Ukraine Invasion,ukraine_invasion,false -olympusmoans,newsmast.social,US Politics,us_politics,false -olympusmoans,newsmast.social,Weather,weather,false -LolaBea19,newsmast.social,Creative Arts,creative_arts,false -LolaBea19,newsmast.social,LGBTQ+,lgbtq,false -LolaBea19,newsmast.social,TV & Radio,tv_radio,false -LolaBea19,newsmast.social,Women’s Voices,women_voices,false -LolaBea19,newsmast.social,Performing Arts,performing_arts,true -willis,newsmast.social,Architecture & Design,architecture_design,false -willis,newsmast.social,Books & Literature,books_literature,true -willis,newsmast.social,Movies,movies,false -willis,newsmast.social,Music,music,false -willis,newsmast.social,Journalism & Comment,news_comment_data,false -shadsiddiqui,newsmast.social,AI,ai,false -shadsiddiqui,newsmast.social,Business,business,false -shadsiddiqui,newsmast.social,Football,football,false -shadsiddiqui,newsmast.social,Technology,technology,false -shadsiddiqui,newsmast.social,Travel,travel,true -Laurens,newsmast.social,AI,ai,false -Laurens,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false -Laurens,newsmast.social,Breaking News,breaking_news,false -Laurens,newsmast.social,Climate change,climate_change,false -Laurens,newsmast.social,Energy & Pollution,energy_pollution,false -Laurens,newsmast.social,Engineering,engineering,false -Laurens,newsmast.social,Environment,environment,false -Laurens,newsmast.social,History,history,false -Laurens,newsmast.social,Humanities,humanities,false -Laurens,newsmast.social,Journalism & Comment,news_comment_data,false -Laurens,newsmast.social,Philosophy,philosophy,false -Laurens,newsmast.social,Social Media,social_media,false -Laurens,newsmast.social,Social Sciences,social_sciences,false -Laurens,newsmast.social,Ukraine Invasion,ukraine_invasion,false -Laurens,newsmast.social,Weather,weather,false -Laurens,newsmast.social,Technology,technology,true -luciaGerry444,newsmast.social,AI,ai,false -luciaGerry444,newsmast.social,Breaking News,breaking_news,false -luciaGerry444,newsmast.social,Engineering,engineering,false -luciaGerry444,newsmast.social,Programming,programming,false -luciaGerry444,newsmast.social,Social Media,social_media,true -luciaGerry444,newsmast.social,Technology,technology,false -luciaGerry444,newsmast.social,Ukraine Invasion,ukraine_invasion,false -luciaGerry444,newsmast.social,Weather,weather,false -zinmoe,newsmast.social,Breaking News,breaking_news,false -zinmoe,newsmast.social,Journalism & Comment,news_comment_data,true -zinmoe,newsmast.social,Politics,politics,false -zinmoe,newsmast.social,Ukraine Invasion,ukraine_invasion,false -zinmoe,newsmast.social,Weather,weather,false -thefluffy007,newsmast.social,Academia & Research,academia_research,true -thefluffy007,newsmast.social,Engineering,engineering,false -thefluffy007,newsmast.social,Government & Policy,government_policy,false -thefluffy007,newsmast.social,Healthcare,healthcare,false -thefluffy007,newsmast.social,Law & Justice,law_justice,false -TimelinesStatus,newsmast.social,Poverty & Inequality,poverty_inequality,false -TimelinesStatus,newsmast.social,Programming,programming,false -TimelinesStatus,newsmast.social,Puzzles,puzzles,false -TimelinesStatus,newsmast.social,Science,science,false -TimelinesStatus,newsmast.social,Social Media,social_media,false -TimelinesStatus,newsmast.social,Social Sciences,social_sciences,false -TimelinesStatus,newsmast.social,Space,space,false -TimelinesStatus,newsmast.social,Sport,sport,false -TimelinesStatus,newsmast.social,Technology,technology,false -TimelinesStatus,newsmast.social,Travel,travel,false -TimelinesStatus,newsmast.social,TV & Radio,tv_radio,false -TimelinesStatus,newsmast.social,Ukraine Invasion,ukraine_invasion,false -TimelinesStatus,newsmast.social,US Politics,us_politics,false -TimelinesStatus,newsmast.social,US Sport,us_sport,false -TimelinesStatus,newsmast.social,Visual Arts,visual_arts,false -TimelinesStatus,newsmast.social,Weather,weather,false -TimelinesStatus,newsmast.social,Women’s Voices,women_voices,false -TimelinesStatus,newsmast.social,Workers Rights,workers_rights,false -TimelinesStatus,newsmast.social,Academia & Research,academia_research,false -TimelinesStatus,newsmast.social,Activism & Civil Rights,activism_civil_rights,false -TimelinesStatus,newsmast.social,AI,ai,false -TimelinesStatus,newsmast.social,Architecture & Design,architecture_design,false -TimelinesStatus,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false -TimelinesStatus,newsmast.social,Biology,biology,false -TimelinesStatus,newsmast.social,Black Voices,black_voices,false -TimelinesStatus,newsmast.social,Books & Literature,books_literature,false -TimelinesStatus,newsmast.social,Breaking News,breaking_news,false -TimelinesStatus,newsmast.social,Business,business,false -TimelinesStatus,newsmast.social,Chemistry,chemistry,false -TimelinesStatus,newsmast.social,Climate change,climate_change,false -TimelinesStatus,newsmast.social,Creative Arts,creative_arts,false -TimelinesStatus,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -TimelinesStatus,newsmast.social,Disabled Voices,disabled_voices,false -TimelinesStatus,newsmast.social,Energy & Pollution,energy_pollution,false -TimelinesStatus,newsmast.social,Engineering,engineering,false -TimelinesStatus,newsmast.social,Environment,environment,false -TimelinesStatus,newsmast.social,Food & Drink,food_drink,false -TimelinesStatus,newsmast.social,Football,football,false -TimelinesStatus,newsmast.social,Gaming,gaming,false -TimelinesStatus,newsmast.social,Government & Policy,government_policy,false -TimelinesStatus,newsmast.social,Healthcare,healthcare,false -TimelinesStatus,newsmast.social,History,history,false -TimelinesStatus,newsmast.social,Humanities,humanities,false -TimelinesStatus,newsmast.social,Humour,humour,false -TimelinesStatus,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false -TimelinesStatus,newsmast.social,Immigrants Rights,immigrants_rights,false -TimelinesStatus,newsmast.social,Indigenous Peoples,indigenous_peoples,false -TimelinesStatus,newsmast.social,Law & Justice,law_justice,false -TimelinesStatus,newsmast.social,LGBTQ+,lgbtq,false -TimelinesStatus,newsmast.social,Markets & Finance,markets_finance,false -TimelinesStatus,newsmast.social,Mathematics,mathematics,false -TimelinesStatus,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false -TimelinesStatus,newsmast.social,Movies,movies,false -TimelinesStatus,newsmast.social,Music,music,false -TimelinesStatus,newsmast.social,Nature & Wildlife,nature_wildlife,false -TimelinesStatus,newsmast.social,Journalism & Comment,news_comment_data,true -TimelinesStatus,newsmast.social,Performing Arts,performing_arts,false -TimelinesStatus,newsmast.social,Pets,pets,false -TimelinesStatus,newsmast.social,Philosophy,philosophy,false -TimelinesStatus,newsmast.social,Photography,photography,false -TimelinesStatus,newsmast.social,Physics,physics,false -TimelinesStatus,newsmast.social,Politics,politics,false -TimelinesStatus,newsmast.social,Poverty & Inequality,poverty_inequality,false -TimelinesStatus,newsmast.social,Programming,programming,false -TimelinesStatus,newsmast.social,Puzzles,puzzles,false -TimelinesStatus,newsmast.social,Science,science,false -TimelinesStatus,newsmast.social,Social Media,social_media,false -TimelinesStatus,newsmast.social,Social Sciences,social_sciences,false -TimelinesStatus,newsmast.social,Space,space,false -TimelinesStatus,newsmast.social,Sport,sport,false -TimelinesStatus,newsmast.social,Technology,technology,false -TimelinesStatus,newsmast.social,Travel,travel,false -TimelinesStatus,newsmast.social,TV & Radio,tv_radio,false -TimelinesStatus,newsmast.social,Ukraine Invasion,ukraine_invasion,false -TimelinesStatus,newsmast.social,US Politics,us_politics,false -TimelinesStatus,newsmast.social,US Sport,us_sport,false -TimelinesStatus,newsmast.social,Visual Arts,visual_arts,false -TimelinesStatus,newsmast.social,Weather,weather,false -TimelinesStatus,newsmast.social,Women’s Voices,women_voices,false -TimelinesStatus,newsmast.social,Workers Rights,workers_rights,false -seedling,newsmast.social,History,history,true -seedling,newsmast.social,Indigenous Peoples,indigenous_peoples,false -seedling,newsmast.social,Philosophy,philosophy,false -seedling,newsmast.social,Social Sciences,social_sciences,false -seedling,newsmast.social,Women’s Voices,women_voices,false -iqruds,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false -iqruds,newsmast.social,Breaking News,breaking_news,false -iqruds,newsmast.social,Creative Arts,creative_arts,false -iqruds,newsmast.social,Environment,environment,false -iqruds,newsmast.social,Food & Drink,food_drink,false -iqruds,newsmast.social,Humour,humour,false -iqruds,newsmast.social,Nature & Wildlife,nature_wildlife,true -iqruds,newsmast.social,Journalism & Comment,news_comment_data,false -iqruds,newsmast.social,Social Media,social_media,false -iqruds,newsmast.social,Sport,sport,false -iqruds,newsmast.social,Travel,travel,false -prapa,newsmast.social,Biology,biology,false -prapa,newsmast.social,Breaking News,breaking_news,false -prapa,newsmast.social,Chemistry,chemistry,false -prapa,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -prapa,newsmast.social,Engineering,engineering,false -prapa,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false -prapa,newsmast.social,Mathematics,mathematics,false -prapa,newsmast.social,Physics,physics,false -prapa,newsmast.social,Poverty & Inequality,poverty_inequality,false -prapa,newsmast.social,Programming,programming,false -prapa,newsmast.social,Science,science,false -prapa,newsmast.social,Space,space,false -prapa,newsmast.social,Technology,technology,false -prapa,newsmast.social,AI,ai,true -herstoryseapod,newsmast.social,Academia & Research,academia_research,false -herstoryseapod,newsmast.social,Architecture & Design,architecture_design,false -herstoryseapod,newsmast.social,Books & Literature,books_literature,false -herstoryseapod,newsmast.social,Gaming,gaming,false -herstoryseapod,newsmast.social,Government & Policy,government_policy,false -herstoryseapod,newsmast.social,History,history,true -herstoryseapod,newsmast.social,Humanities,humanities,false -herstoryseapod,newsmast.social,Law & Justice,law_justice,false -herstoryseapod,newsmast.social,Movies,movies,false -herstoryseapod,newsmast.social,Music,music,false -herstoryseapod,newsmast.social,Performing Arts,performing_arts,false -herstoryseapod,newsmast.social,Philosophy,philosophy,false -herstoryseapod,newsmast.social,Photography,photography,false -herstoryseapod,newsmast.social,Politics,politics,false -herstoryseapod,newsmast.social,Social Sciences,social_sciences,false -herstoryseapod,newsmast.social,TV & Radio,tv_radio,false -herstoryseapod,newsmast.social,Visual Arts,visual_arts,false -paulcrosby,newsmast.social,Markets & Finance,markets_finance,false -paulcrosby,newsmast.social,Space,space,false -paulcrosby,newsmast.social,Technology,technology,false -paulcrosby,newsmast.social,Ukraine Invasion,ukraine_invasion,false -paulcrosby,newsmast.social,Breaking News,breaking_news,false -paulcrosby,newsmast.social,AI,ai,false -paulcrosby,newsmast.social,LGBTQ+,lgbtq,true -fictaddict,newsmast.social,Books & Literature,books_literature,true -fictaddict,newsmast.social,Creative Arts,creative_arts,false -fictaddict,newsmast.social,Gaming,gaming,false -fictaddict,newsmast.social,Pets,pets,false -liamchase,newsmast.social,Creative Arts,creative_arts,false -liamchase,newsmast.social,LGBTQ+,lgbtq,true -liamchase,newsmast.social,Nature & Wildlife,nature_wildlife,false -liamchase,newsmast.social,Pets,pets,false -liamchase,newsmast.social,Sport,sport,false -liamchase,newsmast.social,Travel,travel,false -EasternHerald,newsmast.social,Academia & Research,academia_research,false -EasternHerald,newsmast.social,AI,ai,false -EasternHerald,newsmast.social,Engineering,engineering,false -EasternHerald,newsmast.social,Government & Policy,government_policy,false -EasternHerald,newsmast.social,Healthcare,healthcare,false -EasternHerald,newsmast.social,Law & Justice,law_justice,false -EasternHerald,newsmast.social,Politics,politics,false -EasternHerald,newsmast.social,Programming,programming,false -EasternHerald,newsmast.social,Technology,technology,false -EasternHerald,newsmast.social,US Politics,us_politics,true -EasternHerald,newsmast.social,Breaking News,breaking_news,false -Billyboy,newsmast.social,Indigenous Peoples,indigenous_peoples,false -Billyboy,newsmast.social,Law & Justice,law_justice,false -Billyboy,newsmast.social,Physics,physics,false -Billyboy,newsmast.social,Politics,politics,false -Billyboy,newsmast.social,Poverty & Inequality,poverty_inequality,false -Billyboy,newsmast.social,Science,science,false -Billyboy,newsmast.social,Technology,technology,false -Billyboy,newsmast.social,Workers Rights,workers_rights,false -Billyboy,newsmast.social,Academia & Research,academia_research,false -Billyboy,newsmast.social,Activism & Civil Rights,activism_civil_rights,false -Billyboy,newsmast.social,AI,ai,true -Billyboy,newsmast.social,Breaking News,breaking_news,false -Billyboy,newsmast.social,Business,business,false -Billyboy,newsmast.social,Climate change,climate_change,false -Billyboy,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -Billyboy,newsmast.social,Disabled Voices,disabled_voices,false -Billyboy,newsmast.social,Energy & Pollution,energy_pollution,false -Billyboy,newsmast.social,Engineering,engineering,false -Billyboy,newsmast.social,Environment,environment,false -Billyboy,newsmast.social,Government & Policy,government_policy,false -Billyboy,newsmast.social,Healthcare,healthcare,false -Billyboy,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false -Billyboy,newsmast.social,Immigrants Rights,immigrants_rights,false -youronlyone,newsmast.social,Biology,biology,false -youronlyone,newsmast.social,Books & Literature,books_literature,false -youronlyone,newsmast.social,Chemistry,chemistry,false -youronlyone,newsmast.social,Engineering,engineering,false -youronlyone,newsmast.social,Gaming,gaming,false -youronlyone,newsmast.social,Mathematics,mathematics,false -youronlyone,newsmast.social,Movies,movies,false -youronlyone,newsmast.social,Photography,photography,false -youronlyone,newsmast.social,Physics,physics,true -youronlyone,newsmast.social,Programming,programming,false -youronlyone,newsmast.social,Science,science,false -youronlyone,newsmast.social,Space,space,false -youronlyone,newsmast.social,Technology,technology,false -youronlyone,newsmast.social,TV & Radio,tv_radio,false -youronlyone,newsmast.social,Social Media,social_media,false -youronlyone,newsmast.social,Disabled Voices,disabled_voices,false -youronlyone,newsmast.social,Weather,weather,false -youronlyone,newsmast.social,History,history,false -youronlyone,newsmast.social,Food & Drink,food_drink,false -youronlyone,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false -youronlyone,newsmast.social,Travel,travel,false -youronlyone,newsmast.social,Nature & Wildlife,nature_wildlife,false -nifta,newsmast.social,Activism & Civil Rights,activism_civil_rights,false -nifta,newsmast.social,Architecture & Design,architecture_design,false -nifta,newsmast.social,Biology,biology,false -nifta,newsmast.social,Black Voices,black_voices,false -nifta,newsmast.social,Books & Literature,books_literature,false -nifta,newsmast.social,Breaking News,breaking_news,false -nifta,newsmast.social,Chemistry,chemistry,false -nifta,newsmast.social,Creative Arts,creative_arts,false -nifta,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -nifta,newsmast.social,Disabled Voices,disabled_voices,false -nifta,newsmast.social,Engineering,engineering,false -nifta,newsmast.social,Food & Drink,food_drink,false -nifta,newsmast.social,Football,football,false -nifta,newsmast.social,Gaming,gaming,false -nifta,newsmast.social,History,history,false -nifta,newsmast.social,Humanities,humanities,false -nifta,newsmast.social,Humour,humour,false -nifta,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false -nifta,newsmast.social,Immigrants Rights,immigrants_rights,false -nifta,newsmast.social,Indigenous Peoples,indigenous_peoples,false -nifta,newsmast.social,LGBTQ+,lgbtq,false -nifta,newsmast.social,Mathematics,mathematics,false -nifta,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false -nifta,newsmast.social,Movies,movies,false -nifta,newsmast.social,Music,music,false -nifta,newsmast.social,Nature & Wildlife,nature_wildlife,false -nifta,newsmast.social,Journalism & Comment,news_comment_data,false -nifta,newsmast.social,Performing Arts,performing_arts,false -nifta,newsmast.social,Pets,pets,false -nifta,newsmast.social,Philosophy,philosophy,false -nifta,newsmast.social,Photography,photography,false -nifta,newsmast.social,Physics,physics,false -nifta,newsmast.social,Poverty & Inequality,poverty_inequality,false -nifta,newsmast.social,Programming,programming,false -nifta,newsmast.social,Puzzles,puzzles,false -nifta,newsmast.social,Science,science,false -nifta,newsmast.social,Social Media,social_media,false -nifta,newsmast.social,Social Sciences,social_sciences,false -nifta,newsmast.social,Space,space,false -nifta,newsmast.social,Sport,sport,false -nifta,newsmast.social,Technology,technology,true -nifta,newsmast.social,Travel,travel,false -nifta,newsmast.social,TV & Radio,tv_radio,false -nifta,newsmast.social,Ukraine Invasion,ukraine_invasion,false -nifta,newsmast.social,US Sport,us_sport,false -nifta,newsmast.social,Visual Arts,visual_arts,false -nifta,newsmast.social,Weather,weather,false -nifta,newsmast.social,Women’s Voices,women_voices,false -thm,newsmast.social,AI,ai,false -thm,newsmast.social,Breaking News,breaking_news,true -thm,newsmast.social,Business,business,false -thm,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -thm,newsmast.social,Engineering,engineering,false -thm,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false -thm,newsmast.social,Markets & Finance,markets_finance,false -thm,newsmast.social,Journalism & Comment,news_comment_data,false -thm,newsmast.social,Poverty & Inequality,poverty_inequality,false -thm,newsmast.social,Programming,programming,false -thm,newsmast.social,Social Media,social_media,false -thm,newsmast.social,Technology,technology,false -thm,newsmast.social,Ukraine Invasion,ukraine_invasion,false -thm,newsmast.social,Weather,weather,false -thm,newsmast.social,Workers Rights,workers_rights,false -ppt_56,newsmast.social,Breaking News,breaking_news,true -ppt_56,newsmast.social,Journalism & Comment,news_comment_data,false -ppt_56,newsmast.social,Social Media,social_media,false -ppt_56,newsmast.social,Ukraine Invasion,ukraine_invasion,false -ppt_56,newsmast.social,Weather,weather,false -vpotter,newsmast.social,AI,ai,false -vpotter,newsmast.social,Breaking News,breaking_news,false -vpotter,newsmast.social,Business,business,false -vpotter,newsmast.social,Climate change,climate_change,false -vpotter,newsmast.social,Environment,environment,false -vpotter,newsmast.social,Government & Policy,government_policy,false -vpotter,newsmast.social,Healthcare,healthcare,false -vpotter,newsmast.social,Law & Justice,law_justice,false -vpotter,newsmast.social,Journalism & Comment,news_comment_data,false -vpotter,newsmast.social,Technology,technology,true -vpotter,newsmast.social,Workers Rights,workers_rights,false -relaxedmale,newsmast.social,Breaking News,breaking_news,false -relaxedmale,newsmast.social,Food & Drink,food_drink,false -relaxedmale,newsmast.social,Gaming,gaming,false -relaxedmale,newsmast.social,Government & Policy,government_policy,false -relaxedmale,newsmast.social,Humour,humour,false -relaxedmale,newsmast.social,Nature & Wildlife,nature_wildlife,false -relaxedmale,newsmast.social,Journalism & Comment,news_comment_data,false -relaxedmale,newsmast.social,Philosophy,philosophy,false -relaxedmale,newsmast.social,Photography,photography,false -relaxedmale,newsmast.social,Poverty & Inequality,poverty_inequality,false -relaxedmale,newsmast.social,Social Media,social_media,false -relaxedmale,newsmast.social,Social Sciences,social_sciences,false -relaxedmale,newsmast.social,US Politics,us_politics,false -relaxedmale,newsmast.social,Visual Arts,visual_arts,false -relaxedmale,newsmast.social,Weather,weather,false -relaxedmale,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,true -userlau,newsmast.social,Breaking News,breaking_news,false -userlau,newsmast.social,Journalism & Comment,news_comment_data,false -userlau,newsmast.social,Social Media,social_media,false -userlau,newsmast.social,Ukraine Invasion,ukraine_invasion,false -userlau,newsmast.social,Weather,weather,true -heathercarlson,newsmast.social,Activism & Civil Rights,activism_civil_rights,false -heathercarlson,newsmast.social,Breaking News,breaking_news,false -heathercarlson,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -heathercarlson,newsmast.social,Food & Drink,food_drink,false -heathercarlson,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false -heathercarlson,newsmast.social,Pets,pets,false -heathercarlson,newsmast.social,Poverty & Inequality,poverty_inequality,false -heathercarlson,newsmast.social,Travel,travel,true -heathercarlson,newsmast.social,Women’s Voices,women_voices,false -DEW1970,newsmast.social,Architecture & Design,architecture_design,false -DEW1970,newsmast.social,Biology,biology,false -DEW1970,newsmast.social,Books & Literature,books_literature,true -DEW1970,newsmast.social,Food & Drink,food_drink,false -DEW1970,newsmast.social,Football,football,false -DEW1970,newsmast.social,Healthcare,healthcare,false -DEW1970,newsmast.social,Humour,humour,false -DEW1970,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false -DEW1970,newsmast.social,Movies,movies,false -DEW1970,newsmast.social,Music,music,false -DEW1970,newsmast.social,Nature & Wildlife,nature_wildlife,false -DEW1970,newsmast.social,Performing Arts,performing_arts,false -DEW1970,newsmast.social,Pets,pets,false -DEW1970,newsmast.social,Photography,photography,false -DEW1970,newsmast.social,Politics,politics,false -DEW1970,newsmast.social,Science,science,false -DEW1970,newsmast.social,Social Media,social_media,false -DEW1970,newsmast.social,Space,space,false -DEW1970,newsmast.social,Travel,travel,false -DEW1970,newsmast.social,TV & Radio,tv_radio,false -DEW1970,newsmast.social,Weather,weather,false -DEW1970,newsmast.social,Breaking News,breaking_news,false -nayyaung9,newsmast.social,Performing Arts,performing_arts,true -nayyaung9,newsmast.social,Physics,physics,false -nayyaung9,newsmast.social,Breaking News,breaking_news,false -mleaning,newsmast.social,Breaking News,breaking_news,true -mleaning,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -mleaning,newsmast.social,Mathematics,mathematics,false -mleaning,newsmast.social,Physics,physics,false -mleaning,newsmast.social,Science,science,false -FionaDobsonCD,newsmast.social,History,history,false -FionaDobsonCD,newsmast.social,Humour,humour,false -FionaDobsonCD,newsmast.social,LGBTQ+,lgbtq,true -FionaDobsonCD,newsmast.social,Nature & Wildlife,nature_wildlife,false -FionaDobsonCD,newsmast.social,Philosophy,philosophy,false -FionaDobsonCD,newsmast.social,Travel,travel,false -drizzly_august,newsmast.social,Engineering,engineering,false -drizzly_august,newsmast.social,Government & Policy,government_policy,false -drizzly_august,newsmast.social,Law & Justice,law_justice,false -drizzly_august,newsmast.social,Poverty & Inequality,poverty_inequality,false -drizzly_august,newsmast.social,Technology,technology,true -drizzly_august,newsmast.social,US Politics,us_politics,false -drizzly_august,newsmast.social,Breaking News,breaking_news,false -drizzly_august,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -drizzly_august,newsmast.social,Engineering,engineering,false -drizzly_august,newsmast.social,Government & Policy,government_policy,false -drizzly_august,newsmast.social,Law & Justice,law_justice,false -drizzly_august,newsmast.social,Poverty & Inequality,poverty_inequality,false -drizzly_august,newsmast.social,Technology,technology,false -drizzly_august,newsmast.social,US Politics,us_politics,false -healthylifetips,newsmast.social,Energy & Pollution,energy_pollution,false -healthylifetips,newsmast.social,Creative Arts,creative_arts,false -healthylifetips,newsmast.social,Environment,environment,false -healthylifetips,newsmast.social,Food & Drink,food_drink,false -healthylifetips,newsmast.social,Humour,humour,false -healthylifetips,newsmast.social,Indigenous Peoples,indigenous_peoples,false -healthylifetips,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,true -healthylifetips,newsmast.social,Nature & Wildlife,nature_wildlife,false -healthylifetips,newsmast.social,Pets,pets,false -healthylifetips,newsmast.social,Puzzles,puzzles,false -healthylifetips,newsmast.social,Travel,travel,false -healthylifetips,newsmast.social,Women’s Voices,women_voices,false -healthylifetips,newsmast.social,Social Media,social_media,false -healthylifetips,newsmast.social,Climate change,climate_change,false -orel,newsmast.social,Books & Literature,books_literature,false -orel,newsmast.social,History,history,true -orel,newsmast.social,Poverty & Inequality,poverty_inequality,false -orel,newsmast.social,Social Sciences,social_sciences,false -JamesNewsMast,newsmast.social,Gaming,gaming,false -JamesNewsMast,newsmast.social,Food & Drink,food_drink,false -JamesNewsMast,newsmast.social,Government & Policy,government_policy,false -JamesNewsMast,newsmast.social,Space,space,true -JamesNewsMast,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false -poverty,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false -poverty,newsmast.social,Poverty & Inequality,poverty_inequality,true -poverty,newsmast.social,Environment,environment,false -megs,newsmast.social,Activism & Civil Rights,activism_civil_rights,false -megs,newsmast.social,AI,ai,false -megs,newsmast.social,Architecture & Design,architecture_design,false -megs,newsmast.social,Engineering,engineering,false -megs,newsmast.social,Gaming,gaming,false -megs,newsmast.social,LGBTQ+,lgbtq,false -megs,newsmast.social,Physics,physics,true -megs,newsmast.social,Space,space,false -megs,newsmast.social,Technology,technology,false -megs,newsmast.social,Immigrants Rights,immigrants_rights,false -Freddie3,newsmast.social,Women’s Voices,women_voices,false -Freddie3,newsmast.social,Nature & Wildlife,nature_wildlife,false -Freddie3,newsmast.social,Breaking News,breaking_news,false -Freddie3,newsmast.social,Journalism & Comment,news_comment_data,false -Freddie3,newsmast.social,Politics,politics,true -Freddie3,newsmast.social,Ukraine Invasion,ukraine_invasion,false -Freddie3,newsmast.social,Law & Justice,law_justice,false -Freddie3,newsmast.social,Healthcare,healthcare,false -Freddie3,newsmast.social,Government & Policy,government_policy,false -Freddie3,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -Freddie3,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false -Freddie3,newsmast.social,Poverty & Inequality,poverty_inequality,false -Freddie3,newsmast.social,Performing Arts,performing_arts,false -Freddie3,newsmast.social,Visual Arts,visual_arts,false -Freddie3,newsmast.social,Workers Rights,workers_rights,false -Freddie3,newsmast.social,Indigenous Peoples,indigenous_peoples,false -Freddie3,newsmast.social,Immigrants Rights,immigrants_rights,false -Freddie3,newsmast.social,Disabled Voices,disabled_voices,false -Freddie3,newsmast.social,Black Voices,black_voices,false -Freddie3,newsmast.social,Activism & Civil Rights,activism_civil_rights,false -Freddie3,newsmast.social,Humour,humour,false -Freddie3,newsmast.social,Movies,movies,false -Freddie3,newsmast.social,Social Sciences,social_sciences,false -Freddie3,newsmast.social,Humanities,humanities,false -Freddie3,newsmast.social,History,history,false -Freddie3,newsmast.social,Environment,environment,false -Freddie3,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false -Freddie3,newsmast.social,Climate change,climate_change,false -Freddie3,newsmast.social,Energy & Pollution,energy_pollution,false -Freddie3,newsmast.social,Creative Arts,creative_arts,false -Freddie3,newsmast.social,Science,science,true -Freddie3,newsmast.social,LGBTQ+,lgbtq,false -Freddie3,newsmast.social,Philosophy,philosophy,false -Freddie3,newsmast.social,Books & Literature,books_literature,false -avalio77,newsmast.social,Law & Justice,law_justice,false -avalio77,newsmast.social,AI,ai,false -avalio77,newsmast.social,Books & Literature,books_literature,false -avalio77,newsmast.social,Climate change,climate_change,false -avalio77,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -avalio77,newsmast.social,Environment,environment,false -avalio77,newsmast.social,Government & Policy,government_policy,false -avalio77,newsmast.social,History,history,false -avalio77,newsmast.social,Humanities,humanities,false -avalio77,newsmast.social,Poverty & Inequality,poverty_inequality,true -avalio77,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false -avalio77,newsmast.social,Philosophy,philosophy,false -avalio77,newsmast.social,Social Sciences,social_sciences,false -avalio77,newsmast.social,Technology,technology,false -avalio77,newsmast.social,Immigrants Rights,immigrants_rights,false -Stevivor,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false -Stevivor,newsmast.social,Creative Arts,creative_arts,false -Stevivor,newsmast.social,LGBTQ+,lgbtq,false -Stevivor,newsmast.social,Journalism & Comment,news_comment_data,true -Stevivor,newsmast.social,Technology,technology,false -DannSy18,newsmast.social,Ukraine Invasion,ukraine_invasion,false -DannSy18,newsmast.social,AI,ai,false -DannSy18,newsmast.social,Government & Policy,government_policy,true -Stephen,newsmast.social,Journalism & Comment,news_comment_data,false -Stephen,newsmast.social,Movies,movies,false -Stephen,newsmast.social,Music,music,false -Stephen,newsmast.social,Gaming,gaming,false -Stephen,newsmast.social,TV & Radio,tv_radio,false -Stephen,newsmast.social,Law & Justice,law_justice,false -Stephen,newsmast.social,Visual Arts,visual_arts,true -sabah,newsmast.social,Performing Arts,performing_arts,false -sabah,newsmast.social,Creative Arts,creative_arts,false -sabah,newsmast.social,Social Sciences,social_sciences,false -sabah,newsmast.social,Music,music,false -sabah,newsmast.social,Visual Arts,visual_arts,false -sabah,newsmast.social,Journalism & Comment,news_comment_data,true -sabah,newsmast.social,Poverty & Inequality,poverty_inequality,false -sabah,newsmast.social,Environment,environment,false -Pyae,newsmast.social,Activism & Civil Rights,activism_civil_rights,false -Pyae,newsmast.social,Business,business,false -Pyae,newsmast.social,Environment,environment,false -Pyae,newsmast.social,Government & Policy,government_policy,true -Pyae,newsmast.social,Humanities,humanities,false -Pyae,newsmast.social,Journalism & Comment,news_comment_data,false -Pyae,newsmast.social,Social Sciences,social_sciences,false -Pyae,newsmast.social,Technology,technology,false -Pyae,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -dianashurman,newsmast.social,Markets & Finance,markets_finance,false -dianashurman,newsmast.social,AI,ai,true -dianashurman,newsmast.social,Government & Policy,government_policy,false -dianashurman,newsmast.social,Humanities,humanities,false -dianashurman,newsmast.social,Social Sciences,social_sciences,false -dianashurman,newsmast.social,Pets,pets,false -dianashurman,newsmast.social,Nature & Wildlife,nature_wildlife,false -dianashurman,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false -orianavictoria,newsmast.social,Environment,environment,false -orianavictoria,newsmast.social,Movies,movies,false -orianavictoria,newsmast.social,Politics,politics,false -orianavictoria,newsmast.social,Food & Drink,food_drink,false -orianavictoria,newsmast.social,Journalism & Comment,news_comment_data,true -orianavictoria,newsmast.social,Technology,technology,false -orianavictoria,newsmast.social,Markets & Finance,markets_finance,false -orianavictoria,newsmast.social,Business,business,false -jomaan123,newsmast.social,Politics,politics,false -jomaan123,newsmast.social,Breaking News,breaking_news,false -jomaan123,newsmast.social,Journalism & Comment,news_comment_data,false -jomaan123,newsmast.social,History,history,false -jomaan123,newsmast.social,Humanities,humanities,false -jomaan123,newsmast.social,Pets,pets,true -sophiecunningham,newsmast.social,Environment,environment,false -sophiecunningham,newsmast.social,Science,science,false -sophiecunningham,newsmast.social,Journalism & Comment,news_comment_data,true -sophiecunningham,newsmast.social,Energy & Pollution,energy_pollution,false -sophiecunningham,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false -sophiecunningham,newsmast.social,Nature & Wildlife,nature_wildlife,false -IZMartinez86,newsmast.social,Government & Policy,government_policy,false -IZMartinez86,newsmast.social,Law & Justice,law_justice,false -IZMartinez86,newsmast.social,Environment,environment,false -IZMartinez86,newsmast.social,Biology,biology,false -IZMartinez86,newsmast.social,Chemistry,chemistry,false -IZMartinez86,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -IZMartinez86,newsmast.social,Engineering,engineering,false -IZMartinez86,newsmast.social,Healthcare,healthcare,false -IZMartinez86,newsmast.social,History,history,false -IZMartinez86,newsmast.social,Poverty & Inequality,poverty_inequality,true -IZMartinez86,newsmast.social,Mathematics,mathematics,false -IZMartinez86,newsmast.social,Physics,physics,false -IZMartinez86,newsmast.social,Politics,politics,false -IZMartinez86,newsmast.social,Immigrants Rights,immigrants_rights,false -IZMartinez86,newsmast.social,Science,science,false -IZMartinez86,newsmast.social,Social Sciences,social_sciences,false -IZMartinez86,newsmast.social,Space,space,false -sandy,newsmast.social,Chemistry,chemistry,false -sandy,newsmast.social,Social Sciences,social_sciences,false -sandy,newsmast.social,Creative Arts,creative_arts,false -sandy,newsmast.social,Humour,humour,false -sandy,newsmast.social,Humanities,humanities,false -sandy,newsmast.social,LGBTQ+,lgbtq,false -sandy,newsmast.social,Philosophy,philosophy,false -sandy,newsmast.social,Journalism & Comment,news_comment_data,true -alice11,newsmast.social,Humour,humour,false -alice11,newsmast.social,Movies,movies,false -alice11,newsmast.social,Pets,pets,false -alice11,newsmast.social,Photography,photography,false -alice11,newsmast.social,Creative Arts,creative_arts,false -alice11,newsmast.social,Journalism & Comment,news_comment_data,false -alice11,newsmast.social,Performing Arts,performing_arts,false -alice11,newsmast.social,Travel,travel,false -alice11,newsmast.social,TV & Radio,tv_radio,false -alice11,newsmast.social,LGBTQ+,lgbtq,false -alice11,newsmast.social,Weather,weather,false -alice11,newsmast.social,Music,music,true -YuliaMHersey,newsmast.social,Technology,technology,false -YuliaMHersey,newsmast.social,Creative Arts,creative_arts,false -YuliaMHersey,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false -YuliaMHersey,newsmast.social,AI,ai,false -YuliaMHersey,newsmast.social,Books & Literature,books_literature,true -YuliaMHersey,newsmast.social,Food & Drink,food_drink,false -YuliaMHersey,newsmast.social,Humanities,humanities,false -YuliaMHersey,newsmast.social,Journalism & Comment,news_comment_data,false -YuliaMHersey,newsmast.social,Performing Arts,performing_arts,false -YuliaMHersey,newsmast.social,Philosophy,philosophy,false -YuliaMHersey,newsmast.social,Ukraine Invasion,ukraine_invasion,false -lucygreenwold,newsmast.social,Creative Arts,creative_arts,false -lucygreenwold,newsmast.social,Journalism & Comment,news_comment_data,false -lucygreenwold,newsmast.social,Performing Arts,performing_arts,false -lucygreenwold,newsmast.social,Travel,travel,false -lucygreenwold,newsmast.social,Music,music,false -lucygreenwold,newsmast.social,Indigenous Peoples,indigenous_peoples,false -lucygreenwold,newsmast.social,Women’s Voices,women_voices,false -lucygreenwold,newsmast.social,LGBTQ+,lgbtq,false -lucygreenwold,newsmast.social,Visual Arts,visual_arts,false -lucygreenwold,newsmast.social,Activism & Civil Rights,activism_civil_rights,false -lucygreenwold,newsmast.social,Philosophy,philosophy,false -lucygreenwold,newsmast.social,Climate change,climate_change,false -lucygreenwold,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -lucygreenwold,newsmast.social,Nature & Wildlife,nature_wildlife,false -lucygreenwold,newsmast.social,Books & Literature,books_literature,true -lucygreenwold,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false -lucygreenwold,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false -lucygreenwold,newsmast.social,Immigrants Rights,immigrants_rights,false -orianavmatos,newsmast.social,Government & Policy,government_policy,true -orianavmatos,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false -orianavmatos,newsmast.social,Food & Drink,food_drink,false -orianavmatos,newsmast.social,Creative Arts,creative_arts,false -orianavmatos,newsmast.social,Space,space,false -orianavmatos,newsmast.social,Science,science,false -orianavmatos,newsmast.social,Nature & Wildlife,nature_wildlife,false -orianavmatos,newsmast.social,Pets,pets,false -orianavmatos,newsmast.social,Mathematics,mathematics,false -orianavmatos,newsmast.social,Chemistry,chemistry,false -orianavmatos,newsmast.social,Business,business,false -orianavmatos,newsmast.social,Markets & Finance,markets_finance,false -orianavmatos,newsmast.social,Travel,travel,false -orianavmatos,newsmast.social,Biology,biology,false -orianavmatos,newsmast.social,Physics,physics,false -orianavmatos,newsmast.social,Workers Rights,workers_rights,false -orianavmatos,newsmast.social,Humour,humour,false -orianavmatos,newsmast.social,Puzzles,puzzles,false -orianavmatos,newsmast.social,Technology,technology,false -orianavmatos,newsmast.social,Engineering,engineering,false -orianavmatos,newsmast.social,AI,ai,false -orianavmatos,newsmast.social,Programming,programming,false -orianavmatos,newsmast.social,Gaming,gaming,false -orianavmatos,newsmast.social,Movies,movies,false -eve,newsmast.social,Creative Arts,creative_arts,false -eve,newsmast.social,Environment,environment,false -eve,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false -eve,newsmast.social,Journalism & Comment,news_comment_data,true -eve,newsmast.social,Humour,humour,false -eve,newsmast.social,Breaking News,breaking_news,false -eve,newsmast.social,Climate change,climate_change,false -eve,newsmast.social,Social Sciences,social_sciences,false -eve,newsmast.social,Nature & Wildlife,nature_wildlife,false -eve,newsmast.social,Energy & Pollution,energy_pollution,false -eve,newsmast.social,Engineering,engineering,false -eve,newsmast.social,Music,music,false -eve,newsmast.social,Women’s Voices,women_voices,false -eve,newsmast.social,Humanities,humanities,false -eve,newsmast.social,Books & Literature,books_literature,false -eve,newsmast.social,History,history,false -eve,newsmast.social,LGBTQ+,lgbtq,false -eve,newsmast.social,Food & Drink,food_drink,false -eve,newsmast.social,Indigenous Peoples,indigenous_peoples,false -eve,newsmast.social,Ukraine Invasion,ukraine_invasion,false -eve,newsmast.social,Immigrants Rights,immigrants_rights,false -Phebe,newsmast.social,Architecture & Design,architecture_design,false -Phebe,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false -Phebe,newsmast.social,Poverty & Inequality,poverty_inequality,false -Phebe,newsmast.social,Movies,movies,false -Phebe,newsmast.social,Journalism & Comment,news_comment_data,true -delyan,newsmast.social,Breaking News,breaking_news,false -delyan,newsmast.social,Journalism & Comment,news_comment_data,false -delyan,newsmast.social,Creative Arts,creative_arts,false -delyan,newsmast.social,Photography,photography,false -delyan,newsmast.social,Travel,travel,false -delyan,newsmast.social,Performing Arts,performing_arts,false -delyan,newsmast.social,Politics,politics,false -delyan,newsmast.social,Humour,humour,false -delyan,newsmast.social,Humanities,humanities,false -delyan,newsmast.social,Social Sciences,social_sciences,false -delyan,newsmast.social,Gaming,gaming,false -delyan,newsmast.social,Music,music,false -delyan,newsmast.social,Football,football,false -delyan,newsmast.social,TV & Radio,tv_radio,false -delyan,newsmast.social,Sport,sport,false -delyan,newsmast.social,LGBTQ+,lgbtq,false -delyan,newsmast.social,Workers Rights,workers_rights,false -delyan,newsmast.social,Disabled Voices,disabled_voices,false -delyan,newsmast.social,Visual Arts,visual_arts,false -delyan,newsmast.social,AI,ai,false -delyan,newsmast.social,Activism & Civil Rights,activism_civil_rights,false -delyan,newsmast.social,Government & Policy,government_policy,false -delyan,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -delyan,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false -delyan,newsmast.social,Movies,movies,true -Tasha,newsmast.social,Breaking News,breaking_news,false -Tasha,newsmast.social,Journalism & Comment,news_comment_data,false -Tasha,newsmast.social,Creative Arts,creative_arts,false -Tasha,newsmast.social,Photography,photography,false -Tasha,newsmast.social,Pets,pets,false -Tasha,newsmast.social,Physics,physics,false -Tasha,newsmast.social,Healthcare,healthcare,false -Tasha,newsmast.social,Movies,movies,false -Tasha,newsmast.social,Science,science,false -Tasha,newsmast.social,Engineering,engineering,false -Tasha,newsmast.social,Performing Arts,performing_arts,false -Tasha,newsmast.social,Travel,travel,false -Tasha,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false -Tasha,newsmast.social,Poverty & Inequality,poverty_inequality,false -Tasha,newsmast.social,Politics,politics,false -Tasha,newsmast.social,History,history,false -Tasha,newsmast.social,Humour,humour,false -Tasha,newsmast.social,Humanities,humanities,false -Tasha,newsmast.social,Social Sciences,social_sciences,false -Tasha,newsmast.social,Indigenous Peoples,indigenous_peoples,false -Tasha,newsmast.social,Music,music,false -Tasha,newsmast.social,Gaming,gaming,false -Tasha,newsmast.social,Technology,technology,false -Tasha,newsmast.social,Space,space,false -Tasha,newsmast.social,TV & Radio,tv_radio,false -Tasha,newsmast.social,Sport,sport,false -Tasha,newsmast.social,Ukraine Invasion,ukraine_invasion,false -Tasha,newsmast.social,LGBTQ+,lgbtq,false -Tasha,newsmast.social,Women’s Voices,women_voices,false -Tasha,newsmast.social,Disabled Voices,disabled_voices,false -Tasha,newsmast.social,Workers Rights,workers_rights,false -Tasha,newsmast.social,Visual Arts,visual_arts,false -Tasha,newsmast.social,Black Voices,black_voices,false -Tasha,newsmast.social,AI,ai,false -Tasha,newsmast.social,Activism & Civil Rights,activism_civil_rights,false -Tasha,newsmast.social,Chemistry,chemistry,false -Tasha,newsmast.social,Biology,biology,false -Tasha,newsmast.social,Books & Literature,books_literature,false -Tasha,newsmast.social,Weather,weather,false -Tasha,newsmast.social,Energy & Pollution,energy_pollution,false -Tasha,newsmast.social,Philosophy,philosophy,false -Tasha,newsmast.social,Business,business,false -Tasha,newsmast.social,Climate change,climate_change,false -Tasha,newsmast.social,Markets & Finance,markets_finance,false -Tasha,newsmast.social,Nature & Wildlife,nature_wildlife,false -Tasha,newsmast.social,Food & Drink,food_drink,false -Tasha,newsmast.social,Puzzles,puzzles,false -Tasha,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false -Tasha,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -Tasha,newsmast.social,Government & Policy,government_policy,false -Tasha,newsmast.social,Law & Justice,law_justice,false -Tasha,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false -Tasha,newsmast.social,Football,football,false -Tasha,newsmast.social,Environment,environment,true -Tasha,newsmast.social,Immigrants Rights,immigrants_rights,false -Tasha,newsmast.social,Mathematics,mathematics,false -Tasha,newsmast.social,Architecture & Design,architecture_design,false -JackMoulton,newsmast.social,Government & Policy,government_policy,false -JackMoulton,newsmast.social,Breaking News,breaking_news,false -JackMoulton,newsmast.social,Music,music,false -JackMoulton,newsmast.social,TV & Radio,tv_radio,false -JackMoulton,newsmast.social,Gaming,gaming,false -JackMoulton,newsmast.social,Journalism & Comment,news_comment_data,true -JackMoulton,newsmast.social,Movies,movies,false -JackMoulton,newsmast.social,Law & Justice,law_justice,false -priyal,newsmast.social,Environment,environment,false -priyal,newsmast.social,Movies,movies,false -priyal,newsmast.social,Books & Literature,books_literature,false -priyal,newsmast.social,Climate change,climate_change,false -priyal,newsmast.social,History,history,false -priyal,newsmast.social,Journalism & Comment,news_comment_data,true -priyal,newsmast.social,Creative Arts,creative_arts,false -zainabismail,newsmast.social,Breaking News,breaking_news,false -zainabismail,newsmast.social,Travel,travel,false -zainabismail,newsmast.social,Politics,politics,false -zainabismail,newsmast.social,Activism & Civil Rights,activism_civil_rights,false -zainabismail,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false -zainabismail,newsmast.social,Journalism & Comment,news_comment_data,true -zainabismail,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -seb_bw,newsmast.social,Government & Policy,government_policy,true -seb_bw,newsmast.social,Technology,technology,false -seb_bw,newsmast.social,AI,ai,false -seb_bw,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false -seb_bw,newsmast.social,Climate change,climate_change,false -seb_bw,newsmast.social,Energy & Pollution,energy_pollution,false -seb_bw,newsmast.social,Environment,environment,false -seb_bw,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false -Janet_O,newsmast.social,Government & Policy,government_policy,false -Janet_O,newsmast.social,Photography,photography,false -Janet_O,newsmast.social,Black Voices,black_voices,false -Janet_O,newsmast.social,Journalism & Comment,news_comment_data,false -Janet_O,newsmast.social,Breaking News,breaking_news,true -Supantha,newsmast.social,AI,ai,true -Supantha,newsmast.social,Breaking News,breaking_news,false -Supantha,newsmast.social,Government & Policy,government_policy,false -Supantha,newsmast.social,Journalism & Comment,news_comment_data,false -Supantha,newsmast.social,Politics,politics,false -Supantha,newsmast.social,Technology,technology,false -Supantha,newsmast.social,Ukraine Invasion,ukraine_invasion,false -Supantha,newsmast.social,Weather,weather,false -aishiterutokyo,newsmast.social,Football,football,true -aishiterutokyo,newsmast.social,Gaming,gaming,false -aishiterutokyo,newsmast.social,Journalism & Comment,news_comment_data,false -aishiterutokyo,newsmast.social,Sport,sport,false -aishiterutokyo,newsmast.social,TV & Radio,tv_radio,false -minkhantkyawygn,newsmast.social,Breaking News,breaking_news,false -minkhantkyawygn,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -minkhantkyawygn,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,true -minkhantkyawygn,newsmast.social,Poverty & Inequality,poverty_inequality,false -minkhantkyawygn,newsmast.social,Journalism & Comment,news_comment_data,false -minkhantkyawygn,newsmast.social,Politics,politics,false -minkhantkyawygn,newsmast.social,Ukraine Invasion,ukraine_invasion,false -minkhantkyawygn,newsmast.social,Weather,weather,false -minkhantkyawygn,newsmast.social,Environment,environment,false -minkhantkyawygn,newsmast.social,Immigrants Rights,immigrants_rights,false -hopheim,newsmast.social,Creative Arts,creative_arts,false -hopheim,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,true -hopheim,newsmast.social,Nature & Wildlife,nature_wildlife,false -hopheim,newsmast.social,Breaking News,breaking_news,false -hopheim,newsmast.social,Food & Drink,food_drink,false -hopheim,newsmast.social,Movies,movies,false -hopheim,newsmast.social,Music,music,false -hopheim,newsmast.social,Travel,travel,false -hopheim,newsmast.social,TV & Radio,tv_radio,false -vpatel,newsmast.social,Business,business,false -vpatel,newsmast.social,Journalism & Comment,news_comment_data,false -vpatel,newsmast.social,Philosophy,philosophy,true -vpatel,newsmast.social,Academia & Research,academia_research,false -vpatel,newsmast.social,US Politics,us_politics,false -vpatel,newsmast.social,Weather,weather,false -vpatel,newsmast.social,Breaking News,breaking_news,false -vpatel,newsmast.social,Politics,politics,false -vpatel,newsmast.social,Ukraine Invasion,ukraine_invasion,false -vpatel,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -vpatel,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false -vpatel,newsmast.social,Poverty & Inequality,poverty_inequality,false -vpatel,newsmast.social,Government & Policy,government_policy,false -vpatel,newsmast.social,Healthcare,healthcare,false -vpatel,newsmast.social,Law & Justice,law_justice,false -vpatel,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false -vpatel,newsmast.social,Environment,environment,false -vpatel,newsmast.social,Climate change,climate_change,false -vpatel,newsmast.social,Black Voices,black_voices,false -vpatel,newsmast.social,Immigrants Rights,immigrants_rights,false -vpatel,newsmast.social,Workers Rights,workers_rights,false -vpatel,newsmast.social,Technology,technology,false -vpatel,newsmast.social,Biology,biology,false -vpatel,newsmast.social,Engineering,engineering,false -vpatel,newsmast.social,Physics,physics,false -vpatel,newsmast.social,Humanities,humanities,false -vpatel,newsmast.social,History,history,false -vpatel,newsmast.social,Gaming,gaming,false -vpatel,newsmast.social,Music,music,false -vpatel,newsmast.social,Photography,photography,false -vpatel,newsmast.social,Visual Arts,visual_arts,false -vpatel,newsmast.social,Sport,sport,false -vpatel,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false -vpatel,newsmast.social,Energy & Pollution,energy_pollution,false -vpatel,newsmast.social,Activism & Civil Rights,activism_civil_rights,false -vpatel,newsmast.social,Disabled Voices,disabled_voices,false -vpatel,newsmast.social,Indigenous Peoples,indigenous_peoples,false -vpatel,newsmast.social,Women’s Voices,women_voices,false -vpatel,newsmast.social,Markets & Finance,markets_finance,false -vpatel,newsmast.social,AI,ai,false -vpatel,newsmast.social,Science,science,false -vpatel,newsmast.social,Chemistry,chemistry,false -vpatel,newsmast.social,Mathematics,mathematics,false -vpatel,newsmast.social,Space,space,false -vpatel,newsmast.social,Books & Literature,books_literature,false -vpatel,newsmast.social,LGBTQ+,lgbtq,false -vpatel,newsmast.social,Social Sciences,social_sciences,false -vpatel,newsmast.social,Architecture & Design,architecture_design,false -vpatel,newsmast.social,Movies,movies,false -vpatel,newsmast.social,Performing Arts,performing_arts,false -vpatel,newsmast.social,TV & Radio,tv_radio,false -vpatel,newsmast.social,Football,football,false -vpatel,newsmast.social,Creative Arts,creative_arts,false -vpatel,newsmast.social,Food & Drink,food_drink,false -vpatel,newsmast.social,Humour,humour,false -vpatel,newsmast.social,Nature & Wildlife,nature_wildlife,false -vpatel,newsmast.social,Pets,pets,false -vpatel,newsmast.social,Puzzles,puzzles,false -vpatel,newsmast.social,Travel,travel,false -natashaklondon,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,true -natashaklondon,newsmast.social,Creative Arts,creative_arts,false -natashaklondon,newsmast.social,Nature & Wildlife,nature_wildlife,false -natashaklondon,newsmast.social,Travel,travel,false -akptest007,newsmast.social,Nature & Wildlife,nature_wildlife,false -akptest007,newsmast.social,Books & Literature,books_literature,false -akptest007,newsmast.social,Technology,technology,false -akptest007,newsmast.social,Business,business,false -akptest007,newsmast.social,Government & Policy,government_policy,false -akptest007,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false -akptest007,newsmast.social,Climate change,climate_change,true -akptest007,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -akptest007,newsmast.social,Energy & Pollution,energy_pollution,false -akptest007,newsmast.social,Environment,environment,false -akptest007,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false -akptest007,newsmast.social,Poverty & Inequality,poverty_inequality,false -akptest007,newsmast.social,Immigrants Rights,immigrants_rights,false -Academistry,newsmast.social,Biology,biology,false -Academistry,newsmast.social,Breaking News,breaking_news,false -Academistry,newsmast.social,Chemistry,chemistry,true -Academistry,newsmast.social,Government & Policy,government_policy,false -Academistry,newsmast.social,Healthcare,healthcare,false -Academistry,newsmast.social,Poverty & Inequality,poverty_inequality,false -Academistry,newsmast.social,Journalism & Comment,news_comment_data,false -Academistry,newsmast.social,Politics,politics,false -Academistry,newsmast.social,Science,science,false -Academistry,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false -andadapt,newsmast.social,AI,ai,false -andadapt,newsmast.social,Architecture & Design,architecture_design,false -andadapt,newsmast.social,Biology,biology,false -andadapt,newsmast.social,Books & Literature,books_literature,false -andadapt,newsmast.social,Business,business,false -andadapt,newsmast.social,Chemistry,chemistry,false -andadapt,newsmast.social,Creative Arts,creative_arts,false -andadapt,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -andadapt,newsmast.social,Engineering,engineering,false -andadapt,newsmast.social,Food & Drink,food_drink,false -andadapt,newsmast.social,Gaming,gaming,false -andadapt,newsmast.social,History,history,false -andadapt,newsmast.social,Humanities,humanities,false -andadapt,newsmast.social,Humour,humour,false -andadapt,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false -andadapt,newsmast.social,Markets & Finance,markets_finance,false -andadapt,newsmast.social,Mathematics,mathematics,false -andadapt,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false -andadapt,newsmast.social,Movies,movies,false -andadapt,newsmast.social,Music,music,false -andadapt,newsmast.social,Nature & Wildlife,nature_wildlife,false -andadapt,newsmast.social,Journalism & Comment,news_comment_data,false -andadapt,newsmast.social,Performing Arts,performing_arts,false -andadapt,newsmast.social,Pets,pets,false -andadapt,newsmast.social,Philosophy,philosophy,false -andadapt,newsmast.social,Photography,photography,false -andadapt,newsmast.social,Physics,physics,false -andadapt,newsmast.social,Poverty & Inequality,poverty_inequality,false -andadapt,newsmast.social,Programming,programming,false -andadapt,newsmast.social,Puzzles,puzzles,false -andadapt,newsmast.social,Science,science,false -andadapt,newsmast.social,Social Media,social_media,false -andadapt,newsmast.social,Social Sciences,social_sciences,false -andadapt,newsmast.social,Space,space,false -andadapt,newsmast.social,Technology,technology,false -andadapt,newsmast.social,Travel,travel,false -andadapt,newsmast.social,TV & Radio,tv_radio,false -andadapt,newsmast.social,Ukraine Invasion,ukraine_invasion,false -andadapt,newsmast.social,Visual Arts,visual_arts,false -andadapt,newsmast.social,Weather,weather,false -andadapt,newsmast.social,Workers Rights,workers_rights,false -andadapt,newsmast.social,Breaking News,breaking_news,true -Hurns,newsmast.social,AI,ai,false -Hurns,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false -Hurns,newsmast.social,Breaking News,breaking_news,false -Hurns,newsmast.social,Climate change,climate_change,true -Hurns,newsmast.social,Energy & Pollution,energy_pollution,false -Hurns,newsmast.social,Environment,environment,false -Lawrence,newsmast.social,AI,ai,false -Lawrence,newsmast.social,Breaking News,breaking_news,false -Lawrence,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false -Lawrence,newsmast.social,Creative Arts,creative_arts,false -Lawrence,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -Lawrence,newsmast.social,Food & Drink,food_drink,false -Lawrence,newsmast.social,History,history,false -Lawrence,newsmast.social,Humanities,humanities,false -Lawrence,newsmast.social,Journalism & Comment,news_comment_data,false -Lawrence,newsmast.social,Philosophy,philosophy,false -Lawrence,newsmast.social,Technology,technology,true -Lawrence,newsmast.social,Environment,environment,false -Lawrence,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false -stephieduffy,newsmast.social,Breaking News,breaking_news,false -stephieduffy,newsmast.social,Pets,pets,false -stephieduffy,newsmast.social,Creative Arts,creative_arts,false -stephieduffy,newsmast.social,Performing Arts,performing_arts,true -stephieduffy,newsmast.social,Travel,travel,false -stephieduffy,newsmast.social,Humour,humour,false -stephieduffy,newsmast.social,Humanities,humanities,false -stephieduffy,newsmast.social,Music,music,false -stephieduffy,newsmast.social,LGBTQ+,lgbtq,false -stephieduffy,newsmast.social,Women’s Voices,women_voices,false -stephieduffy,newsmast.social,Disabled Voices,disabled_voices,false -stephieduffy,newsmast.social,Books & Literature,books_literature,false -stephieduffy,newsmast.social,Activism & Civil Rights,activism_civil_rights,false -stephieduffy,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false -stephieduffy,newsmast.social,Journalism & Comment,news_comment_data,false -stephieduffy,newsmast.social,Movies,movies,false -stephieduffy,newsmast.social,Philosophy,philosophy,false -stephieduffy,newsmast.social,TV & Radio,tv_radio,false -stephieduffy,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false -DrECSkirmuntt,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false -DrECSkirmuntt,newsmast.social,Creative Arts,creative_arts,false -DrECSkirmuntt,newsmast.social,AI,ai,false -DrECSkirmuntt,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false -DrECSkirmuntt,newsmast.social,Biology,biology,false -DrECSkirmuntt,newsmast.social,Breaking News,breaking_news,false -DrECSkirmuntt,newsmast.social,Food & Drink,food_drink,false -DrECSkirmuntt,newsmast.social,Gaming,gaming,false -DrECSkirmuntt,newsmast.social,Movies,movies,false -DrECSkirmuntt,newsmast.social,Nature & Wildlife,nature_wildlife,false -DrECSkirmuntt,newsmast.social,Journalism & Comment,news_comment_data,false -DrECSkirmuntt,newsmast.social,Pets,pets,false -DrECSkirmuntt,newsmast.social,Science,science,true -DrECSkirmuntt,newsmast.social,Space,space,false -DrECSkirmuntt,newsmast.social,Travel,travel,false -DrECSkirmuntt,newsmast.social,Weather,weather,false -samlee,newsmast.social,Breaking News,breaking_news,false -samlee,newsmast.social,Football,football,true -samlee,newsmast.social,Gaming,gaming,false -samlee,newsmast.social,Movies,movies,false -samlee,newsmast.social,Music,music,false -samlee,newsmast.social,Sport,sport,false -Joan_Kem,newsmast.social,Activism & Civil Rights,activism_civil_rights,false -Joan_Kem,newsmast.social,Black Voices,black_voices,false -Joan_Kem,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -Joan_Kem,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,true -Joan_Kem,newsmast.social,Poverty & Inequality,poverty_inequality,false -Joan_Kem,newsmast.social,Women’s Voices,women_voices,false -Joan_Kem,newsmast.social,Workers Rights,workers_rights,false -Joan_Kem,newsmast.social,Environment,environment,false -TVPsychologist,newsmast.social,Social Sciences,social_sciences,true -TVPsychologist,newsmast.social,Creative Arts,creative_arts,false -TVPsychologist,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false -TVPsychologist,newsmast.social,Journalism & Comment,news_comment_data,false -TVPsychologist,newsmast.social,Politics,politics,false -TVPsychologist,newsmast.social,TV & Radio,tv_radio,false -saturn,newsmast.social,Activism & Civil Rights,activism_civil_rights,false -saturn,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false -saturn,newsmast.social,Black Voices,black_voices,false -saturn,newsmast.social,Climate change,climate_change,false -saturn,newsmast.social,Disabled Voices,disabled_voices,false -saturn,newsmast.social,Energy & Pollution,energy_pollution,false -saturn,newsmast.social,Environment,environment,true -saturn,newsmast.social,Immigrants Rights,immigrants_rights,false -saturn,newsmast.social,Indigenous Peoples,indigenous_peoples,false -saturn,newsmast.social,LGBTQ+,lgbtq,false -saturn,newsmast.social,Women’s Voices,women_voices,false -saturn,newsmast.social,Workers Rights,workers_rights,false -saturn,newsmast.social,Nature & Wildlife,nature_wildlife,false -liharris30,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false -liharris30,newsmast.social,Business,business,false -liharris30,newsmast.social,Humanities,humanities,false -liharris30,newsmast.social,Technology,technology,false -liharris30,newsmast.social,Environment,environment,true -Bekash,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false -Bekash,newsmast.social,Creative Arts,creative_arts,false -Bekash,newsmast.social,Food & Drink,food_drink,false -Bekash,newsmast.social,Football,football,true -Bekash,newsmast.social,Humour,humour,false -Bekash,newsmast.social,Nature & Wildlife,nature_wildlife,false -Bekash,newsmast.social,Pets,pets,false -Bekash,newsmast.social,Puzzles,puzzles,false -Bekash,newsmast.social,Sport,sport,false -Bekash,newsmast.social,Travel,travel,false -CharityNews,newsmast.social,Law & Justice,law_justice,false -CharityNews,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false -CharityNews,newsmast.social,Architecture & Design,architecture_design,false -CharityNews,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false -CharityNews,newsmast.social,Books & Literature,books_literature,false -CharityNews,newsmast.social,Breaking News,breaking_news,false -CharityNews,newsmast.social,Climate change,climate_change,false -CharityNews,newsmast.social,Creative Arts,creative_arts,false -CharityNews,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -CharityNews,newsmast.social,Energy & Pollution,energy_pollution,false -CharityNews,newsmast.social,Environment,environment,false -CharityNews,newsmast.social,Food & Drink,food_drink,false -CharityNews,newsmast.social,Football,football,false -CharityNews,newsmast.social,Gaming,gaming,false -CharityNews,newsmast.social,History,history,false -CharityNews,newsmast.social,Humanities,humanities,false -CharityNews,newsmast.social,Humour,humour,false -CharityNews,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,true -CharityNews,newsmast.social,Poverty & Inequality,poverty_inequality,false -CharityNews,newsmast.social,Movies,movies,false -CharityNews,newsmast.social,Music,music,false -CharityNews,newsmast.social,Nature & Wildlife,nature_wildlife,false -CharityNews,newsmast.social,Journalism & Comment,news_comment_data,false -CharityNews,newsmast.social,Performing Arts,performing_arts,false -CharityNews,newsmast.social,Pets,pets,false -CharityNews,newsmast.social,Philosophy,philosophy,false -CharityNews,newsmast.social,Photography,photography,false -CharityNews,newsmast.social,Politics,politics,false -CharityNews,newsmast.social,Puzzles,puzzles,false -CharityNews,newsmast.social,Sport,sport,false -CharityNews,newsmast.social,Travel,travel,false -CharityNews,newsmast.social,TV & Radio,tv_radio,false -CharityNews,newsmast.social,Ukraine Invasion,ukraine_invasion,false -CharityNews,newsmast.social,Visual Arts,visual_arts,false -CharityNews,newsmast.social,Weather,weather,false -CharityNews,newsmast.social,Immigrants Rights,immigrants_rights,false -chrisfrench,newsmast.social,Social Sciences,social_sciences,true -chrisfrench,newsmast.social,Breaking News,breaking_news,false -chrisfrench,newsmast.social,Government & Policy,government_policy,false -chrisfrench,newsmast.social,Movies,movies,false -chrisfrench,newsmast.social,Journalism & Comment,news_comment_data,false -chrisfrench,newsmast.social,Performing Arts,performing_arts,false -chrisfrench,newsmast.social,Politics,politics,false -chrisfrench,newsmast.social,Science,science,false -chrisfrench,newsmast.social,Space,space,false -chrisfrench,newsmast.social,TV & Radio,tv_radio,false -chrisfrench,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -esgcsrpodcastalert,newsmast.social,Business,business,true -esgcsrpodcastalert,newsmast.social,Markets & Finance,markets_finance,false -NineBall,newsmast.social,AI,ai,false -NineBall,newsmast.social,Breaking News,breaking_news,true -NineBall,newsmast.social,Journalism & Comment,news_comment_data,false -NineBall,newsmast.social,Politics,politics,false -NineBall,newsmast.social,Technology,technology,false -NineBall,newsmast.social,Ukraine Invasion,ukraine_invasion,false -NineBall,newsmast.social,Weather,weather,false -zerotwo,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false -zerotwo,newsmast.social,Climate change,climate_change,false -zerotwo,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -zerotwo,newsmast.social,Energy & Pollution,energy_pollution,false -zerotwo,newsmast.social,Environment,environment,false -zerotwo,newsmast.social,Healthcare,healthcare,false -zerotwo,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,true -zerotwo,newsmast.social,Poverty & Inequality,poverty_inequality,false -zerotwo,newsmast.social,Law & Justice,law_justice,false -zerotwo,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false -zerotwo,newsmast.social,Journalism & Comment,news_comment_data,false -zerotwo,newsmast.social,Politics,politics,false -zerotwo,newsmast.social,Ukraine Invasion,ukraine_invasion,false -zerotwo,newsmast.social,Weather,weather,false -zerotwo,newsmast.social,Breaking News,breaking_news,false -zerotwo,newsmast.social,Creative Arts,creative_arts,false -zerotwo,newsmast.social,Government & Policy,government_policy,false -zerotwo,newsmast.social,Nature & Wildlife,nature_wildlife,false -zerotwo,newsmast.social,Immigrants Rights,immigrants_rights,false -dev_sithu,newsmast.social,Journalism & Comment,news_comment_data,false -dev_sithu,newsmast.social,Politics,politics,false -dev_sithu,newsmast.social,Ukraine Invasion,ukraine_invasion,false -dev_sithu,newsmast.social,Weather,weather,false -dev_sithu,newsmast.social,Breaking News,breaking_news,true -mkk_newsmast,newsmast.social,Breaking News,breaking_news,false -mkk_newsmast,newsmast.social,Journalism & Comment,news_comment_data,true -mkk_newsmast,newsmast.social,Politics,politics,false -mkk_newsmast,newsmast.social,Ukraine Invasion,ukraine_invasion,false -mkk_newsmast,newsmast.social,Weather,weather,false -Roncaglia,newsmast.social,Books & Literature,books_literature,false -Roncaglia,newsmast.social,History,history,false -Roncaglia,newsmast.social,Humanities,humanities,false -Roncaglia,newsmast.social,Space,space,false -Roncaglia,newsmast.social,AI,ai,true -daniel_mckeon,newsmast.social,TV & Radio,tv_radio,false -daniel_mckeon,newsmast.social,Chemistry,chemistry,false -daniel_mckeon,newsmast.social,Journalism & Comment,news_comment_data,false -daniel_mckeon,newsmast.social,Social Sciences,social_sciences,false -daniel_mckeon,newsmast.social,Physics,physics,true -SoeMyinHtel_dev,newsmast.social,Breaking News,breaking_news,false -SoeMyinHtel_dev,newsmast.social,Democracy & Human Rights,democracy_human_rights,true -SoeMyinHtel_dev,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false -SoeMyinHtel_dev,newsmast.social,Poverty & Inequality,poverty_inequality,false -SoeMyinHtel_dev,newsmast.social,Journalism & Comment,news_comment_data,false -SoeMyinHtel_dev,newsmast.social,Politics,politics,false -SoeMyinHtel_dev,newsmast.social,Ukraine Invasion,ukraine_invasion,false -SoeMyinHtel_dev,newsmast.social,Weather,weather,false -SoeMyinHtel_dev,newsmast.social,Environment,environment,false -SoeMyinHtel_dev,newsmast.social,Immigrants Rights,immigrants_rights,false -S33J,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false -S33J,newsmast.social,Biology,biology,false -S33J,newsmast.social,Environment,environment,false -S33J,newsmast.social,Food & Drink,food_drink,false -S33J,newsmast.social,Nature & Wildlife,nature_wildlife,false -S33J,newsmast.social,Performing Arts,performing_arts,false -S33J,newsmast.social,Science,science,false -S33J,newsmast.social,Sport,sport,false -S33J,newsmast.social,Visual Arts,visual_arts,false -S33J,newsmast.social,Football,football,false -S33J,newsmast.social,Social Sciences,social_sciences,false -S33J,newsmast.social,Journalism & Comment,news_comment_data,true -S33J,newsmast.social,Creative Arts,creative_arts,false -S33J,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false -S33J,newsmast.social,Books & Literature,books_literature,false -S33J,newsmast.social,Humanities,humanities,false -S33J,newsmast.social,Space,space,false -savenues,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false -savenues,newsmast.social,Creative Arts,creative_arts,false -savenues,newsmast.social,Breaking News,breaking_news,false -savenues,newsmast.social,Food & Drink,food_drink,false -savenues,newsmast.social,Humour,humour,false -savenues,newsmast.social,Nature & Wildlife,nature_wildlife,false -savenues,newsmast.social,Travel,travel,true -artek,newsmast.social,Biology,biology,false -artek,newsmast.social,Breaking News,breaking_news,false -artek,newsmast.social,Chemistry,chemistry,false -artek,newsmast.social,Engineering,engineering,false -artek,newsmast.social,Mathematics,mathematics,false -artek,newsmast.social,Physics,physics,false -artek,newsmast.social,Science,science,true -artek,newsmast.social,Space,space,false -macroliter,newsmast.social,Markets & Finance,markets_finance,false -macroliter,newsmast.social,Nature & Wildlife,nature_wildlife,false -macroliter,newsmast.social,Activism & Civil Rights,activism_civil_rights,false -macroliter,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false -macroliter,newsmast.social,Biology,biology,false -macroliter,newsmast.social,Climate change,climate_change,false -macroliter,newsmast.social,Environment,environment,false -macroliter,newsmast.social,Science,science,false -macroliter,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,true -LukaszSzulc,newsmast.social,AI,ai,false -LukaszSzulc,newsmast.social,Humanities,humanities,false -LukaszSzulc,newsmast.social,Immigrants Rights,immigrants_rights,false -LukaszSzulc,newsmast.social,LGBTQ+,lgbtq,true -LukaszSzulc,newsmast.social,Social Sciences,social_sciences,false -LukaszSzulc,newsmast.social,Technology,technology,false -LukaszSzulc,newsmast.social,Women’s Voices,women_voices,false -3arabawy,newsmast.social,Activism & Civil Rights,activism_civil_rights,false -3arabawy,newsmast.social,Books & Literature,books_literature,false -3arabawy,newsmast.social,Breaking News,breaking_news,false -3arabawy,newsmast.social,Government & Policy,government_policy,false -3arabawy,newsmast.social,History,history,false -3arabawy,newsmast.social,Humanities,humanities,false -3arabawy,newsmast.social,Immigrants Rights,immigrants_rights,false -3arabawy,newsmast.social,Journalism & Comment,news_comment_data,true -3arabawy,newsmast.social,Philosophy,philosophy,false -3arabawy,newsmast.social,Politics,politics,false -3arabawy,newsmast.social,Social Sciences,social_sciences,false -3arabawy,newsmast.social,Workers Rights,workers_rights,false -Thomas,newsmast.social,Philosophy,philosophy,false -Thomas,newsmast.social,Activism & Civil Rights,activism_civil_rights,false -Thomas,newsmast.social,Ukraine Invasion,ukraine_invasion,true -Thomas,newsmast.social,Government & Policy,government_policy,false -Thomas,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false -Thomas,newsmast.social,Nature & Wildlife,nature_wildlife,false -jacklscanlan,newsmast.social,Government & Policy,government_policy,false -jacklscanlan,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false -jacklscanlan,newsmast.social,Biology,biology,false -jacklscanlan,newsmast.social,Science,science,true -jacklscanlan,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false -docip,newsmast.social,Nature & Wildlife,nature_wildlife,false -docip,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false -docip,newsmast.social,Climate change,climate_change,false -docip,newsmast.social,Energy & Pollution,energy_pollution,false -docip,newsmast.social,Environment,environment,false -docip,newsmast.social,Indigenous Peoples,indigenous_peoples,true -docip,newsmast.social,Social Sciences,social_sciences,false -brentnatzle,newsmast.social,TV & Radio,tv_radio,false -brentnatzle,newsmast.social,Breaking News,breaking_news,true -brentnatzle,newsmast.social,Business,business,false -brentnatzle,newsmast.social,Government & Policy,government_policy,false -brentnatzle,newsmast.social,Movies,movies,false -brentnatzle,newsmast.social,Music,music,false -brentnatzle,newsmast.social,Journalism & Comment,news_comment_data,false -brentnatzle,newsmast.social,Politics,politics,false -TashaA,newsmast.social,Government & Policy,government_policy,false -TashaA,newsmast.social,Healthcare,healthcare,false -TashaA,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false -TashaA,newsmast.social,Immigrants Rights,immigrants_rights,false -TashaA,newsmast.social,Indigenous Peoples,indigenous_peoples,false -TashaA,newsmast.social,Poverty & Inequality,poverty_inequality,false -TashaA,newsmast.social,Law & Justice,law_justice,false -TashaA,newsmast.social,LGBTQ+,lgbtq,false -TashaA,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false -TashaA,newsmast.social,Women’s Voices,women_voices,false -TashaA,newsmast.social,Workers Rights,workers_rights,false -TashaA,newsmast.social,Creative Arts,creative_arts,false -TashaA,newsmast.social,Food & Drink,food_drink,false -TashaA,newsmast.social,Humour,humour,false -TashaA,newsmast.social,Nature & Wildlife,nature_wildlife,false -TashaA,newsmast.social,Pets,pets,false -TashaA,newsmast.social,Puzzles,puzzles,false -TashaA,newsmast.social,Travel,travel,false -TashaA,newsmast.social,Architecture & Design,architecture_design,false -TashaA,newsmast.social,Gaming,gaming,false -TashaA,newsmast.social,Movies,movies,false -TashaA,newsmast.social,Music,music,false -TashaA,newsmast.social,Performing Arts,performing_arts,false -TashaA,newsmast.social,Photography,photography,false -TashaA,newsmast.social,TV & Radio,tv_radio,false -TashaA,newsmast.social,Visual Arts,visual_arts,false -TashaA,newsmast.social,Humanities,humanities,false -TashaA,newsmast.social,Books & Literature,books_literature,false -TashaA,newsmast.social,History,history,false -TashaA,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false -TashaA,newsmast.social,Black Voices,black_voices,false -TashaA,newsmast.social,Climate change,climate_change,false -TashaA,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -TashaA,newsmast.social,Disabled Voices,disabled_voices,false -TashaA,newsmast.social,Energy & Pollution,energy_pollution,false -TashaA,newsmast.social,Environment,environment,false -TashaA,newsmast.social,Philosophy,philosophy,false -TashaA,newsmast.social,Sport,sport,false -TashaA,newsmast.social,Football,football,false -TashaA,newsmast.social,Social Sciences,social_sciences,false -TashaA,newsmast.social,Science,science,false -TashaA,newsmast.social,Biology,biology,false -TashaA,newsmast.social,Chemistry,chemistry,false -TashaA,newsmast.social,Engineering,engineering,false -TashaA,newsmast.social,Mathematics,mathematics,false -TashaA,newsmast.social,Physics,physics,false -TashaA,newsmast.social,Space,space,false -TashaA,newsmast.social,Technology,technology,false -TashaA,newsmast.social,AI,ai,false -TashaA,newsmast.social,Business,business,false -TashaA,newsmast.social,Journalism & Comment,news_comment_data,false -TashaA,newsmast.social,Breaking News,breaking_news,false -TashaA,newsmast.social,Politics,politics,false -TashaA,newsmast.social,Ukraine Invasion,ukraine_invasion,false -TashaA,newsmast.social,Weather,weather,false -JulieSpray,newsmast.social,Government & Policy,government_policy,false -JulieSpray,newsmast.social,Activism & Civil Rights,activism_civil_rights,false -JulieSpray,newsmast.social,AI,ai,false -JulieSpray,newsmast.social,Black Voices,black_voices,false -JulieSpray,newsmast.social,Breaking News,breaking_news,false -JulieSpray,newsmast.social,Disabled Voices,disabled_voices,false -JulieSpray,newsmast.social,Healthcare,healthcare,false -JulieSpray,newsmast.social,Immigrants Rights,immigrants_rights,false -JulieSpray,newsmast.social,Indigenous Peoples,indigenous_peoples,false -JulieSpray,newsmast.social,Poverty & Inequality,poverty_inequality,false -JulieSpray,newsmast.social,Law & Justice,law_justice,false -JulieSpray,newsmast.social,LGBTQ+,lgbtq,false -JulieSpray,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false -JulieSpray,newsmast.social,Journalism & Comment,news_comment_data,false -JulieSpray,newsmast.social,Politics,politics,false -JulieSpray,newsmast.social,Science,science,false -JulieSpray,newsmast.social,Social Sciences,social_sciences,true -JulieSpray,newsmast.social,Technology,technology,false -JulieSpray,newsmast.social,TV & Radio,tv_radio,false -JulieSpray,newsmast.social,Ukraine Invasion,ukraine_invasion,false -JulieSpray,newsmast.social,Visual Arts,visual_arts,false -JulieSpray,newsmast.social,Women’s Voices,women_voices,false -JulieSpray,newsmast.social,Workers Rights,workers_rights,false -JulieSpray,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -JulieSpray,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false -sethlazar,newsmast.social,AI,ai,true -sethlazar,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -sethlazar,newsmast.social,Government & Policy,government_policy,false -sethlazar,newsmast.social,Poverty & Inequality,poverty_inequality,false -sethlazar,newsmast.social,Technology,technology,false -Joshmcc_05,newsmast.social,Breaking News,breaking_news,false -Joshmcc_05,newsmast.social,Football,football,true -Joshmcc_05,newsmast.social,Journalism & Comment,news_comment_data,false -Joshmcc_05,newsmast.social,Sport,sport,false -WilliamHolland,newsmast.social,Government & Policy,government_policy,true -WilliamHolland,newsmast.social,Healthcare,healthcare,false -WilliamHolland,newsmast.social,Law & Justice,law_justice,false -WilliamHolland,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false -Stutsies,newsmast.social,Creative Arts,creative_arts,false -Stutsies,newsmast.social,Breaking News,breaking_news,false -Stutsies,newsmast.social,Food & Drink,food_drink,false -Stutsies,newsmast.social,Gaming,gaming,true -Stutsies,newsmast.social,Movies,movies,false -Stutsies,newsmast.social,Music,music,false -Stutsies,newsmast.social,Performing Arts,performing_arts,false -Stutsies,newsmast.social,Travel,travel,false -enangha,newsmast.social,Ukraine Invasion,ukraine_invasion,false -enangha,newsmast.social,Journalism & Comment,news_comment_data,true -enangha,newsmast.social,Social Sciences,social_sciences,false -enangha,newsmast.social,Science,science,false -enangha,newsmast.social,Government & Policy,government_policy,false -enangha,newsmast.social,Mathematics,mathematics,false -enangha,newsmast.social,Biology,biology,false -enangha,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false -enangha,newsmast.social,Activism & Civil Rights,activism_civil_rights,false -enangha,newsmast.social,Black Voices,black_voices,false -enangha,newsmast.social,Women’s Voices,women_voices,false -enangha,newsmast.social,Pets,pets,false -enangha,newsmast.social,Healthcare,healthcare,false -enangha,newsmast.social,Poverty & Inequality,poverty_inequality,false -enangha,newsmast.social,Breaking News,breaking_news,false -enangha,newsmast.social,Philosophy,philosophy,false -enangha,newsmast.social,Environment,environment,false -enangha,newsmast.social,Food & Drink,food_drink,false -enangha,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -enangha,newsmast.social,Immigrants Rights,immigrants_rights,false -DeliSaavedra,newsmast.social,Activism & Civil Rights,activism_civil_rights,false -DeliSaavedra,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,true -DeliSaavedra,newsmast.social,Breaking News,breaking_news,false -DeliSaavedra,newsmast.social,Climate change,climate_change,false -DeliSaavedra,newsmast.social,Energy & Pollution,energy_pollution,false -DeliSaavedra,newsmast.social,Environment,environment,false -DeliSaavedra,newsmast.social,Indigenous Peoples,indigenous_peoples,false -DeliSaavedra,newsmast.social,Poverty & Inequality,poverty_inequality,false -DeliSaavedra,newsmast.social,LGBTQ+,lgbtq,false -DeliSaavedra,newsmast.social,Journalism & Comment,news_comment_data,false -DeliSaavedra,newsmast.social,Politics,politics,false -DeliSaavedra,newsmast.social,Ukraine Invasion,ukraine_invasion,false -DeliSaavedra,newsmast.social,Nature & Wildlife,nature_wildlife,false -DeliSaavedra,newsmast.social,Weather,weather,false -DeliSaavedra,newsmast.social,Women’s Voices,women_voices,false -DeliSaavedra,newsmast.social,Workers Rights,workers_rights,false -DeliSaavedra,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false -DeliSaavedra,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -phylis,newsmast.social,AI,ai,true -phylis,newsmast.social,Architecture & Design,architecture_design,false -phylis,newsmast.social,Biology,biology,false -phylis,newsmast.social,Chemistry,chemistry,false -phylis,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -phylis,newsmast.social,Engineering,engineering,false -phylis,newsmast.social,Gaming,gaming,false -phylis,newsmast.social,Government & Policy,government_policy,false -phylis,newsmast.social,Healthcare,healthcare,false -phylis,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false -phylis,newsmast.social,Poverty & Inequality,poverty_inequality,false -phylis,newsmast.social,Law & Justice,law_justice,false -phylis,newsmast.social,Mathematics,mathematics,false -phylis,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false -phylis,newsmast.social,Movies,movies,false -phylis,newsmast.social,Music,music,false -phylis,newsmast.social,Performing Arts,performing_arts,false -phylis,newsmast.social,Photography,photography,false -phylis,newsmast.social,Physics,physics,false -phylis,newsmast.social,Science,science,false -phylis,newsmast.social,Space,space,false -phylis,newsmast.social,Technology,technology,false -phylis,newsmast.social,TV & Radio,tv_radio,false -phylis,newsmast.social,Visual Arts,visual_arts,false -phylis,newsmast.social,Environment,environment,false -phylis,newsmast.social,Immigrants Rights,immigrants_rights,false -Dr_Finbar,newsmast.social,Technology,technology,false -Dr_Finbar,newsmast.social,AI,ai,false -Dr_Finbar,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false -Dr_Finbar,newsmast.social,Energy & Pollution,energy_pollution,false -Dr_Finbar,newsmast.social,Environment,environment,false -Dr_Finbar,newsmast.social,Markets & Finance,markets_finance,true -jannus,newsmast.social,Technology,technology,false -jannus,newsmast.social,Social Sciences,social_sciences,false -jannus,newsmast.social,AI,ai,false -jannus,newsmast.social,Climate change,climate_change,false -jannus,newsmast.social,Energy & Pollution,energy_pollution,false -jannus,newsmast.social,Physics,physics,false -jannus,newsmast.social,Space,space,false -jannus,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,true -jannus,newsmast.social,Environment,environment,false -EV_Musings,newsmast.social,Technology,technology,true -EV_Musings,newsmast.social,Business,business,false -EV_Musings,newsmast.social,Climate change,climate_change,false -EV_Musings,newsmast.social,Engineering,engineering,false -EV_Musings,newsmast.social,Physics,physics,false -EV_Musings,newsmast.social,Travel,travel,false -rozenberg,newsmast.social,Books & Literature,books_literature,false -rozenberg,newsmast.social,Breaking News,breaking_news,false -rozenberg,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -rozenberg,newsmast.social,Government & Policy,government_policy,false -rozenberg,newsmast.social,History,history,false -rozenberg,newsmast.social,Humanities,humanities,false -rozenberg,newsmast.social,Law & Justice,law_justice,true -rozenberg,newsmast.social,Journalism & Comment,news_comment_data,false -rozenberg,newsmast.social,Philosophy,philosophy,false -rozenberg,newsmast.social,Politics,politics,false -rozenberg,newsmast.social,Workers Rights,workers_rights,false -UniverseMoment,newsmast.social,Biology,biology,false -UniverseMoment,newsmast.social,Chemistry,chemistry,false -UniverseMoment,newsmast.social,Engineering,engineering,false -UniverseMoment,newsmast.social,Mathematics,mathematics,false -UniverseMoment,newsmast.social,Physics,physics,false -UniverseMoment,newsmast.social,Science,science,true -UniverseMoment,newsmast.social,Space,space,false -healthygfasian,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false -healthygfasian,newsmast.social,AI,ai,false -healthygfasian,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false -healthygfasian,newsmast.social,Business,business,false -healthygfasian,newsmast.social,Climate change,climate_change,false -healthygfasian,newsmast.social,Creative Arts,creative_arts,false -healthygfasian,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -healthygfasian,newsmast.social,Disabled Voices,disabled_voices,false -healthygfasian,newsmast.social,Energy & Pollution,energy_pollution,false -healthygfasian,newsmast.social,Environment,environment,false -healthygfasian,newsmast.social,Humour,humour,false -healthygfasian,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false -healthygfasian,newsmast.social,Immigrants Rights,immigrants_rights,false -healthygfasian,newsmast.social,Poverty & Inequality,poverty_inequality,false -healthygfasian,newsmast.social,Markets & Finance,markets_finance,false -healthygfasian,newsmast.social,Nature & Wildlife,nature_wildlife,false -healthygfasian,newsmast.social,Pets,pets,false -healthygfasian,newsmast.social,Puzzles,puzzles,false -healthygfasian,newsmast.social,Technology,technology,false -healthygfasian,newsmast.social,Travel,travel,false -healthygfasian,newsmast.social,Women’s Voices,women_voices,false -healthygfasian,newsmast.social,Food & Drink,food_drink,true -EasternBorder,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false -EasternBorder,newsmast.social,AI,ai,false -EasternBorder,newsmast.social,Architecture & Design,architecture_design,false -EasternBorder,newsmast.social,Books & Literature,books_literature,false -EasternBorder,newsmast.social,Breaking News,breaking_news,false -EasternBorder,newsmast.social,Creative Arts,creative_arts,false -EasternBorder,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -EasternBorder,newsmast.social,Engineering,engineering,false -EasternBorder,newsmast.social,Food & Drink,food_drink,false -EasternBorder,newsmast.social,Football,football,false -EasternBorder,newsmast.social,Gaming,gaming,false -EasternBorder,newsmast.social,Government & Policy,government_policy,false -EasternBorder,newsmast.social,Healthcare,healthcare,false -EasternBorder,newsmast.social,History,history,false -EasternBorder,newsmast.social,Humanities,humanities,false -EasternBorder,newsmast.social,Humour,humour,false -EasternBorder,newsmast.social,Law & Justice,law_justice,false -EasternBorder,newsmast.social,Mathematics,mathematics,false -EasternBorder,newsmast.social,Movies,movies,false -EasternBorder,newsmast.social,Nature & Wildlife,nature_wildlife,false -EasternBorder,newsmast.social,Journalism & Comment,news_comment_data,true -EasternBorder,newsmast.social,Philosophy,philosophy,false -EasternBorder,newsmast.social,Photography,photography,false -EasternBorder,newsmast.social,Politics,politics,false -EasternBorder,newsmast.social,Science,science,false -EasternBorder,newsmast.social,Social Sciences,social_sciences,false -EasternBorder,newsmast.social,Space,space,false -EasternBorder,newsmast.social,Sport,sport,false -EasternBorder,newsmast.social,Technology,technology,false -EasternBorder,newsmast.social,Travel,travel,false -EasternBorder,newsmast.social,TV & Radio,tv_radio,false -EasternBorder,newsmast.social,Ukraine Invasion,ukraine_invasion,false -EasternBorder,newsmast.social,Weather,weather,false -EasternBorder,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false -EasternBorder,newsmast.social,Poverty & Inequality,poverty_inequality,false -morefunwithjuan,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false -morefunwithjuan,newsmast.social,Creative Arts,creative_arts,false -morefunwithjuan,newsmast.social,Architecture & Design,architecture_design,false -morefunwithjuan,newsmast.social,Food & Drink,food_drink,false -morefunwithjuan,newsmast.social,Movies,movies,false -morefunwithjuan,newsmast.social,Music,music,false -morefunwithjuan,newsmast.social,Nature & Wildlife,nature_wildlife,false -morefunwithjuan,newsmast.social,Travel,travel,true -morefunwithjuan,newsmast.social,Visual Arts,visual_arts,false -morefunwithjuan,newsmast.social,Weather,weather,false -Kayleigh,newsmast.social,Disabled Voices,disabled_voices,false -Kayleigh,newsmast.social,Humanities,humanities,false -Kayleigh,newsmast.social,Government & Policy,government_policy,false -Kayleigh,newsmast.social,Journalism & Comment,news_comment_data,false -Kayleigh,newsmast.social,Women’s Voices,women_voices,false -Kayleigh,newsmast.social,LGBTQ+,lgbtq,false -Kayleigh,newsmast.social,Black Voices,black_voices,false -Kayleigh,newsmast.social,Business,business,false -Kayleigh,newsmast.social,Books & Literature,books_literature,true -Kayleigh,newsmast.social,Activism & Civil Rights,activism_civil_rights,false -Kayleigh,newsmast.social,Markets & Finance,markets_finance,false -Kayleigh,newsmast.social,Music,music,false -Kayleigh,newsmast.social,TV & Radio,tv_radio,false -Kayleigh,newsmast.social,Pets,pets,false -Kayleigh,newsmast.social,Philosophy,philosophy,false -Kayleigh,newsmast.social,Immigrants Rights,immigrants_rights,false -Kayleigh,newsmast.social,Workers Rights,workers_rights,false -Kayleigh,newsmast.social,Gaming,gaming,false -Kayleigh,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false -Kayleigh,newsmast.social,Breaking News,breaking_news,false -Kayleigh,newsmast.social,Indigenous Peoples,indigenous_peoples,false -Kayleigh,newsmast.social,Poverty & Inequality,poverty_inequality,false -Kayleigh,newsmast.social,Movies,movies,false -Kayleigh,newsmast.social,Healthcare,healthcare,false -Kayleigh,newsmast.social,Creative Arts,creative_arts,false -Kayleigh,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -lorenaflag,newsmast.social,Activism & Civil Rights,activism_civil_rights,false -lorenaflag,newsmast.social,Photography,photography,false -lorenaflag,newsmast.social,Social Sciences,social_sciences,false -lorenaflag,newsmast.social,Technology,technology,false -lorenaflag,newsmast.social,TV & Radio,tv_radio,false -lorenaflag,newsmast.social,Visual Arts,visual_arts,false -lorenaflag,newsmast.social,Women’s Voices,women_voices,true -lorenaflag,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false -Sushmitapanda,newsmast.social,Healthcare,healthcare,true -Sushmitapanda,newsmast.social,Nature & Wildlife,nature_wildlife,false -Sushmitapanda,newsmast.social,Architecture & Design,architecture_design,false -Sushmitapanda,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false -Sushmitapanda,newsmast.social,Biology,biology,false -Sushmitapanda,newsmast.social,Breaking News,breaking_news,false -Sushmitapanda,newsmast.social,Business,business,false -Sushmitapanda,newsmast.social,Chemistry,chemistry,false -Sushmitapanda,newsmast.social,Climate change,climate_change,false -Sushmitapanda,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -Sushmitapanda,newsmast.social,Energy & Pollution,energy_pollution,false -Sushmitapanda,newsmast.social,Engineering,engineering,false -Sushmitapanda,newsmast.social,Environment,environment,false -Sushmitapanda,newsmast.social,Gaming,gaming,false -Sushmitapanda,newsmast.social,Government & Policy,government_policy,false -Sushmitapanda,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false -Sushmitapanda,newsmast.social,Poverty & Inequality,poverty_inequality,false -Sushmitapanda,newsmast.social,Law & Justice,law_justice,false -Sushmitapanda,newsmast.social,Markets & Finance,markets_finance,false -Sushmitapanda,newsmast.social,Mathematics,mathematics,false -Sushmitapanda,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false -Sushmitapanda,newsmast.social,Movies,movies,false -Sushmitapanda,newsmast.social,Music,music,false -Sushmitapanda,newsmast.social,Journalism & Comment,news_comment_data,false -Sushmitapanda,newsmast.social,Performing Arts,performing_arts,false -Sushmitapanda,newsmast.social,Photography,photography,false -Sushmitapanda,newsmast.social,Physics,physics,false -Sushmitapanda,newsmast.social,Politics,politics,false -Sushmitapanda,newsmast.social,Science,science,false -Sushmitapanda,newsmast.social,Space,space,false -Sushmitapanda,newsmast.social,TV & Radio,tv_radio,false -Sushmitapanda,newsmast.social,Ukraine Invasion,ukraine_invasion,false -Sushmitapanda,newsmast.social,Visual Arts,visual_arts,false -Sushmitapanda,newsmast.social,Weather,weather,false -Sushmitapanda,newsmast.social,Immigrants Rights,immigrants_rights,false -DerrickEMugisha,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false -DerrickEMugisha,newsmast.social,Breaking News,breaking_news,false -DerrickEMugisha,newsmast.social,Business,business,false -DerrickEMugisha,newsmast.social,Climate change,climate_change,false -DerrickEMugisha,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -DerrickEMugisha,newsmast.social,Energy & Pollution,energy_pollution,false -DerrickEMugisha,newsmast.social,Environment,environment,false -DerrickEMugisha,newsmast.social,Football,football,false -DerrickEMugisha,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false -DerrickEMugisha,newsmast.social,Poverty & Inequality,poverty_inequality,false -DerrickEMugisha,newsmast.social,Nature & Wildlife,nature_wildlife,false -DerrickEMugisha,newsmast.social,Pets,pets,false -DerrickEMugisha,newsmast.social,Science,science,false -DerrickEMugisha,newsmast.social,Sport,sport,false -DerrickEMugisha,newsmast.social,Travel,travel,false -DerrickEMugisha,newsmast.social,Weather,weather,false -DerrickEMugisha,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,true -DerrickEMugisha,newsmast.social,Immigrants Rights,immigrants_rights,false -VAVEL,newsmast.social,Breaking News,breaking_news,false -VAVEL,newsmast.social,Football,football,true -VAVEL,newsmast.social,Journalism & Comment,news_comment_data,false -VAVEL,newsmast.social,Sport,sport,false -Aysha,newsmast.social,Books & Literature,books_literature,true -Aysha,newsmast.social,Movies,movies,false -Aysha,newsmast.social,Performing Arts,performing_arts,false -Aysha,newsmast.social,Photography,photography,false -Aysha,newsmast.social,Space,space,false -Sebsb,newsmast.social,AI,ai,false -Sebsb,newsmast.social,Architecture & Design,architecture_design,false -Sebsb,newsmast.social,Breaking News,breaking_news,false -Sebsb,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -Sebsb,newsmast.social,Gaming,gaming,false -Sebsb,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false -Sebsb,newsmast.social,Poverty & Inequality,poverty_inequality,false -Sebsb,newsmast.social,Movies,movies,false -Sebsb,newsmast.social,Music,music,false -Sebsb,newsmast.social,Journalism & Comment,news_comment_data,false -Sebsb,newsmast.social,Performing Arts,performing_arts,false -Sebsb,newsmast.social,Photography,photography,false -Sebsb,newsmast.social,Politics,politics,false -Sebsb,newsmast.social,Sport,sport,false -Sebsb,newsmast.social,Technology,technology,false -Sebsb,newsmast.social,TV & Radio,tv_radio,false -Sebsb,newsmast.social,Ukraine Invasion,ukraine_invasion,false -Sebsb,newsmast.social,Visual Arts,visual_arts,false -Sebsb,newsmast.social,Weather,weather,false -Sebsb,newsmast.social,Football,football,true -Sebsb,newsmast.social,Environment,environment,false -Sebsb,newsmast.social,Immigrants Rights,immigrants_rights,false -Sinobabble,newsmast.social,Markets & Finance,markets_finance,false -Sinobabble,newsmast.social,AI,ai,false -Sinobabble,newsmast.social,Books & Literature,books_literature,false -Sinobabble,newsmast.social,Breaking News,breaking_news,false -Sinobabble,newsmast.social,Business,business,false -Sinobabble,newsmast.social,History,history,false -Sinobabble,newsmast.social,Humanities,humanities,true -Sinobabble,newsmast.social,Journalism & Comment,news_comment_data,false -Sinobabble,newsmast.social,Philosophy,philosophy,false -Sinobabble,newsmast.social,Technology,technology,false -samarpahwa,newsmast.social,Breaking News,breaking_news,false -samarpahwa,newsmast.social,Business,business,false -samarpahwa,newsmast.social,Creative Arts,creative_arts,false -samarpahwa,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -samarpahwa,newsmast.social,Food & Drink,food_drink,false -samarpahwa,newsmast.social,Government & Policy,government_policy,true -samarpahwa,newsmast.social,Healthcare,healthcare,false -samarpahwa,newsmast.social,Humour,humour,false -samarpahwa,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false -samarpahwa,newsmast.social,Poverty & Inequality,poverty_inequality,false -samarpahwa,newsmast.social,Law & Justice,law_justice,false -samarpahwa,newsmast.social,Markets & Finance,markets_finance,false -samarpahwa,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false -samarpahwa,newsmast.social,Nature & Wildlife,nature_wildlife,false -samarpahwa,newsmast.social,Journalism & Comment,news_comment_data,false -samarpahwa,newsmast.social,Pets,pets,false -samarpahwa,newsmast.social,Politics,politics,false -samarpahwa,newsmast.social,Puzzles,puzzles,false -samarpahwa,newsmast.social,Travel,travel,false -samarpahwa,newsmast.social,Ukraine Invasion,ukraine_invasion,false -samarpahwa,newsmast.social,Weather,weather,false -samarpahwa,newsmast.social,Environment,environment,false -samarpahwa,newsmast.social,Immigrants Rights,immigrants_rights,false -stephenreid,newsmast.social,Nature & Wildlife,nature_wildlife,false -stephenreid,newsmast.social,AI,ai,false -stephenreid,newsmast.social,Architecture & Design,architecture_design,false -stephenreid,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false -stephenreid,newsmast.social,Breaking News,breaking_news,false -stephenreid,newsmast.social,Business,business,false -stephenreid,newsmast.social,Climate change,climate_change,false -stephenreid,newsmast.social,Energy & Pollution,energy_pollution,false -stephenreid,newsmast.social,Environment,environment,false -stephenreid,newsmast.social,Gaming,gaming,false -stephenreid,newsmast.social,Markets & Finance,markets_finance,false -stephenreid,newsmast.social,Movies,movies,false -stephenreid,newsmast.social,Music,music,false -stephenreid,newsmast.social,Journalism & Comment,news_comment_data,false -stephenreid,newsmast.social,Performing Arts,performing_arts,false -stephenreid,newsmast.social,Photography,photography,false -stephenreid,newsmast.social,Politics,politics,false -stephenreid,newsmast.social,Technology,technology,true -stephenreid,newsmast.social,TV & Radio,tv_radio,false -stephenreid,newsmast.social,Ukraine Invasion,ukraine_invasion,false -stephenreid,newsmast.social,Visual Arts,visual_arts,false -stephenreid,newsmast.social,Weather,weather,false -vividbiology,newsmast.social,Biology,biology,false -vividbiology,newsmast.social,Chemistry,chemistry,false -vividbiology,newsmast.social,Science,science,true -vividbiology,newsmast.social,Technology,technology,false -vividbiology,newsmast.social,Visual Arts,visual_arts,false -zhichangliu,newsmast.social,AI,ai,false -zhichangliu,newsmast.social,Breaking News,breaking_news,false -zhichangliu,newsmast.social,Chemistry,chemistry,true -zhichangliu,newsmast.social,Energy & Pollution,energy_pollution,false -zhichangliu,newsmast.social,Environment,environment,false -protein,newsmast.social,Activism & Civil Rights,activism_civil_rights,false -protein,newsmast.social,AI,ai,false -protein,newsmast.social,Architecture & Design,architecture_design,false -protein,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false -protein,newsmast.social,Biology,biology,false -protein,newsmast.social,Black Voices,black_voices,false -protein,newsmast.social,Books & Literature,books_literature,false -protein,newsmast.social,Breaking News,breaking_news,false -protein,newsmast.social,Business,business,false -protein,newsmast.social,Chemistry,chemistry,false -protein,newsmast.social,Climate change,climate_change,false -protein,newsmast.social,Creative Arts,creative_arts,false -protein,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -protein,newsmast.social,Disabled Voices,disabled_voices,false -protein,newsmast.social,Energy & Pollution,energy_pollution,false -protein,newsmast.social,Engineering,engineering,false -protein,newsmast.social,Environment,environment,false -protein,newsmast.social,Food & Drink,food_drink,false -protein,newsmast.social,Gaming,gaming,false -protein,newsmast.social,Government & Policy,government_policy,false -protein,newsmast.social,Healthcare,healthcare,false -protein,newsmast.social,History,history,false -protein,newsmast.social,Humanities,humanities,false -protein,newsmast.social,Humour,humour,false -protein,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false -protein,newsmast.social,Immigrants Rights,immigrants_rights,false -protein,newsmast.social,Indigenous Peoples,indigenous_peoples,false -protein,newsmast.social,Poverty & Inequality,poverty_inequality,false -protein,newsmast.social,Law & Justice,law_justice,false -protein,newsmast.social,LGBTQ+,lgbtq,false -protein,newsmast.social,Markets & Finance,markets_finance,false -protein,newsmast.social,Mathematics,mathematics,false -protein,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false -protein,newsmast.social,Movies,movies,false -protein,newsmast.social,Music,music,false -protein,newsmast.social,Nature & Wildlife,nature_wildlife,false -protein,newsmast.social,Journalism & Comment,news_comment_data,false -protein,newsmast.social,Performing Arts,performing_arts,false -protein,newsmast.social,Pets,pets,false -protein,newsmast.social,Philosophy,philosophy,false -protein,newsmast.social,Photography,photography,false -protein,newsmast.social,Physics,physics,false -protein,newsmast.social,Politics,politics,false -protein,newsmast.social,Puzzles,puzzles,false -protein,newsmast.social,Science,science,false -protein,newsmast.social,Social Sciences,social_sciences,false -protein,newsmast.social,Space,space,false -protein,newsmast.social,Technology,technology,true -protein,newsmast.social,Travel,travel,false -protein,newsmast.social,TV & Radio,tv_radio,false -protein,newsmast.social,Ukraine Invasion,ukraine_invasion,false -protein,newsmast.social,Visual Arts,visual_arts,false -protein,newsmast.social,Weather,weather,false -protein,newsmast.social,Women’s Voices,women_voices,false -protein,newsmast.social,Workers Rights,workers_rights,false -islifearecipe,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false -islifearecipe,newsmast.social,Food & Drink,food_drink,true -islifearecipe,newsmast.social,Music,music,false -islifearecipe,newsmast.social,Travel,travel,false -Player2,newsmast.social,Energy & Pollution,energy_pollution,false -Player2,newsmast.social,Books & Literature,books_literature,false -Player2,newsmast.social,Breaking News,breaking_news,false -Player2,newsmast.social,Football,football,false -Player2,newsmast.social,Journalism & Comment,news_comment_data,false -Player2,newsmast.social,Politics,politics,false -Player2,newsmast.social,Sport,sport,false -Player2,newsmast.social,Ukraine Invasion,ukraine_invasion,false -Player2,newsmast.social,Weather,weather,false -Player2,newsmast.social,Movies,movies,false -Player2,newsmast.social,Gaming,gaming,true -mbarbatti,newsmast.social,Biology,biology,false -mbarbatti,newsmast.social,Chemistry,chemistry,true -mbarbatti,newsmast.social,Engineering,engineering,false -mbarbatti,newsmast.social,Mathematics,mathematics,false -mbarbatti,newsmast.social,Physics,physics,false -mbarbatti,newsmast.social,Science,science,false -mbarbatti,newsmast.social,Space,space,false -marianajeronimo,newsmast.social,Breaking News,breaking_news,false -marianajeronimo,newsmast.social,Business,business,true -marianajeronimo,newsmast.social,Environment,environment,false -marianajeronimo,newsmast.social,Journalism & Comment,news_comment_data,false -marianajeronimo,newsmast.social,Travel,travel,false -marianajeronimo,newsmast.social,Food & Drink,food_drink,false -marianajeronimo,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false -marianajeronimo,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -lawyer,newsmast.social,Law & Justice,law_justice,true -lawyer,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false -lawyer,newsmast.social,Creative Arts,creative_arts,false -lawyer,newsmast.social,Disabled Voices,disabled_voices,false -lawyer,newsmast.social,Food & Drink,food_drink,false -lawyer,newsmast.social,Gaming,gaming,false -lawyer,newsmast.social,History,history,false -lawyer,newsmast.social,Humanities,humanities,false -lawyer,newsmast.social,Humour,humour,false -lawyer,newsmast.social,Immigrants Rights,immigrants_rights,false -lawyer,newsmast.social,Indigenous Peoples,indigenous_peoples,false -lawyer,newsmast.social,LGBTQ+,lgbtq,false -lawyer,newsmast.social,Markets & Finance,markets_finance,false -lawyer,newsmast.social,Movies,movies,false -lawyer,newsmast.social,Music,music,false -lawyer,newsmast.social,Nature & Wildlife,nature_wildlife,false -lawyer,newsmast.social,Performing Arts,performing_arts,false -lawyer,newsmast.social,Pets,pets,false -lawyer,newsmast.social,Philosophy,philosophy,false -lawyer,newsmast.social,Photography,photography,false -lawyer,newsmast.social,Puzzles,puzzles,false -lawyer,newsmast.social,Travel,travel,false -lawyer,newsmast.social,TV & Radio,tv_radio,false -lawyer,newsmast.social,Visual Arts,visual_arts,false -lawyer,newsmast.social,Women’s Voices,women_voices,false -lawyer,newsmast.social,Activism & Civil Rights,activism_civil_rights,false -lawyer,newsmast.social,Architecture & Design,architecture_design,false -lawyer,newsmast.social,Black Voices,black_voices,false -lawyer,newsmast.social,Books & Literature,books_literature,false -lawyer,newsmast.social,Business,business,false -lawyer,newsmast.social,Workers Rights,workers_rights,false -andrewfeinstein,newsmast.social,Breaking News,breaking_news,false -andrewfeinstein,newsmast.social,Journalism & Comment,news_comment_data,false -andrewfeinstein,newsmast.social,Politics,politics,true -andrewfeinstein,newsmast.social,Ukraine Invasion,ukraine_invasion,false -andrewfeinstein,newsmast.social,Weather,weather,false -Tarden7,newsmast.social,Markets & Finance,markets_finance,false -Tarden7,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false -Tarden7,newsmast.social,Puzzles,puzzles,false -Tarden7,newsmast.social,Travel,travel,false -Tarden7,newsmast.social,Ukraine Invasion,ukraine_invasion,false -Tarden7,newsmast.social,Breaking News,breaking_news,false -Tarden7,newsmast.social,Football,football,true -Tarden7,newsmast.social,Humour,humour,false -Tarden7,newsmast.social,Movies,movies,false -Tarden7,newsmast.social,Music,music,false -Tarden7,newsmast.social,Nature & Wildlife,nature_wildlife,false -Tarden7,newsmast.social,Journalism & Comment,news_comment_data,false -Tarden7,newsmast.social,Photography,photography,false -manii,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false -manii,newsmast.social,Breaking News,breaking_news,true -manii,newsmast.social,LGBTQ+,lgbtq,false -manii,newsmast.social,Sport,sport,false -manii,newsmast.social,Technology,technology,false -Hedvig1Lindahl,newsmast.social,Social Sciences,social_sciences,false -Hedvig1Lindahl,newsmast.social,Breaking News,breaking_news,false -Hedvig1Lindahl,newsmast.social,Climate change,climate_change,false -Hedvig1Lindahl,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -Hedvig1Lindahl,newsmast.social,Football,football,true -Hedvig1Lindahl,newsmast.social,Poverty & Inequality,poverty_inequality,false -Hedvig1Lindahl,newsmast.social,Movies,movies,false -Hedvig1Lindahl,newsmast.social,Politics,politics,false -akp,newsmast.social,Technology,technology,false -akp,newsmast.social,Space,space,false -akp,newsmast.social,Breaking News,breaking_news,true -akp,newsmast.social,Journalism & Comment,news_comment_data,false -akp,newsmast.social,Weather,weather,false -akp,newsmast.social,Politics,politics,false -akp,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false -akp,newsmast.social,Poverty & Inequality,poverty_inequality,false -akp,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -akp,newsmast.social,Indigenous Peoples,indigenous_peoples,false -akp,newsmast.social,TV & Radio,tv_radio,false -akp,newsmast.social,Nature & Wildlife,nature_wildlife,false -akp,newsmast.social,Environment,environment,false -akp,newsmast.social,Immigrants Rights,immigrants_rights,false -Accessiology,newsmast.social,AI,ai,false -Accessiology,newsmast.social,Architecture & Design,architecture_design,false -Accessiology,newsmast.social,Disabled Voices,disabled_voices,true -Accessiology,newsmast.social,Nature & Wildlife,nature_wildlife,false -Accessiology,newsmast.social,Technology,technology,false -Accessiology,newsmast.social,Travel,travel,false -Headfort,newsmast.social,Government & Policy,government_policy,false -Headfort,newsmast.social,Law & Justice,law_justice,false -Headfort,newsmast.social,Activism & Civil Rights,activism_civil_rights,false -Headfort,newsmast.social,Technology,technology,false -Headfort,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,true -Headfort,newsmast.social,Poverty & Inequality,poverty_inequality,false -nico,newsmast.social,AI,ai,false -nico,newsmast.social,Football,football,false -nico,newsmast.social,Government & Policy,government_policy,false -nico,newsmast.social,Mathematics,mathematics,false -nico,newsmast.social,Science,science,false -nico,newsmast.social,Sport,sport,false -nico,newsmast.social,Technology,technology,true -nico,newsmast.social,Journalism & Comment,news_comment_data,false -MichaelMarshall,newsmast.social,Nature & Wildlife,nature_wildlife,false -MichaelMarshall,newsmast.social,Architecture & Design,architecture_design,false -MichaelMarshall,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false -MichaelMarshall,newsmast.social,Biology,biology,false -MichaelMarshall,newsmast.social,Books & Literature,books_literature,false -MichaelMarshall,newsmast.social,Breaking News,breaking_news,false -MichaelMarshall,newsmast.social,Chemistry,chemistry,false -MichaelMarshall,newsmast.social,Climate change,climate_change,false -MichaelMarshall,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -MichaelMarshall,newsmast.social,Energy & Pollution,energy_pollution,false -MichaelMarshall,newsmast.social,Engineering,engineering,false -MichaelMarshall,newsmast.social,Environment,environment,false -MichaelMarshall,newsmast.social,Gaming,gaming,false -MichaelMarshall,newsmast.social,Government & Policy,government_policy,false -MichaelMarshall,newsmast.social,Healthcare,healthcare,false -MichaelMarshall,newsmast.social,History,history,false -MichaelMarshall,newsmast.social,Humanities,humanities,false -MichaelMarshall,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false -MichaelMarshall,newsmast.social,Poverty & Inequality,poverty_inequality,false -MichaelMarshall,newsmast.social,Law & Justice,law_justice,false -MichaelMarshall,newsmast.social,Mathematics,mathematics,false -MichaelMarshall,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false -MichaelMarshall,newsmast.social,Movies,movies,false -MichaelMarshall,newsmast.social,Music,music,false -MichaelMarshall,newsmast.social,Journalism & Comment,news_comment_data,false -MichaelMarshall,newsmast.social,Performing Arts,performing_arts,false -MichaelMarshall,newsmast.social,Philosophy,philosophy,false -MichaelMarshall,newsmast.social,Photography,photography,false -MichaelMarshall,newsmast.social,Physics,physics,false -MichaelMarshall,newsmast.social,Politics,politics,false -MichaelMarshall,newsmast.social,Science,science,true -MichaelMarshall,newsmast.social,Space,space,false -MichaelMarshall,newsmast.social,TV & Radio,tv_radio,false -MichaelMarshall,newsmast.social,Ukraine Invasion,ukraine_invasion,false -MichaelMarshall,newsmast.social,Visual Arts,visual_arts,false -MichaelMarshall,newsmast.social,Weather,weather,false -MichaelMarshall,newsmast.social,Immigrants Rights,immigrants_rights,false -Dolores,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,true -Dolores,newsmast.social,Indigenous Peoples,indigenous_peoples,false -Dolores,newsmast.social,Women’s Voices,women_voices,false -Dolores,newsmast.social,Journalism & Comment,news_comment_data,false -Nadeem,newsmast.social,Breaking News,breaking_news,false -Nadeem,newsmast.social,Journalism & Comment,news_comment_data,false -Nadeem,newsmast.social,Politics,politics,true -Nadeem,newsmast.social,Weather,weather,false -AlasdairGold,newsmast.social,Movies,movies,false -AlasdairGold,newsmast.social,Sport,sport,false -AlasdairGold,newsmast.social,Travel,travel,false -AlasdairGold,newsmast.social,TV & Radio,tv_radio,false -AlasdairGold,newsmast.social,Football,football,true -JustinWeinberg,newsmast.social,AI,ai,false -JustinWeinberg,newsmast.social,Environment,environment,false -JustinWeinberg,newsmast.social,Humanities,humanities,false -JustinWeinberg,newsmast.social,Music,music,false -JustinWeinberg,newsmast.social,Philosophy,philosophy,true -JustinWeinberg,newsmast.social,Science,science,false -JustinWeinberg,newsmast.social,Social Sciences,social_sciences,false -JustinWeinberg,newsmast.social,Visual Arts,visual_arts,false -Fitwirr,newsmast.social,Markets & Finance,markets_finance,false -Fitwirr,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,true -Fitwirr,newsmast.social,Business,business,false -Fitwirr,newsmast.social,Food & Drink,food_drink,false -Fitwirr,newsmast.social,Technology,technology,false -Fitwirr,newsmast.social,Travel,travel,false -raachotrekkers,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false -raachotrekkers,newsmast.social,Climate change,climate_change,true -raachotrekkers,newsmast.social,Energy & Pollution,energy_pollution,false -raachotrekkers,newsmast.social,Environment,environment,false -raachotrekkers,newsmast.social,Politics,politics,false -raachotrekkers,newsmast.social,Travel,travel,false -raachotrekkers,newsmast.social,Nature & Wildlife,nature_wildlife,false -davidwees,newsmast.social,Activism & Civil Rights,activism_civil_rights,false -davidwees,newsmast.social,Climate change,climate_change,false -davidwees,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -davidwees,newsmast.social,LGBTQ+,lgbtq,false -davidwees,newsmast.social,Mathematics,mathematics,true -davidwees,newsmast.social,Journalism & Comment,news_comment_data,false -davidwees,newsmast.social,Space,space,false -saralimback,newsmast.social,Law & Justice,law_justice,false -saralimback,newsmast.social,Activism & Civil Rights,activism_civil_rights,false -saralimback,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false -saralimback,newsmast.social,Biology,biology,false -saralimback,newsmast.social,Black Voices,black_voices,false -saralimback,newsmast.social,Books & Literature,books_literature,false -saralimback,newsmast.social,Climate change,climate_change,false -saralimback,newsmast.social,Creative Arts,creative_arts,false -saralimback,newsmast.social,Disabled Voices,disabled_voices,false -saralimback,newsmast.social,Energy & Pollution,energy_pollution,false -saralimback,newsmast.social,Environment,environment,false -saralimback,newsmast.social,Food & Drink,food_drink,false -saralimback,newsmast.social,History,history,false -saralimback,newsmast.social,Humanities,humanities,false -saralimback,newsmast.social,Immigrants Rights,immigrants_rights,false -saralimback,newsmast.social,Indigenous Peoples,indigenous_peoples,false -saralimback,newsmast.social,LGBTQ+,lgbtq,false -saralimback,newsmast.social,Music,music,false -saralimback,newsmast.social,Nature & Wildlife,nature_wildlife,true -saralimback,newsmast.social,Philosophy,philosophy,false -saralimback,newsmast.social,Photography,photography,false -saralimback,newsmast.social,Social Sciences,social_sciences,false -saralimback,newsmast.social,Women’s Voices,women_voices,false -saralimback,newsmast.social,Workers Rights,workers_rights,false -HRWright,newsmast.social,Creative Arts,creative_arts,false -HRWright,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -HRWright,newsmast.social,Food & Drink,food_drink,true -HRWright,newsmast.social,LGBTQ+,lgbtq,false -HRWright,newsmast.social,Journalism & Comment,news_comment_data,false -HRWright,newsmast.social,Travel,travel,false -DanielGilbert,newsmast.social,Science,science,false -DanielGilbert,newsmast.social,Social Sciences,social_sciences,true -billmckibben,newsmast.social,Activism & Civil Rights,activism_civil_rights,false -billmckibben,newsmast.social,Breaking News,breaking_news,true -billmckibben,newsmast.social,Climate change,climate_change,false -billmckibben,newsmast.social,Energy & Pollution,energy_pollution,false -billmckibben,newsmast.social,Music,music,false -billmckibben,newsmast.social,Journalism & Comment,news_comment_data,false -billmckibben,newsmast.social,Science,science,false -billmckibben,newsmast.social,Sport,sport,false -billmckibben,newsmast.social,TV & Radio,tv_radio,false -billmckibben,newsmast.social,Ukraine Invasion,ukraine_invasion,false -billmckibben,newsmast.social,Weather,weather,false -Omega_RF,newsmast.social,Activism & Civil Rights,activism_civil_rights,false -Omega_RF,newsmast.social,Breaking News,breaking_news,false -Omega_RF,newsmast.social,Democracy & Human Rights,democracy_human_rights,true -Omega_RF,newsmast.social,Government & Policy,government_policy,false -Omega_RF,newsmast.social,Law & Justice,law_justice,false -Omega_RF,newsmast.social,Journalism & Comment,news_comment_data,false -Omega_RF,newsmast.social,Politics,politics,false -James_Shield,newsmast.social,Football,football,true -James_Shield,newsmast.social,Politics,politics,false -James_Shield,newsmast.social,Social Sciences,social_sciences,false -James_Shield,newsmast.social,Sport,sport,false -James_Shield,newsmast.social,Journalism & Comment,news_comment_data,false -jrmartin,newsmast.social,Architecture & Design,architecture_design,false -jrmartin,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false -jrmartin,newsmast.social,Books & Literature,books_literature,false -jrmartin,newsmast.social,Environment,environment,false -jrmartin,newsmast.social,History,history,false -jrmartin,newsmast.social,Photography,photography,false -jrmartin,newsmast.social,Travel,travel,true -jrmartin,newsmast.social,Creative Arts,creative_arts,false -jrmartin,newsmast.social,Social Sciences,social_sciences,false -indianhistory,newsmast.social,Architecture & Design,architecture_design,false -indianhistory,newsmast.social,Books & Literature,books_literature,false -indianhistory,newsmast.social,Breaking News,breaking_news,false -indianhistory,newsmast.social,Gaming,gaming,false -indianhistory,newsmast.social,History,history,true -indianhistory,newsmast.social,Humanities,humanities,false -indianhistory,newsmast.social,Movies,movies,false -indianhistory,newsmast.social,Music,music,false -indianhistory,newsmast.social,Performing Arts,performing_arts,false -indianhistory,newsmast.social,Photography,photography,false -indianhistory,newsmast.social,TV & Radio,tv_radio,false -indianhistory,newsmast.social,Visual Arts,visual_arts,false -indianhistory,newsmast.social,Weather,weather,false -fpricejr,newsmast.social,Activism & Civil Rights,activism_civil_rights,false -fpricejr,newsmast.social,AI,ai,false -fpricejr,newsmast.social,Breaking News,breaking_news,false -fpricejr,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -fpricejr,newsmast.social,Football,football,false -fpricejr,newsmast.social,Government & Policy,government_policy,false -fpricejr,newsmast.social,History,history,false -fpricejr,newsmast.social,Humanities,humanities,false -fpricejr,newsmast.social,Poverty & Inequality,poverty_inequality,false -fpricejr,newsmast.social,Law & Justice,law_justice,false -fpricejr,newsmast.social,Music,music,false -fpricejr,newsmast.social,Journalism & Comment,news_comment_data,true -fpricejr,newsmast.social,Politics,politics,false -fpricejr,newsmast.social,Social Sciences,social_sciences,false -fpricejr,newsmast.social,Sport,sport,false -fpricejr,newsmast.social,Technology,technology,false -fpricejr,newsmast.social,TV & Radio,tv_radio,false -fpricejr,newsmast.social,Environment,environment,false -siji,newsmast.social,Law & Justice,law_justice,false -siji,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false -siji,newsmast.social,AI,ai,false -siji,newsmast.social,Books & Literature,books_literature,false -siji,newsmast.social,Creative Arts,creative_arts,false -siji,newsmast.social,Food & Drink,food_drink,false -siji,newsmast.social,History,history,false -siji,newsmast.social,Humanities,humanities,false -siji,newsmast.social,Humour,humour,false -siji,newsmast.social,Philosophy,philosophy,false -siji,newsmast.social,Puzzles,puzzles,false -siji,newsmast.social,Technology,technology,true -siji,newsmast.social,Travel,travel,false -siji,newsmast.social,Environment,environment,false -siji,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -siji,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false -calebijioma,newsmast.social,Nature & Wildlife,nature_wildlife,false -calebijioma,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false -calebijioma,newsmast.social,Climate change,climate_change,false -calebijioma,newsmast.social,Democracy & Human Rights,democracy_human_rights,true -calebijioma,newsmast.social,Energy & Pollution,energy_pollution,false -calebijioma,newsmast.social,Environment,environment,false -calebijioma,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false -calebijioma,newsmast.social,Poverty & Inequality,poverty_inequality,false -calebijioma,newsmast.social,Immigrants Rights,immigrants_rights,false -AldridgePhoto,newsmast.social,Nature & Wildlife,nature_wildlife,false -AldridgePhoto,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,true -AldridgePhoto,newsmast.social,Breaking News,breaking_news,false -AldridgePhoto,newsmast.social,Climate change,climate_change,false -AldridgePhoto,newsmast.social,Energy & Pollution,energy_pollution,false -AldridgePhoto,newsmast.social,Environment,environment,false -AldridgePhoto,newsmast.social,Journalism & Comment,news_comment_data,false -AldridgePhoto,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false -PAAwarenessUK,newsmast.social,Government & Policy,government_policy,false -PAAwarenessUK,newsmast.social,Social Sciences,social_sciences,false -PAAwarenessUK,newsmast.social,Poverty & Inequality,poverty_inequality,false -PAAwarenessUK,newsmast.social,Law & Justice,law_justice,false -PAAwarenessUK,newsmast.social,Politics,politics,false -PAAwarenessUK,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false -PAAwarenessUK,newsmast.social,Democracy & Human Rights,democracy_human_rights,true -ajj65,newsmast.social,Nature & Wildlife,nature_wildlife,false -ajj65,newsmast.social,Activism & Civil Rights,activism_civil_rights,false -ajj65,newsmast.social,AI,ai,false -ajj65,newsmast.social,Architecture & Design,architecture_design,false -ajj65,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false -ajj65,newsmast.social,Biology,biology,false -ajj65,newsmast.social,Black Voices,black_voices,false -ajj65,newsmast.social,Business,business,false -ajj65,newsmast.social,Chemistry,chemistry,false -ajj65,newsmast.social,Climate change,climate_change,false -ajj65,newsmast.social,Disabled Voices,disabled_voices,false -ajj65,newsmast.social,Energy & Pollution,energy_pollution,false -ajj65,newsmast.social,Engineering,engineering,false -ajj65,newsmast.social,Environment,environment,false -ajj65,newsmast.social,Gaming,gaming,false -ajj65,newsmast.social,Immigrants Rights,immigrants_rights,false -ajj65,newsmast.social,Indigenous Peoples,indigenous_peoples,false -ajj65,newsmast.social,Poverty & Inequality,poverty_inequality,false -ajj65,newsmast.social,Markets & Finance,markets_finance,false -ajj65,newsmast.social,Mathematics,mathematics,false -ajj65,newsmast.social,Music,music,false -ajj65,newsmast.social,Photography,photography,false -ajj65,newsmast.social,Physics,physics,false -ajj65,newsmast.social,Science,science,false -ajj65,newsmast.social,Space,space,false -ajj65,newsmast.social,Technology,technology,false -ajj65,newsmast.social,Women’s Voices,women_voices,false -ajj65,newsmast.social,Workers Rights,workers_rights,false -ajj65,newsmast.social,LGBTQ+,lgbtq,true -ajj65,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false -ajj65,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -shubhambutola,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false -shubhambutola,newsmast.social,AI,ai,false -shubhambutola,newsmast.social,Architecture & Design,architecture_design,false -shubhambutola,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false -shubhambutola,newsmast.social,Climate change,climate_change,true -shubhambutola,newsmast.social,Creative Arts,creative_arts,false -shubhambutola,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -shubhambutola,newsmast.social,Energy & Pollution,energy_pollution,false -shubhambutola,newsmast.social,Environment,environment,false -shubhambutola,newsmast.social,Food & Drink,food_drink,false -shubhambutola,newsmast.social,Gaming,gaming,false -shubhambutola,newsmast.social,Humour,humour,false -shubhambutola,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false -shubhambutola,newsmast.social,Poverty & Inequality,poverty_inequality,false -shubhambutola,newsmast.social,Movies,movies,false -shubhambutola,newsmast.social,Music,music,false -shubhambutola,newsmast.social,Nature & Wildlife,nature_wildlife,false -shubhambutola,newsmast.social,Performing Arts,performing_arts,false -shubhambutola,newsmast.social,Pets,pets,false -shubhambutola,newsmast.social,Photography,photography,false -shubhambutola,newsmast.social,Puzzles,puzzles,false -shubhambutola,newsmast.social,Technology,technology,false -shubhambutola,newsmast.social,Travel,travel,false -shubhambutola,newsmast.social,TV & Radio,tv_radio,false -shubhambutola,newsmast.social,Visual Arts,visual_arts,false -shubhambutola,newsmast.social,Immigrants Rights,immigrants_rights,false -KamranSaeed,newsmast.social,AI,ai,false -KamranSaeed,newsmast.social,Breaking News,breaking_news,false -KamranSaeed,newsmast.social,Business,business,false -KamranSaeed,newsmast.social,Climate change,climate_change,false -KamranSaeed,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -KamranSaeed,newsmast.social,Energy & Pollution,energy_pollution,false -KamranSaeed,newsmast.social,Football,football,false -KamranSaeed,newsmast.social,Government & Policy,government_policy,false -KamranSaeed,newsmast.social,Healthcare,healthcare,false -KamranSaeed,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false -KamranSaeed,newsmast.social,Poverty & Inequality,poverty_inequality,false -KamranSaeed,newsmast.social,Law & Justice,law_justice,false -KamranSaeed,newsmast.social,Markets & Finance,markets_finance,false -KamranSaeed,newsmast.social,Journalism & Comment,news_comment_data,true -KamranSaeed,newsmast.social,Politics,politics,false -KamranSaeed,newsmast.social,Sport,sport,false -KamranSaeed,newsmast.social,Technology,technology,false -KamranSaeed,newsmast.social,Ukraine Invasion,ukraine_invasion,false -KamranSaeed,newsmast.social,Weather,weather,false -KamranSaeed,newsmast.social,Environment,environment,false -KamranSaeed,newsmast.social,Immigrants Rights,immigrants_rights,false -discerningcat,newsmast.social,Creative Arts,creative_arts,false -discerningcat,newsmast.social,Food & Drink,food_drink,false -discerningcat,newsmast.social,Nature & Wildlife,nature_wildlife,false -discerningcat,newsmast.social,Pets,pets,true -discerningcat,newsmast.social,Travel,travel,false -Dhiraj,newsmast.social,Business,business,false -Dhiraj,newsmast.social,Breaking News,breaking_news,false -Dhiraj,newsmast.social,Energy & Pollution,energy_pollution,true -Dhiraj,newsmast.social,Government & Policy,government_policy,false -Dhiraj,newsmast.social,Poverty & Inequality,poverty_inequality,false -Dhiraj,newsmast.social,Markets & Finance,markets_finance,false -Dhiraj,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false -Dhiraj,newsmast.social,Politics,politics,false -Dhiraj,newsmast.social,Weather,weather,false -Dhiraj,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -AndreCMonteiro,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -AndreCMonteiro,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false -AndreCMonteiro,newsmast.social,Poverty & Inequality,poverty_inequality,false -AndreCMonteiro,newsmast.social,Environment,environment,true -AndreCMonteiro,newsmast.social,Immigrants Rights,immigrants_rights,false -ScharSchool,newsmast.social,Nature & Wildlife,nature_wildlife,false -ScharSchool,newsmast.social,Activism & Civil Rights,activism_civil_rights,false -ScharSchool,newsmast.social,AI,ai,false -ScharSchool,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false -ScharSchool,newsmast.social,Biology,biology,false -ScharSchool,newsmast.social,Black Voices,black_voices,false -ScharSchool,newsmast.social,Breaking News,breaking_news,false -ScharSchool,newsmast.social,Business,business,false -ScharSchool,newsmast.social,Climate change,climate_change,false -ScharSchool,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -ScharSchool,newsmast.social,Disabled Voices,disabled_voices,false -ScharSchool,newsmast.social,Energy & Pollution,energy_pollution,false -ScharSchool,newsmast.social,Engineering,engineering,false -ScharSchool,newsmast.social,Environment,environment,false -ScharSchool,newsmast.social,Government & Policy,government_policy,true -ScharSchool,newsmast.social,Healthcare,healthcare,false -ScharSchool,newsmast.social,Immigrants Rights,immigrants_rights,false -ScharSchool,newsmast.social,Indigenous Peoples,indigenous_peoples,false -ScharSchool,newsmast.social,Poverty & Inequality,poverty_inequality,false -ScharSchool,newsmast.social,Law & Justice,law_justice,false -ScharSchool,newsmast.social,LGBTQ+,lgbtq,false -ScharSchool,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false -ScharSchool,newsmast.social,Journalism & Comment,news_comment_data,false -ScharSchool,newsmast.social,Politics,politics,false -ScharSchool,newsmast.social,Science,science,false -ScharSchool,newsmast.social,Social Sciences,social_sciences,false -ScharSchool,newsmast.social,Space,space,false -ScharSchool,newsmast.social,Technology,technology,false -ScharSchool,newsmast.social,Women’s Voices,women_voices,false -ScharSchool,newsmast.social,Workers Rights,workers_rights,false -ScharSchool,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false -ChinHuaLu,newsmast.social,Social Sciences,social_sciences,false -ChinHuaLu,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false -ChinHuaLu,newsmast.social,Activism & Civil Rights,activism_civil_rights,false -ChinHuaLu,newsmast.social,Books & Literature,books_literature,false -ChinHuaLu,newsmast.social,Creative Arts,creative_arts,false -ChinHuaLu,newsmast.social,Food & Drink,food_drink,false -ChinHuaLu,newsmast.social,Gaming,gaming,false -ChinHuaLu,newsmast.social,Humour,humour,false -ChinHuaLu,newsmast.social,Immigrants Rights,immigrants_rights,false -ChinHuaLu,newsmast.social,Movies,movies,false -ChinHuaLu,newsmast.social,Nature & Wildlife,nature_wildlife,false -ChinHuaLu,newsmast.social,Performing Arts,performing_arts,false -ChinHuaLu,newsmast.social,Pets,pets,false -ChinHuaLu,newsmast.social,Science,science,false -ChinHuaLu,newsmast.social,Travel,travel,false -ChinHuaLu,newsmast.social,TV & Radio,tv_radio,false -ChinHuaLu,newsmast.social,Women’s Voices,women_voices,true -ANT_LCFC,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false -ANT_LCFC,newsmast.social,Creative Arts,creative_arts,false -ANT_LCFC,newsmast.social,Food & Drink,food_drink,false -ANT_LCFC,newsmast.social,Football,football,true -ANT_LCFC,newsmast.social,Humour,humour,false -Brian_J_Keane,newsmast.social,Activism & Civil Rights,activism_civil_rights,false -Brian_J_Keane,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false -Brian_J_Keane,newsmast.social,Climate change,climate_change,false -Brian_J_Keane,newsmast.social,Indigenous Peoples,indigenous_peoples,true -Brian_J_Keane,newsmast.social,Environment,environment,false -Brian_J_Keane,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false -Brian_J_Keane,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -itdrc,newsmast.social,Business,business,false -itdrc,newsmast.social,Engineering,engineering,false -itdrc,newsmast.social,Government & Policy,government_policy,false -itdrc,newsmast.social,Humanities,humanities,false -itdrc,newsmast.social,Journalism & Comment,news_comment_data,false -itdrc,newsmast.social,Science,science,false -itdrc,newsmast.social,Technology,technology,false -itdrc,newsmast.social,Ukraine Invasion,ukraine_invasion,false -itdrc,newsmast.social,Weather,weather,false -itdrc,newsmast.social,Breaking News,breaking_news,true -benwritesthings,newsmast.social,Architecture & Design,architecture_design,false -benwritesthings,newsmast.social,Books & Literature,books_literature,false -benwritesthings,newsmast.social,History,history,false -benwritesthings,newsmast.social,Humanities,humanities,false -benwritesthings,newsmast.social,LGBTQ+,lgbtq,true -benwritesthings,newsmast.social,Performing Arts,performing_arts,false -benwritesthings,newsmast.social,Workers Rights,workers_rights,false -dltj,newsmast.social,Government & Policy,government_policy,false -dltj,newsmast.social,AI,ai,false -dltj,newsmast.social,Breaking News,breaking_news,false -dltj,newsmast.social,Climate change,climate_change,false -dltj,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -dltj,newsmast.social,Energy & Pollution,energy_pollution,false -dltj,newsmast.social,Environment,environment,false -dltj,newsmast.social,Journalism & Comment,news_comment_data,false -dltj,newsmast.social,Science,science,false -dltj,newsmast.social,Technology,technology,true -Childdotorg,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false -Childdotorg,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -Childdotorg,newsmast.social,Black Voices,black_voices,false -Childdotorg,newsmast.social,Breaking News,breaking_news,false -Childdotorg,newsmast.social,Poverty & Inequality,poverty_inequality,false -Childdotorg,newsmast.social,Journalism & Comment,news_comment_data,false -Childdotorg,newsmast.social,Photography,photography,false -Childdotorg,newsmast.social,Women’s Voices,women_voices,true -BriannaABaker,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false -BriannaABaker,newsmast.social,Activism & Civil Rights,activism_civil_rights,false -BriannaABaker,newsmast.social,Black Voices,black_voices,true -BriannaABaker,newsmast.social,Breaking News,breaking_news,false -BriannaABaker,newsmast.social,Creative Arts,creative_arts,false -BriannaABaker,newsmast.social,Humour,humour,false -BriannaABaker,newsmast.social,Poverty & Inequality,poverty_inequality,false -BriannaABaker,newsmast.social,Journalism & Comment,news_comment_data,false -BriannaABaker,newsmast.social,Politics,politics,false -BriannaABaker,newsmast.social,Social Sciences,social_sciences,false -BriannaABaker,newsmast.social,Women’s Voices,women_voices,false -faithbenson,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,true -faithbenson,newsmast.social,AI,ai,false -faithbenson,newsmast.social,Creative Arts,creative_arts,false -faithbenson,newsmast.social,Science,science,false -faithbenson,newsmast.social,Technology,technology,false -faithbenson,newsmast.social,Environment,environment,false -faithbenson,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false -faithbenson,newsmast.social,Poverty & Inequality,poverty_inequality,false -O_makanjuola,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false -O_makanjuola,newsmast.social,Environment,environment,false -O_makanjuola,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false -O_makanjuola,newsmast.social,Democracy & Human Rights,democracy_human_rights,true -O_makanjuola,newsmast.social,Activism & Civil Rights,activism_civil_rights,false -O_makanjuola,newsmast.social,Breaking News,breaking_news,false -O_makanjuola,newsmast.social,Creative Arts,creative_arts,false -O_makanjuola,newsmast.social,Food & Drink,food_drink,false -O_makanjuola,newsmast.social,Poverty & Inequality,poverty_inequality,false -O_makanjuola,newsmast.social,LGBTQ+,lgbtq,false -O_makanjuola,newsmast.social,Movies,movies,false -O_makanjuola,newsmast.social,Music,music,false -O_makanjuola,newsmast.social,Nature & Wildlife,nature_wildlife,false -O_makanjuola,newsmast.social,Journalism & Comment,news_comment_data,false -O_makanjuola,newsmast.social,Politics,politics,false -O_makanjuola,newsmast.social,Travel,travel,false -O_makanjuola,newsmast.social,Visual Arts,visual_arts,false -O_makanjuola,newsmast.social,Women’s Voices,women_voices,false -drvolts,newsmast.social,Nature & Wildlife,nature_wildlife,false -drvolts,newsmast.social,AI,ai,false -drvolts,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false -drvolts,newsmast.social,Biology,biology,false -drvolts,newsmast.social,Breaking News,breaking_news,false -drvolts,newsmast.social,Chemistry,chemistry,false -drvolts,newsmast.social,Climate change,climate_change,false -drvolts,newsmast.social,Energy & Pollution,energy_pollution,true -drvolts,newsmast.social,Engineering,engineering,false -drvolts,newsmast.social,Environment,environment,false -drvolts,newsmast.social,Government & Policy,government_policy,false -drvolts,newsmast.social,Healthcare,healthcare,false -drvolts,newsmast.social,Law & Justice,law_justice,false -drvolts,newsmast.social,Mathematics,mathematics,false -drvolts,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false -drvolts,newsmast.social,Journalism & Comment,news_comment_data,false -drvolts,newsmast.social,Physics,physics,false -drvolts,newsmast.social,Politics,politics,false -drvolts,newsmast.social,Science,science,false -drvolts,newsmast.social,Space,space,false -drvolts,newsmast.social,Technology,technology,false -drvolts,newsmast.social,Ukraine Invasion,ukraine_invasion,false -drvolts,newsmast.social,Weather,weather,false -wingyingchow,newsmast.social,Academia & Research,academia_research,true -wingyingchow,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false -wingyingchow,newsmast.social,Biology,biology,false -wingyingchow,newsmast.social,Chemistry,chemistry,false -wingyingchow,newsmast.social,Physics,physics,false -wingyingchow,newsmast.social,Science,science,false -mitchell_ab,newsmast.social,Law & Justice,law_justice,false -mitchell_ab,newsmast.social,Government & Policy,government_policy,false -mitchell_ab,newsmast.social,Journalism & Comment,news_comment_data,false -mitchell_ab,newsmast.social,Philosophy,philosophy,false -mitchell_ab,newsmast.social,Politics,politics,true -mitchell_ab,newsmast.social,Social Sciences,social_sciences,false -JeffreyPeel,newsmast.social,Activism & Civil Rights,activism_civil_rights,false -JeffreyPeel,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -JeffreyPeel,newsmast.social,Government & Policy,government_policy,false -JeffreyPeel,newsmast.social,Healthcare,healthcare,false -JeffreyPeel,newsmast.social,Politics,politics,true -JeffreyPeel,newsmast.social,Technology,technology,false -historian1914,newsmast.social,Books & Literature,books_literature,false -historian1914,newsmast.social,Business,business,false -historian1914,newsmast.social,Gaming,gaming,false -historian1914,newsmast.social,Government & Policy,government_policy,false -historian1914,newsmast.social,History,history,true -historian1914,newsmast.social,Humanities,humanities,false -historian1914,newsmast.social,Markets & Finance,markets_finance,false -historian1914,newsmast.social,Sport,sport,false -lestermouse,newsmast.social,Breaking News,breaking_news,false -lestermouse,newsmast.social,Journalism & Comment,news_comment_data,true -lestermouse,newsmast.social,Politics,politics,false -lestermouse,newsmast.social,Ukraine Invasion,ukraine_invasion,false -lestermouse,newsmast.social,Weather,weather,false -Radwa,newsmast.social,Breaking News,breaking_news,false -Radwa,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -Radwa,newsmast.social,Politics,politics,false -Radwa,newsmast.social,Social Sciences,social_sciences,false -Radwa,newsmast.social,Technology,technology,false -Radwa,newsmast.social,Journalism & Comment,news_comment_data,false -Radwa,newsmast.social,Environment,environment,true -Radwa,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false -Radwa,newsmast.social,Immigrants Rights,immigrants_rights,false -sarahhengel,newsmast.social,Biology,biology,true -sarahhengel,newsmast.social,Chemistry,chemistry,false -sarahhengel,newsmast.social,Engineering,engineering,false -sarahhengel,newsmast.social,Mathematics,mathematics,false -sarahhengel,newsmast.social,Physics,physics,false -sarahhengel,newsmast.social,Science,science,false -sarahhengel,newsmast.social,Space,space,false -KyivIndependent,newsmast.social,Activism & Civil Rights,activism_civil_rights,false -KyivIndependent,newsmast.social,Black Voices,black_voices,false -KyivIndependent,newsmast.social,Breaking News,breaking_news,false -KyivIndependent,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -KyivIndependent,newsmast.social,Disabled Voices,disabled_voices,false -KyivIndependent,newsmast.social,Government & Policy,government_policy,true -KyivIndependent,newsmast.social,Healthcare,healthcare,false -KyivIndependent,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false -KyivIndependent,newsmast.social,Immigrants Rights,immigrants_rights,false -KyivIndependent,newsmast.social,Indigenous Peoples,indigenous_peoples,false -KyivIndependent,newsmast.social,Poverty & Inequality,poverty_inequality,false -KyivIndependent,newsmast.social,Law & Justice,law_justice,false -KyivIndependent,newsmast.social,LGBTQ+,lgbtq,false -KyivIndependent,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false -KyivIndependent,newsmast.social,Journalism & Comment,news_comment_data,false -KyivIndependent,newsmast.social,Politics,politics,false -KyivIndependent,newsmast.social,Ukraine Invasion,ukraine_invasion,false -KyivIndependent,newsmast.social,Weather,weather,false -KyivIndependent,newsmast.social,Women’s Voices,women_voices,false -KyivIndependent,newsmast.social,Workers Rights,workers_rights,false -KyivIndependent,newsmast.social,Environment,environment,false -Ann_Aguirre,newsmast.social,LGBTQ+,lgbtq,false -Ann_Aguirre,newsmast.social,Social Sciences,social_sciences,false -Ann_Aguirre,newsmast.social,Space,space,false -Ann_Aguirre,newsmast.social,Women’s Voices,women_voices,true -thisisqueerly,newsmast.social,Movies,movies,false -thisisqueerly,newsmast.social,Music,music,false -thisisqueerly,newsmast.social,Journalism & Comment,news_comment_data,false -thisisqueerly,newsmast.social,Travel,travel,false -thisisqueerly,newsmast.social,TV & Radio,tv_radio,false -thisisqueerly,newsmast.social,LGBTQ+,lgbtq,true -vidit,newsmast.social,AI,ai,false -vidit,newsmast.social,Biology,biology,false -vidit,newsmast.social,Breaking News,breaking_news,false -vidit,newsmast.social,Business,business,false -vidit,newsmast.social,Chemistry,chemistry,false -vidit,newsmast.social,Engineering,engineering,false -vidit,newsmast.social,Government & Policy,government_policy,false -vidit,newsmast.social,Healthcare,healthcare,false -vidit,newsmast.social,Law & Justice,law_justice,false -vidit,newsmast.social,Markets & Finance,markets_finance,false -vidit,newsmast.social,Mathematics,mathematics,true -vidit,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false -vidit,newsmast.social,Journalism & Comment,news_comment_data,false -vidit,newsmast.social,Physics,physics,false -vidit,newsmast.social,Politics,politics,false -vidit,newsmast.social,Science,science,false -vidit,newsmast.social,Space,space,false -vidit,newsmast.social,Technology,technology,false -vidit,newsmast.social,Ukraine Invasion,ukraine_invasion,false -vidit,newsmast.social,Weather,weather,false -Hayfa_Sdiri,newsmast.social,Government & Policy,government_policy,true -Hayfa_Sdiri,newsmast.social,Social Sciences,social_sciences,false -Hayfa_Sdiri,newsmast.social,Business,business,false -Hayfa_Sdiri,newsmast.social,Markets & Finance,markets_finance,false -Hayfa_Sdiri,newsmast.social,AI,ai,false -Hayfa_Sdiri,newsmast.social,Indigenous Peoples,indigenous_peoples,false -Hayfa_Sdiri,newsmast.social,Technology,technology,false -Hayfa_Sdiri,newsmast.social,Immigrants Rights,immigrants_rights,false -Alan_Moran,newsmast.social,Journalism & Comment,news_comment_data,false -Alan_Moran,newsmast.social,Politics,politics,false -Alan_Moran,newsmast.social,Ukraine Invasion,ukraine_invasion,false -Alan_Moran,newsmast.social,Weather,weather,false -Alan_Moran,newsmast.social,Breaking News,breaking_news,true -ProfTJCurry,newsmast.social,Government & Policy,government_policy,false -ProfTJCurry,newsmast.social,Healthcare,healthcare,false -ProfTJCurry,newsmast.social,Humanities,humanities,false -ProfTJCurry,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false -ProfTJCurry,newsmast.social,Philosophy,philosophy,true -janerockhouse,newsmast.social,Social Sciences,social_sciences,false -janerockhouse,newsmast.social,Activism & Civil Rights,activism_civil_rights,false -janerockhouse,newsmast.social,Breaking News,breaking_news,false -janerockhouse,newsmast.social,Music,music,false -janerockhouse,newsmast.social,Journalism & Comment,news_comment_data,true -janerockhouse,newsmast.social,Photography,photography,false -janerockhouse,newsmast.social,Politics,politics,false -janerockhouse,newsmast.social,Women’s Voices,women_voices,false -Unwanted_Life,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false -Unwanted_Life,newsmast.social,Black Voices,black_voices,false -Unwanted_Life,newsmast.social,Disabled Voices,disabled_voices,false -Unwanted_Life,newsmast.social,Social Sciences,social_sciences,true -KenShirriff,newsmast.social,Architecture & Design,architecture_design,false -KenShirriff,newsmast.social,Biology,biology,false -KenShirriff,newsmast.social,Books & Literature,books_literature,false -KenShirriff,newsmast.social,Chemistry,chemistry,false -KenShirriff,newsmast.social,Engineering,engineering,false -KenShirriff,newsmast.social,History,history,false -KenShirriff,newsmast.social,Mathematics,mathematics,false -KenShirriff,newsmast.social,Physics,physics,false -KenShirriff,newsmast.social,Science,science,false -KenShirriff,newsmast.social,Space,space,false -KenShirriff,newsmast.social,Technology,technology,true -katieharbath,newsmast.social,Government & Policy,government_policy,false -katieharbath,newsmast.social,Business,business,false -katieharbath,newsmast.social,Democracy & Human Rights,democracy_human_rights,true -katieharbath,newsmast.social,Food & Drink,food_drink,false -katieharbath,newsmast.social,Journalism & Comment,news_comment_data,false -katieharbath,newsmast.social,Technology,technology,false -elliemroberts,newsmast.social,Breaking News,breaking_news,false -elliemroberts,newsmast.social,Disabled Voices,disabled_voices,false -elliemroberts,newsmast.social,History,history,true -elliemroberts,newsmast.social,Humanities,humanities,false -elliemroberts,newsmast.social,Visual Arts,visual_arts,false -elliemroberts,newsmast.social,Women’s Voices,women_voices,false -Zamzam,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false -Zamzam,newsmast.social,Black Voices,black_voices,false -Zamzam,newsmast.social,Climate change,climate_change,false -Zamzam,newsmast.social,Creative Arts,creative_arts,false -Zamzam,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -Zamzam,newsmast.social,Environment,environment,false -Zamzam,newsmast.social,Humour,humour,false -Zamzam,newsmast.social,Immigrants Rights,immigrants_rights,false -Zamzam,newsmast.social,Poverty & Inequality,poverty_inequality,false -Zamzam,newsmast.social,Travel,travel,false -Zamzam,newsmast.social,Activism & Civil Rights,activism_civil_rights,true -simonerochembe,newsmast.social,Technology,technology,false -simonerochembe,newsmast.social,AI,ai,false -simonerochembe,newsmast.social,Business,business,false -simonerochembe,newsmast.social,Women’s Voices,women_voices,true -timakimoff,newsmast.social,Nature & Wildlife,nature_wildlife,true -timakimoff,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false -timakimoff,newsmast.social,Biology,biology,false -timakimoff,newsmast.social,Books & Literature,books_literature,false -timakimoff,newsmast.social,Climate change,climate_change,false -timakimoff,newsmast.social,Energy & Pollution,energy_pollution,false -timakimoff,newsmast.social,Environment,environment,false -timakimoff,newsmast.social,History,history,false -timakimoff,newsmast.social,Philosophy,philosophy,false -timakimoff,newsmast.social,Physics,physics,false -timakimoff,newsmast.social,Science,science,false -timakimoff,newsmast.social,Social Sciences,social_sciences,false -timakimoff,newsmast.social,Space,space,false -karlienoon,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false -karlienoon,newsmast.social,Climate change,climate_change,false -karlienoon,newsmast.social,Energy & Pollution,energy_pollution,false -karlienoon,newsmast.social,Environment,environment,false -karlienoon,newsmast.social,Gaming,gaming,false -karlienoon,newsmast.social,Poverty & Inequality,poverty_inequality,false -karlienoon,newsmast.social,Law & Justice,law_justice,false -karlienoon,newsmast.social,Mathematics,mathematics,false -karlienoon,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false -karlienoon,newsmast.social,Physics,physics,false -karlienoon,newsmast.social,Science,science,false -karlienoon,newsmast.social,Space,space,true -karlienoon,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -actualbenj,newsmast.social,Government & Policy,government_policy,false -actualbenj,newsmast.social,LGBTQ+,lgbtq,false -actualbenj,newsmast.social,Journalism & Comment,news_comment_data,true -actualbenj,newsmast.social,Politics,politics,false -actualbenj,newsmast.social,Science,science,false -actualbenj,newsmast.social,Social Sciences,social_sciences,false -actualbenj,newsmast.social,Ukraine Invasion,ukraine_invasion,false -actualbenj,newsmast.social,Women’s Voices,women_voices,false -actualbenj,newsmast.social,Workers Rights,workers_rights,false -ipsc48,newsmast.social,Government & Policy,government_policy,false -ipsc48,newsmast.social,Indigenous Peoples,indigenous_peoples,false -ipsc48,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false -ipsc48,newsmast.social,Democracy & Human Rights,democracy_human_rights,true -ipsc48,newsmast.social,Immigrants Rights,immigrants_rights,false -Kevin_Healey,newsmast.social,Law & Justice,law_justice,false -Kevin_Healey,newsmast.social,Disabled Voices,disabled_voices,false -Kevin_Healey,newsmast.social,Journalism & Comment,news_comment_data,false -Kevin_Healey,newsmast.social,Technology,technology,false -Kevin_Healey,newsmast.social,Breaking News,breaking_news,false -Kevin_Healey,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,true -TerriGerstein,newsmast.social,Activism & Civil Rights,activism_civil_rights,false -TerriGerstein,newsmast.social,Government & Policy,government_policy,false -TerriGerstein,newsmast.social,Immigrants Rights,immigrants_rights,false -TerriGerstein,newsmast.social,Law & Justice,law_justice,false -TerriGerstein,newsmast.social,Women’s Voices,women_voices,false -TerriGerstein,newsmast.social,Workers Rights,workers_rights,true -dgainz,newsmast.social,Breaking News,breaking_news,true -dgainz,newsmast.social,Government & Policy,government_policy,false -dgainz,newsmast.social,Journalism & Comment,news_comment_data,false -dgainz,newsmast.social,Physics,physics,false -dgainz,newsmast.social,Science,science,false -dgainz,newsmast.social,Space,space,false -Diamond1,newsmast.social,Biology,biology,false -Diamond1,newsmast.social,Chemistry,chemistry,false -Diamond1,newsmast.social,Football,football,false -Diamond1,newsmast.social,Physics,physics,true -Diamond1,newsmast.social,Science,science,false -JayFIO,newsmast.social,Activism & Civil Rights,activism_civil_rights,true -JayFIO,newsmast.social,Breaking News,breaking_news,false -JayFIO,newsmast.social,Government & Policy,government_policy,false -JayFIO,newsmast.social,Law & Justice,law_justice,false -JayFIO,newsmast.social,LGBTQ+,lgbtq,false -JayFIO,newsmast.social,Journalism & Comment,news_comment_data,false -JayFIO,newsmast.social,Weather,weather,false -Destiny,newsmast.social,Food & Drink,food_drink,false -Destiny,newsmast.social,Football,football,false -Destiny,newsmast.social,Humour,humour,false -Destiny,newsmast.social,Mathematics,mathematics,false -Destiny,newsmast.social,Journalism & Comment,news_comment_data,false -Destiny,newsmast.social,Physics,physics,false -Destiny,newsmast.social,Space,space,true -Destiny,newsmast.social,Sport,sport,false -Destiny,newsmast.social,Travel,travel,false -Destiny,newsmast.social,LGBTQ+,lgbtq,false -Destiny,newsmast.social,Pets,pets,false -sallyhawkins,newsmast.social,Nature & Wildlife,nature_wildlife,false -sallyhawkins,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,true -sallyhawkins,newsmast.social,Environment,environment,false -sallyhawkins,newsmast.social,History,history,false -sallyhawkins,newsmast.social,Indigenous Peoples,indigenous_peoples,false -sallyhawkins,newsmast.social,Philosophy,philosophy,false -sallyhawkins,newsmast.social,Social Sciences,social_sciences,false -sallyhawkins,newsmast.social,Women’s Voices,women_voices,false -Lessig,newsmast.social,AI,ai,false -Lessig,newsmast.social,Government & Policy,government_policy,false -Lessig,newsmast.social,Law & Justice,law_justice,true -Lessig,newsmast.social,Science,science,false -Lessig,newsmast.social,Technology,technology,false -Lessig,newsmast.social,Ukraine Invasion,ukraine_invasion,false -aung,newsmast.social,Breaking News,breaking_news,false -aung,newsmast.social,Politics,politics,false -aung,newsmast.social,Ukraine Invasion,ukraine_invasion,false -aung,newsmast.social,Journalism & Comment,news_comment_data,true -SWCWomen,newsmast.social,Black Voices,black_voices,false -SWCWomen,newsmast.social,Books & Literature,books_literature,false -SWCWomen,newsmast.social,Disabled Voices,disabled_voices,false -SWCWomen,newsmast.social,Government & Policy,government_policy,false -SWCWomen,newsmast.social,History,history,false -SWCWomen,newsmast.social,Humanities,humanities,false -SWCWomen,newsmast.social,Immigrants Rights,immigrants_rights,false -SWCWomen,newsmast.social,Law & Justice,law_justice,false -SWCWomen,newsmast.social,LGBTQ+,lgbtq,false -SWCWomen,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false -SWCWomen,newsmast.social,Journalism & Comment,news_comment_data,false -SWCWomen,newsmast.social,Philosophy,philosophy,false -SWCWomen,newsmast.social,Politics,politics,false -SWCWomen,newsmast.social,Social Sciences,social_sciences,false -SWCWomen,newsmast.social,Women’s Voices,women_voices,true -SWCWomen,newsmast.social,Workers Rights,workers_rights,false -peter,newsmast.social,Technology,technology,false -peter,newsmast.social,Social Sciences,social_sciences,false -peter,newsmast.social,Business,business,false -peter,newsmast.social,Nature & Wildlife,nature_wildlife,false -peter,newsmast.social,AI,ai,false -peter,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,true -peter,newsmast.social,Climate change,climate_change,false -peter,newsmast.social,Energy & Pollution,energy_pollution,false -peter,newsmast.social,Environment,environment,false -jasonreiduk,newsmast.social,Activism & Civil Rights,activism_civil_rights,false -jasonreiduk,newsmast.social,Breaking News,breaking_news,false -jasonreiduk,newsmast.social,LGBTQ+,lgbtq,true -jasonreiduk,newsmast.social,Journalism & Comment,news_comment_data,false -KieranRose,newsmast.social,Activism & Civil Rights,activism_civil_rights,false -KieranRose,newsmast.social,Black Voices,black_voices,false -KieranRose,newsmast.social,Disabled Voices,disabled_voices,true -KieranRose,newsmast.social,Poverty & Inequality,poverty_inequality,false -KieranRose,newsmast.social,LGBTQ+,lgbtq,false -KieranRose,newsmast.social,Social Sciences,social_sciences,false -KieranRose,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -ccgh,newsmast.social,Government & Policy,government_policy,false -ccgh,newsmast.social,Books & Literature,books_literature,false -ccgh,newsmast.social,Immigrants Rights,immigrants_rights,true -ccgh,newsmast.social,Law & Justice,law_justice,false -ccgh,newsmast.social,Journalism & Comment,news_comment_data,false -ccgh,newsmast.social,Politics,politics,false -ccgh,newsmast.social,Social Sciences,social_sciences,false -ccgh,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -boroguide,newsmast.social,Football,football,true -boroguide,newsmast.social,Music,music,false -boroguide,newsmast.social,Photography,photography,false -boroguide,newsmast.social,Sport,sport,false -boroguide,newsmast.social,Travel,travel,false -ksetiya,newsmast.social,Activism & Civil Rights,activism_civil_rights,false -ksetiya,newsmast.social,AI,ai,false -ksetiya,newsmast.social,Architecture & Design,architecture_design,false -ksetiya,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false -ksetiya,newsmast.social,Biology,biology,false -ksetiya,newsmast.social,Black Voices,black_voices,false -ksetiya,newsmast.social,Books & Literature,books_literature,false -ksetiya,newsmast.social,Breaking News,breaking_news,false -ksetiya,newsmast.social,Business,business,false -ksetiya,newsmast.social,Chemistry,chemistry,false -ksetiya,newsmast.social,Climate change,climate_change,false -ksetiya,newsmast.social,Creative Arts,creative_arts,false -ksetiya,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -ksetiya,newsmast.social,Disabled Voices,disabled_voices,false -ksetiya,newsmast.social,Energy & Pollution,energy_pollution,false -ksetiya,newsmast.social,Engineering,engineering,false -ksetiya,newsmast.social,Environment,environment,false -ksetiya,newsmast.social,Food & Drink,food_drink,false -ksetiya,newsmast.social,Football,football,false -ksetiya,newsmast.social,Gaming,gaming,false -ksetiya,newsmast.social,Government & Policy,government_policy,false -ksetiya,newsmast.social,Healthcare,healthcare,false -ksetiya,newsmast.social,History,history,false -ksetiya,newsmast.social,Humanities,humanities,false -ksetiya,newsmast.social,Humour,humour,false -ksetiya,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false -ksetiya,newsmast.social,Immigrants Rights,immigrants_rights,false -ksetiya,newsmast.social,Indigenous Peoples,indigenous_peoples,false -ksetiya,newsmast.social,Poverty & Inequality,poverty_inequality,false -ksetiya,newsmast.social,Law & Justice,law_justice,false -ksetiya,newsmast.social,LGBTQ+,lgbtq,false -ksetiya,newsmast.social,Markets & Finance,markets_finance,false -ksetiya,newsmast.social,Mathematics,mathematics,false -ksetiya,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false -ksetiya,newsmast.social,Movies,movies,false -ksetiya,newsmast.social,Music,music,false -ksetiya,newsmast.social,Nature & Wildlife,nature_wildlife,false -ksetiya,newsmast.social,Journalism & Comment,news_comment_data,false -ksetiya,newsmast.social,Performing Arts,performing_arts,false -ksetiya,newsmast.social,Pets,pets,false -ksetiya,newsmast.social,Philosophy,philosophy,true -ksetiya,newsmast.social,Photography,photography,false -ksetiya,newsmast.social,Physics,physics,false -ksetiya,newsmast.social,Politics,politics,false -ksetiya,newsmast.social,Puzzles,puzzles,false -ksetiya,newsmast.social,Science,science,false -ksetiya,newsmast.social,Social Sciences,social_sciences,false -ksetiya,newsmast.social,Space,space,false -ksetiya,newsmast.social,Sport,sport,false -ksetiya,newsmast.social,Technology,technology,false -ksetiya,newsmast.social,Travel,travel,false -ksetiya,newsmast.social,TV & Radio,tv_radio,false -ksetiya,newsmast.social,Ukraine Invasion,ukraine_invasion,false -ksetiya,newsmast.social,Visual Arts,visual_arts,false -ksetiya,newsmast.social,Weather,weather,false -ksetiya,newsmast.social,Women’s Voices,women_voices,false -ksetiya,newsmast.social,Workers Rights,workers_rights,false -pot8um,newsmast.social,Disabled Voices,disabled_voices,true -pot8um,newsmast.social,Gaming,gaming,false -pot8um,newsmast.social,LGBTQ+,lgbtq,false -pot8um,newsmast.social,Movies,movies,false -pot8um,newsmast.social,Music,music,false -pot8um,newsmast.social,Journalism & Comment,news_comment_data,false -pot8um,newsmast.social,Science,science,false -pot8um,newsmast.social,Social Sciences,social_sciences,false -pot8um,newsmast.social,Space,space,false -pot8um,newsmast.social,Visual Arts,visual_arts,false -pot8um,newsmast.social,Women’s Voices,women_voices,false -PhilPlait,newsmast.social,Climate change,climate_change,false -PhilPlait,newsmast.social,Humour,humour,false -PhilPlait,newsmast.social,Physics,physics,false -PhilPlait,newsmast.social,Science,science,true -PhilPlait,newsmast.social,Space,space,false -rogerg44,newsmast.social,Architecture & Design,architecture_design,false -rogerg44,newsmast.social,Movies,movies,true -rogerg44,newsmast.social,Music,music,false -rogerg44,newsmast.social,Performing Arts,performing_arts,false -rogerg44,newsmast.social,Photography,photography,false -rogerg44,newsmast.social,TV & Radio,tv_radio,false -rogerg44,newsmast.social,Visual Arts,visual_arts,false -WildCard,newsmast.social,Nature & Wildlife,nature_wildlife,false -WildCard,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,true -WildCard,newsmast.social,Climate change,climate_change,false -WildCard,newsmast.social,Environment,environment,false -rewildingsam,newsmast.social,Nature & Wildlife,nature_wildlife,false -rewildingsam,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,true -rewildingsam,newsmast.social,Climate change,climate_change,false -rewildingsam,newsmast.social,Environment,environment,false -rewildingsam,newsmast.social,Photography,photography,false -rewildingsam,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false -cate,newsmast.social,Activism & Civil Rights,activism_civil_rights,false -cate,newsmast.social,Books & Literature,books_literature,false -cate,newsmast.social,Humanities,humanities,false -cate,newsmast.social,Poverty & Inequality,poverty_inequality,false -cate,newsmast.social,Philosophy,philosophy,false -cate,newsmast.social,Women’s Voices,women_voices,true -jeremygodwin,newsmast.social,LGBTQ+,lgbtq,false -jeremygodwin,newsmast.social,Philosophy,philosophy,false -jeremygodwin,newsmast.social,Science,science,false -jeremygodwin,newsmast.social,Social Sciences,social_sciences,true -jeremygodwin,newsmast.social,Space,space,false -jeremygodwin,newsmast.social,Technology,technology,false -candice_chirwa,newsmast.social,Government & Policy,government_policy,false -candice_chirwa,newsmast.social,Activism & Civil Rights,activism_civil_rights,false -candice_chirwa,newsmast.social,Black Voices,black_voices,false -candice_chirwa,newsmast.social,Humanities,humanities,false -candice_chirwa,newsmast.social,LGBTQ+,lgbtq,false -candice_chirwa,newsmast.social,Women’s Voices,women_voices,false -candice_chirwa,newsmast.social,Environment,environment,false -candice_chirwa,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false -candice_chirwa,newsmast.social,Democracy & Human Rights,democracy_human_rights,true -Crof,newsmast.social,Government & Policy,government_policy,false -Crof,newsmast.social,AI,ai,false -Crof,newsmast.social,Biology,biology,false -Crof,newsmast.social,Climate change,climate_change,false -Crof,newsmast.social,Energy & Pollution,energy_pollution,false -Crof,newsmast.social,Healthcare,healthcare,false -Crof,newsmast.social,History,history,false -Crof,newsmast.social,Poverty & Inequality,poverty_inequality,false -Crof,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false -Crof,newsmast.social,Journalism & Comment,news_comment_data,false -Crof,newsmast.social,Politics,politics,false -Crof,newsmast.social,Social Sciences,social_sciences,false -Crof,newsmast.social,Ukraine Invasion,ukraine_invasion,false -Crof,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,true -Crof,newsmast.social,Immigrants Rights,immigrants_rights,false -lgsmsec,newsmast.social,Activism & Civil Rights,activism_civil_rights,false -lgsmsec,newsmast.social,Energy & Pollution,energy_pollution,false -lgsmsec,newsmast.social,Law & Justice,law_justice,false -lgsmsec,newsmast.social,LGBTQ+,lgbtq,true -lgsmsec,newsmast.social,Journalism & Comment,news_comment_data,false -lgsmsec,newsmast.social,Politics,politics,false -lgsmsec,newsmast.social,Workers Rights,workers_rights,false -lgsmsec,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -LeslieTay,newsmast.social,Food & Drink,food_drink,true -LeslieTay,newsmast.social,Photography,photography,false -LeslieTay,newsmast.social,Science,science,false -LeslieTay,newsmast.social,Environment,environment,false -LeslieTay,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false -RhondaAlbom,newsmast.social,Nature & Wildlife,nature_wildlife,false -RhondaAlbom,newsmast.social,Architecture & Design,architecture_design,false -RhondaAlbom,newsmast.social,Environment,environment,false -RhondaAlbom,newsmast.social,Humour,humour,false -RhondaAlbom,newsmast.social,Photography,photography,false -RhondaAlbom,newsmast.social,Travel,travel,true -RhondaAlbom,newsmast.social,Visual Arts,visual_arts,false -RhondaAlbom,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -Dailyscandi,newsmast.social,Democracy & Human Rights,democracy_human_rights,true -Dailyscandi,newsmast.social,Poverty & Inequality,poverty_inequality,false -Dailyscandi,newsmast.social,Environment,environment,false -Dailyscandi,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false -Sam,newsmast.social,AI,ai,false -Sam,newsmast.social,Architecture & Design,architecture_design,false -Sam,newsmast.social,LGBTQ+,lgbtq,false -Sam,newsmast.social,Politics,politics,false -Sam,newsmast.social,Journalism & Comment,news_comment_data,false -Sam,newsmast.social,Breaking News,breaking_news,false -Sam,newsmast.social,Activism & Civil Rights,activism_civil_rights,true -samf,newsmast.social,Government & Policy,government_policy,false -samf,newsmast.social,Business,business,false -samf,newsmast.social,Pets,pets,false -samf,newsmast.social,Philosophy,philosophy,false -samf,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,true -seema,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false -seema,newsmast.social,Climate change,climate_change,false -seema,newsmast.social,Environment,environment,false -seema,newsmast.social,Social Sciences,social_sciences,true -tomy,newsmast.social,Social Sciences,social_sciences,false -tomy,newsmast.social,AI,ai,false -tomy,newsmast.social,Biology,biology,false -tomy,newsmast.social,Humanities,humanities,false -tomy,newsmast.social,Philosophy,philosophy,true -tomy,newsmast.social,Physics,physics,false -tomy,newsmast.social,Science,science,false -tomy,newsmast.social,Space,space,false -Kyaw,newsmast.social,Nature & Wildlife,nature_wildlife,false -Kyaw,newsmast.social,AI,ai,true -Kyaw,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false -Kyaw,newsmast.social,Breaking News,breaking_news,false -Kyaw,newsmast.social,Climate change,climate_change,false -Kyaw,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -Kyaw,newsmast.social,Energy & Pollution,energy_pollution,false -Kyaw,newsmast.social,Environment,environment,false -Kyaw,newsmast.social,Healthcare,healthcare,false -Kyaw,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false -Kyaw,newsmast.social,Poverty & Inequality,poverty_inequality,false -Kyaw,newsmast.social,Law & Justice,law_justice,false -Kyaw,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false -Kyaw,newsmast.social,Politics,politics,false -Kyaw,newsmast.social,Technology,technology,false -Kyaw,newsmast.social,Ukraine Invasion,ukraine_invasion,false -Kyaw,newsmast.social,Weather,weather,false -Kyaw,newsmast.social,Journalism & Comment,news_comment_data,false -Kyaw,newsmast.social,Government & Policy,government_policy,false -Kyaw,newsmast.social,US Politics,us_politics,false -Kyaw,newsmast.social,Immigrants Rights,immigrants_rights,false -debgod,newsmast.social,Activism & Civil Rights,activism_civil_rights,true -debgod,newsmast.social,Architecture & Design,architecture_design,false -debgod,newsmast.social,Black Voices,black_voices,false -debgod,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -debgod,newsmast.social,LGBTQ+,lgbtq,false -debgod,newsmast.social,Music,music,false -debgod,newsmast.social,Performing Arts,performing_arts,false -debgod,newsmast.social,Social Sciences,social_sciences,false -debgod,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false -luisaropio,newsmast.social,Government & Policy,government_policy,false -luisaropio,newsmast.social,Breaking News,breaking_news,false -luisaropio,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -luisaropio,newsmast.social,Energy & Pollution,energy_pollution,false -luisaropio,newsmast.social,Social Sciences,social_sciences,false -luisaropio,newsmast.social,Journalism & Comment,news_comment_data,false -luisaropio,newsmast.social,Environment,environment,true -luisaropio,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false -Nancie,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false -Nancie,newsmast.social,Food & Drink,food_drink,false -Nancie,newsmast.social,Humour,humour,false -Nancie,newsmast.social,Nature & Wildlife,nature_wildlife,false -Nancie,newsmast.social,Pets,pets,false -Nancie,newsmast.social,Puzzles,puzzles,false -Nancie,newsmast.social,Travel,travel,true -TheCultofCalcio,newsmast.social,Business,business,false -TheCultofCalcio,newsmast.social,Football,football,true -TheCultofCalcio,newsmast.social,Journalism & Comment,news_comment_data,false -TheCultofCalcio,newsmast.social,Sport,sport,false -TheCultofCalcio,newsmast.social,Environment,environment,false -jaclynasiegel,newsmast.social,Food & Drink,food_drink,false -jaclynasiegel,newsmast.social,Humour,humour,false -jaclynasiegel,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false -jaclynasiegel,newsmast.social,Nature & Wildlife,nature_wildlife,false -jaclynasiegel,newsmast.social,Puzzles,puzzles,false -jaclynasiegel,newsmast.social,Social Sciences,social_sciences,true -jaclynasiegel,newsmast.social,Space,space,false -jaclynasiegel,newsmast.social,Travel,travel,false -thelmzkitchen,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false -thelmzkitchen,newsmast.social,Creative Arts,creative_arts,false -thelmzkitchen,newsmast.social,Food & Drink,food_drink,true -thelmzkitchen,newsmast.social,Music,music,false -thelmzkitchen,newsmast.social,Travel,travel,false -thelmzkitchen,newsmast.social,Women’s Voices,women_voices,false -DrCarpineti,newsmast.social,Activism & Civil Rights,activism_civil_rights,false -DrCarpineti,newsmast.social,Breaking News,breaking_news,false -DrCarpineti,newsmast.social,LGBTQ+,lgbtq,false -DrCarpineti,newsmast.social,Journalism & Comment,news_comment_data,false -DrCarpineti,newsmast.social,Physics,physics,false -DrCarpineti,newsmast.social,Science,science,false -DrCarpineti,newsmast.social,Space,space,true -DrCarpineti,newsmast.social,Technology,technology,false -DrCarpineti,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -MKandHerBC,newsmast.social,Social Sciences,social_sciences,false -MKandHerBC,newsmast.social,Markets & Finance,markets_finance,false -MKandHerBC,newsmast.social,Business,business,false -MKandHerBC,newsmast.social,Humour,humour,false -MKandHerBC,newsmast.social,Pets,pets,true -MKandHerBC,newsmast.social,Puzzles,puzzles,false -tillathenun,newsmast.social,Nature & Wildlife,nature_wildlife,false -tillathenun,newsmast.social,Climate change,climate_change,false -tillathenun,newsmast.social,Movies,movies,false -tillathenun,newsmast.social,Science,science,false -tillathenun,newsmast.social,Technology,technology,true -rebarkable,newsmast.social,Biology,biology,false -rebarkable,newsmast.social,Environment,environment,false -rebarkable,newsmast.social,Food & Drink,food_drink,false -rebarkable,newsmast.social,Pets,pets,true -rebarkable,newsmast.social,Science,science,false -QasimRashid,newsmast.social,Social Sciences,social_sciences,false -QasimRashid,newsmast.social,Breaking News,breaking_news,false -QasimRashid,newsmast.social,Government & Policy,government_policy,false -QasimRashid,newsmast.social,Journalism & Comment,news_comment_data,false -QasimRashid,newsmast.social,Politics,politics,true -mweinbach,newsmast.social,Markets & Finance,markets_finance,false -mweinbach,newsmast.social,AI,ai,false -mweinbach,newsmast.social,Breaking News,breaking_news,false -mweinbach,newsmast.social,Business,business,false -mweinbach,newsmast.social,Engineering,engineering,false -mweinbach,newsmast.social,Government & Policy,government_policy,false -mweinbach,newsmast.social,Healthcare,healthcare,false -mweinbach,newsmast.social,Law & Justice,law_justice,false -mweinbach,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false -mweinbach,newsmast.social,Journalism & Comment,news_comment_data,false -mweinbach,newsmast.social,Physics,physics,false -mweinbach,newsmast.social,Politics,politics,false -mweinbach,newsmast.social,Science,science,false -mweinbach,newsmast.social,Social Sciences,social_sciences,false -mweinbach,newsmast.social,Space,space,false -mweinbach,newsmast.social,Technology,technology,true -mweinbach,newsmast.social,Weather,weather,false -Anneliese,newsmast.social,Nature & Wildlife,nature_wildlife,false -Anneliese,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false -Anneliese,newsmast.social,Climate change,climate_change,false -Anneliese,newsmast.social,Energy & Pollution,energy_pollution,false -Anneliese,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false -Anneliese,newsmast.social,Journalism & Comment,news_comment_data,false -Anneliese,newsmast.social,Science,science,false -Anneliese,newsmast.social,Social Sciences,social_sciences,false -Anneliese,newsmast.social,Environment,environment,true -MummyMatters,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,true -MummyMatters,newsmast.social,Creative Arts,creative_arts,false -MummyMatters,newsmast.social,Nature & Wildlife,nature_wildlife,false -MummyMatters,newsmast.social,Pets,pets,false -MummyMatters,newsmast.social,Travel,travel,false -infobl,newsmast.social,AI,ai,true -infobl,newsmast.social,Breaking News,breaking_news,false -infobl,newsmast.social,Politics,politics,false -infobl,newsmast.social,Technology,technology,false -infobl,newsmast.social,Ukraine Invasion,ukraine_invasion,false -infobl,newsmast.social,Weather,weather,false -infobl,newsmast.social,Journalism & Comment,news_comment_data,false -ShaggyShepherd,newsmast.social,Nature & Wildlife,nature_wildlife,false -ShaggyShepherd,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false -ShaggyShepherd,newsmast.social,Books & Literature,books_literature,true -ShaggyShepherd,newsmast.social,Immigrants Rights,immigrants_rights,false -ShaggyShepherd,newsmast.social,Social Sciences,social_sciences,false -ChrisB100,newsmast.social,Breaking News,breaking_news,true -ChrisB100,newsmast.social,Poverty & Inequality,poverty_inequality,false -ChrisB100,newsmast.social,Journalism & Comment,news_comment_data,false -ChrisB100,newsmast.social,Weather,weather,false -ChrisB100,newsmast.social,Environment,environment,false -petenothing,newsmast.social,Food & Drink,food_drink,false -petenothing,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false -petenothing,newsmast.social,Football,football,false -petenothing,newsmast.social,History,history,false -petenothing,newsmast.social,Humanities,humanities,false -petenothing,newsmast.social,Architecture & Design,architecture_design,false -petenothing,newsmast.social,Creative Arts,creative_arts,false -petenothing,newsmast.social,LGBTQ+,lgbtq,false -petenothing,newsmast.social,Music,music,false -petenothing,newsmast.social,Nature & Wildlife,nature_wildlife,false -petenothing,newsmast.social,Pets,pets,false -petenothing,newsmast.social,Puzzles,puzzles,false -petenothing,newsmast.social,Space,space,false -petenothing,newsmast.social,Travel,travel,false -petenothing,newsmast.social,TV & Radio,tv_radio,false -petenothing,newsmast.social,Women’s Voices,women_voices,false -petenothing,newsmast.social,Workers Rights,workers_rights,false -petenothing,newsmast.social,Books & Literature,books_literature,true -ianwalker,newsmast.social,Technology,technology,false -ianwalker,newsmast.social,Climate change,climate_change,false -ianwalker,newsmast.social,Energy & Pollution,energy_pollution,false -ianwalker,newsmast.social,Environment,environment,true -ianwalker,newsmast.social,Science,science,false -ianwalker,newsmast.social,Social Sciences,social_sciences,false -ianwalker,newsmast.social,Space,space,false -Randee,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false -Randee,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false -Randee,newsmast.social,Books & Literature,books_literature,true -Randee,newsmast.social,Breaking News,breaking_news,false -Randee,newsmast.social,Creative Arts,creative_arts,false -Randee,newsmast.social,Environment,environment,false -Randee,newsmast.social,Food & Drink,food_drink,false -Randee,newsmast.social,Humanities,humanities,false -Randee,newsmast.social,Humour,humour,false -Randee,newsmast.social,Movies,movies,false -Randee,newsmast.social,Music,music,false -Randee,newsmast.social,Nature & Wildlife,nature_wildlife,false -Randee,newsmast.social,Journalism & Comment,news_comment_data,false -Randee,newsmast.social,Performing Arts,performing_arts,false -Randee,newsmast.social,Pets,pets,false -Randee,newsmast.social,Photography,photography,false -Randee,newsmast.social,Puzzles,puzzles,false -Randee,newsmast.social,Social Sciences,social_sciences,false -Randee,newsmast.social,Travel,travel,false -Randee,newsmast.social,TV & Radio,tv_radio,false -docwinters,newsmast.social,Law & Justice,law_justice,false -docwinters,newsmast.social,Books & Literature,books_literature,false -docwinters,newsmast.social,History,history,true -docwinters,newsmast.social,Humanities,humanities,false -docwinters,newsmast.social,Philosophy,philosophy,false -johnhawks,newsmast.social,AI,ai,false -johnhawks,newsmast.social,Biology,biology,true -johnhawks,newsmast.social,Science,science,false -johnhawks,newsmast.social,Social Sciences,social_sciences,false -johnhawks,newsmast.social,Space,space,false -johnhawks,newsmast.social,Journalism & Comment,news_comment_data,false -wjnewman,newsmast.social,AI,ai,false -wjnewman,newsmast.social,Climate change,climate_change,false -wjnewman,newsmast.social,Physics,physics,false -wjnewman,newsmast.social,Science,science,true -wjnewman,newsmast.social,Space,space,false -wjnewman,newsmast.social,Technology,technology,false -wjnewman,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false -BobGatty,newsmast.social,Academia & Research,academia_research,false -BobGatty,newsmast.social,AI,ai,false -BobGatty,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false -BobGatty,newsmast.social,Breaking News,breaking_news,false -BobGatty,newsmast.social,Business,business,false -BobGatty,newsmast.social,Climate change,climate_change,false -BobGatty,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -BobGatty,newsmast.social,Energy & Pollution,energy_pollution,false -BobGatty,newsmast.social,Engineering,engineering,false -BobGatty,newsmast.social,Environment,environment,false -BobGatty,newsmast.social,Football,football,false -BobGatty,newsmast.social,Government & Policy,government_policy,false -BobGatty,newsmast.social,Healthcare,healthcare,false -BobGatty,newsmast.social,History,history,false -BobGatty,newsmast.social,Humanities,humanities,false -BobGatty,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false -BobGatty,newsmast.social,Law & Justice,law_justice,false -BobGatty,newsmast.social,Markets & Finance,markets_finance,false -BobGatty,newsmast.social,Journalism & Comment,news_comment_data,false -BobGatty,newsmast.social,Philosophy,philosophy,false -BobGatty,newsmast.social,Politics,politics,true -BobGatty,newsmast.social,Poverty & Inequality,poverty_inequality,false -BobGatty,newsmast.social,Programming,programming,false -BobGatty,newsmast.social,Social Media,social_media,false -BobGatty,newsmast.social,Social Sciences,social_sciences,false -BobGatty,newsmast.social,Sport,sport,false -BobGatty,newsmast.social,Technology,technology,false -BobGatty,newsmast.social,Ukraine Invasion,ukraine_invasion,false -BobGatty,newsmast.social,US Politics,us_politics,false -BobGatty,newsmast.social,US Sport,us_sport,false -BobGatty,newsmast.social,Weather,weather,false -BobGatty,newsmast.social,Workers Rights,workers_rights,false -willwinter,newsmast.social,AI,ai,false -willwinter,newsmast.social,Business,business,false -willwinter,newsmast.social,Government & Policy,government_policy,false -willwinter,newsmast.social,Technology,technology,true -ghutchis,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false -ghutchis,newsmast.social,Climate change,climate_change,false -ghutchis,newsmast.social,Creative Arts,creative_arts,false -ghutchis,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -ghutchis,newsmast.social,Energy & Pollution,energy_pollution,false -ghutchis,newsmast.social,Engineering,engineering,false -ghutchis,newsmast.social,Environment,environment,false -ghutchis,newsmast.social,Food & Drink,food_drink,false -ghutchis,newsmast.social,Humour,humour,false -ghutchis,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false -ghutchis,newsmast.social,Poverty & Inequality,poverty_inequality,false -ghutchis,newsmast.social,Mathematics,mathematics,false -ghutchis,newsmast.social,Nature & Wildlife,nature_wildlife,false -ghutchis,newsmast.social,Pets,pets,false -ghutchis,newsmast.social,Physics,physics,false -ghutchis,newsmast.social,Puzzles,puzzles,false -ghutchis,newsmast.social,Science,science,false -ghutchis,newsmast.social,Space,space,false -ghutchis,newsmast.social,AI,ai,false -ghutchis,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false -ghutchis,newsmast.social,Biology,biology,false -ghutchis,newsmast.social,Technology,technology,false -ghutchis,newsmast.social,Travel,travel,false -ghutchis,newsmast.social,Chemistry,chemistry,true -ghutchis,newsmast.social,Immigrants Rights,immigrants_rights,false -Johnvink,newsmast.social,Climate change,climate_change,false -Johnvink,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -Johnvink,newsmast.social,Environment,environment,false -Johnvink,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false -Johnvink,newsmast.social,Poverty & Inequality,poverty_inequality,false -Johnvink,newsmast.social,Journalism & Comment,news_comment_data,false -Johnvink,newsmast.social,Photography,photography,true -Johnvink,newsmast.social,Immigrants Rights,immigrants_rights,false -chrysalismama,newsmast.social,Creative Arts,creative_arts,false -chrysalismama,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false -chrysalismama,newsmast.social,Activism & Civil Rights,activism_civil_rights,false -chrysalismama,newsmast.social,Books & Literature,books_literature,false -chrysalismama,newsmast.social,LGBTQ+,lgbtq,true -chrysalismama,newsmast.social,Nature & Wildlife,nature_wildlife,false -chrysalismama,newsmast.social,Journalism & Comment,news_comment_data,false -chrysalismama,newsmast.social,Women’s Voices,women_voices,false -chrysalismama,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -nowinaminute,newsmast.social,Social Sciences,social_sciences,false -nowinaminute,newsmast.social,Activism & Civil Rights,activism_civil_rights,false -nowinaminute,newsmast.social,AI,ai,false -nowinaminute,newsmast.social,Humour,humour,false -nowinaminute,newsmast.social,LGBTQ+,lgbtq,false -nowinaminute,newsmast.social,Mathematics,mathematics,false -nowinaminute,newsmast.social,Journalism & Comment,news_comment_data,true -nowinaminute,newsmast.social,Pets,pets,false -nowinaminute,newsmast.social,Science,science,false -nowinaminute,newsmast.social,Technology,technology,false -nowinaminute,newsmast.social,Women’s Voices,women_voices,false -pennywalker,newsmast.social,Government & Policy,government_policy,false -pennywalker,newsmast.social,Nature & Wildlife,nature_wildlife,false -pennywalker,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false -pennywalker,newsmast.social,Books & Literature,books_literature,false -pennywalker,newsmast.social,Climate change,climate_change,false -pennywalker,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -pennywalker,newsmast.social,Energy & Pollution,energy_pollution,false -pennywalker,newsmast.social,Environment,environment,true -pennywalker,newsmast.social,Law & Justice,law_justice,false -pennywalker,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false -pennywalker,newsmast.social,Science,science,false -pennywalker,newsmast.social,Social Sciences,social_sciences,false -pennywalker,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false -pennywalker,newsmast.social,Immigrants Rights,immigrants_rights,false -mattskal,newsmast.social,AI,ai,false -mattskal,newsmast.social,Business,business,false -mattskal,newsmast.social,Movies,movies,false -mattskal,newsmast.social,Performing Arts,performing_arts,false -mattskal,newsmast.social,Technology,technology,true -FemalesNFinance,newsmast.social,Markets & Finance,markets_finance,true -FemalesNFinance,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false -FemalesNFinance,newsmast.social,Journalism & Comment,news_comment_data,false -FemalesNFinance,newsmast.social,Puzzles,puzzles,false -sustainabilityx,newsmast.social,Nature & Wildlife,nature_wildlife,false -sustainabilityx,newsmast.social,AI,ai,false -sustainabilityx,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false -sustainabilityx,newsmast.social,Breaking News,breaking_news,false -sustainabilityx,newsmast.social,Business,business,false -sustainabilityx,newsmast.social,Climate change,climate_change,true -sustainabilityx,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -sustainabilityx,newsmast.social,Energy & Pollution,energy_pollution,false -sustainabilityx,newsmast.social,Environment,environment,false -sustainabilityx,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false -sustainabilityx,newsmast.social,Poverty & Inequality,poverty_inequality,false -sustainabilityx,newsmast.social,Markets & Finance,markets_finance,false -sustainabilityx,newsmast.social,Journalism & Comment,news_comment_data,false -sustainabilityx,newsmast.social,Politics,politics,false -sustainabilityx,newsmast.social,Technology,technology,false -sustainabilityx,newsmast.social,Ukraine Invasion,ukraine_invasion,false -sustainabilityx,newsmast.social,Weather,weather,false -sustainabilityx,newsmast.social,Immigrants Rights,immigrants_rights,false -arg02,newsmast.social,Energy & Pollution,energy_pollution,true -arg02,newsmast.social,Nature & Wildlife,nature_wildlife,false -arg02,newsmast.social,Biology,biology,false -arg02,newsmast.social,Breaking News,breaking_news,false -arg02,newsmast.social,Chemistry,chemistry,false -arg02,newsmast.social,Climate change,climate_change,false -arg02,newsmast.social,Engineering,engineering,false -arg02,newsmast.social,Environment,environment,false -arg02,newsmast.social,Journalism & Comment,news_comment_data,false -arg02,newsmast.social,Politics,politics,false -arg02,newsmast.social,Science,science,false -arg02,newsmast.social,Social Sciences,social_sciences,false -arg02,newsmast.social,Space,space,false -arg02,newsmast.social,Technology,technology,false -arg02,newsmast.social,Ukraine Invasion,ukraine_invasion,false -arg02,newsmast.social,Weather,weather,false -Roamancing,newsmast.social,Government & Policy,government_policy,false -Roamancing,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false -Roamancing,newsmast.social,Books & Literature,books_literature,false -Roamancing,newsmast.social,Creative Arts,creative_arts,false -Roamancing,newsmast.social,Environment,environment,false -Roamancing,newsmast.social,Food & Drink,food_drink,false -Roamancing,newsmast.social,History,history,false -Roamancing,newsmast.social,Humanities,humanities,false -Roamancing,newsmast.social,Poverty & Inequality,poverty_inequality,false -Roamancing,newsmast.social,Music,music,false -Roamancing,newsmast.social,Nature & Wildlife,nature_wildlife,false -Roamancing,newsmast.social,Performing Arts,performing_arts,false -Roamancing,newsmast.social,Pets,pets,false -Roamancing,newsmast.social,Travel,travel,true -Roamancing,newsmast.social,Disabled Voices,disabled_voices,false -Roamancing,newsmast.social,Indigenous Peoples,indigenous_peoples,false -Roamancing,newsmast.social,Women’s Voices,women_voices,false -Roamancing,newsmast.social,Science,science,false -Roamancing,newsmast.social,Biology,biology,false -Roamancing,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false -Roamancing,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false -Roamancing,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -StephanHacker2,newsmast.social,Chemistry,chemistry,true -OpsMatters,newsmast.social,AI,ai,false -OpsMatters,newsmast.social,Breaking News,breaking_news,false -OpsMatters,newsmast.social,Business,business,false -OpsMatters,newsmast.social,Engineering,engineering,false -OpsMatters,newsmast.social,Environment,environment,false -OpsMatters,newsmast.social,Technology,technology,true -OpsMatters,newsmast.social,Journalism & Comment,news_comment_data,false -aliciahaydenart,newsmast.social,Nature & Wildlife,nature_wildlife,true -aliciahaydenart,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false -aliciahaydenart,newsmast.social,Biology,biology,false -aliciahaydenart,newsmast.social,Books & Literature,books_literature,false -aliciahaydenart,newsmast.social,Climate change,climate_change,false -aliciahaydenart,newsmast.social,Environment,environment,false -aliciahaydenart,newsmast.social,Photography,photography,false -aliciahaydenart,newsmast.social,Science,science,false -aliciahaydenart,newsmast.social,Visual Arts,visual_arts,false -MotorcycleGuy,newsmast.social,Government & Policy,government_policy,false -MotorcycleGuy,newsmast.social,Activism & Civil Rights,activism_civil_rights,false -MotorcycleGuy,newsmast.social,AI,ai,false -MotorcycleGuy,newsmast.social,Breaking News,breaking_news,false -MotorcycleGuy,newsmast.social,Business,business,false -MotorcycleGuy,newsmast.social,Healthcare,healthcare,true -MotorcycleGuy,newsmast.social,LGBTQ+,lgbtq,false -MotorcycleGuy,newsmast.social,Mathematics,mathematics,false -MotorcycleGuy,newsmast.social,Politics,politics,false -MotorcycleGuy,newsmast.social,Science,science,false -MotorcycleGuy,newsmast.social,Space,space,false -MotorcycleGuy,newsmast.social,Technology,technology,false -PPT536,newsmast.social,Breaking News,breaking_news,true -PPT536,newsmast.social,Journalism & Comment,news_comment_data,false -PPT536,newsmast.social,Social Media,social_media,false -PPT536,newsmast.social,Ukraine Invasion,ukraine_invasion,false -PPT536,newsmast.social,Weather,weather,false -Ed_Rempel,newsmast.social,Social Sciences,social_sciences,false -Ed_Rempel,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false -Ed_Rempel,newsmast.social,AI,ai,false -Ed_Rempel,newsmast.social,Breaking News,breaking_news,false -Ed_Rempel,newsmast.social,Business,business,true -Ed_Rempel,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -Ed_Rempel,newsmast.social,Food & Drink,food_drink,false -Ed_Rempel,newsmast.social,Government & Policy,government_policy,false -Ed_Rempel,newsmast.social,Humour,humour,false -Ed_Rempel,newsmast.social,Markets & Finance,markets_finance,false -Ed_Rempel,newsmast.social,Journalism & Comment,news_comment_data,false -Ed_Rempel,newsmast.social,Politics,politics,false -Ed_Rempel,newsmast.social,Space,space,false -Ed_Rempel,newsmast.social,Technology,technology,false -Ed_Rempel,newsmast.social,Travel,travel,false -Ed_Rempel,newsmast.social,Poverty & Inequality,poverty_inequality,false -OmarSakr,newsmast.social,Books & Literature,books_literature,true -OmarSakr,newsmast.social,Breaking News,breaking_news,false -OmarSakr,newsmast.social,Movies,movies,false -OmarSakr,newsmast.social,Politics,politics,false -OmarSakr,newsmast.social,TV & Radio,tv_radio,false -OmarSakr,newsmast.social,Environment,environment,false -OmarSakr,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false -OmarSakr,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -OmarSakr,newsmast.social,Immigrants Rights,immigrants_rights,false -wdshow,newsmast.social,Breaking News,breaking_news,false -wdshow,newsmast.social,Government & Policy,government_policy,false -wdshow,newsmast.social,Healthcare,healthcare,false -wdshow,newsmast.social,Law & Justice,law_justice,false -wdshow,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false -wdshow,newsmast.social,Journalism & Comment,news_comment_data,true -wdshow,newsmast.social,Politics,politics,false -PriyankaJoshi,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,true -PriyankaJoshi,newsmast.social,Books & Literature,books_literature,false -PriyankaJoshi,newsmast.social,Business,business,false -PriyankaJoshi,newsmast.social,Philosophy,philosophy,false -PriyankaJoshi,newsmast.social,Environment,environment,false -JohnnieJae,newsmast.social,Activism & Civil Rights,activism_civil_rights,false -JohnnieJae,newsmast.social,Breaking News,breaking_news,false -JohnnieJae,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -JohnnieJae,newsmast.social,Disabled Voices,disabled_voices,false -JohnnieJae,newsmast.social,Government & Policy,government_policy,false -JohnnieJae,newsmast.social,Healthcare,healthcare,false -JohnnieJae,newsmast.social,Indigenous Peoples,indigenous_peoples,true -JohnnieJae,newsmast.social,Law & Justice,law_justice,false -JohnnieJae,newsmast.social,LGBTQ+,lgbtq,false -JohnnieJae,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false -JohnnieJae,newsmast.social,Movies,movies,false -JohnnieJae,newsmast.social,Journalism & Comment,news_comment_data,false -JohnnieJae,newsmast.social,Politics,politics,false -JohnnieJae,newsmast.social,TV & Radio,tv_radio,false -DrHannahBB,newsmast.social,Activism & Civil Rights,activism_civil_rights,false -DrHannahBB,newsmast.social,Disabled Voices,disabled_voices,true -DrHannahBB,newsmast.social,Government & Policy,government_policy,false -DrHannahBB,newsmast.social,Healthcare,healthcare,false -DrHannahBB,newsmast.social,LGBTQ+,lgbtq,false -DrHannahBB,newsmast.social,Music,music,false -DrHannahBB,newsmast.social,Journalism & Comment,news_comment_data,false -DrHannahBB,newsmast.social,Politics,politics,false -DrHannahBB,newsmast.social,Women’s Voices,women_voices,false -erica,newsmast.social,Books & Literature,books_literature,false -erica,newsmast.social,Breaking News,breaking_news,false -erica,newsmast.social,Humanities,humanities,false -erica,newsmast.social,Music,music,false -erica,newsmast.social,Journalism & Comment,news_comment_data,true -erica,newsmast.social,Politics,politics,false -erica,newsmast.social,TV & Radio,tv_radio,false -erica,newsmast.social,Ukraine Invasion,ukraine_invasion,false -erica,newsmast.social,Weather,weather,false -jackiealpers,newsmast.social,Books & Literature,books_literature,false -jackiealpers,newsmast.social,Food & Drink,food_drink,true -jackiealpers,newsmast.social,History,history,false -jackiealpers,newsmast.social,Photography,photography,false -jackiealpers,newsmast.social,Visual Arts,visual_arts,false -francisco_blaha,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,true -francisco_blaha,newsmast.social,Climate change,climate_change,false -francisco_blaha,newsmast.social,Poverty & Inequality,poverty_inequality,false -francisco_blaha,newsmast.social,Environment,environment,false -Pghlesbian,newsmast.social,Environment,environment,false -Pghlesbian,newsmast.social,Government & Policy,government_policy,false -Pghlesbian,newsmast.social,Healthcare,healthcare,false -Pghlesbian,newsmast.social,Law & Justice,law_justice,false -Pghlesbian,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false -Pghlesbian,newsmast.social,Journalism & Comment,news_comment_data,true -Pghlesbian,newsmast.social,Social Sciences,social_sciences,false -pam_palmater,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false -pam_palmater,newsmast.social,Activism & Civil Rights,activism_civil_rights,false -pam_palmater,newsmast.social,Climate change,climate_change,false -pam_palmater,newsmast.social,Environment,environment,false -pam_palmater,newsmast.social,Government & Policy,government_policy,false -pam_palmater,newsmast.social,Indigenous Peoples,indigenous_peoples,true -pam_palmater,newsmast.social,Journalism & Comment,news_comment_data,false -pam_palmater,newsmast.social,Women’s Voices,women_voices,false -deniseoberry,newsmast.social,AI,ai,false -deniseoberry,newsmast.social,Breaking News,breaking_news,false -deniseoberry,newsmast.social,Business,business,true -deniseoberry,newsmast.social,Government & Policy,government_policy,false -deniseoberry,newsmast.social,Law & Justice,law_justice,false -deniseoberry,newsmast.social,Markets & Finance,markets_finance,false -deniseoberry,newsmast.social,Journalism & Comment,news_comment_data,false -deniseoberry,newsmast.social,Politics,politics,false -deniseoberry,newsmast.social,Social Sciences,social_sciences,false -deniseoberry,newsmast.social,Technology,technology,false -KittyInTheMitty,newsmast.social,Social Sciences,social_sciences,false -KittyInTheMitty,newsmast.social,Disabled Voices,disabled_voices,false -KittyInTheMitty,newsmast.social,Humanities,humanities,false -KittyInTheMitty,newsmast.social,TV & Radio,tv_radio,false -KittyInTheMitty,newsmast.social,Pets,pets,false -KittyInTheMitty,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,true -KittyInTheMitty,newsmast.social,Poverty & Inequality,poverty_inequality,false -kalhan,newsmast.social,Law & Justice,law_justice,true -kalhan,newsmast.social,Activism & Civil Rights,activism_civil_rights,false -kalhan,newsmast.social,AI,ai,false -kalhan,newsmast.social,Books & Literature,books_literature,false -kalhan,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -kalhan,newsmast.social,Government & Policy,government_policy,false -kalhan,newsmast.social,History,history,false -kalhan,newsmast.social,Humanities,humanities,false -kalhan,newsmast.social,Immigrants Rights,immigrants_rights,false -kalhan,newsmast.social,Journalism & Comment,news_comment_data,false -kalhan,newsmast.social,Politics,politics,false -kalhan,newsmast.social,Social Sciences,social_sciences,false -kalhan,newsmast.social,Technology,technology,false -contessalouise,newsmast.social,Black Voices,black_voices,false -contessalouise,newsmast.social,Climate change,climate_change,true -contessalouise,newsmast.social,Disabled Voices,disabled_voices,false -contessalouise,newsmast.social,Environment,environment,false -contessalouise,newsmast.social,Food & Drink,food_drink,false -RachelBranson,newsmast.social,Technology,technology,false -RachelBranson,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false -RachelBranson,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,true -RachelBranson,newsmast.social,Biology,biology,false -RachelBranson,newsmast.social,Business,business,false -RachelBranson,newsmast.social,Creative Arts,creative_arts,false -RachelBranson,newsmast.social,Food & Drink,food_drink,false -RachelBranson,newsmast.social,Nature & Wildlife,nature_wildlife,false -RachelBranson,newsmast.social,Travel,travel,false -wytham_woods,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false -wytham_woods,newsmast.social,Biology,biology,false -wytham_woods,newsmast.social,Climate change,climate_change,false -wytham_woods,newsmast.social,Environment,environment,true -wytham_woods,newsmast.social,Photography,photography,false -wytham_woods,newsmast.social,Science,science,false -wytham_woods,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false -KevinWagar,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false -KevinWagar,newsmast.social,Space,space,false -KevinWagar,newsmast.social,Sport,sport,false -KevinWagar,newsmast.social,Travel,travel,true -KevinWagar,newsmast.social,Environment,environment,false -FrontSeatPhil,newsmast.social,Technology,technology,true -FrontSeatPhil,newsmast.social,AI,ai,false -FrontSeatPhil,newsmast.social,Space,space,false -FrontSeatPhil,newsmast.social,Ukraine Invasion,ukraine_invasion,false -FrontSeatPhil,newsmast.social,Journalism & Comment,news_comment_data,false -uthi,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false -uthi,newsmast.social,Breaking News,breaking_news,false -uthi,newsmast.social,Creative Arts,creative_arts,false -uthi,newsmast.social,Food & Drink,food_drink,false -uthi,newsmast.social,Humour,humour,false -uthi,newsmast.social,Nature & Wildlife,nature_wildlife,false -uthi,newsmast.social,Journalism & Comment,news_comment_data,true -uthi,newsmast.social,Pets,pets,false -uthi,newsmast.social,Politics,politics,false -uthi,newsmast.social,Puzzles,puzzles,false -uthi,newsmast.social,Travel,travel,false -uthi,newsmast.social,Ukraine Invasion,ukraine_invasion,false -uthi,newsmast.social,Weather,weather,false -JulieAtkinson,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,true -JulieAtkinson,newsmast.social,Food & Drink,food_drink,false -JulieAtkinson,newsmast.social,Nature & Wildlife,nature_wildlife,false -JulieAtkinson,newsmast.social,Pets,pets,false -JulieAtkinson,newsmast.social,Travel,travel,false -ipub,newsmast.social,Government & Policy,government_policy,true -ipub,newsmast.social,Markets & Finance,markets_finance,false -ipub,newsmast.social,Journalism & Comment,news_comment_data,false -ipub,newsmast.social,Politics,politics,false -ipub,newsmast.social,Technology,technology,false -SuperScienceGrl,newsmast.social,Social Sciences,social_sciences,false -SuperScienceGrl,newsmast.social,AI,ai,false -SuperScienceGrl,newsmast.social,Chemistry,chemistry,true -SuperScienceGrl,newsmast.social,Science,science,false -SuperScienceGrl,newsmast.social,Technology,technology,false -gnasralla,newsmast.social,Nature & Wildlife,nature_wildlife,false -gnasralla,newsmast.social,AI,ai,false -gnasralla,newsmast.social,Architecture & Design,architecture_design,false -gnasralla,newsmast.social,Business,business,true -gnasralla,newsmast.social,Climate change,climate_change,false -gnasralla,newsmast.social,Environment,environment,false -gnasralla,newsmast.social,History,history,false -gnasralla,newsmast.social,Humanities,humanities,false -gnasralla,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false -gnasralla,newsmast.social,Music,music,false -gnasralla,newsmast.social,Performing Arts,performing_arts,false -gnasralla,newsmast.social,Philosophy,philosophy,false -gnasralla,newsmast.social,Photography,photography,false -gnasralla,newsmast.social,Technology,technology,false -gnasralla,newsmast.social,Visual Arts,visual_arts,false -gnasralla,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -gnasralla,newsmast.social,Poverty & Inequality,poverty_inequality,false -gnasralla,newsmast.social,Immigrants Rights,immigrants_rights,false -monicareinagel,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,true -monicareinagel,newsmast.social,AI,ai,false -monicareinagel,newsmast.social,Biology,biology,false -monicareinagel,newsmast.social,Books & Literature,books_literature,false -monicareinagel,newsmast.social,Food & Drink,food_drink,false -monicareinagel,newsmast.social,Humour,humour,false -monicareinagel,newsmast.social,Philosophy,philosophy,false -monicareinagel,newsmast.social,Science,science,false -monicareinagel,newsmast.social,Social Sciences,social_sciences,false -monicareinagel,newsmast.social,Technology,technology,false -JURISTnews,newsmast.social,Social Sciences,social_sciences,false -JURISTnews,newsmast.social,Energy & Pollution,energy_pollution,false -JURISTnews,newsmast.social,Breaking News,breaking_news,false -JURISTnews,newsmast.social,Climate change,climate_change,false -JURISTnews,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -JURISTnews,newsmast.social,Environment,environment,false -JURISTnews,newsmast.social,Government & Policy,government_policy,false -JURISTnews,newsmast.social,Poverty & Inequality,poverty_inequality,false -JURISTnews,newsmast.social,Law & Justice,law_justice,true -JURISTnews,newsmast.social,Journalism & Comment,news_comment_data,false -JURISTnews,newsmast.social,Politics,politics,false -JURISTnews,newsmast.social,Ukraine Invasion,ukraine_invasion,false -JURISTnews,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false -JURISTnews,newsmast.social,Immigrants Rights,immigrants_rights,false -crazyjane125,newsmast.social,Biology,biology,false -crazyjane125,newsmast.social,Disabled Voices,disabled_voices,false -crazyjane125,newsmast.social,Food & Drink,food_drink,false -crazyjane125,newsmast.social,Nature & Wildlife,nature_wildlife,false -crazyjane125,newsmast.social,Science,science,true -Sascha_Feldmann,newsmast.social,Chemistry,chemistry,false -Sascha_Feldmann,newsmast.social,Engineering,engineering,false -Sascha_Feldmann,newsmast.social,Physics,physics,false -Sascha_Feldmann,newsmast.social,Science,science,true -Sascha_Feldmann,newsmast.social,Visual Arts,visual_arts,false -Cam_Walker,newsmast.social,Activism & Civil Rights,activism_civil_rights,false -Cam_Walker,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false -Cam_Walker,newsmast.social,Breaking News,breaking_news,false -Cam_Walker,newsmast.social,Climate change,climate_change,false -Cam_Walker,newsmast.social,Energy & Pollution,energy_pollution,false -Cam_Walker,newsmast.social,Environment,environment,true -Cam_Walker,newsmast.social,Government & Policy,government_policy,false -Cam_Walker,newsmast.social,Indigenous Peoples,indigenous_peoples,false -Cam_Walker,newsmast.social,Science,science,false -Cam_Walker,newsmast.social,Ukraine Invasion,ukraine_invasion,false -Cam_Walker,newsmast.social,Workers Rights,workers_rights,false -Cam_Walker,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false -PlantInitiative,newsmast.social,Nature & Wildlife,nature_wildlife,false -PlantInitiative,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false -PlantInitiative,newsmast.social,Climate change,climate_change,false -PlantInitiative,newsmast.social,Energy & Pollution,energy_pollution,false -PlantInitiative,newsmast.social,Environment,environment,true -SJC,newsmast.social,Black Voices,black_voices,false -SJC,newsmast.social,Business,business,false -SJC,newsmast.social,Indigenous Peoples,indigenous_peoples,false -SJC,newsmast.social,Poverty & Inequality,poverty_inequality,false -SJC,newsmast.social,LGBTQ+,lgbtq,false -SJC,newsmast.social,Journalism & Comment,news_comment_data,true -SJC,newsmast.social,Women’s Voices,women_voices,false -SJC,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -soccerhub,newsmast.social,Breaking News,breaking_news,false -soccerhub,newsmast.social,Football,football,true -soccerhub,newsmast.social,Journalism & Comment,news_comment_data,false -soccerhub,newsmast.social,Sport,sport,false -catcafesandiego,newsmast.social,Business,business,false -catcafesandiego,newsmast.social,Journalism & Comment,news_comment_data,false -catcafesandiego,newsmast.social,Pets,pets,true -catcafesandiego,newsmast.social,Photography,photography,false -catcafesandiego,newsmast.social,Travel,travel,false -nyeinygn,newsmast.social,Breaking News,breaking_news,false -nyeinygn,newsmast.social,Politics,politics,false -nyeinygn,newsmast.social,Ukraine Invasion,ukraine_invasion,false -nyeinygn,newsmast.social,Weather,weather,false -nyeinygn,newsmast.social,Journalism & Comment,news_comment_data,true -vegannutrition,newsmast.social,Energy & Pollution,energy_pollution,false -vegannutrition,newsmast.social,Markets & Finance,markets_finance,false -vegannutrition,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,true -vegannutrition,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false -vegannutrition,newsmast.social,Biology,biology,false -vegannutrition,newsmast.social,Climate change,climate_change,false -vegannutrition,newsmast.social,Environment,environment,false -vegannutrition,newsmast.social,Food & Drink,food_drink,false -vegannutrition,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false -vegannutrition,newsmast.social,Poverty & Inequality,poverty_inequality,false -vegannutrition,newsmast.social,Nature & Wildlife,nature_wildlife,false -vegannutrition,newsmast.social,Science,science,false -vegannutrition,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -Bell,newsmast.social,Government & Policy,government_policy,false -Bell,newsmast.social,AI,ai,false -Bell,newsmast.social,Business,business,false -Bell,newsmast.social,Engineering,engineering,false -Bell,newsmast.social,Environment,environment,false -Bell,newsmast.social,Mathematics,mathematics,false -Bell,newsmast.social,Physics,physics,false -Bell,newsmast.social,Science,science,true -Bell,newsmast.social,Technology,technology,false -jessa,newsmast.social,Government & Policy,government_policy,true -jessa,newsmast.social,Books & Literature,books_literature,false -jessa,newsmast.social,Chemistry,chemistry,false -jessa,newsmast.social,Creative Arts,creative_arts,false -jessa,newsmast.social,Disabled Voices,disabled_voices,false -jessa,newsmast.social,Engineering,engineering,false -jessa,newsmast.social,Gaming,gaming,false -jessa,newsmast.social,History,history,false -jessa,newsmast.social,Humanities,humanities,false -jessa,newsmast.social,Humour,humour,false -jessa,newsmast.social,LGBTQ+,lgbtq,false -jessa,newsmast.social,Performing Arts,performing_arts,false -jessa,newsmast.social,Puzzles,puzzles,false -jessa,newsmast.social,Science,science,false -jessa,newsmast.social,Social Sciences,social_sciences,false -jessa,newsmast.social,Women’s Voices,women_voices,false -jessa,newsmast.social,Workers Rights,workers_rights,false -jessa,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false -Iyad_Abumoghli,newsmast.social,Government & Policy,government_policy,false -Iyad_Abumoghli,newsmast.social,Energy & Pollution,energy_pollution,false -Iyad_Abumoghli,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false -Iyad_Abumoghli,newsmast.social,Climate change,climate_change,false -Iyad_Abumoghli,newsmast.social,Environment,environment,true -Iyad_Abumoghli,newsmast.social,Law & Justice,law_justice,false -Iyad_Abumoghli,newsmast.social,Photography,photography,false -Iyad_Abumoghli,newsmast.social,Science,science,false -Iyad_Abumoghli,newsmast.social,Space,space,false -Iyad_Abumoghli,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false -indiajade_68,newsmast.social,Technology,technology,false -indiajade_68,newsmast.social,Nature & Wildlife,nature_wildlife,false -indiajade_68,newsmast.social,Architecture & Design,architecture_design,false -indiajade_68,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,true -indiajade_68,newsmast.social,Biology,biology,false -indiajade_68,newsmast.social,Chemistry,chemistry,false -indiajade_68,newsmast.social,Climate change,climate_change,false -indiajade_68,newsmast.social,Energy & Pollution,energy_pollution,false -indiajade_68,newsmast.social,Environment,environment,false -indiajade_68,newsmast.social,Photography,photography,false -indiajade_68,newsmast.social,Science,science,false -indiajade_68,newsmast.social,Visual Arts,visual_arts,false -indiajade_68,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false -indiajade_68,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -indiajade_68,newsmast.social,Poverty & Inequality,poverty_inequality,false -askchefdennis,newsmast.social,Breaking News,breaking_news,false -askchefdennis,newsmast.social,Technology,technology,true -askchefdennis,newsmast.social,AI,ai,false -askchefdennis,newsmast.social,Food & Drink,food_drink,false -aungmyatmoe,newsmast.social,Activism & Civil Rights,activism_civil_rights,false -aungmyatmoe,newsmast.social,Black Voices,black_voices,false -aungmyatmoe,newsmast.social,Disabled Voices,disabled_voices,false -aungmyatmoe,newsmast.social,Healthcare,healthcare,false -aungmyatmoe,newsmast.social,Immigrants Rights,immigrants_rights,false -aungmyatmoe,newsmast.social,Indigenous Peoples,indigenous_peoples,false -aungmyatmoe,newsmast.social,Law & Justice,law_justice,false -aungmyatmoe,newsmast.social,LGBTQ+,lgbtq,false -aungmyatmoe,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false -aungmyatmoe,newsmast.social,Women’s Voices,women_voices,false -aungmyatmoe,newsmast.social,Workers Rights,workers_rights,false -aungmyatmoe,newsmast.social,Government & Policy,government_policy,true -Superpolitics,newsmast.social,Activism & Civil Rights,activism_civil_rights,false -Superpolitics,newsmast.social,Architecture & Design,architecture_design,false -Superpolitics,newsmast.social,Black Voices,black_voices,true -Superpolitics,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -Superpolitics,newsmast.social,Disabled Voices,disabled_voices,false -Superpolitics,newsmast.social,Football,football,false -Superpolitics,newsmast.social,Gaming,gaming,false -Superpolitics,newsmast.social,Government & Policy,government_policy,false -Superpolitics,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false -Superpolitics,newsmast.social,Immigrants Rights,immigrants_rights,false -Superpolitics,newsmast.social,Indigenous Peoples,indigenous_peoples,false -Superpolitics,newsmast.social,Poverty & Inequality,poverty_inequality,false -Superpolitics,newsmast.social,Law & Justice,law_justice,false -Superpolitics,newsmast.social,LGBTQ+,lgbtq,false -Superpolitics,newsmast.social,Movies,movies,false -Superpolitics,newsmast.social,Music,music,false -Superpolitics,newsmast.social,Performing Arts,performing_arts,false -Superpolitics,newsmast.social,Photography,photography,false -Superpolitics,newsmast.social,Sport,sport,false -Superpolitics,newsmast.social,TV & Radio,tv_radio,false -Superpolitics,newsmast.social,Visual Arts,visual_arts,false -Superpolitics,newsmast.social,Women’s Voices,women_voices,false -Superpolitics,newsmast.social,Workers Rights,workers_rights,false -Superpolitics,newsmast.social,Environment,environment,false -thepetsnet,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false -thepetsnet,newsmast.social,Humour,humour,false -thepetsnet,newsmast.social,Nature & Wildlife,nature_wildlife,false -thepetsnet,newsmast.social,Pets,pets,true -thepetsnet,newsmast.social,Travel,travel,false -mongabay,newsmast.social,Nature & Wildlife,nature_wildlife,false -mongabay,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false -mongabay,newsmast.social,Biology,biology,false -mongabay,newsmast.social,Climate change,climate_change,false -mongabay,newsmast.social,Environment,environment,false -mongabay,newsmast.social,Journalism & Comment,news_comment_data,true -PolGeoNow,newsmast.social,Government & Policy,government_policy,false -PolGeoNow,newsmast.social,Biology,biology,false -PolGeoNow,newsmast.social,Breaking News,breaking_news,false -PolGeoNow,newsmast.social,Chemistry,chemistry,false -PolGeoNow,newsmast.social,Engineering,engineering,false -PolGeoNow,newsmast.social,Mathematics,mathematics,false -PolGeoNow,newsmast.social,Physics,physics,false -PolGeoNow,newsmast.social,Politics,politics,false -PolGeoNow,newsmast.social,Science,science,false -PolGeoNow,newsmast.social,Social Sciences,social_sciences,false -PolGeoNow,newsmast.social,Space,space,false -PolGeoNow,newsmast.social,Journalism & Comment,news_comment_data,true -PolGeoNow,newsmast.social,Immigrants Rights,immigrants_rights,false -asausagehastwo,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false -asausagehastwo,newsmast.social,Travel,travel,false -asausagehastwo,newsmast.social,Climate change,climate_change,false -asausagehastwo,newsmast.social,Environment,environment,false -asausagehastwo,newsmast.social,Food & Drink,food_drink,true -asausagehastwo,newsmast.social,Nature & Wildlife,nature_wildlife,false -asausagehastwo,newsmast.social,Journalism & Comment,news_comment_data,false -dennisfparker,newsmast.social,Nature & Wildlife,nature_wildlife,false -dennisfparker,newsmast.social,Social Sciences,social_sciences,false -dennisfparker,newsmast.social,Ukraine Invasion,ukraine_invasion,false -dennisfparker,newsmast.social,Weather,weather,false -dennisfparker,newsmast.social,Activism & Civil Rights,activism_civil_rights,false -dennisfparker,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,true -dennisfparker,newsmast.social,Breaking News,breaking_news,false -dennisfparker,newsmast.social,Climate change,climate_change,false -dennisfparker,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -dennisfparker,newsmast.social,Energy & Pollution,energy_pollution,false -dennisfparker,newsmast.social,Environment,environment,false -dennisfparker,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false -dennisfparker,newsmast.social,Poverty & Inequality,poverty_inequality,false -dennisfparker,newsmast.social,Journalism & Comment,news_comment_data,false -dennisfparker,newsmast.social,Politics,politics,false -dennisfparker,newsmast.social,Immigrants Rights,immigrants_rights,false -jsit,newsmast.social,Social Media,social_media,false -jsit,newsmast.social,Ukraine Invasion,ukraine_invasion,false -jsit,newsmast.social,Weather,weather,false -jsit,newsmast.social,Breaking News,breaking_news,true -jsit,newsmast.social,Journalism & Comment,news_comment_data,false -elisexavier,newsmast.social,Creative Arts,creative_arts,false -elisexavier,newsmast.social,Biology,biology,false -elisexavier,newsmast.social,Pets,pets,false -elisexavier,newsmast.social,Physics,physics,false -elisexavier,newsmast.social,Science,science,true -ilovefilm,newsmast.social,Government & Policy,government_policy,false -ilovefilm,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false -ilovefilm,newsmast.social,Social Sciences,social_sciences,false -ilovefilm,newsmast.social,Space,space,false -ilovefilm,newsmast.social,Technology,technology,false -ilovefilm,newsmast.social,TV & Radio,tv_radio,false -ilovefilm,newsmast.social,Women’s Voices,women_voices,false -ilovefilm,newsmast.social,Activism & Civil Rights,activism_civil_rights,true -ilovefilm,newsmast.social,AI,ai,false -ilovefilm,newsmast.social,Climate change,climate_change,false -ilovefilm,newsmast.social,Gaming,gaming,false -ilovefilm,newsmast.social,Healthcare,healthcare,false -ilovefilm,newsmast.social,History,history,false -ilovefilm,newsmast.social,LGBTQ+,lgbtq,false -ilovefilm,newsmast.social,Movies,movies,false -ilovefilm,newsmast.social,Music,music,false -ilovefilm,newsmast.social,Philosophy,philosophy,false -ilovefilm,newsmast.social,Photography,photography,false -ilovefilm,newsmast.social,Physics,physics,false -ilovefilm,newsmast.social,Science,science,false -ilovefilm,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false -ilovefilm,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -RewildScotland,newsmast.social,Nature & Wildlife,nature_wildlife,false -RewildScotland,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,true -RewildScotland,newsmast.social,Philosophy,philosophy,false -RewildScotland,newsmast.social,Environment,environment,false -vijay,newsmast.social,AI,ai,true -vijay,newsmast.social,Markets & Finance,markets_finance,false -vijay,newsmast.social,Ukraine Invasion,ukraine_invasion,false -vijay,newsmast.social,Activism & Civil Rights,activism_civil_rights,false -vijay,newsmast.social,Black Voices,black_voices,false -vijay,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false -vijay,newsmast.social,Disabled Voices,disabled_voices,false -vijay,newsmast.social,Immigrants Rights,immigrants_rights,false -vijay,newsmast.social,Indigenous Peoples,indigenous_peoples,false -vijay,newsmast.social,Humour,humour,false -vijay,newsmast.social,Breaking News,breaking_news,false -vijay,newsmast.social,Journalism & Comment,news_comment_data,false -vijay,newsmast.social,Social Media,social_media,false -vijay,newsmast.social,Weather,weather,false -vijay,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -vijay,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false -vijay,newsmast.social,Chemistry,chemistry,false -vijay,newsmast.social,Poverty & Inequality,poverty_inequality,false -vijay,newsmast.social,Government & Policy,government_policy,false -vijay,newsmast.social,Academia & Research,academia_research,false -vijay,newsmast.social,Healthcare,healthcare,false -vijay,newsmast.social,Law & Justice,law_justice,false -vijay,newsmast.social,Politics,politics,false -vijay,newsmast.social,US Politics,us_politics,false -vijay,newsmast.social,Environment,environment,false -vijay,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false -vijay,newsmast.social,Climate change,climate_change,false -vijay,newsmast.social,Energy & Pollution,energy_pollution,false -vijay,newsmast.social,LGBTQ+,lgbtq,false -vijay,newsmast.social,Women’s Voices,women_voices,false -vijay,newsmast.social,Business,business,false -vijay,newsmast.social,Workers Rights,workers_rights,false -vijay,newsmast.social,Programming,programming,false -vijay,newsmast.social,Science,science,false -vijay,newsmast.social,Biology,biology,false -vijay,newsmast.social,Engineering,engineering,false -vijay,newsmast.social,Mathematics,mathematics,false -vijay,newsmast.social,Physics,physics,false -vijay,newsmast.social,Space,space,false -vijay,newsmast.social,Humanities,humanities,false -vijay,newsmast.social,Social Sciences,social_sciences,false -vijay,newsmast.social,History,history,false -vijay,newsmast.social,Philosophy,philosophy,false -vijay,newsmast.social,Architecture & Design,architecture_design,false -vijay,newsmast.social,Books & Literature,books_literature,false -vijay,newsmast.social,Music,music,false -vijay,newsmast.social,Performing Arts,performing_arts,false -vijay,newsmast.social,Photography,photography,false -vijay,newsmast.social,TV & Radio,tv_radio,false -vijay,newsmast.social,Visual Arts,visual_arts,false -vijay,newsmast.social,Sport,sport,false -vijay,newsmast.social,Football,football,false -vijay,newsmast.social,US Sport,us_sport,false -vijay,newsmast.social,Creative Arts,creative_arts,false -vijay,newsmast.social,Nature & Wildlife,nature_wildlife,false -vijay,newsmast.social,Pets,pets,false -vijay,newsmast.social,Puzzles,puzzles,false -vijay,newsmast.social,Travel,travel,false -vijay,newsmast.social,Food & Drink,food_drink,false -vijay,newsmast.social,Technology,technology,false -vijay,newsmast.social,Gaming,gaming,false -vijay,newsmast.social,Movies,movies,false -oceanknigge,newsmast.social,Architecture & Design,architecture_design,false -oceanknigge,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,true -oceanknigge,newsmast.social,Climate change,climate_change,false -oceanknigge,newsmast.social,Environment,environment,false -mikea,newsmast.social,Nature & Wildlife,nature_wildlife,false -mikea,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false -mikea,newsmast.social,Business,business,false -mikea,newsmast.social,Energy & Pollution,energy_pollution,false -mikea,newsmast.social,Environment,environment,false -mikea,newsmast.social,Politics,politics,false -mikea,newsmast.social,Technology,technology,false -mikea,newsmast.social,Climate change,climate_change,true -mikea,newsmast.social,Breaking News,breaking_news,false -allaroundoz,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false -allaroundoz,newsmast.social,Food & Drink,food_drink,false -allaroundoz,newsmast.social,Nature & Wildlife,nature_wildlife,false -allaroundoz,newsmast.social,Puzzles,puzzles,false -allaroundoz,newsmast.social,Travel,travel,true -benogeh,newsmast.social,Nature & Wildlife,nature_wildlife,false -benogeh,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false -benogeh,newsmast.social,Climate change,climate_change,false -benogeh,newsmast.social,Energy & Pollution,energy_pollution,false -benogeh,newsmast.social,Environment,environment,true -alanwelch,newsmast.social,Breaking News,breaking_news,false -alanwelch,newsmast.social,Journalism & Comment,news_comment_data,false -alanwelch,newsmast.social,Politics,politics,false -alanwelch,newsmast.social,Ukraine Invasion,ukraine_invasion,false -alanwelch,newsmast.social,Weather,weather,true -AFalcon,newsmast.social,Government & Policy,government_policy,false -AFalcon,newsmast.social,Business,business,false -AFalcon,newsmast.social,Creative Arts,creative_arts,true -AFalcon,newsmast.social,Football,football,false -AFalcon,newsmast.social,Politics,politics,false -AFalcon,newsmast.social,Sport,sport,false -CanWCC,newsmast.social,Activism & Civil Rights,activism_civil_rights,false -CanWCC,newsmast.social,Black Voices,black_voices,false -CanWCC,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -CanWCC,newsmast.social,Disabled Voices,disabled_voices,false -CanWCC,newsmast.social,Immigrants Rights,immigrants_rights,false -CanWCC,newsmast.social,Indigenous Peoples,indigenous_peoples,false -CanWCC,newsmast.social,Poverty & Inequality,poverty_inequality,false -CanWCC,newsmast.social,LGBTQ+,lgbtq,false -CanWCC,newsmast.social,Social Sciences,social_sciences,false -CanWCC,newsmast.social,Environment,environment,false -CanWCC,newsmast.social,Women’s Voices,women_voices,true -CanWCC,newsmast.social,Workers Rights,workers_rights,false -CanWCC,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false -WilmotsWay,newsmast.social,Food & Drink,food_drink,false -WilmotsWay,newsmast.social,Humour,humour,false -WilmotsWay,newsmast.social,Movies,movies,false -WilmotsWay,newsmast.social,Music,music,false -WilmotsWay,newsmast.social,Journalism & Comment,news_comment_data,false -WilmotsWay,newsmast.social,Puzzles,puzzles,false -WilmotsWay,newsmast.social,Breaking News,breaking_news,false -WilmotsWay,newsmast.social,Sport,sport,false -WilmotsWay,newsmast.social,Travel,travel,false -WilmotsWay,newsmast.social,TV & Radio,tv_radio,false -WilmotsWay,newsmast.social,Weather,weather,false -WilmotsWay,newsmast.social,Football,football,true -devenperez,newsmast.social,AI,ai,false -devenperez,newsmast.social,Engineering,engineering,true -devenperez,newsmast.social,Physics,physics,false -devenperez,newsmast.social,Space,space,false -devenperez,newsmast.social,Technology,technology,false -Aysegul,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,true -Aysegul,newsmast.social,Activism & Civil Rights,activism_civil_rights,false -Aysegul,newsmast.social,Architecture & Design,architecture_design,false -Aysegul,newsmast.social,Creative Arts,creative_arts,false -Aysegul,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -Aysegul,newsmast.social,Engineering,engineering,false -Aysegul,newsmast.social,Food & Drink,food_drink,false -Aysegul,newsmast.social,LGBTQ+,lgbtq,false -Aysegul,newsmast.social,Movies,movies,false -Aysegul,newsmast.social,Music,music,false -Aysegul,newsmast.social,Philosophy,philosophy,false -Aysegul,newsmast.social,Science,science,false -Aysegul,newsmast.social,Sport,sport,false -Aysegul,newsmast.social,TV & Radio,tv_radio,false -Aysegul,newsmast.social,Weather,weather,false -Aysegul,newsmast.social,Workers Rights,workers_rights,false -Aysegul,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false -tderyugina,newsmast.social,Social Sciences,social_sciences,true -tderyugina,newsmast.social,Government & Policy,government_policy,false -tderyugina,newsmast.social,Climate change,climate_change,false -tderyugina,newsmast.social,Energy & Pollution,energy_pollution,false -tderyugina,newsmast.social,Environment,environment,false -tderyugina,newsmast.social,Ukraine Invasion,ukraine_invasion,false -tderyugina,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -tderyugina,newsmast.social,Immigrants Rights,immigrants_rights,false -steve116,newsmast.social,Architecture & Design,architecture_design,false -steve116,newsmast.social,Gaming,gaming,false -steve116,newsmast.social,Movies,movies,false -steve116,newsmast.social,Music,music,false -steve116,newsmast.social,Performing Arts,performing_arts,false -steve116,newsmast.social,Photography,photography,false -steve116,newsmast.social,TV & Radio,tv_radio,false -steve116,newsmast.social,Visual Arts,visual_arts,true -steve116,newsmast.social,Law & Justice,law_justice,false -StephenScouted,newsmast.social,Football,football,true -StephenScouted,newsmast.social,History,history,false -StephenScouted,newsmast.social,Sport,sport,false -StephenScouted,newsmast.social,Travel,travel,false -Origami,newsmast.social,Breaking News,breaking_news,false -Origami,newsmast.social,Business,business,false -Origami,newsmast.social,Environment,environment,false -Origami,newsmast.social,Markets & Finance,markets_finance,false -Origami,newsmast.social,Journalism & Comment,news_comment_data,false -Origami,newsmast.social,Weather,weather,true -matt_cary,newsmast.social,Government & Policy,government_policy,false -matt_cary,newsmast.social,AI,ai,false -matt_cary,newsmast.social,Black Voices,black_voices,false -matt_cary,newsmast.social,Disabled Voices,disabled_voices,false -matt_cary,newsmast.social,Immigrants Rights,immigrants_rights,false -matt_cary,newsmast.social,Law & Justice,law_justice,true -matt_cary,newsmast.social,LGBTQ+,lgbtq,false -matt_cary,newsmast.social,Politics,politics,false -matt_cary,newsmast.social,Social Sciences,social_sciences,false -matt_cary,newsmast.social,Women’s Voices,women_voices,false -matt_cary,newsmast.social,Workers Rights,workers_rights,false -WestWeather,newsmast.social,Nature & Wildlife,nature_wildlife,false -WestWeather,newsmast.social,Environment,environment,false -WestWeather,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false -WestWeather,newsmast.social,Climate change,climate_change,false -WestWeather,newsmast.social,Energy & Pollution,energy_pollution,false -WestWeather,newsmast.social,Weather,weather,true -prabhakar,newsmast.social,Journalism & Comment,news_comment_data,false -prabhakar,newsmast.social,Social Media,social_media,false -prabhakar,newsmast.social,Ukraine Invasion,ukraine_invasion,false -prabhakar,newsmast.social,Weather,weather,false -prabhakar,newsmast.social,Breaking News,breaking_news,true -chloeariellle,newsmast.social,Social Sciences,social_sciences,true -chloeariellle,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false -chloeariellle,newsmast.social,Activism & Civil Rights,activism_civil_rights,false -chloeariellle,newsmast.social,AI,ai,false -chloeariellle,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false -chloeariellle,newsmast.social,Climate change,climate_change,false -chloeariellle,newsmast.social,Environment,environment,false -chloeariellle,newsmast.social,Food & Drink,food_drink,false -chloeariellle,newsmast.social,Journalism & Comment,news_comment_data,false -chloeariellle,newsmast.social,Science,science,false -chloeariellle,newsmast.social,Technology,technology,false -arlettecontrers,newsmast.social,Social Sciences,social_sciences,false -arlettecontrers,newsmast.social,AI,ai,false -arlettecontrers,newsmast.social,Journalism & Comment,news_comment_data,false -arlettecontrers,newsmast.social,Politics,politics,false -arlettecontrers,newsmast.social,Poverty & Inequality,poverty_inequality,true -Diva_7057,newsmast.social,Breaking News,breaking_news,false -Diva_7057,newsmast.social,Food & Drink,food_drink,false -Diva_7057,newsmast.social,Humour,humour,false -Diva_7057,newsmast.social,Movies,movies,false -Diva_7057,newsmast.social,Performing Arts,performing_arts,false -Diva_7057,newsmast.social,Science,science,false -Diva_7057,newsmast.social,Social Media,social_media,false -Diva_7057,newsmast.social,TV & Radio,tv_radio,false -Diva_7057,newsmast.social,Weather,weather,false -Diva_7057,newsmast.social,Books & Literature,books_literature,true -LynnNanos,newsmast.social,Activism & Civil Rights,activism_civil_rights,false -LynnNanos,newsmast.social,Government & Policy,government_policy,false -LynnNanos,newsmast.social,Law & Justice,law_justice,false -LynnNanos,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false -LynnNanos,newsmast.social,Science,science,false -LynnNanos,newsmast.social,Social Sciences,social_sciences,true -LynnNanos,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -itsmarta101,newsmast.social,Activism & Civil Rights,activism_civil_rights,false -itsmarta101,newsmast.social,Breaking News,breaking_news,false -itsmarta101,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -itsmarta101,newsmast.social,LGBTQ+,lgbtq,true -itsmarta101,newsmast.social,Movies,movies,false -itsmarta101,newsmast.social,Music,music,false -itsmarta101,newsmast.social,Journalism & Comment,news_comment_data,false -itsmarta101,newsmast.social,TV & Radio,tv_radio,false -itsmarta101,newsmast.social,Women’s Voices,women_voices,false -clairejuliaart,newsmast.social,Activism & Civil Rights,activism_civil_rights,false -clairejuliaart,newsmast.social,Disabled Voices,disabled_voices,false -clairejuliaart,newsmast.social,Immigrants Rights,immigrants_rights,false -clairejuliaart,newsmast.social,LGBTQ+,lgbtq,false -clairejuliaart,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false -clairejuliaart,newsmast.social,Women’s Voices,women_voices,false -clairejuliaart,newsmast.social,Books & Literature,books_literature,false -clairejuliaart,newsmast.social,Creative Arts,creative_arts,false -clairejuliaart,newsmast.social,Humanities,humanities,false -clairejuliaart,newsmast.social,Humour,humour,false -clairejuliaart,newsmast.social,Nature & Wildlife,nature_wildlife,false -clairejuliaart,newsmast.social,Philosophy,philosophy,false -clairejuliaart,newsmast.social,Social Sciences,social_sciences,false -clairejuliaart,newsmast.social,Travel,travel,false -clairejuliaart,newsmast.social,Visual Arts,visual_arts,true -jmenka,newsmast.social,Creative Arts,creative_arts,false -jmenka,newsmast.social,Gaming,gaming,false -jmenka,newsmast.social,LGBTQ+,lgbtq,false -jmenka,newsmast.social,Movies,movies,false -jmenka,newsmast.social,Performing Arts,performing_arts,false -jmenka,newsmast.social,Photography,photography,false -jmenka,newsmast.social,Visual Arts,visual_arts,true -DrGCrisp,newsmast.social,Nature & Wildlife,nature_wildlife,false -DrGCrisp,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false -DrGCrisp,newsmast.social,Biology,biology,false -DrGCrisp,newsmast.social,Climate change,climate_change,true -DrGCrisp,newsmast.social,Energy & Pollution,energy_pollution,false -DrGCrisp,newsmast.social,Environment,environment,false -DrGCrisp,newsmast.social,Humanities,humanities,false -DrGCrisp,newsmast.social,Poverty & Inequality,poverty_inequality,false -DrGCrisp,newsmast.social,Science,science,false -DrGCrisp,newsmast.social,Social Sciences,social_sciences,false -DrGCrisp,newsmast.social,Space,space,false -DrGCrisp,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false -DrGCrisp,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -CBhattacharji,newsmast.social,Energy & Pollution,energy_pollution,true -CBhattacharji,newsmast.social,Business,business,false -CBhattacharji,newsmast.social,Climate change,climate_change,false -CBhattacharji,newsmast.social,History,history,false -CBhattacharji,newsmast.social,Science,science,false -CBhattacharji,newsmast.social,Journalism & Comment,news_comment_data,false -TheQueerBookish,newsmast.social,Books & Literature,books_literature,true -TheQueerBookish,newsmast.social,Creative Arts,creative_arts,false -TheQueerBookish,newsmast.social,Disabled Voices,disabled_voices,false -TheQueerBookish,newsmast.social,LGBTQ+,lgbtq,false -TheQueerBookish,newsmast.social,Women’s Voices,women_voices,false -SustMeme,newsmast.social,Technology,technology,false -SustMeme,newsmast.social,Business,business,false -SustMeme,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false -SustMeme,newsmast.social,Climate change,climate_change,false -SustMeme,newsmast.social,Energy & Pollution,energy_pollution,false -SustMeme,newsmast.social,Engineering,engineering,false -SustMeme,newsmast.social,Environment,environment,true -SustMeme,newsmast.social,Science,science,false -alawriedejesus,newsmast.social,Government & Policy,government_policy,false -alawriedejesus,newsmast.social,Activism & Civil Rights,activism_civil_rights,false -alawriedejesus,newsmast.social,LGBTQ+,lgbtq,true -alawriedejesus,newsmast.social,Music,music,false -alawriedejesus,newsmast.social,Politics,politics,false -icey_mark,newsmast.social,Government & Policy,government_policy,false -icey_mark,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false -icey_mark,newsmast.social,Breaking News,breaking_news,false -icey_mark,newsmast.social,Climate change,climate_change,true -icey_mark,newsmast.social,Energy & Pollution,energy_pollution,false -icey_mark,newsmast.social,Environment,environment,false -icey_mark,newsmast.social,Football,football,false -icey_mark,newsmast.social,History,history,false -icey_mark,newsmast.social,Poverty & Inequality,poverty_inequality,false -icey_mark,newsmast.social,Journalism & Comment,news_comment_data,false -icey_mark,newsmast.social,Physics,physics,false -icey_mark,newsmast.social,Space,space,false -icey_mark,newsmast.social,Ukraine Invasion,ukraine_invasion,false -TheEnglishLion,newsmast.social,Breaking News,breaking_news,false -TheEnglishLion,newsmast.social,Football,football,true -TheEnglishLion,newsmast.social,Movies,movies,false -TheEnglishLion,newsmast.social,Journalism & Comment,news_comment_data,false -TheEnglishLion,newsmast.social,Sport,sport,false -AlexShvartsman,newsmast.social,AI,ai,false -AlexShvartsman,newsmast.social,Books & Literature,books_literature,true -AlexShvartsman,newsmast.social,Breaking News,breaking_news,false -AlexShvartsman,newsmast.social,Humanities,humanities,false -AlexShvartsman,newsmast.social,Technology,technology,false -AlexShvartsman,newsmast.social,TV & Radio,tv_radio,false -AlexShvartsman,newsmast.social,Ukraine Invasion,ukraine_invasion,false -jenandreacchi,newsmast.social,Social Sciences,social_sciences,false -jenandreacchi,newsmast.social,Books & Literature,books_literature,false -jenandreacchi,newsmast.social,LGBTQ+,lgbtq,true -jenandreacchi,newsmast.social,TV & Radio,tv_radio,false -jenandreacchi,newsmast.social,Environment,environment,false -Reuben,newsmast.social,Football,football,false -Reuben,newsmast.social,Government & Policy,government_policy,false -Reuben,newsmast.social,Healthcare,healthcare,false -Reuben,newsmast.social,Journalism & Comment,news_comment_data,true -Reuben,newsmast.social,Sport,sport,false -nancymangano,newsmast.social,Creative Arts,creative_arts,true -nancymangano,newsmast.social,Books & Literature,books_literature,false -nancymangano,newsmast.social,Government & Policy,government_policy,false -nancymangano,newsmast.social,Movies,movies,false -nancymangano,newsmast.social,Journalism & Comment,news_comment_data,false -TasmanianTimes,newsmast.social,Government & Policy,government_policy,false -TasmanianTimes,newsmast.social,Energy & Pollution,energy_pollution,false -TasmanianTimes,newsmast.social,Nature & Wildlife,nature_wildlife,false -TasmanianTimes,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false -TasmanianTimes,newsmast.social,Climate change,climate_change,false -TasmanianTimes,newsmast.social,Journalism & Comment,news_comment_data,true -dannyweller,newsmast.social,Sport,sport,false -dannyweller,newsmast.social,Government & Policy,government_policy,false -dannyweller,newsmast.social,Workers Rights,workers_rights,false -dannyweller,newsmast.social,Music,music,false -dannyweller,newsmast.social,Travel,travel,false -dannyweller,newsmast.social,Creative Arts,creative_arts,false -dannyweller,newsmast.social,Movies,movies,false -dannyweller,newsmast.social,Breaking News,breaking_news,false -dannyweller,newsmast.social,Journalism & Comment,news_comment_data,true -dannyweller,newsmast.social,AI,ai,false -dannyweller,newsmast.social,Science,science,false -dannyweller,newsmast.social,History,history,false -dannyweller,newsmast.social,Performing Arts,performing_arts,false -dannyweller,newsmast.social,Photography,photography,false -dannyweller,newsmast.social,Immigrants Rights,immigrants_rights,false -dannyweller,newsmast.social,Politics,politics,false -dannyweller,newsmast.social,Food & Drink,food_drink,false -fitinfounder,newsmast.social,Activism & Civil Rights,activism_civil_rights,false -fitinfounder,newsmast.social,Architecture & Design,architecture_design,false -fitinfounder,newsmast.social,Black Voices,black_voices,false -fitinfounder,newsmast.social,Business,business,false -fitinfounder,newsmast.social,Disabled Voices,disabled_voices,false -fitinfounder,newsmast.social,Immigrants Rights,immigrants_rights,false -fitinfounder,newsmast.social,Indigenous Peoples,indigenous_peoples,false -fitinfounder,newsmast.social,Law & Justice,law_justice,false -fitinfounder,newsmast.social,LGBTQ+,lgbtq,false -fitinfounder,newsmast.social,Women’s Voices,women_voices,true -fitinfounder,newsmast.social,Environment,environment,false -fitinfounder,newsmast.social,Workers Rights,workers_rights,false -drshaunanderson,newsmast.social,Social Sciences,social_sciences,false -drshaunanderson,newsmast.social,Architecture & Design,architecture_design,false -drshaunanderson,newsmast.social,Business,business,false -drshaunanderson,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -drshaunanderson,newsmast.social,Football,football,false -drshaunanderson,newsmast.social,Gaming,gaming,false -drshaunanderson,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false -drshaunanderson,newsmast.social,Poverty & Inequality,poverty_inequality,false -drshaunanderson,newsmast.social,Markets & Finance,markets_finance,false -drshaunanderson,newsmast.social,Movies,movies,false -drshaunanderson,newsmast.social,Music,music,false -drshaunanderson,newsmast.social,Performing Arts,performing_arts,false -drshaunanderson,newsmast.social,Photography,photography,false -drshaunanderson,newsmast.social,Sport,sport,true -drshaunanderson,newsmast.social,TV & Radio,tv_radio,false -drshaunanderson,newsmast.social,Visual Arts,visual_arts,false -drshaunanderson,newsmast.social,Environment,environment,false -drshaunanderson,newsmast.social,Immigrants Rights,immigrants_rights,false -beck,newsmast.social,Activism & Civil Rights,activism_civil_rights,false -beck,newsmast.social,AI,ai,false -beck,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false -beck,newsmast.social,Biology,biology,false -beck,newsmast.social,Black Voices,black_voices,false -beck,newsmast.social,Breaking News,breaking_news,false -beck,newsmast.social,Chemistry,chemistry,false -beck,newsmast.social,Climate change,climate_change,false -beck,newsmast.social,Creative Arts,creative_arts,false -beck,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -beck,newsmast.social,Disabled Voices,disabled_voices,false -beck,newsmast.social,Energy & Pollution,energy_pollution,false -beck,newsmast.social,Engineering,engineering,false -beck,newsmast.social,Environment,environment,true -beck,newsmast.social,Food & Drink,food_drink,false -beck,newsmast.social,Government & Policy,government_policy,false -beck,newsmast.social,Healthcare,healthcare,false -beck,newsmast.social,Humour,humour,false -beck,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false -beck,newsmast.social,Immigrants Rights,immigrants_rights,false -beck,newsmast.social,Indigenous Peoples,indigenous_peoples,false -beck,newsmast.social,Poverty & Inequality,poverty_inequality,false -beck,newsmast.social,Law & Justice,law_justice,false -beck,newsmast.social,LGBTQ+,lgbtq,false -beck,newsmast.social,Mathematics,mathematics,false -beck,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false -beck,newsmast.social,Nature & Wildlife,nature_wildlife,false -beck,newsmast.social,Journalism & Comment,news_comment_data,false -beck,newsmast.social,Pets,pets,false -beck,newsmast.social,Physics,physics,false -beck,newsmast.social,Politics,politics,false -beck,newsmast.social,Puzzles,puzzles,false -beck,newsmast.social,Science,science,false -beck,newsmast.social,Space,space,false -beck,newsmast.social,Technology,technology,false -beck,newsmast.social,Travel,travel,false -beck,newsmast.social,Ukraine Invasion,ukraine_invasion,false -beck,newsmast.social,Weather,weather,false -beck,newsmast.social,Women’s Voices,women_voices,false -beck,newsmast.social,Workers Rights,workers_rights,false -GraceReckers,newsmast.social,Government & Policy,government_policy,false -GraceReckers,newsmast.social,Energy & Pollution,energy_pollution,false -GraceReckers,newsmast.social,Activism & Civil Rights,activism_civil_rights,false -GraceReckers,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false -GraceReckers,newsmast.social,Black Voices,black_voices,false -GraceReckers,newsmast.social,Climate change,climate_change,false -GraceReckers,newsmast.social,Disabled Voices,disabled_voices,false -GraceReckers,newsmast.social,Environment,environment,false -GraceReckers,newsmast.social,Healthcare,healthcare,false -GraceReckers,newsmast.social,Immigrants Rights,immigrants_rights,false -GraceReckers,newsmast.social,Indigenous Peoples,indigenous_peoples,false -GraceReckers,newsmast.social,Law & Justice,law_justice,false -GraceReckers,newsmast.social,LGBTQ+,lgbtq,false -GraceReckers,newsmast.social,Music,music,false -GraceReckers,newsmast.social,Photography,photography,false -GraceReckers,newsmast.social,Social Sciences,social_sciences,false -GraceReckers,newsmast.social,TV & Radio,tv_radio,false -GraceReckers,newsmast.social,Women’s Voices,women_voices,false -GraceReckers,newsmast.social,Workers Rights,workers_rights,true -Calmsage,newsmast.social,Creative Arts,creative_arts,false -Calmsage,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,true -Calmsage,newsmast.social,Pets,pets,false -Calmsage,newsmast.social,Puzzles,puzzles,false -business,newsmast.social,Business,business,false -business,newsmast.social,AI,ai,true -business,newsmast.social,Government & Policy,government_policy,false -business,newsmast.social,Journalism & Comment,news_comment_data,false -business,newsmast.social,Environment,environment,false -k_rose,newsmast.social,Academia & Research,academia_research,false -k_rose,newsmast.social,Activism & Civil Rights,activism_civil_rights,false -k_rose,newsmast.social,AI,ai,false -k_rose,newsmast.social,Architecture & Design,architecture_design,false -k_rose,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false -k_rose,newsmast.social,Biology,biology,false -k_rose,newsmast.social,Black Voices,black_voices,false -k_rose,newsmast.social,Books & Literature,books_literature,false -k_rose,newsmast.social,Breaking News,breaking_news,false -k_rose,newsmast.social,Business,business,false -k_rose,newsmast.social,Chemistry,chemistry,false -k_rose,newsmast.social,Climate change,climate_change,false -k_rose,newsmast.social,Creative Arts,creative_arts,false -k_rose,newsmast.social,Democracy & Human Rights,democracy_human_rights,true -k_rose,newsmast.social,Disabled Voices,disabled_voices,false -k_rose,newsmast.social,Energy & Pollution,energy_pollution,false -k_rose,newsmast.social,Engineering,engineering,false -k_rose,newsmast.social,Environment,environment,false -k_rose,newsmast.social,Food & Drink,food_drink,false -k_rose,newsmast.social,Football,football,false -k_rose,newsmast.social,Gaming,gaming,false -k_rose,newsmast.social,Government & Policy,government_policy,false -k_rose,newsmast.social,Healthcare,healthcare,false -k_rose,newsmast.social,History,history,false -k_rose,newsmast.social,Humanities,humanities,false -k_rose,newsmast.social,Humour,humour,false -k_rose,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false -k_rose,newsmast.social,Immigrants Rights,immigrants_rights,false -k_rose,newsmast.social,Indigenous Peoples,indigenous_peoples,false -k_rose,newsmast.social,Law & Justice,law_justice,false -k_rose,newsmast.social,LGBTQ+,lgbtq,false -k_rose,newsmast.social,Markets & Finance,markets_finance,false -k_rose,newsmast.social,Mathematics,mathematics,false -k_rose,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false -k_rose,newsmast.social,Movies,movies,false -k_rose,newsmast.social,Music,music,false -k_rose,newsmast.social,Nature & Wildlife,nature_wildlife,false -k_rose,newsmast.social,Journalism & Comment,news_comment_data,false -k_rose,newsmast.social,Performing Arts,performing_arts,false -k_rose,newsmast.social,Pets,pets,false -k_rose,newsmast.social,Philosophy,philosophy,false -k_rose,newsmast.social,Photography,photography,false -k_rose,newsmast.social,Physics,physics,false -k_rose,newsmast.social,Politics,politics,false -k_rose,newsmast.social,Poverty & Inequality,poverty_inequality,false -k_rose,newsmast.social,Programming,programming,false -k_rose,newsmast.social,Puzzles,puzzles,false -k_rose,newsmast.social,Science,science,false -k_rose,newsmast.social,Social Media,social_media,false -k_rose,newsmast.social,Social Sciences,social_sciences,false -k_rose,newsmast.social,Space,space,false -k_rose,newsmast.social,Sport,sport,false -k_rose,newsmast.social,Technology,technology,false -k_rose,newsmast.social,Travel,travel,false -k_rose,newsmast.social,TV & Radio,tv_radio,false -k_rose,newsmast.social,Ukraine Invasion,ukraine_invasion,false -k_rose,newsmast.social,US Politics,us_politics,false -k_rose,newsmast.social,US Sport,us_sport,false -k_rose,newsmast.social,Visual Arts,visual_arts,false -k_rose,newsmast.social,Weather,weather,false -k_rose,newsmast.social,Women’s Voices,women_voices,false -k_rose,newsmast.social,Workers Rights,workers_rights,false -ErichWeikert,newsmast.social,Social Sciences,social_sciences,false -ErichWeikert,newsmast.social,AI,ai,false -ErichWeikert,newsmast.social,Architecture & Design,architecture_design,false -ErichWeikert,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false -ErichWeikert,newsmast.social,Chemistry,chemistry,false -ErichWeikert,newsmast.social,Energy & Pollution,energy_pollution,false -ErichWeikert,newsmast.social,Engineering,engineering,false -ErichWeikert,newsmast.social,Environment,environment,false -ErichWeikert,newsmast.social,Humanities,humanities,true -ErichWeikert,newsmast.social,Photography,photography,false -ErichWeikert,newsmast.social,Physics,physics,false -ErichWeikert,newsmast.social,Science,science,false -ErichWeikert,newsmast.social,Space,space,false -ErichWeikert,newsmast.social,Technology,technology,false -ErichWeikert,newsmast.social,Visual Arts,visual_arts,false -lgbtq,newsmast.social,Activism & Civil Rights,activism_civil_rights,true -lgbtq,newsmast.social,Black Voices,black_voices,false -lgbtq,newsmast.social,Disabled Voices,disabled_voices,false -lgbtq,newsmast.social,Immigrants Rights,immigrants_rights,false -lgbtq,newsmast.social,Indigenous Peoples,indigenous_peoples,false -lgbtq,newsmast.social,LGBTQ+,lgbtq,false -lgbtq,newsmast.social,Women’s Voices,women_voices,false -lgbtq,newsmast.social,Workers Rights,workers_rights,false -wildlife,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false -wildlife,newsmast.social,Climate change,climate_change,false -wildlife,newsmast.social,Environment,environment,false -wildlife,newsmast.social,Nature & Wildlife,nature_wildlife,true -sport,newsmast.social,Breaking News,breaking_news,false -sport,newsmast.social,Football,football,false -sport,newsmast.social,Sport,sport,true -sport,newsmast.social,TV & Radio,tv_radio,false -sport,newsmast.social,US Sport,us_sport,false -womens_voices,newsmast.social,Activism & Civil Rights,activism_civil_rights,false -womens_voices,newsmast.social,Black Voices,black_voices,false -womens_voices,newsmast.social,Disabled Voices,disabled_voices,false -womens_voices,newsmast.social,Immigrants Rights,immigrants_rights,false -womens_voices,newsmast.social,Indigenous Peoples,indigenous_peoples,false -womens_voices,newsmast.social,LGBTQ+,lgbtq,false -womens_voices,newsmast.social,Women’s Voices,women_voices,true -womens_voices,newsmast.social,Workers Rights,workers_rights,false -womens_voices,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false -christina88,newsmast.social,Books & Literature,books_literature,false -christina88,newsmast.social,Government & Policy,government_policy,false -christina88,newsmast.social,Law & Justice,law_justice,false -christina88,newsmast.social,Workers Rights,workers_rights,false -christina88,newsmast.social,Social Sciences,social_sciences,false -christina88,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,true -christina88,newsmast.social,TV & Radio,tv_radio,false -christina88,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false -christina88,newsmast.social,Humanities,humanities,false -christina88,newsmast.social,Music,music,false -christina88,newsmast.social,Visual Arts,visual_arts,false -christina88,newsmast.social,Pets,pets,false -christina88,newsmast.social,Philosophy,philosophy,false -christina88,newsmast.social,Creative Arts,creative_arts,false -christina88,newsmast.social,LGBTQ+,lgbtq,false -christina88,newsmast.social,Poverty & Inequality,poverty_inequality,false -jakeanders,newsmast.social,Breaking News,breaking_news,false -jakeanders,newsmast.social,Government & Policy,government_policy,false -jakeanders,newsmast.social,Journalism & Comment,news_comment_data,false -jakeanders,newsmast.social,Science,science,false -jakeanders,newsmast.social,Social Sciences,social_sciences,true -jakeanders,newsmast.social,Technology,technology,false -itzme,newsmast.social,Breaking News,breaking_news,true -itzme,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -itzme,newsmast.social,Environment,environment,false -itzme,newsmast.social,Law & Justice,law_justice,false -itzme,newsmast.social,Science,science,false -AltonDrew,newsmast.social,Academia & Research,academia_research,false -AltonDrew,newsmast.social,Architecture & Design,architecture_design,false -AltonDrew,newsmast.social,Books & Literature,books_literature,false -AltonDrew,newsmast.social,Creative Arts,creative_arts,false -AltonDrew,newsmast.social,Food & Drink,food_drink,false -AltonDrew,newsmast.social,Gaming,gaming,false -AltonDrew,newsmast.social,Healthcare,healthcare,false -AltonDrew,newsmast.social,Humour,humour,false -AltonDrew,newsmast.social,Law & Justice,law_justice,false -AltonDrew,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false -AltonDrew,newsmast.social,Movies,movies,false -AltonDrew,newsmast.social,Music,music,false -AltonDrew,newsmast.social,Nature & Wildlife,nature_wildlife,false -AltonDrew,newsmast.social,Performing Arts,performing_arts,false -AltonDrew,newsmast.social,Pets,pets,false -AltonDrew,newsmast.social,Photography,photography,false -AltonDrew,newsmast.social,Politics,politics,false -AltonDrew,newsmast.social,Puzzles,puzzles,false -AltonDrew,newsmast.social,Travel,travel,false -AltonDrew,newsmast.social,TV & Radio,tv_radio,false -AltonDrew,newsmast.social,US Politics,us_politics,false -AltonDrew,newsmast.social,Visual Arts,visual_arts,false -AltonDrew,newsmast.social,Government & Policy,government_policy,true -robbhoyy,newsmast.social,Academia & Research,academia_research,true -robbhoyy,newsmast.social,Biology,biology,false -robbhoyy,newsmast.social,Breaking News,breaking_news,false -robbhoyy,newsmast.social,Chemistry,chemistry,false -robbhoyy,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -robbhoyy,newsmast.social,Government & Policy,government_policy,false -robbhoyy,newsmast.social,Healthcare,healthcare,false -robbhoyy,newsmast.social,History,history,false -robbhoyy,newsmast.social,Humanities,humanities,false -robbhoyy,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false -robbhoyy,newsmast.social,Law & Justice,law_justice,false -robbhoyy,newsmast.social,Mathematics,mathematics,false -robbhoyy,newsmast.social,Journalism & Comment,news_comment_data,false -robbhoyy,newsmast.social,Philosophy,philosophy,false -robbhoyy,newsmast.social,Physics,physics,false -robbhoyy,newsmast.social,Politics,politics,false -robbhoyy,newsmast.social,Poverty & Inequality,poverty_inequality,false -robbhoyy,newsmast.social,Science,science,false -robbhoyy,newsmast.social,Social Media,social_media,false -robbhoyy,newsmast.social,Social Sciences,social_sciences,false -robbhoyy,newsmast.social,Space,space,false -robbhoyy,newsmast.social,Ukraine Invasion,ukraine_invasion,false -robbhoyy,newsmast.social,US Politics,us_politics,false -robbhoyy,newsmast.social,Weather,weather,false -testmeme,newsmast.social,Breaking News,breaking_news,false -testmeme,newsmast.social,Journalism & Comment,news_comment_data,true -testmeme,newsmast.social,Politics,politics,false -testmeme,newsmast.social,Social Media,social_media,false -testmeme,newsmast.social,Ukraine Invasion,ukraine_invasion,false -testmeme,newsmast.social,US Politics,us_politics,false -testmeme,newsmast.social,Weather,weather,false -Grinch,newsmast.social,Black Voices,black_voices,false -Grinch,newsmast.social,Government & Policy,government_policy,false -Grinch,newsmast.social,Politics,politics,true -Grinch,newsmast.social,Social Media,social_media,false -Grinch,newsmast.social,Ukraine Invasion,ukraine_invasion,false -Grinch,newsmast.social,US Politics,us_politics,false -Grinch,newsmast.social,Weather,weather,false -reverb,newsmast.social,Academia & Research,academia_research,false -reverb,newsmast.social,Activism & Civil Rights,activism_civil_rights,false -reverb,newsmast.social,AI,ai,true -reverb,newsmast.social,Architecture & Design,architecture_design,false -reverb,newsmast.social,Biology,biology,false -reverb,newsmast.social,Black Voices,black_voices,false -reverb,newsmast.social,Books & Literature,books_literature,false -reverb,newsmast.social,Breaking News,breaking_news,false -reverb,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -reverb,newsmast.social,Disabled Voices,disabled_voices,false -reverb,newsmast.social,Engineering,engineering,false -reverb,newsmast.social,Football,football,false -reverb,newsmast.social,Gaming,gaming,false -reverb,newsmast.social,Government & Policy,government_policy,false -reverb,newsmast.social,Healthcare,healthcare,false -reverb,newsmast.social,History,history,false -reverb,newsmast.social,Humanities,humanities,false -reverb,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false -reverb,newsmast.social,Immigrants Rights,immigrants_rights,false -reverb,newsmast.social,Indigenous Peoples,indigenous_peoples,false -reverb,newsmast.social,Law & Justice,law_justice,false -reverb,newsmast.social,Movies,movies,false -reverb,newsmast.social,Music,music,false -reverb,newsmast.social,Journalism & Comment,news_comment_data,false -reverb,newsmast.social,Photography,photography,false -reverb,newsmast.social,Physics,physics,false -reverb,newsmast.social,Politics,politics,false -reverb,newsmast.social,Poverty & Inequality,poverty_inequality,false -reverb,newsmast.social,Science,science,false -reverb,newsmast.social,Social Sciences,social_sciences,false -reverb,newsmast.social,Space,space,false -reverb,newsmast.social,Technology,technology,false -reverb,newsmast.social,TV & Radio,tv_radio,false -reverb,newsmast.social,US Politics,us_politics,false -reverb,newsmast.social,US Sport,us_sport,false -reverb,newsmast.social,Visual Arts,visual_arts,false -reverb,newsmast.social,Weather,weather,false -reverb,newsmast.social,Women’s Voices,women_voices,false -maketheswitchAU,newsmast.social,Activism & Civil Rights,activism_civil_rights,false -maketheswitchAU,newsmast.social,AI,ai,false -maketheswitchAU,newsmast.social,Black Voices,black_voices,false -maketheswitchAU,newsmast.social,Disabled Voices,disabled_voices,false -maketheswitchAU,newsmast.social,Immigrants Rights,immigrants_rights,false -maketheswitchAU,newsmast.social,Indigenous Peoples,indigenous_peoples,false -maketheswitchAU,newsmast.social,LGBTQ+,lgbtq,false -maketheswitchAU,newsmast.social,Movies,movies,true -maketheswitchAU,newsmast.social,TV & Radio,tv_radio,false -maketheswitchAU,newsmast.social,Women’s Voices,women_voices,false -maketheswitchAU,newsmast.social,Politics,politics,false -maketheswitchAU,newsmast.social,Business,business,false -maketheswitchAU,newsmast.social,Photography,photography,false -maketheswitchAU,newsmast.social,Sport,sport,false -maketheswitchAU,newsmast.social,Creative Arts,creative_arts,false -maketheswitchAU,newsmast.social,Food & Drink,food_drink,false -maketheswitchAU,newsmast.social,Pets,pets,false -maketheswitchAU,newsmast.social,Nature & Wildlife,nature_wildlife,false -maketheswitchAU,newsmast.social,Travel,travel,false -maketheswitchAU,newsmast.social,Weather,weather,false -maketheswitchAU,newsmast.social,Poverty & Inequality,poverty_inequality,false -maketheswitchAU,newsmast.social,Government & Policy,government_policy,false -maketheswitchAU,newsmast.social,Healthcare,healthcare,false -maketheswitchAU,newsmast.social,Law & Justice,law_justice,false -maketheswitchAU,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false -maketheswitchAU,newsmast.social,Environment,environment,false -maketheswitchAU,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false -maketheswitchAU,newsmast.social,Climate change,climate_change,false -maketheswitchAU,newsmast.social,Energy & Pollution,energy_pollution,false -maketheswitchAU,newsmast.social,Technology,technology,false -maketheswitchAU,newsmast.social,Science,science,false -maketheswitchAU,newsmast.social,Biology,biology,false -maketheswitchAU,newsmast.social,Chemistry,chemistry,false -maketheswitchAU,newsmast.social,Engineering,engineering,false -maketheswitchAU,newsmast.social,Space,space,false -maketheswitchAU,newsmast.social,Books & Literature,books_literature,false -maketheswitchAU,newsmast.social,History,history,false -maketheswitchAU,newsmast.social,Architecture & Design,architecture_design,false -maketheswitchAU,newsmast.social,Gaming,gaming,false -maketheswitchAU,newsmast.social,Music,music,false -maketheswitchAU,newsmast.social,Performing Arts,performing_arts,false -maketheswitchAU,newsmast.social,Breaking News,breaking_news,false -maketheswitchAU,newsmast.social,Visual Arts,visual_arts,false -maketheswitchAU,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -nyeinBinarylab,newsmast.social,Activism & Civil Rights,activism_civil_rights,false -nyeinBinarylab,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false -nyeinBinarylab,newsmast.social,Black Voices,black_voices,false -nyeinBinarylab,newsmast.social,Breaking News,breaking_news,false -nyeinBinarylab,newsmast.social,Climate change,climate_change,false -nyeinBinarylab,newsmast.social,Creative Arts,creative_arts,false -nyeinBinarylab,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -nyeinBinarylab,newsmast.social,Disabled Voices,disabled_voices,false -nyeinBinarylab,newsmast.social,Energy & Pollution,energy_pollution,false -nyeinBinarylab,newsmast.social,Environment,environment,false -nyeinBinarylab,newsmast.social,Food & Drink,food_drink,false -nyeinBinarylab,newsmast.social,Government & Policy,government_policy,false -nyeinBinarylab,newsmast.social,Healthcare,healthcare,false -nyeinBinarylab,newsmast.social,Humour,humour,false -nyeinBinarylab,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false -nyeinBinarylab,newsmast.social,Immigrants Rights,immigrants_rights,false -nyeinBinarylab,newsmast.social,Indigenous Peoples,indigenous_peoples,false -nyeinBinarylab,newsmast.social,Law & Justice,law_justice,false -nyeinBinarylab,newsmast.social,LGBTQ+,lgbtq,false -nyeinBinarylab,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false -nyeinBinarylab,newsmast.social,Nature & Wildlife,nature_wildlife,false -nyeinBinarylab,newsmast.social,Journalism & Comment,news_comment_data,false -nyeinBinarylab,newsmast.social,Pets,pets,false -nyeinBinarylab,newsmast.social,Politics,politics,false -nyeinBinarylab,newsmast.social,Poverty & Inequality,poverty_inequality,false -nyeinBinarylab,newsmast.social,Puzzles,puzzles,false -nyeinBinarylab,newsmast.social,Social Media,social_media,false -nyeinBinarylab,newsmast.social,Travel,travel,false -nyeinBinarylab,newsmast.social,Ukraine Invasion,ukraine_invasion,false -nyeinBinarylab,newsmast.social,US Politics,us_politics,false -nyeinBinarylab,newsmast.social,Weather,weather,false -nyeinBinarylab,newsmast.social,Women’s Voices,women_voices,false -nyeinBinarylab,newsmast.social,Workers Rights,workers_rights,false -nyeinBinarylab,newsmast.social,Academia & Research,academia_research,true -healthcare,newsmast.social,Government & Policy,government_policy,false -healthcare,newsmast.social,Healthcare,healthcare,true -healthcare,newsmast.social,Law & Justice,law_justice,false -healthcare,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false -Gymbag4u,newsmast.social,Breaking News,breaking_news,false -Gymbag4u,newsmast.social,Creative Arts,creative_arts,false -Gymbag4u,newsmast.social,Food & Drink,food_drink,true -Gymbag4u,newsmast.social,Humour,humour,false -Gymbag4u,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false -Gymbag4u,newsmast.social,Nature & Wildlife,nature_wildlife,false -Gymbag4u,newsmast.social,Pets,pets,false -Gymbag4u,newsmast.social,Travel,travel,false -Gymbag4u,newsmast.social,Markets & Finance,markets_finance,false -Gymbag4u,newsmast.social,Business,business,false -chafafa,newsmast.social,AI,ai,false -chafafa,newsmast.social,Architecture & Design,architecture_design,false -chafafa,newsmast.social,Books & Literature,books_literature,false -chafafa,newsmast.social,Breaking News,breaking_news,true -chafafa,newsmast.social,Chemistry,chemistry,false -chafafa,newsmast.social,Engineering,engineering,false -chafafa,newsmast.social,History,history,false -chafafa,newsmast.social,Humanities,humanities,false -chafafa,newsmast.social,Mathematics,mathematics,false -chafafa,newsmast.social,Philosophy,philosophy,false -chafafa,newsmast.social,Photography,photography,false -chafafa,newsmast.social,Physics,physics,false -chafafa,newsmast.social,Programming,programming,false -chafafa,newsmast.social,Science,science,false -chafafa,newsmast.social,Technology,technology,false -chafafa,newsmast.social,TV & Radio,tv_radio,false -chafafa,newsmast.social,Visual Arts,visual_arts,false -chafafa,newsmast.social,Weather,weather,false -SummerS,newsmast.social,Breaking News,breaking_news,false -SummerS,newsmast.social,Creative Arts,creative_arts,false -SummerS,newsmast.social,Pets,pets,true -SummerS,newsmast.social,Photography,photography,false -SummerS,newsmast.social,Social Media,social_media,false -Laurairby,newsmast.social,AI,ai,false -Laurairby,newsmast.social,Architecture & Design,architecture_design,false -Laurairby,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false -Laurairby,newsmast.social,Books & Literature,books_literature,false -Laurairby,newsmast.social,Breaking News,breaking_news,true -Laurairby,newsmast.social,Climate change,climate_change,false -Laurairby,newsmast.social,Creative Arts,creative_arts,false -Laurairby,newsmast.social,Energy & Pollution,energy_pollution,false -Laurairby,newsmast.social,Engineering,engineering,false -Laurairby,newsmast.social,Environment,environment,false -Laurairby,newsmast.social,Food & Drink,food_drink,false -Laurairby,newsmast.social,Gaming,gaming,false -Laurairby,newsmast.social,Humour,humour,false -Laurairby,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false -Laurairby,newsmast.social,Movies,movies,false -Laurairby,newsmast.social,Music,music,false -Laurairby,newsmast.social,Nature & Wildlife,nature_wildlife,false -Laurairby,newsmast.social,Journalism & Comment,news_comment_data,false -Laurairby,newsmast.social,Performing Arts,performing_arts,false -Laurairby,newsmast.social,Pets,pets,false -Laurairby,newsmast.social,Photography,photography,false -Laurairby,newsmast.social,Programming,programming,false -Laurairby,newsmast.social,Puzzles,puzzles,false -Laurairby,newsmast.social,Social Media,social_media,false -Laurairby,newsmast.social,Technology,technology,false -Laurairby,newsmast.social,Travel,travel,false -Laurairby,newsmast.social,TV & Radio,tv_radio,false -Laurairby,newsmast.social,Ukraine Invasion,ukraine_invasion,false -Laurairby,newsmast.social,Visual Arts,visual_arts,false -Laurairby,newsmast.social,Weather,weather,false -jessicanewmast,newsmast.social,Activism & Civil Rights,activism_civil_rights,false -jessicanewmast,newsmast.social,Black Voices,black_voices,false -jessicanewmast,newsmast.social,Business,business,false -jessicanewmast,newsmast.social,Climate change,climate_change,true -jessicanewmast,newsmast.social,Disabled Voices,disabled_voices,false -jessicanewmast,newsmast.social,Energy & Pollution,energy_pollution,false -jessicanewmast,newsmast.social,Engineering,engineering,false -jessicanewmast,newsmast.social,Environment,environment,false -jessicanewmast,newsmast.social,Immigrants Rights,immigrants_rights,false -jessicanewmast,newsmast.social,Indigenous Peoples,indigenous_peoples,false -jessicanewmast,newsmast.social,LGBTQ+,lgbtq,false -jessicanewmast,newsmast.social,Markets & Finance,markets_finance,false -jessicanewmast,newsmast.social,Programming,programming,false -jessicanewmast,newsmast.social,Technology,technology,false -jessicanewmast,newsmast.social,Women’s Voices,women_voices,false -luffy,newsmast.social,AI,ai,false -luffy,newsmast.social,Biology,biology,false -luffy,newsmast.social,Breaking News,breaking_news,true -luffy,newsmast.social,Chemistry,chemistry,false -luffy,newsmast.social,Engineering,engineering,false -luffy,newsmast.social,Football,football,false -luffy,newsmast.social,History,history,false -luffy,newsmast.social,Humanities,humanities,false -luffy,newsmast.social,Mathematics,mathematics,false -luffy,newsmast.social,Journalism & Comment,news_comment_data,false -luffy,newsmast.social,Philosophy,philosophy,false -luffy,newsmast.social,Physics,physics,false -luffy,newsmast.social,Programming,programming,false -luffy,newsmast.social,Science,science,false -luffy,newsmast.social,Social Media,social_media,false -luffy,newsmast.social,Social Sciences,social_sciences,false -luffy,newsmast.social,Space,space,false -luffy,newsmast.social,Sport,sport,false -luffy,newsmast.social,Technology,technology,false -luffy,newsmast.social,Ukraine Invasion,ukraine_invasion,false -luffy,newsmast.social,US Sport,us_sport,false -luffy,newsmast.social,Environment,environment,false -luffy,newsmast.social,Food & Drink,food_drink,false -RafiqulMontu,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false -RafiqulMontu,newsmast.social,Climate change,climate_change,true -RafiqulMontu,newsmast.social,Energy & Pollution,energy_pollution,false -RafiqulMontu,newsmast.social,Environment,environment,false -RafiqulMontu,newsmast.social,Physics,physics,false -RafiqulMontu,newsmast.social,Space,space,false -jdp23,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -jdp23,newsmast.social,Activism & Civil Rights,activism_civil_rights,true -jdp23,newsmast.social,Black Voices,black_voices,false -jdp23,newsmast.social,Immigrants Rights,immigrants_rights,false -jdp23,newsmast.social,Indigenous Peoples,indigenous_peoples,false -jdp23,newsmast.social,Law & Justice,law_justice,false -jdp23,newsmast.social,LGBTQ+,lgbtq,false -jdp23,newsmast.social,Philosophy,philosophy,false -jdp23,newsmast.social,Social Media,social_media,false -jdp23,newsmast.social,Social Sciences,social_sciences,false -jdp23,newsmast.social,Technology,technology,false -jdp23,newsmast.social,US Politics,us_politics,false -jdp23,newsmast.social,Women’s Voices,women_voices,false -minkhantBL,newsmast.social,Breaking News,breaking_news,true -minkhantBL,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -minkhantBL,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false -minkhantBL,newsmast.social,Journalism & Comment,news_comment_data,false -minkhantBL,newsmast.social,Poverty & Inequality,poverty_inequality,false -minkhantBL,newsmast.social,Social Media,social_media,false -minkhantBL,newsmast.social,Ukraine Invasion,ukraine_invasion,false -minkhantBL,newsmast.social,Weather,weather,false -putuu,newsmast.social,Breaking News,breaking_news,false -putuu,newsmast.social,Journalism & Comment,news_comment_data,true -putuu,newsmast.social,Social Media,social_media,false -putuu,newsmast.social,Ukraine Invasion,ukraine_invasion,false -putuu,newsmast.social,Weather,weather,false -yarzar,newsmast.social,AI,ai,false -yarzar,newsmast.social,Biology,biology,false -yarzar,newsmast.social,Breaking News,breaking_news,false -yarzar,newsmast.social,Chemistry,chemistry,false -yarzar,newsmast.social,Creative Arts,creative_arts,false -yarzar,newsmast.social,Engineering,engineering,false -yarzar,newsmast.social,Food & Drink,food_drink,false -yarzar,newsmast.social,Humour,humour,false -yarzar,newsmast.social,Mathematics,mathematics,false -yarzar,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false -yarzar,newsmast.social,Nature & Wildlife,nature_wildlife,false -yarzar,newsmast.social,Journalism & Comment,news_comment_data,false -yarzar,newsmast.social,Pets,pets,false -yarzar,newsmast.social,Physics,physics,false -yarzar,newsmast.social,Programming,programming,false -yarzar,newsmast.social,Puzzles,puzzles,false -yarzar,newsmast.social,Science,science,false -yarzar,newsmast.social,Social Media,social_media,false -yarzar,newsmast.social,Space,space,false -yarzar,newsmast.social,Sport,sport,false -yarzar,newsmast.social,Technology,technology,false -yarzar,newsmast.social,Travel,travel,false -yarzar,newsmast.social,Ukraine Invasion,ukraine_invasion,false -yarzar,newsmast.social,US Sport,us_sport,false -yarzar,newsmast.social,Weather,weather,false -yarzar,newsmast.social,Football,football,true -enriqueanarte,newsmast.social,Breaking News,breaking_news,false -enriqueanarte,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -enriqueanarte,newsmast.social,LGBTQ+,lgbtq,true -enriqueanarte,newsmast.social,Journalism & Comment,news_comment_data,false -enriqueanarte,newsmast.social,Politics,politics,false -Drizzleanddip,newsmast.social,Books & Literature,books_literature,false -Drizzleanddip,newsmast.social,Breaking News,breaking_news,false -Drizzleanddip,newsmast.social,Creative Arts,creative_arts,false -Drizzleanddip,newsmast.social,Environment,environment,false -Drizzleanddip,newsmast.social,Food & Drink,food_drink,true -Drizzleanddip,newsmast.social,Movies,movies,false -Drizzleanddip,newsmast.social,Photography,photography,false -Drizzleanddip,newsmast.social,Travel,travel,false -Drizzleanddip,newsmast.social,Visual Arts,visual_arts,false -Emma_Samson,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false -Emma_Samson,newsmast.social,Business,business,false -Emma_Samson,newsmast.social,Climate change,climate_change,false -Emma_Samson,newsmast.social,Energy & Pollution,energy_pollution,false -Emma_Samson,newsmast.social,Environment,environment,true -Emma_Samson,newsmast.social,Government & Policy,government_policy,false -Emma_Samson,newsmast.social,Social Sciences,social_sciences,false -LeanneKeddie,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false -LeanneKeddie,newsmast.social,Breaking News,breaking_news,false -LeanneKeddie,newsmast.social,Climate change,climate_change,true -LeanneKeddie,newsmast.social,Environment,environment,false -LeanneKeddie,newsmast.social,Social Sciences,social_sciences,false -LeanneKeddie,newsmast.social,Weather,weather,false -max_chaudhary,newsmast.social,Academia & Research,academia_research,false -max_chaudhary,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -max_chaudhary,newsmast.social,Healthcare,healthcare,false -max_chaudhary,newsmast.social,History,history,false -max_chaudhary,newsmast.social,Law & Justice,law_justice,false -max_chaudhary,newsmast.social,Politics,politics,false -max_chaudhary,newsmast.social,US Politics,us_politics,false -max_chaudhary,newsmast.social,Government & Policy,government_policy,true -rach_garr,newsmast.social,Academia & Research,academia_research,false -rach_garr,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,true -rach_garr,newsmast.social,Climate change,climate_change,false -rach_garr,newsmast.social,Environment,environment,false -rach_garr,newsmast.social,Government & Policy,government_policy,false -rach_garr,newsmast.social,Politics,politics,false -RossA,newsmast.social,AI,ai,false -RossA,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false -RossA,newsmast.social,Books & Literature,books_literature,false -RossA,newsmast.social,Breaking News,breaking_news,false -RossA,newsmast.social,Gaming,gaming,false -RossA,newsmast.social,Humour,humour,false -RossA,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false -RossA,newsmast.social,Movies,movies,false -RossA,newsmast.social,Music,music,false -RossA,newsmast.social,Nature & Wildlife,nature_wildlife,false -RossA,newsmast.social,Journalism & Comment,news_comment_data,false -RossA,newsmast.social,Performing Arts,performing_arts,false -RossA,newsmast.social,Philosophy,philosophy,false -RossA,newsmast.social,Photography,photography,false -RossA,newsmast.social,Puzzles,puzzles,false -RossA,newsmast.social,Science,science,false -RossA,newsmast.social,Social Media,social_media,false -RossA,newsmast.social,Social Sciences,social_sciences,false -RossA,newsmast.social,Technology,technology,true -RossA,newsmast.social,TV & Radio,tv_radio,false -RossA,newsmast.social,Weather,weather,false -jeffreyguard,newsmast.social,LGBTQ+,lgbtq,true -jeffreyguard,newsmast.social,Architecture & Design,architecture_design,false -jeffreyguard,newsmast.social,Books & Literature,books_literature,false -jeffreyguard,newsmast.social,History,history,false -jeffreyguard,newsmast.social,Movies,movies,false -jeffreyguard,newsmast.social,Music,music,false -jeffreyguard,newsmast.social,Performing Arts,performing_arts,false -jeffreyguard,newsmast.social,Philosophy,philosophy,false -jeffreyguard,newsmast.social,Photography,photography,false -jeffreyguard,newsmast.social,Social Sciences,social_sciences,false -jeffreyguard,newsmast.social,TV & Radio,tv_radio,false -jeffreyguard,newsmast.social,Visual Arts,visual_arts,false -gavinjmaguire,newsmast.social,Breaking News,breaking_news,false -gavinjmaguire,newsmast.social,Business,business,false -gavinjmaguire,newsmast.social,Climate change,climate_change,false -gavinjmaguire,newsmast.social,Creative Arts,creative_arts,false -gavinjmaguire,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -gavinjmaguire,newsmast.social,Energy & Pollution,energy_pollution,true -gavinjmaguire,newsmast.social,Food & Drink,food_drink,false -gavinjmaguire,newsmast.social,Football,football,false -gavinjmaguire,newsmast.social,Government & Policy,government_policy,false -gavinjmaguire,newsmast.social,Humour,humour,false -gavinjmaguire,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false -gavinjmaguire,newsmast.social,Markets & Finance,markets_finance,false -gavinjmaguire,newsmast.social,Nature & Wildlife,nature_wildlife,false -gavinjmaguire,newsmast.social,Poverty & Inequality,poverty_inequality,false -gavinjmaguire,newsmast.social,Travel,travel,false -gavinjmaguire,newsmast.social,US Politics,us_politics,false -bryantout,newsmast.social,Books & Literature,books_literature,false -bryantout,newsmast.social,Breaking News,breaking_news,true -bryantout,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false -bryantout,newsmast.social,Puzzles,puzzles,false -bryantout,newsmast.social,Technology,technology,false -bryantout,newsmast.social,Movies,movies,false -bryantout,newsmast.social,Government & Policy,government_policy,false -bryantout,newsmast.social,Politics,politics,false -bryantout,newsmast.social,US Politics,us_politics,false -brettmirl,newsmast.social,Activism & Civil Rights,activism_civil_rights,false -brettmirl,newsmast.social,AI,ai,false -brettmirl,newsmast.social,Black Voices,black_voices,false -brettmirl,newsmast.social,Breaking News,breaking_news,false -brettmirl,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -brettmirl,newsmast.social,Disabled Voices,disabled_voices,false -brettmirl,newsmast.social,Government & Policy,government_policy,false -brettmirl,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false -brettmirl,newsmast.social,Immigrants Rights,immigrants_rights,false -brettmirl,newsmast.social,Indigenous Peoples,indigenous_peoples,false -brettmirl,newsmast.social,LGBTQ+,lgbtq,true -brettmirl,newsmast.social,Movies,movies,false -brettmirl,newsmast.social,Music,music,false -brettmirl,newsmast.social,Journalism & Comment,news_comment_data,false -brettmirl,newsmast.social,Politics,politics,false -brettmirl,newsmast.social,Poverty & Inequality,poverty_inequality,false -brettmirl,newsmast.social,Technology,technology,false -brettmirl,newsmast.social,TV & Radio,tv_radio,false -brettmirl,newsmast.social,Weather,weather,false -brettmirl,newsmast.social,Women’s Voices,women_voices,false -artbol,newsmast.social,Architecture & Design,architecture_design,false -artbol,newsmast.social,Breaking News,breaking_news,true -artbol,newsmast.social,Energy & Pollution,energy_pollution,false -artbol,newsmast.social,Environment,environment,false -artbol,newsmast.social,Gaming,gaming,false -artbol,newsmast.social,Movies,movies,false -artbol,newsmast.social,Music,music,false -artbol,newsmast.social,Programming,programming,false -artbol,newsmast.social,Science,science,false -artbol,newsmast.social,Space,space,false -artbol,newsmast.social,Technology,technology,false -artbol,newsmast.social,TV & Radio,tv_radio,false -pikarl13,newsmast.social,Academia & Research,academia_research,false -pikarl13,newsmast.social,AI,ai,false -pikarl13,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false -pikarl13,newsmast.social,Biology,biology,false -pikarl13,newsmast.social,Chemistry,chemistry,false -pikarl13,newsmast.social,Climate change,climate_change,false -pikarl13,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -pikarl13,newsmast.social,Energy & Pollution,energy_pollution,false -pikarl13,newsmast.social,Engineering,engineering,false -pikarl13,newsmast.social,Environment,environment,false -pikarl13,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false -pikarl13,newsmast.social,Mathematics,mathematics,false -pikarl13,newsmast.social,Journalism & Comment,news_comment_data,false -pikarl13,newsmast.social,Physics,physics,false -pikarl13,newsmast.social,Politics,politics,false -pikarl13,newsmast.social,Poverty & Inequality,poverty_inequality,false -pikarl13,newsmast.social,Programming,programming,false -pikarl13,newsmast.social,Science,science,false -pikarl13,newsmast.social,Space,space,true -pikarl13,newsmast.social,Technology,technology,false -denn,newsmast.social,Activism & Civil Rights,activism_civil_rights,false -denn,newsmast.social,AI,ai,false -denn,newsmast.social,Biology,biology,false -denn,newsmast.social,Black Voices,black_voices,false -denn,newsmast.social,Chemistry,chemistry,false -denn,newsmast.social,Disabled Voices,disabled_voices,false -denn,newsmast.social,Engineering,engineering,false -denn,newsmast.social,History,history,false -denn,newsmast.social,Humanities,humanities,false -denn,newsmast.social,Immigrants Rights,immigrants_rights,false -denn,newsmast.social,Indigenous Peoples,indigenous_peoples,false -denn,newsmast.social,Mathematics,mathematics,false -denn,newsmast.social,Philosophy,philosophy,false -denn,newsmast.social,Physics,physics,false -denn,newsmast.social,Programming,programming,false -denn,newsmast.social,Science,science,false -denn,newsmast.social,Social Sciences,social_sciences,false -denn,newsmast.social,Space,space,false -denn,newsmast.social,Technology,technology,false -denn,newsmast.social,Women’s Voices,women_voices,false -denn,newsmast.social,LGBTQ+,lgbtq,true -Kyn,newsmast.social,Academia & Research,academia_research,true -Kyn,newsmast.social,AI,ai,false -Kyn,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false -Kyn,newsmast.social,Biology,biology,false -Kyn,newsmast.social,Breaking News,breaking_news,false -Kyn,newsmast.social,Chemistry,chemistry,false -Kyn,newsmast.social,Climate change,climate_change,false -Kyn,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -Kyn,newsmast.social,Energy & Pollution,energy_pollution,false -Kyn,newsmast.social,Engineering,engineering,false -Kyn,newsmast.social,Environment,environment,false -Kyn,newsmast.social,Government & Policy,government_policy,false -Kyn,newsmast.social,Healthcare,healthcare,false -Kyn,newsmast.social,History,history,false -Kyn,newsmast.social,Humanities,humanities,false -Kyn,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false -Kyn,newsmast.social,Law & Justice,law_justice,false -Kyn,newsmast.social,Mathematics,mathematics,false -Kyn,newsmast.social,Journalism & Comment,news_comment_data,false -Kyn,newsmast.social,Philosophy,philosophy,false -Kyn,newsmast.social,Physics,physics,false -Kyn,newsmast.social,Politics,politics,false -Kyn,newsmast.social,Poverty & Inequality,poverty_inequality,false -Kyn,newsmast.social,Programming,programming,false -Kyn,newsmast.social,Science,science,false -Kyn,newsmast.social,Social Media,social_media,false -Kyn,newsmast.social,Social Sciences,social_sciences,false -Kyn,newsmast.social,Space,space,false -Kyn,newsmast.social,Technology,technology,false -Kyn,newsmast.social,Ukraine Invasion,ukraine_invasion,false -Kyn,newsmast.social,US Politics,us_politics,false -Kyn,newsmast.social,Weather,weather,false -09SHEEHANM,newsmast.social,Breaking News,breaking_news,false -09SHEEHANM,newsmast.social,Business,business,false -09SHEEHANM,newsmast.social,Government & Policy,government_policy,false -09SHEEHANM,newsmast.social,Journalism & Comment,news_comment_data,false -09SHEEHANM,newsmast.social,Ukraine Invasion,ukraine_invasion,true -MichelleA,newsmast.social,Academia & Research,academia_research,false -MichelleA,newsmast.social,Biology,biology,false -MichelleA,newsmast.social,Breaking News,breaking_news,false -MichelleA,newsmast.social,Business,business,false -MichelleA,newsmast.social,Chemistry,chemistry,false -MichelleA,newsmast.social,Government & Policy,government_policy,false -MichelleA,newsmast.social,Healthcare,healthcare,true -MichelleA,newsmast.social,Law & Justice,law_justice,false -MichelleA,newsmast.social,Markets & Finance,markets_finance,false -MichelleA,newsmast.social,Mathematics,mathematics,false -MichelleA,newsmast.social,Journalism & Comment,news_comment_data,false -MichelleA,newsmast.social,Physics,physics,false -MichelleA,newsmast.social,Politics,politics,false -MichelleA,newsmast.social,Science,science,false -MichelleA,newsmast.social,Social Media,social_media,false -MichelleA,newsmast.social,Space,space,false -MichelleA,newsmast.social,Ukraine Invasion,ukraine_invasion,false -MichelleA,newsmast.social,US Politics,us_politics,false -MichelleA,newsmast.social,Weather,weather,false -MichelleA,newsmast.social,Workers Rights,workers_rights,false -Migis4991,newsmast.social,Academia & Research,academia_research,false -Migis4991,newsmast.social,AI,ai,false -Migis4991,newsmast.social,Government & Policy,government_policy,false -Migis4991,newsmast.social,History,history,false -Migis4991,newsmast.social,Politics,politics,false -Migis4991,newsmast.social,Programming,programming,false -Migis4991,newsmast.social,Science,science,false -Migis4991,newsmast.social,Social Sciences,social_sciences,true -Migis4991,newsmast.social,Technology,technology,false -Pyae000,newsmast.social,Engineering,engineering,false -Pyae000,newsmast.social,Mathematics,mathematics,false -Pyae000,newsmast.social,Physics,physics,false -Pyae000,newsmast.social,Programming,programming,true -Pyae000,newsmast.social,Science,science,false -Pyae000,newsmast.social,Technology,technology,false -RonCharles,newsmast.social,Breaking News,breaking_news,false -RonCharles,newsmast.social,Social Media,social_media,false -RonCharles,newsmast.social,Ukraine Invasion,ukraine_invasion,false -RonCharles,newsmast.social,Weather,weather,false -RonCharles,newsmast.social,Journalism & Comment,news_comment_data,true -jonbreeze,newsmast.social,Climate change,climate_change,false -jonbreeze,newsmast.social,Energy & Pollution,energy_pollution,false -jonbreeze,newsmast.social,Physics,physics,true -jonbreeze,newsmast.social,Science,science,false -jonbreeze,newsmast.social,Space,space,false -jonbreeze,newsmast.social,Technology,technology,false -jetono,newsmast.social,AI,ai,false -jetono,newsmast.social,Engineering,engineering,false -jetono,newsmast.social,Gaming,gaming,false -jetono,newsmast.social,Programming,programming,false -jetono,newsmast.social,Social Media,social_media,false -jetono,newsmast.social,Technology,technology,true -chloe_661,newsmast.social,Football,football,true -chloe_661,newsmast.social,Programming,programming,false -chloe_661,newsmast.social,Space,space,false -chloe_661,newsmast.social,Sport,sport,false -chloe_661,newsmast.social,Technology,technology,false -AnnaScott,newsmast.social,Books & Literature,books_literature,false -AnnaScott,newsmast.social,Movies,movies,false -AnnaScott,newsmast.social,Music,music,true -AnnaScott,newsmast.social,Performing Arts,performing_arts,false -AnnaScott,newsmast.social,Photography,photography,false -AnnaScott,newsmast.social,TV & Radio,tv_radio,false -dleifohcs,newsmast.social,AI,ai,false -dleifohcs,newsmast.social,Physics,physics,true -dleifohcs,newsmast.social,Science,science,false -dleifohcs,newsmast.social,Space,space,false -dleifohcs,newsmast.social,Technology,technology,false -jncomas,newsmast.social,Breaking News,breaking_news,true -jncomas,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -jncomas,newsmast.social,Humanities,humanities,false -jncomas,newsmast.social,Law & Justice,law_justice,false -jncomas,newsmast.social,Journalism & Comment,news_comment_data,false -jncomas,newsmast.social,Philosophy,philosophy,false -jncomas,newsmast.social,Ukraine Invasion,ukraine_invasion,false -jncomas,newsmast.social,US Politics,us_politics,false -muzaffarab,newsmast.social,Government & Policy,government_policy,false -muzaffarab,newsmast.social,Democracy & Human Rights,democracy_human_rights,true -muzaffarab,newsmast.social,Poverty & Inequality,poverty_inequality,false -wannely,newsmast.social,Creative Arts,creative_arts,true -wannely,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -wannely,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false -wannely,newsmast.social,Poverty & Inequality,poverty_inequality,false -wannely,newsmast.social,Science,science,false -ryankhan,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -ryankhan,newsmast.social,Government & Policy,government_policy,false -ryankhan,newsmast.social,Healthcare,healthcare,false -ryankhan,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false -ryankhan,newsmast.social,Law & Justice,law_justice,false -ryankhan,newsmast.social,Politics,politics,false -ryankhan,newsmast.social,Poverty & Inequality,poverty_inequality,false -ryankhan,newsmast.social,US Politics,us_politics,false -ryankhan,newsmast.social,Academia & Research,academia_research,true -EmillaFilipowic,newsmast.social,Academia & Research,academia_research,false -EmillaFilipowic,newsmast.social,Activism & Civil Rights,activism_civil_rights,false -EmillaFilipowic,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false -EmillaFilipowic,newsmast.social,Black Voices,black_voices,false -EmillaFilipowic,newsmast.social,Breaking News,breaking_news,true -EmillaFilipowic,newsmast.social,Business,business,false -EmillaFilipowic,newsmast.social,Climate change,climate_change,false -EmillaFilipowic,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -EmillaFilipowic,newsmast.social,Disabled Voices,disabled_voices,false -EmillaFilipowic,newsmast.social,Energy & Pollution,energy_pollution,false -EmillaFilipowic,newsmast.social,Environment,environment,false -EmillaFilipowic,newsmast.social,Government & Policy,government_policy,false -EmillaFilipowic,newsmast.social,Healthcare,healthcare,false -EmillaFilipowic,newsmast.social,History,history,false -EmillaFilipowic,newsmast.social,Humanities,humanities,false -EmillaFilipowic,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false -EmillaFilipowic,newsmast.social,Immigrants Rights,immigrants_rights,false -EmillaFilipowic,newsmast.social,Indigenous Peoples,indigenous_peoples,false -EmillaFilipowic,newsmast.social,Law & Justice,law_justice,false -EmillaFilipowic,newsmast.social,LGBTQ+,lgbtq,false -EmillaFilipowic,newsmast.social,Markets & Finance,markets_finance,false -EmillaFilipowic,newsmast.social,Journalism & Comment,news_comment_data,false -EmillaFilipowic,newsmast.social,Philosophy,philosophy,false -EmillaFilipowic,newsmast.social,Politics,politics,false -EmillaFilipowic,newsmast.social,Poverty & Inequality,poverty_inequality,false -EmillaFilipowic,newsmast.social,Social Media,social_media,false -EmillaFilipowic,newsmast.social,Social Sciences,social_sciences,false -EmillaFilipowic,newsmast.social,Ukraine Invasion,ukraine_invasion,false -EmillaFilipowic,newsmast.social,US Politics,us_politics,false -EmillaFilipowic,newsmast.social,Weather,weather,false -EmillaFilipowic,newsmast.social,Women’s Voices,women_voices,false -EmillaFilipowic,newsmast.social,Workers Rights,workers_rights,false -nisemikol,newsmast.social,Activism & Civil Rights,activism_civil_rights,false -nisemikol,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false -nisemikol,newsmast.social,Biology,biology,false -nisemikol,newsmast.social,Breaking News,breaking_news,true -nisemikol,newsmast.social,Chemistry,chemistry,false -nisemikol,newsmast.social,Climate change,climate_change,false -nisemikol,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -nisemikol,newsmast.social,Energy & Pollution,energy_pollution,false -nisemikol,newsmast.social,Environment,environment,false -nisemikol,newsmast.social,Government & Policy,government_policy,false -nisemikol,newsmast.social,History,history,false -nisemikol,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false -nisemikol,newsmast.social,Indigenous Peoples,indigenous_peoples,false -nisemikol,newsmast.social,Law & Justice,law_justice,false -nisemikol,newsmast.social,LGBTQ+,lgbtq,false -nisemikol,newsmast.social,Physics,physics,false -nisemikol,newsmast.social,Politics,politics,false -nisemikol,newsmast.social,Poverty & Inequality,poverty_inequality,false -nisemikol,newsmast.social,Science,science,false -nisemikol,newsmast.social,Social Sciences,social_sciences,false -nisemikol,newsmast.social,Space,space,false -nisemikol,newsmast.social,Technology,technology,false -nisemikol,newsmast.social,US Politics,us_politics,false -nisemikol,newsmast.social,Women’s Voices,women_voices,false -ifonlycom,newsmast.social,Technology,technology,false -ifonlycom,newsmast.social,US Politics,us_politics,false -ifonlycom,newsmast.social,Academia & Research,academia_research,false -ifonlycom,newsmast.social,AI,ai,false -ifonlycom,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false -ifonlycom,newsmast.social,Biology,biology,false -ifonlycom,newsmast.social,Chemistry,chemistry,false -ifonlycom,newsmast.social,Climate change,climate_change,false -ifonlycom,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -ifonlycom,newsmast.social,Energy & Pollution,energy_pollution,false -ifonlycom,newsmast.social,Engineering,engineering,false -ifonlycom,newsmast.social,Environment,environment,false -ifonlycom,newsmast.social,Government & Policy,government_policy,true -ifonlycom,newsmast.social,Healthcare,healthcare,false -ifonlycom,newsmast.social,History,history,false -ifonlycom,newsmast.social,Humanities,humanities,false -ifonlycom,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false -ifonlycom,newsmast.social,Law & Justice,law_justice,false -ifonlycom,newsmast.social,Mathematics,mathematics,false -ifonlycom,newsmast.social,Philosophy,philosophy,false -ifonlycom,newsmast.social,Physics,physics,false -ifonlycom,newsmast.social,Politics,politics,false -ifonlycom,newsmast.social,Poverty & Inequality,poverty_inequality,false -ifonlycom,newsmast.social,Programming,programming,false -ifonlycom,newsmast.social,Science,science,false -ifonlycom,newsmast.social,Social Sciences,social_sciences,false -ifonlycom,newsmast.social,Space,space,false -feuerkugel,newsmast.social,Breaking News,breaking_news,true -feuerkugel,newsmast.social,Physics,physics,false -feuerkugel,newsmast.social,Science,science,false -feuerkugel,newsmast.social,Space,space,false -feuerkugel,newsmast.social,Technology,technology,false -feuerkugel,newsmast.social,Weather,weather,false -mental_health,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,true -Greg,newsmast.social,Breaking News,breaking_news,true -Greg,newsmast.social,Humanities,humanities,false -Greg,newsmast.social,Humour,humour,false -Greg,newsmast.social,Mathematics,mathematics,false -Greg,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false -Greg,newsmast.social,Nature & Wildlife,nature_wildlife,false -Greg,newsmast.social,Journalism & Comment,news_comment_data,false -Greg,newsmast.social,Philosophy,philosophy,false -Greg,newsmast.social,Programming,programming,false -Greg,newsmast.social,Science,science,false -Greg,newsmast.social,Social Sciences,social_sciences,false -Greg,newsmast.social,Technology,technology,false -ThomasFoster,newsmast.social,Academia & Research,academia_research,false -ThomasFoster,newsmast.social,Activism & Civil Rights,activism_civil_rights,false -ThomasFoster,newsmast.social,Gaming,gaming,false -ThomasFoster,newsmast.social,Immigrants Rights,immigrants_rights,false -ThomasFoster,newsmast.social,Indigenous Peoples,indigenous_peoples,false -ThomasFoster,newsmast.social,Movies,movies,true -ThomasFoster,newsmast.social,Ukraine Invasion,ukraine_invasion,false -ThomasFoster,newsmast.social,Workers Rights,workers_rights,false -fediverso,newsmast.social,Academia & Research,academia_research,true -fediverso,newsmast.social,Activism & Civil Rights,activism_civil_rights,false -fediverso,newsmast.social,AI,ai,false -fediverso,newsmast.social,Biology,biology,false -fediverso,newsmast.social,Chemistry,chemistry,false -fediverso,newsmast.social,Government & Policy,government_policy,false -fediverso,newsmast.social,Humanities,humanities,false -fediverso,newsmast.social,Mathematics,mathematics,false -fediverso,newsmast.social,Physics,physics,false -fediverso,newsmast.social,Social Sciences,social_sciences,false -fediverso,newsmast.social,Technology,technology,false -MichaelCaines,newsmast.social,Humanities,humanities,false -MichaelCaines,newsmast.social,Music,music,false -MichaelCaines,newsmast.social,Performing Arts,performing_arts,false -MichaelCaines,newsmast.social,Photography,photography,false -MichaelCaines,newsmast.social,Visual Arts,visual_arts,false -MichaelCaines,newsmast.social,Books & Literature,books_literature,true -robhoy,newsmast.social,AI,ai,false -robhoy,newsmast.social,Books & Literature,books_literature,false -robhoy,newsmast.social,Breaking News,breaking_news,false -robhoy,newsmast.social,Engineering,engineering,false -robhoy,newsmast.social,Gaming,gaming,false -robhoy,newsmast.social,Programming,programming,false -robhoy,newsmast.social,Social Media,social_media,false -robhoy,newsmast.social,Technology,technology,false -robhoy,newsmast.social,TV & Radio,tv_radio,false -robhoy,newsmast.social,Visual Arts,visual_arts,false -robhoy,newsmast.social,Weather,weather,false -robhoy,newsmast.social,Movies,movies,true -foong,newsmast.social,AI,ai,true -foong,newsmast.social,Architecture & Design,architecture_design,false -foong,newsmast.social,Biology,biology,false -foong,newsmast.social,Books & Literature,books_literature,false -foong,newsmast.social,Business,business,false -foong,newsmast.social,Chemistry,chemistry,false -foong,newsmast.social,Creative Arts,creative_arts,false -foong,newsmast.social,Engineering,engineering,false -foong,newsmast.social,Food & Drink,food_drink,false -foong,newsmast.social,Gaming,gaming,false -foong,newsmast.social,History,history,false -foong,newsmast.social,Humanities,humanities,false -foong,newsmast.social,Humour,humour,false -foong,newsmast.social,Markets & Finance,markets_finance,false -foong,newsmast.social,Mathematics,mathematics,false -foong,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false -foong,newsmast.social,Movies,movies,false -foong,newsmast.social,Music,music,false -foong,newsmast.social,Nature & Wildlife,nature_wildlife,false -foong,newsmast.social,Performing Arts,performing_arts,false -foong,newsmast.social,Pets,pets,false -foong,newsmast.social,Philosophy,philosophy,false -foong,newsmast.social,Photography,photography,false -foong,newsmast.social,Physics,physics,false -foong,newsmast.social,Programming,programming,false -foong,newsmast.social,Puzzles,puzzles,false -foong,newsmast.social,Science,science,false -foong,newsmast.social,Social Sciences,social_sciences,false -foong,newsmast.social,Space,space,false -foong,newsmast.social,Technology,technology,false -foong,newsmast.social,Travel,travel,false -foong,newsmast.social,TV & Radio,tv_radio,false -foong,newsmast.social,Visual Arts,visual_arts,false -foong,newsmast.social,Workers Rights,workers_rights,false -Sas99,newsmast.social,Football,football,false -Sas99,newsmast.social,Journalism & Comment,news_comment_data,false -Sas99,newsmast.social,Social Media,social_media,false -Sas99,newsmast.social,Space,space,true -Sas99,newsmast.social,Sport,sport,false -glecko,newsmast.social,AI,ai,false -glecko,newsmast.social,Biology,biology,false -glecko,newsmast.social,Business,business,false -glecko,newsmast.social,Climate change,climate_change,false -glecko,newsmast.social,Energy & Pollution,energy_pollution,false -glecko,newsmast.social,Environment,environment,false -glecko,newsmast.social,Football,football,true -glecko,newsmast.social,Gaming,gaming,false -glecko,newsmast.social,Humanities,humanities,false -glecko,newsmast.social,Markets & Finance,markets_finance,false -glecko,newsmast.social,Science,science,false -glecko,newsmast.social,Space,space,false -glecko,newsmast.social,Technology,technology,false -glecko,newsmast.social,US Sport,us_sport,false -glecko,newsmast.social,Workers Rights,workers_rights,false -MAD_Democracy,newsmast.social,Healthcare,healthcare,false -MAD_Democracy,newsmast.social,Journalism & Comment,news_comment_data,true -MAD_Democracy,newsmast.social,Politics,politics,false -MAD_Democracy,newsmast.social,Social Media,social_media,false -MAD_Democracy,newsmast.social,US Politics,us_politics,false -tgirl_696,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false -tgirl_696,newsmast.social,Humour,humour,true -tgirl_696,newsmast.social,Performing Arts,performing_arts,false -tgirl_696,newsmast.social,Travel,travel,false -tgirl_696,newsmast.social,Visual Arts,visual_arts,false -Rinn,newsmast.social,AI,ai,false -Rinn,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false -Rinn,newsmast.social,Biology,biology,false -Rinn,newsmast.social,Business,business,false -Rinn,newsmast.social,Chemistry,chemistry,false -Rinn,newsmast.social,Climate change,climate_change,false -Rinn,newsmast.social,Creative Arts,creative_arts,false -Rinn,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -Rinn,newsmast.social,Energy & Pollution,energy_pollution,false -Rinn,newsmast.social,Engineering,engineering,false -Rinn,newsmast.social,Environment,environment,false -Rinn,newsmast.social,Food & Drink,food_drink,false -Rinn,newsmast.social,History,history,false -Rinn,newsmast.social,Humanities,humanities,false -Rinn,newsmast.social,Humour,humour,false -Rinn,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false -Rinn,newsmast.social,Markets & Finance,markets_finance,false -Rinn,newsmast.social,Mathematics,mathematics,false -Rinn,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false -Rinn,newsmast.social,Nature & Wildlife,nature_wildlife,false -Rinn,newsmast.social,Pets,pets,false -Rinn,newsmast.social,Philosophy,philosophy,false -Rinn,newsmast.social,Physics,physics,false -Rinn,newsmast.social,Poverty & Inequality,poverty_inequality,false -Rinn,newsmast.social,Programming,programming,false -Rinn,newsmast.social,Puzzles,puzzles,false -Rinn,newsmast.social,Science,science,false -Rinn,newsmast.social,Social Sciences,social_sciences,false -Rinn,newsmast.social,Space,space,false -Rinn,newsmast.social,Technology,technology,true -Rinn,newsmast.social,Travel,travel,false -Rinn,newsmast.social,Workers Rights,workers_rights,false -dariusofz,newsmast.social,Breaking News,breaking_news,true -miscmisc,newsmast.social,Biology,biology,false -miscmisc,newsmast.social,Breaking News,breaking_news,true -miscmisc,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -miscmisc,newsmast.social,Football,football,false -miscmisc,newsmast.social,Science,science,false -miscmisc,newsmast.social,Sport,sport,false -miscmisc,newsmast.social,Technology,technology,false -sai_myo_1993,newsmast.social,Climate change,climate_change,false -sai_myo_1993,newsmast.social,Engineering,engineering,false -sai_myo_1993,newsmast.social,Environment,environment,false -sai_myo_1993,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false -sai_myo_1993,newsmast.social,Programming,programming,true -jhantytown89,newsmast.social,Academia & Research,academia_research,false -jhantytown89,newsmast.social,Breaking News,breaking_news,false -jhantytown89,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -jhantytown89,newsmast.social,Disabled Voices,disabled_voices,false -jhantytown89,newsmast.social,Government & Policy,government_policy,false -jhantytown89,newsmast.social,Law & Justice,law_justice,false -jhantytown89,newsmast.social,LGBTQ+,lgbtq,false -jhantytown89,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false -jhantytown89,newsmast.social,Journalism & Comment,news_comment_data,false -jhantytown89,newsmast.social,Politics,politics,false -jhantytown89,newsmast.social,Programming,programming,false -jhantytown89,newsmast.social,Social Media,social_media,false -jhantytown89,newsmast.social,Social Sciences,social_sciences,false -jhantytown89,newsmast.social,Technology,technology,true -jhantytown89,newsmast.social,US Politics,us_politics,false -jhantytown89,newsmast.social,Poverty & Inequality,poverty_inequality,false -jhantytown89,newsmast.social,Science,science,false -jhantytown89,newsmast.social,Workers Rights,workers_rights,false -Lady_IniQ,newsmast.social,Architecture & Design,architecture_design,false -Lady_IniQ,newsmast.social,Gaming,gaming,false -Lady_IniQ,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,true -Lady_IniQ,newsmast.social,Movies,movies,false -Lady_IniQ,newsmast.social,Nature & Wildlife,nature_wildlife,false -Lady_IniQ,newsmast.social,Pets,pets,false -Lady_IniQ,newsmast.social,Travel,travel,false -GiuliaTranchina,newsmast.social,Humanities,humanities,false -GiuliaTranchina,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false -GiuliaTranchina,newsmast.social,Law & Justice,law_justice,false -GiuliaTranchina,newsmast.social,Poverty & Inequality,poverty_inequality,false -GiuliaTranchina,newsmast.social,Social Sciences,social_sciences,false -GiuliaTranchina,newsmast.social,Democracy & Human Rights,democracy_human_rights,true -benjamin,newsmast.social,Biology,biology,false -benjamin,newsmast.social,Breaking News,breaking_news,false -benjamin,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -benjamin,newsmast.social,Physics,physics,false -benjamin,newsmast.social,Poverty & Inequality,poverty_inequality,false -benjamin,newsmast.social,Programming,programming,false -benjamin,newsmast.social,Science,science,false -benjamin,newsmast.social,Social Media,social_media,true -benjamin,newsmast.social,Space,space,false -benjamin,newsmast.social,Technology,technology,false -benjamin,newsmast.social,US Sport,us_sport,false -paige_travels,newsmast.social,Books & Literature,books_literature,false -paige_travels,newsmast.social,Food & Drink,food_drink,false -paige_travels,newsmast.social,Nature & Wildlife,nature_wildlife,false -paige_travels,newsmast.social,Photography,photography,false -paige_travels,newsmast.social,Travel,travel,true -OurSkyHaven,newsmast.social,Architecture & Design,architecture_design,false -OurSkyHaven,newsmast.social,Books & Literature,books_literature,false -OurSkyHaven,newsmast.social,Breaking News,breaking_news,false -OurSkyHaven,newsmast.social,Football,football,true -OurSkyHaven,newsmast.social,Gaming,gaming,false -OurSkyHaven,newsmast.social,Movies,movies,false -OurSkyHaven,newsmast.social,Music,music,false -OurSkyHaven,newsmast.social,Performing Arts,performing_arts,false -OurSkyHaven,newsmast.social,Photography,photography,false -OurSkyHaven,newsmast.social,Sport,sport,false -OurSkyHaven,newsmast.social,TV & Radio,tv_radio,false -OurSkyHaven,newsmast.social,US Sport,us_sport,false -OurSkyHaven,newsmast.social,Visual Arts,visual_arts,false -sheckmo,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false -sheckmo,newsmast.social,Climate change,climate_change,true -sheckmo,newsmast.social,Energy & Pollution,energy_pollution,false -sheckmo,newsmast.social,Environment,environment,false -sheckmo,newsmast.social,Science,science,false -sheckmo,newsmast.social,US Politics,us_politics,false -mariana_b,newsmast.social,Nature & Wildlife,nature_wildlife,false -mariana_b,newsmast.social,Government & Policy,government_policy,false -mariana_b,newsmast.social,Movies,movies,false -mariana_b,newsmast.social,Philosophy,philosophy,false -mariana_b,newsmast.social,Activism & Civil Rights,activism_civil_rights,false -mariana_b,newsmast.social,LGBTQ+,lgbtq,false -mariana_b,newsmast.social,Journalism & Comment,news_comment_data,true -mariana_b,newsmast.social,Travel,travel,false -mariana_b,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false -mariana_b,newsmast.social,History,history,false -mariana_b,newsmast.social,Pets,pets,false -mariana_b,newsmast.social,Politics,politics,false -mariana_b,newsmast.social,Social Sciences,social_sciences,false -mariana_b,newsmast.social,Books & Literature,books_literature,false -mariana_b,newsmast.social,Music,music,false -mariana_b,newsmast.social,Markets & Finance,markets_finance,false -mariana_b,newsmast.social,Breaking News,breaking_news,false -mariana_b,newsmast.social,AI,ai,false -mariana_b,newsmast.social,Climate change,climate_change,false -mariana_b,newsmast.social,Biology,biology,false -mariana_b,newsmast.social,Chemistry,chemistry,false -mariana_b,newsmast.social,Physics,physics,false -mariana_b,newsmast.social,Business,business,false -mariana_b,newsmast.social,Black Voices,black_voices,false -mariana_b,newsmast.social,Ukraine Invasion,ukraine_invasion,false -mariana_b,newsmast.social,Technology,technology,false -mariana_b,newsmast.social,Women’s Voices,women_voices,false -mariana_b,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false -mariana_b,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false -mariana_b,newsmast.social,Football,football,false -mariana_b,newsmast.social,Food & Drink,food_drink,false -mariana_b,newsmast.social,Space,space,false -mariana_b,newsmast.social,Healthcare,healthcare,false -mariana_b,newsmast.social,Academia & Research,academia_research,false -mariana_b,newsmast.social,Weather,weather,false -Douglas_1,newsmast.social,Breaking News,breaking_news,false -Douglas_1,newsmast.social,Nature & Wildlife,nature_wildlife,false -Douglas_1,newsmast.social,Pets,pets,true -Douglas_1,newsmast.social,Travel,travel,false -Douglas_1,newsmast.social,Weather,weather,false -heartlandnews,newsmast.social,Academia & Research,academia_research,false -heartlandnews,newsmast.social,Activism & Civil Rights,activism_civil_rights,false -heartlandnews,newsmast.social,AI,ai,false -heartlandnews,newsmast.social,Architecture & Design,architecture_design,false -heartlandnews,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false -heartlandnews,newsmast.social,Biology,biology,false -heartlandnews,newsmast.social,Black Voices,black_voices,false -heartlandnews,newsmast.social,Books & Literature,books_literature,false -heartlandnews,newsmast.social,Breaking News,breaking_news,false -heartlandnews,newsmast.social,Business,business,false -heartlandnews,newsmast.social,Chemistry,chemistry,false -heartlandnews,newsmast.social,Climate change,climate_change,false -heartlandnews,newsmast.social,Creative Arts,creative_arts,false -heartlandnews,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -heartlandnews,newsmast.social,Disabled Voices,disabled_voices,false -heartlandnews,newsmast.social,Energy & Pollution,energy_pollution,false -heartlandnews,newsmast.social,Engineering,engineering,false -heartlandnews,newsmast.social,Environment,environment,false -heartlandnews,newsmast.social,Food & Drink,food_drink,false -heartlandnews,newsmast.social,Football,football,false -heartlandnews,newsmast.social,Gaming,gaming,false -heartlandnews,newsmast.social,Government & Policy,government_policy,false -heartlandnews,newsmast.social,Healthcare,healthcare,false -heartlandnews,newsmast.social,History,history,false -heartlandnews,newsmast.social,Humanities,humanities,false -heartlandnews,newsmast.social,Humour,humour,false -heartlandnews,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false -heartlandnews,newsmast.social,Immigrants Rights,immigrants_rights,false -heartlandnews,newsmast.social,Indigenous Peoples,indigenous_peoples,false -heartlandnews,newsmast.social,Law & Justice,law_justice,false -heartlandnews,newsmast.social,LGBTQ+,lgbtq,false -heartlandnews,newsmast.social,Markets & Finance,markets_finance,false -heartlandnews,newsmast.social,Mathematics,mathematics,false -heartlandnews,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false -heartlandnews,newsmast.social,Movies,movies,false -heartlandnews,newsmast.social,Music,music,false -heartlandnews,newsmast.social,Nature & Wildlife,nature_wildlife,false -heartlandnews,newsmast.social,Journalism & Comment,news_comment_data,true -heartlandnews,newsmast.social,Performing Arts,performing_arts,false -heartlandnews,newsmast.social,Pets,pets,false -heartlandnews,newsmast.social,Philosophy,philosophy,false -heartlandnews,newsmast.social,Photography,photography,false -heartlandnews,newsmast.social,Physics,physics,false -heartlandnews,newsmast.social,Politics,politics,false -heartlandnews,newsmast.social,Poverty & Inequality,poverty_inequality,false -heartlandnews,newsmast.social,Programming,programming,false -heartlandnews,newsmast.social,Puzzles,puzzles,false -heartlandnews,newsmast.social,Science,science,false -heartlandnews,newsmast.social,Social Media,social_media,false -heartlandnews,newsmast.social,Social Sciences,social_sciences,false -heartlandnews,newsmast.social,Space,space,false -heartlandnews,newsmast.social,Sport,sport,false -heartlandnews,newsmast.social,Technology,technology,false -heartlandnews,newsmast.social,Travel,travel,false -heartlandnews,newsmast.social,TV & Radio,tv_radio,false -heartlandnews,newsmast.social,Ukraine Invasion,ukraine_invasion,false -heartlandnews,newsmast.social,US Politics,us_politics,false -heartlandnews,newsmast.social,US Sport,us_sport,false -heartlandnews,newsmast.social,Visual Arts,visual_arts,false -heartlandnews,newsmast.social,Weather,weather,false -heartlandnews,newsmast.social,Women’s Voices,women_voices,false -heartlandnews,newsmast.social,Workers Rights,workers_rights,false -rydercashnews,newsmast.social,Activism & Civil Rights,activism_civil_rights,false -rydercashnews,newsmast.social,AI,ai,false -rydercashnews,newsmast.social,Engineering,engineering,false -rydercashnews,newsmast.social,Law & Justice,law_justice,true -rydercashnews,newsmast.social,Programming,programming,false -rydercashnews,newsmast.social,Technology,technology,false -DaMontayyer,newsmast.social,Academia & Research,academia_research,false -DaMontayyer,newsmast.social,Architecture & Design,architecture_design,false -DaMontayyer,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false -DaMontayyer,newsmast.social,Climate change,climate_change,false -DaMontayyer,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -DaMontayyer,newsmast.social,Disabled Voices,disabled_voices,false -DaMontayyer,newsmast.social,Energy & Pollution,energy_pollution,false -DaMontayyer,newsmast.social,Environment,environment,false -DaMontayyer,newsmast.social,Football,football,true -DaMontayyer,newsmast.social,Gaming,gaming,false -DaMontayyer,newsmast.social,Government & Policy,government_policy,false -DaMontayyer,newsmast.social,Healthcare,healthcare,false -DaMontayyer,newsmast.social,History,history,false -DaMontayyer,newsmast.social,Immigrants Rights,immigrants_rights,false -DaMontayyer,newsmast.social,LGBTQ+,lgbtq,false -DaMontayyer,newsmast.social,Movies,movies,false -DaMontayyer,newsmast.social,Music,music,false -DaMontayyer,newsmast.social,Politics,politics,false -DaMontayyer,newsmast.social,Programming,programming,false -DaMontayyer,newsmast.social,Sport,sport,false -DaMontayyer,newsmast.social,Technology,technology,false -DaMontayyer,newsmast.social,TV & Radio,tv_radio,false -DaMontayyer,newsmast.social,US Politics,us_politics,false -DaMontayyer,newsmast.social,US Sport,us_sport,false -DaMontayyer,newsmast.social,Visual Arts,visual_arts,false -DaMontayyer,newsmast.social,Women’s Voices,women_voices,false -markus,newsmast.social,AI,ai,true -markus,newsmast.social,Creative Arts,creative_arts,false -markus,newsmast.social,Engineering,engineering,false -markus,newsmast.social,Science,science,false -markus,newsmast.social,Technology,technology,false -lasp,newsmast.social,Academia & Research,academia_research,false -lasp,newsmast.social,AI,ai,false -lasp,newsmast.social,Architecture & Design,architecture_design,false -lasp,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false -lasp,newsmast.social,Books & Literature,books_literature,false -lasp,newsmast.social,Breaking News,breaking_news,false -lasp,newsmast.social,Climate change,climate_change,false -lasp,newsmast.social,Creative Arts,creative_arts,false -lasp,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -lasp,newsmast.social,Environment,environment,false -lasp,newsmast.social,Humanities,humanities,false -lasp,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false -lasp,newsmast.social,Movies,movies,false -lasp,newsmast.social,Music,music,false -lasp,newsmast.social,Journalism & Comment,news_comment_data,true -lasp,newsmast.social,Philosophy,philosophy,false -lasp,newsmast.social,Social Sciences,social_sciences,false -lasp,newsmast.social,Visual Arts,visual_arts,false -Dade_Murphy,newsmast.social,Technology,technology,true -Dade_Murphy,newsmast.social,Breaking News,breaking_news,false -DFLS,newsmast.social,Architecture & Design,architecture_design,false -DFLS,newsmast.social,Books & Literature,books_literature,false -DFLS,newsmast.social,Breaking News,breaking_news,false -DFLS,newsmast.social,Business,business,true -DFLS,newsmast.social,Creative Arts,creative_arts,false -DFLS,newsmast.social,Food & Drink,food_drink,false -DFLS,newsmast.social,Gaming,gaming,false -DFLS,newsmast.social,Humour,humour,false -DFLS,newsmast.social,Markets & Finance,markets_finance,false -DFLS,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false -DFLS,newsmast.social,Movies,movies,false -DFLS,newsmast.social,Music,music,false -DFLS,newsmast.social,Nature & Wildlife,nature_wildlife,false -DFLS,newsmast.social,Journalism & Comment,news_comment_data,false -DFLS,newsmast.social,Performing Arts,performing_arts,false -DFLS,newsmast.social,Pets,pets,false -DFLS,newsmast.social,Photography,photography,false -DFLS,newsmast.social,Puzzles,puzzles,false -DFLS,newsmast.social,Social Media,social_media,false -DFLS,newsmast.social,Travel,travel,false -DFLS,newsmast.social,TV & Radio,tv_radio,false -DFLS,newsmast.social,Ukraine Invasion,ukraine_invasion,false -DFLS,newsmast.social,Visual Arts,visual_arts,false -DFLS,newsmast.social,Weather,weather,false -DFLS,newsmast.social,Workers Rights,workers_rights,false -PB51,newsmast.social,Books & Literature,books_literature,true -PB51,newsmast.social,Climate change,climate_change,false -PB51,newsmast.social,Environment,environment,false -PB51,newsmast.social,US Politics,us_politics,false -PB51,newsmast.social,US Sport,us_sport,false -desire2undrstnd,newsmast.social,AI,ai,false -desire2undrstnd,newsmast.social,Football,football,false -desire2undrstnd,newsmast.social,Humour,humour,false -desire2undrstnd,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false -desire2undrstnd,newsmast.social,Technology,technology,true -desire2undrstnd,newsmast.social,US Sport,us_sport,false -toyin,newsmast.social,Activism & Civil Rights,activism_civil_rights,false -toyin,newsmast.social,Breaking News,breaking_news,false -toyin,newsmast.social,Disabled Voices,disabled_voices,false -toyin,newsmast.social,History,history,false -toyin,newsmast.social,Humanities,humanities,false -toyin,newsmast.social,Immigrants Rights,immigrants_rights,false -toyin,newsmast.social,Indigenous Peoples,indigenous_peoples,false -toyin,newsmast.social,LGBTQ+,lgbtq,false -toyin,newsmast.social,Journalism & Comment,news_comment_data,false -toyin,newsmast.social,Philosophy,philosophy,false -toyin,newsmast.social,Social Media,social_media,false -toyin,newsmast.social,Social Sciences,social_sciences,false -toyin,newsmast.social,Women’s Voices,women_voices,false -toyin,newsmast.social,Black Voices,black_voices,true -navayan,newsmast.social,Breaking News,breaking_news,true -navayan,newsmast.social,Journalism & Comment,news_comment_data,false -navayan,newsmast.social,Social Media,social_media,false -navayan,newsmast.social,Ukraine Invasion,ukraine_invasion,false -navayan,newsmast.social,Weather,weather,false -param_21,newsmast.social,Academia & Research,academia_research,false -param_21,newsmast.social,Breaking News,breaking_news,false -param_21,newsmast.social,Business,business,false -param_21,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -param_21,newsmast.social,Football,football,false -param_21,newsmast.social,Government & Policy,government_policy,false -param_21,newsmast.social,Humour,humour,false -param_21,newsmast.social,Law & Justice,law_justice,false -param_21,newsmast.social,Markets & Finance,markets_finance,true -param_21,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false -param_21,newsmast.social,Pets,pets,false -param_21,newsmast.social,Philosophy,philosophy,false -param_21,newsmast.social,Puzzles,puzzles,false -beta_123,newsmast.social,Breaking News,breaking_news,false -beta_123,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -beta_123,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false -beta_123,newsmast.social,Journalism & Comment,news_comment_data,false -beta_123,newsmast.social,Poverty & Inequality,poverty_inequality,true -beta_123,newsmast.social,Ukraine Invasion,ukraine_invasion,false -beta_123,newsmast.social,Weather,weather,false -beta_123,newsmast.social,Social Media,social_media,false -beta_123,newsmast.social,Indigenous Peoples,indigenous_peoples,false -Karia,newsmast.social,Pets,pets,false -Karia,newsmast.social,Philosophy,philosophy,false -Karia,newsmast.social,Academia & Research,academia_research,false -Karia,newsmast.social,AI,ai,false -Karia,newsmast.social,Creative Arts,creative_arts,false -Karia,newsmast.social,Engineering,engineering,false -Karia,newsmast.social,Food & Drink,food_drink,true -Karia,newsmast.social,Government & Policy,government_policy,false -Karia,newsmast.social,Healthcare,healthcare,false -Karia,newsmast.social,History,history,false -Karia,newsmast.social,Humanities,humanities,false -Karia,newsmast.social,Humour,humour,false -Karia,newsmast.social,Law & Justice,law_justice,false -Karia,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false -Karia,newsmast.social,Nature & Wildlife,nature_wildlife,false -Karia,newsmast.social,Politics,politics,false -Karia,newsmast.social,Programming,programming,false -Karia,newsmast.social,Puzzles,puzzles,false -Karia,newsmast.social,Social Sciences,social_sciences,false -Karia,newsmast.social,Technology,technology,false -Karia,newsmast.social,Travel,travel,false -Karia,newsmast.social,US Politics,us_politics,false -hfodndnd,newsmast.social,Activism & Civil Rights,activism_civil_rights,false -hfodndnd,newsmast.social,Black Voices,black_voices,false -hfodndnd,newsmast.social,Disabled Voices,disabled_voices,false -hfodndnd,newsmast.social,Immigrants Rights,immigrants_rights,false -hfodndnd,newsmast.social,Indigenous Peoples,indigenous_peoples,true -hfodndnd,newsmast.social,LGBTQ+,lgbtq,false -hfodndnd,newsmast.social,Women’s Voices,women_voices,false -reubenwr,newsmast.social,Activism & Civil Rights,activism_civil_rights,false -reubenwr,newsmast.social,Books & Literature,books_literature,false -reubenwr,newsmast.social,History,history,false -reubenwr,newsmast.social,Humanities,humanities,false -reubenwr,newsmast.social,Immigrants Rights,immigrants_rights,false -reubenwr,newsmast.social,Movies,movies,true -reubenwr,newsmast.social,Philosophy,philosophy,false -JenniferLawson,newsmast.social,Energy & Pollution,energy_pollution,false -JenniferLawson,newsmast.social,Books & Literature,books_literature,false -JenniferLawson,newsmast.social,History,history,false -JenniferLawson,newsmast.social,Humanities,humanities,true -JenniferLawson,newsmast.social,Philosophy,philosophy,false -JenniferLawson,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false -JenniferLawson,newsmast.social,Climate change,climate_change,false -JenniferLawson,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -JenniferLawson,newsmast.social,Disabled Voices,disabled_voices,false -JenniferLawson,newsmast.social,Environment,environment,false -JenniferLawson,newsmast.social,Government & Policy,government_policy,false -JenniferLawson,newsmast.social,Healthcare,healthcare,false -JenniferLawson,newsmast.social,Immigrants Rights,immigrants_rights,false -JenniferLawson,newsmast.social,Indigenous Peoples,indigenous_peoples,false -JenniferLawson,newsmast.social,Law & Justice,law_justice,false -JenniferLawson,newsmast.social,LGBTQ+,lgbtq,false -JenniferLawson,newsmast.social,Mathematics,mathematics,false -JenniferLawson,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false -JenniferLawson,newsmast.social,Journalism & Comment,news_comment_data,false -JenniferLawson,newsmast.social,Physics,physics,false -JenniferLawson,newsmast.social,Politics,politics,false -JenniferLawson,newsmast.social,Science,science,false -JenniferLawson,newsmast.social,Social Sciences,social_sciences,false -JenniferLawson,newsmast.social,Weather,weather,false -JenniferLawson,newsmast.social,Women’s Voices,women_voices,false -JenniferLawson,newsmast.social,Workers Rights,workers_rights,false -JenniferLawson,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false -JenniferLawson,newsmast.social,Poverty & Inequality,poverty_inequality,false -JHBernstein,newsmast.social,Academia & Research,academia_research,false -JHBernstein,newsmast.social,Architecture & Design,architecture_design,true -JHBernstein,newsmast.social,Biology,biology,false -JHBernstein,newsmast.social,Books & Literature,books_literature,false -JHBernstein,newsmast.social,Chemistry,chemistry,false -JHBernstein,newsmast.social,Climate change,climate_change,false -JHBernstein,newsmast.social,Environment,environment,false -JHBernstein,newsmast.social,Gaming,gaming,false -JHBernstein,newsmast.social,History,history,false -JHBernstein,newsmast.social,Humanities,humanities,false -JHBernstein,newsmast.social,Law & Justice,law_justice,false -JHBernstein,newsmast.social,Mathematics,mathematics,false -JHBernstein,newsmast.social,Movies,movies,false -JHBernstein,newsmast.social,Music,music,false -JHBernstein,newsmast.social,Performing Arts,performing_arts,false -JHBernstein,newsmast.social,Philosophy,philosophy,false -JHBernstein,newsmast.social,Photography,photography,false -JHBernstein,newsmast.social,Physics,physics,false -JHBernstein,newsmast.social,Politics,politics,false -JHBernstein,newsmast.social,Science,science,false -JHBernstein,newsmast.social,Social Sciences,social_sciences,false -JHBernstein,newsmast.social,Space,space,false -JHBernstein,newsmast.social,TV & Radio,tv_radio,false -JHBernstein,newsmast.social,US Politics,us_politics,false -JHBernstein,newsmast.social,Visual Arts,visual_arts,false -ppt556,newsmast.social,AI,ai,false -ppt556,newsmast.social,Breaking News,breaking_news,false -ppt556,newsmast.social,Engineering,engineering,false -ppt556,newsmast.social,Football,football,true -ppt556,newsmast.social,Journalism & Comment,news_comment_data,false -ppt556,newsmast.social,Programming,programming,false -ppt556,newsmast.social,Social Media,social_media,false -ppt556,newsmast.social,Technology,technology,false -ppt556,newsmast.social,Ukraine Invasion,ukraine_invasion,false -ppt556,newsmast.social,US Sport,us_sport,false -ppt556,newsmast.social,Weather,weather,false -kaunglay,newsmast.social,Engineering,engineering,true -finserving,newsmast.social,Academia & Research,academia_research,false -finserving,newsmast.social,AI,ai,false -finserving,newsmast.social,Business,business,false -finserving,newsmast.social,Engineering,engineering,false -finserving,newsmast.social,Government & Policy,government_policy,false -finserving,newsmast.social,Healthcare,healthcare,false -finserving,newsmast.social,Law & Justice,law_justice,false -finserving,newsmast.social,Markets & Finance,markets_finance,true -finserving,newsmast.social,Politics,politics,false -finserving,newsmast.social,Programming,programming,false -finserving,newsmast.social,Technology,technology,false -finserving,newsmast.social,US Politics,us_politics,false -finserving,newsmast.social,Workers Rights,workers_rights,false -sophia_robeet,newsmast.social,Business,business,false -sophia_robeet,newsmast.social,Government & Policy,government_policy,false -sophia_robeet,newsmast.social,Science,science,false -sophia_robeet,newsmast.social,Sport,sport,false -sophia_robeet,newsmast.social,Technology,technology,true -canvasoul,newsmast.social,Humanities,humanities,false -canvasoul,newsmast.social,Music,music,false -canvasoul,newsmast.social,Philosophy,philosophy,false -canvasoul,newsmast.social,Photography,photography,true -canvasoul,newsmast.social,Space,space,false -sean,newsmast.social,Activism & Civil Rights,activism_civil_rights,false -sean,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false -sean,newsmast.social,Biology,biology,false -sean,newsmast.social,Books & Literature,books_literature,false -sean,newsmast.social,Climate change,climate_change,false -sean,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -sean,newsmast.social,Energy & Pollution,energy_pollution,false -sean,newsmast.social,Environment,environment,false -sean,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false -sean,newsmast.social,Indigenous Peoples,indigenous_peoples,false -sean,newsmast.social,LGBTQ+,lgbtq,false -sean,newsmast.social,Movies,movies,false -sean,newsmast.social,Music,music,false -sean,newsmast.social,Photography,photography,false -sean,newsmast.social,Poverty & Inequality,poverty_inequality,false -sean,newsmast.social,Science,science,false -sean,newsmast.social,Space,space,false -sean,newsmast.social,Sport,sport,false -sean,newsmast.social,Technology,technology,false -sean,newsmast.social,Visual Arts,visual_arts,false -sean,newsmast.social,Journalism & Comment,news_comment_data,true -sean,newsmast.social,Breaking News,breaking_news,false -sean,newsmast.social,Healthcare,healthcare,false -sean,newsmast.social,Academia & Research,academia_research,false -sean,newsmast.social,Workers Rights,workers_rights,false -sean,newsmast.social,Food & Drink,food_drink,false -sean,newsmast.social,Humour,humour,false -sean,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false -sean,newsmast.social,Travel,travel,false -sean,newsmast.social,Creative Arts,creative_arts,false -sean,newsmast.social,Law & Justice,law_justice,false -sean,newsmast.social,Philosophy,philosophy,false -sean,newsmast.social,History,history,false -sean,newsmast.social,Social Sciences,social_sciences,false -sean,newsmast.social,Humanities,humanities,false -sean,newsmast.social,Nature & Wildlife,nature_wildlife,false -sean,newsmast.social,Pets,pets,false -kijekijikokwe,newsmast.social,Academia & Research,academia_research,false -kijekijikokwe,newsmast.social,Activism & Civil Rights,activism_civil_rights,false -kijekijikokwe,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -kijekijikokwe,newsmast.social,Disabled Voices,disabled_voices,false -kijekijikokwe,newsmast.social,Healthcare,healthcare,false -kijekijikokwe,newsmast.social,Indigenous Peoples,indigenous_peoples,true -kijekijikokwe,newsmast.social,Law & Justice,law_justice,false -kijekijikokwe,newsmast.social,LGBTQ+,lgbtq,false -TheBestLeiya,newsmast.social,Activism & Civil Rights,activism_civil_rights,false -TheBestLeiya,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false -TheBestLeiya,newsmast.social,Breaking News,breaking_news,false -TheBestLeiya,newsmast.social,Climate change,climate_change,false -TheBestLeiya,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -TheBestLeiya,newsmast.social,Disabled Voices,disabled_voices,false -TheBestLeiya,newsmast.social,Energy & Pollution,energy_pollution,false -TheBestLeiya,newsmast.social,Environment,environment,false -TheBestLeiya,newsmast.social,Healthcare,healthcare,false -TheBestLeiya,newsmast.social,Humanities,humanities,false -TheBestLeiya,newsmast.social,LGBTQ+,lgbtq,true -TheBestLeiya,newsmast.social,Journalism & Comment,news_comment_data,false -TheBestLeiya,newsmast.social,Politics,politics,false -TheBestLeiya,newsmast.social,Poverty & Inequality,poverty_inequality,false -TheBestLeiya,newsmast.social,Social Sciences,social_sciences,false -TheBestLeiya,newsmast.social,Women’s Voices,women_voices,false -bobo,newsmast.social,Activism & Civil Rights,activism_civil_rights,false -bobo,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false -bobo,newsmast.social,Biology,biology,false -bobo,newsmast.social,Black Voices,black_voices,false -bobo,newsmast.social,Breaking News,breaking_news,true -bobo,newsmast.social,Business,business,false -bobo,newsmast.social,Chemistry,chemistry,false -bobo,newsmast.social,Climate change,climate_change,false -bobo,newsmast.social,Creative Arts,creative_arts,false -bobo,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -bobo,newsmast.social,Disabled Voices,disabled_voices,false -bobo,newsmast.social,Energy & Pollution,energy_pollution,false -bobo,newsmast.social,Environment,environment,false -bobo,newsmast.social,Food & Drink,food_drink,false -bobo,newsmast.social,Football,football,false -bobo,newsmast.social,History,history,false -bobo,newsmast.social,Humanities,humanities,false -bobo,newsmast.social,Humour,humour,false -bobo,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false -bobo,newsmast.social,Immigrants Rights,immigrants_rights,false -bobo,newsmast.social,Indigenous Peoples,indigenous_peoples,false -bobo,newsmast.social,LGBTQ+,lgbtq,false -bobo,newsmast.social,Markets & Finance,markets_finance,false -bobo,newsmast.social,Mathematics,mathematics,false -bobo,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false -bobo,newsmast.social,Nature & Wildlife,nature_wildlife,false -bobo,newsmast.social,Journalism & Comment,news_comment_data,false -bobo,newsmast.social,Pets,pets,false -bobo,newsmast.social,Philosophy,philosophy,false -bobo,newsmast.social,Physics,physics,false -bobo,newsmast.social,Poverty & Inequality,poverty_inequality,false -bobo,newsmast.social,Puzzles,puzzles,false -bobo,newsmast.social,Science,science,false -bobo,newsmast.social,Social Media,social_media,false -bobo,newsmast.social,Social Sciences,social_sciences,false -bobo,newsmast.social,Space,space,false -bobo,newsmast.social,Sport,sport,false -bobo,newsmast.social,Travel,travel,false -bobo,newsmast.social,Ukraine Invasion,ukraine_invasion,false -bobo,newsmast.social,US Sport,us_sport,false -bobo,newsmast.social,Weather,weather,false -bobo,newsmast.social,Women’s Voices,women_voices,false -bobo,newsmast.social,Workers Rights,workers_rights,false -johndonald,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false -johndonald,newsmast.social,History,history,false -johndonald,newsmast.social,Humanities,humanities,false -johndonald,newsmast.social,Philosophy,philosophy,false -johndonald,newsmast.social,Social Sciences,social_sciences,true -flipflop,newsmast.social,Humour,humour,false -flipflop,newsmast.social,Mathematics,mathematics,false -flipflop,newsmast.social,Physics,physics,false -flipflop,newsmast.social,Puzzles,puzzles,true -flipflop,newsmast.social,Science,science,false -flipflop,newsmast.social,Space,space,false -flipflop,newsmast.social,Technology,technology,false -flipflop,newsmast.social,TV & Radio,tv_radio,false -flipflop,newsmast.social,Breaking News,breaking_news,false -TheTravelBunny,newsmast.social,Architecture & Design,architecture_design,false -TheTravelBunny,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false -TheTravelBunny,newsmast.social,Books & Literature,books_literature,false -TheTravelBunny,newsmast.social,Environment,environment,false -TheTravelBunny,newsmast.social,Food & Drink,food_drink,false -TheTravelBunny,newsmast.social,Nature & Wildlife,nature_wildlife,false -TheTravelBunny,newsmast.social,Photography,photography,false -TheTravelBunny,newsmast.social,Travel,travel,true -BostonAbrams,newsmast.social,History,history,false -BostonAbrams,newsmast.social,Humanities,humanities,false -BostonAbrams,newsmast.social,Journalism & Comment,news_comment_data,false -BostonAbrams,newsmast.social,Philosophy,philosophy,false -BostonAbrams,newsmast.social,Social Media,social_media,false -BostonAbrams,newsmast.social,Breaking News,breaking_news,true -BostonAbrams,newsmast.social,Space,space,false -BostonAbrams,newsmast.social,Science,science,false -BostonAbrams,newsmast.social,Books & Literature,books_literature,false -BostonAbrams,newsmast.social,Food & Drink,food_drink,false -BostonAbrams,newsmast.social,Puzzles,puzzles,false -FamilyFunTravel,newsmast.social,Football,football,false -FamilyFunTravel,newsmast.social,Immigrants Rights,immigrants_rights,false -FamilyFunTravel,newsmast.social,Sport,sport,false -FamilyFunTravel,newsmast.social,US Sport,us_sport,false -FamilyFunTravel,newsmast.social,Women’s Voices,women_voices,true -vmatt,newsmast.social,Activism & Civil Rights,activism_civil_rights,false -vmatt,newsmast.social,AI,ai,false -vmatt,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -vmatt,newsmast.social,Engineering,engineering,false -vmatt,newsmast.social,Football,football,false -vmatt,newsmast.social,Humanities,humanities,false -vmatt,newsmast.social,LGBTQ+,lgbtq,false -vmatt,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false -vmatt,newsmast.social,Movies,movies,false -vmatt,newsmast.social,Music,music,false -vmatt,newsmast.social,Journalism & Comment,news_comment_data,false -vmatt,newsmast.social,Philosophy,philosophy,false -vmatt,newsmast.social,Programming,programming,false -vmatt,newsmast.social,Puzzles,puzzles,false -vmatt,newsmast.social,Social Sciences,social_sciences,false -vmatt,newsmast.social,Technology,technology,false -vmatt,newsmast.social,Travel,travel,false -vmatt,newsmast.social,TV & Radio,tv_radio,false -vmatt,newsmast.social,Visual Arts,visual_arts,false -vmatt,newsmast.social,Books & Literature,books_literature,true -tomo,newsmast.social,Music,music,false -tomo,newsmast.social,Social Media,social_media,true -tomo,newsmast.social,Sport,sport,false -tomo,newsmast.social,Technology,technology,false -tomo,newsmast.social,TV & Radio,tv_radio,false -tomo,newsmast.social,Weather,weather,false -drbradtucker,newsmast.social,AI,ai,false -drbradtucker,newsmast.social,Physics,physics,false -drbradtucker,newsmast.social,Science,science,false -drbradtucker,newsmast.social,Social Sciences,social_sciences,false -drbradtucker,newsmast.social,Space,space,true -Maily,newsmast.social,AI,ai,false -Maily,newsmast.social,Movies,movies,false -Maily,newsmast.social,Music,music,false -Maily,newsmast.social,Technology,technology,false -Maily,newsmast.social,Women’s Voices,women_voices,true -MattSaltmarsh,newsmast.social,Breaking News,breaking_news,true -MattSaltmarsh,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -MattSaltmarsh,newsmast.social,Government & Policy,government_policy,false -MattSaltmarsh,newsmast.social,Journalism & Comment,news_comment_data,false -MattSaltmarsh,newsmast.social,Politics,politics,false -Elioz,newsmast.social,Activism & Civil Rights,activism_civil_rights,false -Elioz,newsmast.social,AI,ai,false -Elioz,newsmast.social,Architecture & Design,architecture_design,false -Elioz,newsmast.social,Black Voices,black_voices,false -Elioz,newsmast.social,Books & Literature,books_literature,false -Elioz,newsmast.social,Breaking News,breaking_news,false -Elioz,newsmast.social,Business,business,false -Elioz,newsmast.social,Engineering,engineering,false -Elioz,newsmast.social,Environment,environment,false -Elioz,newsmast.social,Humour,humour,false -Elioz,newsmast.social,LGBTQ+,lgbtq,false -Elioz,newsmast.social,Movies,movies,false -Elioz,newsmast.social,Music,music,false -Elioz,newsmast.social,Performing Arts,performing_arts,false -Elioz,newsmast.social,Pets,pets,false -Elioz,newsmast.social,Photography,photography,false -Elioz,newsmast.social,Programming,programming,false -Elioz,newsmast.social,Technology,technology,false -Elioz,newsmast.social,Travel,travel,false -Elioz,newsmast.social,TV & Radio,tv_radio,false -Elioz,newsmast.social,Ukraine Invasion,ukraine_invasion,false -Elioz,newsmast.social,Visual Arts,visual_arts,false -Elioz,newsmast.social,Creative Arts,creative_arts,true -psthisrocks,newsmast.social,Academia & Research,academia_research,false -psthisrocks,newsmast.social,AI,ai,false -psthisrocks,newsmast.social,Books & Literature,books_literature,false -psthisrocks,newsmast.social,Breaking News,breaking_news,false -psthisrocks,newsmast.social,Business,business,false -psthisrocks,newsmast.social,Creative Arts,creative_arts,false -psthisrocks,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -psthisrocks,newsmast.social,Engineering,engineering,false -psthisrocks,newsmast.social,Food & Drink,food_drink,false -psthisrocks,newsmast.social,Gaming,gaming,false -psthisrocks,newsmast.social,Government & Policy,government_policy,false -psthisrocks,newsmast.social,Healthcare,healthcare,false -psthisrocks,newsmast.social,History,history,false -psthisrocks,newsmast.social,Humanities,humanities,false -psthisrocks,newsmast.social,Humour,humour,false -psthisrocks,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false -psthisrocks,newsmast.social,Law & Justice,law_justice,false -psthisrocks,newsmast.social,Markets & Finance,markets_finance,false -psthisrocks,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false -psthisrocks,newsmast.social,Movies,movies,false -psthisrocks,newsmast.social,Music,music,false -psthisrocks,newsmast.social,Nature & Wildlife,nature_wildlife,false -psthisrocks,newsmast.social,Journalism & Comment,news_comment_data,false -psthisrocks,newsmast.social,Performing Arts,performing_arts,false -psthisrocks,newsmast.social,Pets,pets,false -psthisrocks,newsmast.social,Philosophy,philosophy,false -psthisrocks,newsmast.social,Photography,photography,false -psthisrocks,newsmast.social,Politics,politics,false -psthisrocks,newsmast.social,Poverty & Inequality,poverty_inequality,false -psthisrocks,newsmast.social,Programming,programming,false -psthisrocks,newsmast.social,Puzzles,puzzles,false -psthisrocks,newsmast.social,Social Media,social_media,false -psthisrocks,newsmast.social,Social Sciences,social_sciences,false -psthisrocks,newsmast.social,Technology,technology,false -psthisrocks,newsmast.social,Travel,travel,false -psthisrocks,newsmast.social,TV & Radio,tv_radio,false -psthisrocks,newsmast.social,Ukraine Invasion,ukraine_invasion,false -psthisrocks,newsmast.social,US Politics,us_politics,false -psthisrocks,newsmast.social,Visual Arts,visual_arts,false -psthisrocks,newsmast.social,Weather,weather,false -psthisrocks,newsmast.social,Workers Rights,workers_rights,false -psthisrocks,newsmast.social,Architecture & Design,architecture_design,true -lime360,newsmast.social,AI,ai,false -lime360,newsmast.social,Breaking News,breaking_news,false -lime360,newsmast.social,Engineering,engineering,false -lime360,newsmast.social,History,history,false -lime360,newsmast.social,Humanities,humanities,false -lime360,newsmast.social,Journalism & Comment,news_comment_data,false -lime360,newsmast.social,Philosophy,philosophy,false -lime360,newsmast.social,Programming,programming,true -lime360,newsmast.social,Social Media,social_media,false -lime360,newsmast.social,Social Sciences,social_sciences,false -lime360,newsmast.social,Technology,technology,false -lime360,newsmast.social,Ukraine Invasion,ukraine_invasion,false -lime360,newsmast.social,Weather,weather,false -ghiachan,newsmast.social,Architecture & Design,architecture_design,false -ghiachan,newsmast.social,Books & Literature,books_literature,false -ghiachan,newsmast.social,Business,business,false -ghiachan,newsmast.social,Creative Arts,creative_arts,false -ghiachan,newsmast.social,Food & Drink,food_drink,false -ghiachan,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false -ghiachan,newsmast.social,Nature & Wildlife,nature_wildlife,false -ghiachan,newsmast.social,Photography,photography,false -ghiachan,newsmast.social,Travel,travel,true -ghiachan,newsmast.social,Visual Arts,visual_arts,false -min_thu,newsmast.social,Activism & Civil Rights,activism_civil_rights,false -min_thu,newsmast.social,Black Voices,black_voices,false -min_thu,newsmast.social,Disabled Voices,disabled_voices,true -min_thu,newsmast.social,Immigrants Rights,immigrants_rights,false -min_thu,newsmast.social,Indigenous Peoples,indigenous_peoples,false -min_thu,newsmast.social,LGBTQ+,lgbtq,false -min_thu,newsmast.social,Women’s Voices,women_voices,false -weatherandradar,newsmast.social,Breaking News,breaking_news,false -weatherandradar,newsmast.social,Climate change,climate_change,false -weatherandradar,newsmast.social,Environment,environment,false -weatherandradar,newsmast.social,Journalism & Comment,news_comment_data,false -weatherandradar,newsmast.social,Weather,weather,true -hannaka,newsmast.social,Nature & Wildlife,nature_wildlife,false -hannaka,newsmast.social,Pets,pets,false -hannaka,newsmast.social,Sport,sport,false -hannaka,newsmast.social,Travel,travel,true -hannaka,newsmast.social,Weather,weather,false -NycciNellis,newsmast.social,Breaking News,breaking_news,true -NycciNellis,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -NycciNellis,newsmast.social,Environment,environment,false -NycciNellis,newsmast.social,Government & Policy,government_policy,false -NycciNellis,newsmast.social,Law & Justice,law_justice,false -NycciNellis,newsmast.social,Journalism & Comment,news_comment_data,false -NycciNellis,newsmast.social,Performing Arts,performing_arts,false -NycciNellis,newsmast.social,Politics,politics,false -NycciNellis,newsmast.social,TV & Radio,tv_radio,false -NycciNellis,newsmast.social,US Politics,us_politics,false -andrzej1,newsmast.social,AI,ai,false -andrzej1,newsmast.social,Architecture & Design,architecture_design,false -andrzej1,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,true -andrzej1,newsmast.social,Books & Literature,books_literature,false -andrzej1,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -andrzej1,newsmast.social,Humanities,humanities,false -andrzej1,newsmast.social,Science,science,false -andrzej1,newsmast.social,Social Sciences,social_sciences,false -Darling,newsmast.social,AI,ai,false -Darling,newsmast.social,Biology,biology,false -Darling,newsmast.social,Chemistry,chemistry,false -Darling,newsmast.social,Engineering,engineering,false -Darling,newsmast.social,Football,football,true -Darling,newsmast.social,Mathematics,mathematics,false -Darling,newsmast.social,Physics,physics,false -Darling,newsmast.social,Programming,programming,false -Darling,newsmast.social,Science,science,false -Darling,newsmast.social,Space,space,false -Darling,newsmast.social,Sport,sport,false -Darling,newsmast.social,Technology,technology,false -Darling,newsmast.social,US Sport,us_sport,false -gayatravel,newsmast.social,Food & Drink,food_drink,false -gayatravel,newsmast.social,Nature & Wildlife,nature_wildlife,false -gayatravel,newsmast.social,Photography,photography,false -gayatravel,newsmast.social,Social Media,social_media,false -gayatravel,newsmast.social,Travel,travel,true -stb,newsmast.social,Academia & Research,academia_research,false -stb,newsmast.social,Activism & Civil Rights,activism_civil_rights,false -stb,newsmast.social,AI,ai,false -stb,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false -stb,newsmast.social,Biology,biology,false -stb,newsmast.social,Black Voices,black_voices,false -stb,newsmast.social,Breaking News,breaking_news,true -stb,newsmast.social,Chemistry,chemistry,false -stb,newsmast.social,Climate change,climate_change,false -stb,newsmast.social,Creative Arts,creative_arts,false -stb,newsmast.social,Disabled Voices,disabled_voices,false -stb,newsmast.social,Energy & Pollution,energy_pollution,false -stb,newsmast.social,Engineering,engineering,false -stb,newsmast.social,Environment,environment,false -stb,newsmast.social,Food & Drink,food_drink,false -stb,newsmast.social,Football,football,false -stb,newsmast.social,Government & Policy,government_policy,false -stb,newsmast.social,Healthcare,healthcare,false -stb,newsmast.social,History,history,false -stb,newsmast.social,Humanities,humanities,false -stb,newsmast.social,Humour,humour,false -stb,newsmast.social,Immigrants Rights,immigrants_rights,false -stb,newsmast.social,Indigenous Peoples,indigenous_peoples,false -stb,newsmast.social,Law & Justice,law_justice,false -stb,newsmast.social,LGBTQ+,lgbtq,false -stb,newsmast.social,Mathematics,mathematics,false -stb,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false -stb,newsmast.social,Nature & Wildlife,nature_wildlife,false -stb,newsmast.social,Journalism & Comment,news_comment_data,false -stb,newsmast.social,Pets,pets,false -stb,newsmast.social,Philosophy,philosophy,false -stb,newsmast.social,Physics,physics,false -stb,newsmast.social,Politics,politics,false -stb,newsmast.social,Programming,programming,false -stb,newsmast.social,Puzzles,puzzles,false -stb,newsmast.social,Science,science,false -stb,newsmast.social,Social Media,social_media,false -stb,newsmast.social,Social Sciences,social_sciences,false -stb,newsmast.social,Space,space,false -stb,newsmast.social,Sport,sport,false -stb,newsmast.social,Technology,technology,false -stb,newsmast.social,Travel,travel,false -stb,newsmast.social,Ukraine Invasion,ukraine_invasion,false -stb,newsmast.social,US Politics,us_politics,false -stb,newsmast.social,US Sport,us_sport,false -stb,newsmast.social,Weather,weather,false -stb,newsmast.social,Women’s Voices,women_voices,false -Birdiana_Jonez,newsmast.social,AI,ai,false -Birdiana_Jonez,newsmast.social,Architecture & Design,architecture_design,false -Birdiana_Jonez,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false -Birdiana_Jonez,newsmast.social,Biology,biology,false -Birdiana_Jonez,newsmast.social,Books & Literature,books_literature,false -Birdiana_Jonez,newsmast.social,Breaking News,breaking_news,true -Birdiana_Jonez,newsmast.social,Chemistry,chemistry,false -Birdiana_Jonez,newsmast.social,Climate change,climate_change,false -Birdiana_Jonez,newsmast.social,Creative Arts,creative_arts,false -Birdiana_Jonez,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -Birdiana_Jonez,newsmast.social,Engineering,engineering,false -Birdiana_Jonez,newsmast.social,Environment,environment,false -Birdiana_Jonez,newsmast.social,Food & Drink,food_drink,false -Birdiana_Jonez,newsmast.social,Government & Policy,government_policy,false -Birdiana_Jonez,newsmast.social,Healthcare,healthcare,false -Birdiana_Jonez,newsmast.social,History,history,false -Birdiana_Jonez,newsmast.social,Humanities,humanities,false -Birdiana_Jonez,newsmast.social,Humour,humour,false -Birdiana_Jonez,newsmast.social,Law & Justice,law_justice,false -Birdiana_Jonez,newsmast.social,Markets & Finance,markets_finance,false -Birdiana_Jonez,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false -Birdiana_Jonez,newsmast.social,Movies,movies,false -Birdiana_Jonez,newsmast.social,Music,music,false -Birdiana_Jonez,newsmast.social,Nature & Wildlife,nature_wildlife,false -Birdiana_Jonez,newsmast.social,Journalism & Comment,news_comment_data,false -Birdiana_Jonez,newsmast.social,Pets,pets,false -Birdiana_Jonez,newsmast.social,Philosophy,philosophy,false -Birdiana_Jonez,newsmast.social,Photography,photography,false -Birdiana_Jonez,newsmast.social,Physics,physics,false -Birdiana_Jonez,newsmast.social,Politics,politics,false -Birdiana_Jonez,newsmast.social,Science,science,false -Birdiana_Jonez,newsmast.social,Social Sciences,social_sciences,false -Birdiana_Jonez,newsmast.social,Space,space,false -Birdiana_Jonez,newsmast.social,Technology,technology,false -Birdiana_Jonez,newsmast.social,Travel,travel,false -Birdiana_Jonez,newsmast.social,Ukraine Invasion,ukraine_invasion,false -Birdiana_Jonez,newsmast.social,Visual Arts,visual_arts,false -Birdiana_Jonez,newsmast.social,Workers Rights,workers_rights,false -Catwisdom,newsmast.social,Creative Arts,creative_arts,true -Catwisdom,newsmast.social,Food & Drink,food_drink,false -Catwisdom,newsmast.social,Humour,humour,false -Catwisdom,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false -Catwisdom,newsmast.social,Nature & Wildlife,nature_wildlife,false -Catwisdom,newsmast.social,Pets,pets,false -Catwisdom,newsmast.social,Travel,travel,false -Tony62Pineview,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false -Tony62Pineview,newsmast.social,Climate change,climate_change,false -Tony62Pineview,newsmast.social,Energy & Pollution,energy_pollution,false -Tony62Pineview,newsmast.social,Environment,environment,true -Tony62Pineview,newsmast.social,Football,football,false -Tony62Pineview,newsmast.social,Humanities,humanities,false -Tony62Pineview,newsmast.social,Music,music,false -Tony62Pineview,newsmast.social,Journalism & Comment,news_comment_data,false -Tony62Pineview,newsmast.social,Performing Arts,performing_arts,false -Tony62Pineview,newsmast.social,TV & Radio,tv_radio,false -Tony62Pineview,newsmast.social,US Sport,us_sport,false -posts,newsmast.social,Breaking News,breaking_news,true -posts,newsmast.social,Journalism & Comment,news_comment_data,false -posts,newsmast.social,Social Media,social_media,false -posts,newsmast.social,Ukraine Invasion,ukraine_invasion,false -posts,newsmast.social,Weather,weather,false -minkhantkyaw350,newsmast.social,AI,ai,false -minkhantkyaw350,newsmast.social,Breaking News,breaking_news,false -minkhantkyaw350,newsmast.social,Technology,technology,false -minkhantkyaw350,newsmast.social,Programming,programming,true -minkhantkyaw350,newsmast.social,Visual Arts,visual_arts,false -minkhantkyaw350,newsmast.social,Architecture & Design,architecture_design,false -minkhantkyaw350,newsmast.social,TV & Radio,tv_radio,false -minkhantkyaw350,newsmast.social,Books & Literature,books_literature,false -minkhantkyaw350,newsmast.social,Photography,photography,false -minkhantkyaw350,newsmast.social,Performing Arts,performing_arts,false -minkhantkyaw350,newsmast.social,Gaming,gaming,false -minkhantkyaw350,newsmast.social,Movies,movies,false -minkhantkyaw350,newsmast.social,Music,music,false -minkhantkyaw350,newsmast.social,Sport,sport,false -minkhantkyaw350,newsmast.social,US Sport,us_sport,false -minkhantkyaw350,newsmast.social,Football,football,false -MetalAddicts,newsmast.social,Gaming,gaming,false -MetalAddicts,newsmast.social,Movies,movies,false -MetalAddicts,newsmast.social,Music,music,true -MetalAddicts,newsmast.social,Performing Arts,performing_arts,false -MetalAddicts,newsmast.social,Visual Arts,visual_arts,false -WJAHOM,newsmast.social,Activism & Civil Rights,activism_civil_rights,false -WJAHOM,newsmast.social,Books & Literature,books_literature,false -WJAHOM,newsmast.social,Climate change,climate_change,false -WJAHOM,newsmast.social,Creative Arts,creative_arts,false -WJAHOM,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -WJAHOM,newsmast.social,Environment,environment,false -WJAHOM,newsmast.social,Food & Drink,food_drink,false -WJAHOM,newsmast.social,Football,football,false -WJAHOM,newsmast.social,History,history,false -WJAHOM,newsmast.social,LGBTQ+,lgbtq,false -WJAHOM,newsmast.social,Mathematics,mathematics,false -WJAHOM,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false -WJAHOM,newsmast.social,Movies,movies,false -WJAHOM,newsmast.social,Music,music,true -WJAHOM,newsmast.social,Nature & Wildlife,nature_wildlife,false -WJAHOM,newsmast.social,Journalism & Comment,news_comment_data,false -WJAHOM,newsmast.social,Performing Arts,performing_arts,false -WJAHOM,newsmast.social,Pets,pets,false -WJAHOM,newsmast.social,Philosophy,philosophy,false -WJAHOM,newsmast.social,Politics,politics,false -WJAHOM,newsmast.social,Puzzles,puzzles,false -WJAHOM,newsmast.social,Science,science,false -WJAHOM,newsmast.social,Social Media,social_media,false -WJAHOM,newsmast.social,TV & Radio,tv_radio,false -WJAHOM,newsmast.social,Women’s Voices,women_voices,false -WJAHOM,newsmast.social,Workers Rights,workers_rights,false -Paxivorian,newsmast.social,AI,ai,false -Paxivorian,newsmast.social,Biology,biology,false -Paxivorian,newsmast.social,Books & Literature,books_literature,false -Paxivorian,newsmast.social,Breaking News,breaking_news,false -Paxivorian,newsmast.social,Chemistry,chemistry,false -Paxivorian,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -Paxivorian,newsmast.social,Engineering,engineering,false -Paxivorian,newsmast.social,Gaming,gaming,false -Paxivorian,newsmast.social,History,history,false -Paxivorian,newsmast.social,Humanities,humanities,false -Paxivorian,newsmast.social,Mathematics,mathematics,false -Paxivorian,newsmast.social,Movies,movies,false -Paxivorian,newsmast.social,Music,music,false -Paxivorian,newsmast.social,Journalism & Comment,news_comment_data,false -Paxivorian,newsmast.social,Performing Arts,performing_arts,false -Paxivorian,newsmast.social,Philosophy,philosophy,false -Paxivorian,newsmast.social,Photography,photography,false -Paxivorian,newsmast.social,Physics,physics,false -Paxivorian,newsmast.social,Programming,programming,false -Paxivorian,newsmast.social,Science,science,false -Paxivorian,newsmast.social,Social Sciences,social_sciences,false -Paxivorian,newsmast.social,Space,space,false -Paxivorian,newsmast.social,Technology,technology,false -Paxivorian,newsmast.social,TV & Radio,tv_radio,false -Paxivorian,newsmast.social,Visual Arts,visual_arts,false -Paxivorian,newsmast.social,Weather,weather,false -Paxivorian,newsmast.social,Architecture & Design,architecture_design,true -Harriett,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false -Harriett,newsmast.social,Biology,biology,false -Harriett,newsmast.social,Breaking News,breaking_news,false -Harriett,newsmast.social,Climate change,climate_change,false -Harriett,newsmast.social,Energy & Pollution,energy_pollution,false -Harriett,newsmast.social,Environment,environment,false -Harriett,newsmast.social,Government & Policy,government_policy,false -Harriett,newsmast.social,Healthcare,healthcare,false -Harriett,newsmast.social,Humanities,humanities,false -Harriett,newsmast.social,Law & Justice,law_justice,false -Harriett,newsmast.social,Journalism & Comment,news_comment_data,false -Harriett,newsmast.social,Politics,politics,true -Harriett,newsmast.social,Science,science,false -Harriett,newsmast.social,Social Media,social_media,false -Harriett,newsmast.social,Social Sciences,social_sciences,false -Harriett,newsmast.social,Ukraine Invasion,ukraine_invasion,false -Harriett,newsmast.social,Weather,weather,false -ymt_12,newsmast.social,Academia & Research,academia_research,true -ymt_12,newsmast.social,Biology,biology,false -ymt_12,newsmast.social,Chemistry,chemistry,false -ymt_12,newsmast.social,Government & Policy,government_policy,false -ymt_12,newsmast.social,Healthcare,healthcare,false -ymt_12,newsmast.social,Law & Justice,law_justice,false -ymt_12,newsmast.social,Mathematics,mathematics,false -ymt_12,newsmast.social,Physics,physics,false -ymt_12,newsmast.social,Politics,politics,false -ymt_12,newsmast.social,Science,science,false -ymt_12,newsmast.social,Space,space,false -ymt_12,newsmast.social,US Politics,us_politics,false -ymt_12,newsmast.social,Journalism & Comment,news_comment_data,false -ymt_12,newsmast.social,Social Media,social_media,false -ymt_12,newsmast.social,Ukraine Invasion,ukraine_invasion,false -ymt_12,newsmast.social,Poverty & Inequality,poverty_inequality,false -ymt_12,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false -ymt_12,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -maique,newsmast.social,Activism & Civil Rights,activism_civil_rights,false -maique,newsmast.social,AI,ai,false -maique,newsmast.social,Architecture & Design,architecture_design,false -maique,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false -maique,newsmast.social,Books & Literature,books_literature,false -maique,newsmast.social,Breaking News,breaking_news,true -maique,newsmast.social,Climate change,climate_change,false -maique,newsmast.social,Creative Arts,creative_arts,false -maique,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -maique,newsmast.social,Energy & Pollution,energy_pollution,false -maique,newsmast.social,Engineering,engineering,false -maique,newsmast.social,Environment,environment,false -maique,newsmast.social,Food & Drink,food_drink,false -maique,newsmast.social,Gaming,gaming,false -maique,newsmast.social,History,history,false -maique,newsmast.social,Humanities,humanities,false -maique,newsmast.social,Humour,humour,false -maique,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false -maique,newsmast.social,LGBTQ+,lgbtq,false -maique,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false -maique,newsmast.social,Movies,movies,false -maique,newsmast.social,Music,music,false -maique,newsmast.social,Nature & Wildlife,nature_wildlife,false -maique,newsmast.social,Journalism & Comment,news_comment_data,false -maique,newsmast.social,Performing Arts,performing_arts,false -maique,newsmast.social,Photography,photography,false -maique,newsmast.social,Politics,politics,false -maique,newsmast.social,Poverty & Inequality,poverty_inequality,false -maique,newsmast.social,Programming,programming,false -maique,newsmast.social,Social Media,social_media,false -maique,newsmast.social,Social Sciences,social_sciences,false -maique,newsmast.social,Space,space,false -maique,newsmast.social,Technology,technology,false -maique,newsmast.social,Travel,travel,false -maique,newsmast.social,TV & Radio,tv_radio,false -maique,newsmast.social,Ukraine Invasion,ukraine_invasion,false -maique,newsmast.social,Visual Arts,visual_arts,false -maique,newsmast.social,Weather,weather,false -maique,newsmast.social,Women’s Voices,women_voices,false -tijoantony,newsmast.social,AI,ai,false -tijoantony,newsmast.social,Breaking News,breaking_news,false -tijoantony,newsmast.social,Business,business,false -tijoantony,newsmast.social,Creative Arts,creative_arts,false -tijoantony,newsmast.social,Engineering,engineering,false -tijoantony,newsmast.social,Food & Drink,food_drink,false -tijoantony,newsmast.social,Football,football,false -tijoantony,newsmast.social,Humour,humour,false -tijoantony,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false -tijoantony,newsmast.social,Nature & Wildlife,nature_wildlife,false -tijoantony,newsmast.social,Journalism & Comment,news_comment_data,false -tijoantony,newsmast.social,Pets,pets,false -tijoantony,newsmast.social,Programming,programming,false -tijoantony,newsmast.social,Puzzles,puzzles,false -tijoantony,newsmast.social,Social Media,social_media,false -tijoantony,newsmast.social,Sport,sport,false -tijoantony,newsmast.social,Technology,technology,true -tijoantony,newsmast.social,Travel,travel,false -tijoantony,newsmast.social,US Sport,us_sport,false -_youssef_0k,newsmast.social,Academia & Research,academia_research,false -_youssef_0k,newsmast.social,Activism & Civil Rights,activism_civil_rights,false -_youssef_0k,newsmast.social,Architecture & Design,architecture_design,false -_youssef_0k,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false -_youssef_0k,newsmast.social,Biology,biology,false -_youssef_0k,newsmast.social,Black Voices,black_voices,false -_youssef_0k,newsmast.social,Books & Literature,books_literature,false -_youssef_0k,newsmast.social,Breaking News,breaking_news,false -_youssef_0k,newsmast.social,Business,business,false -_youssef_0k,newsmast.social,Chemistry,chemistry,false -_youssef_0k,newsmast.social,Climate change,climate_change,false -_youssef_0k,newsmast.social,Creative Arts,creative_arts,false -_youssef_0k,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -_youssef_0k,newsmast.social,Disabled Voices,disabled_voices,false -_youssef_0k,newsmast.social,Energy & Pollution,energy_pollution,false -_youssef_0k,newsmast.social,Engineering,engineering,false -_youssef_0k,newsmast.social,Environment,environment,false -_youssef_0k,newsmast.social,Food & Drink,food_drink,false -_youssef_0k,newsmast.social,Football,football,false -_youssef_0k,newsmast.social,Gaming,gaming,false -_youssef_0k,newsmast.social,Government & Policy,government_policy,false -_youssef_0k,newsmast.social,Healthcare,healthcare,false -_youssef_0k,newsmast.social,History,history,false -_youssef_0k,newsmast.social,Humanities,humanities,false -_youssef_0k,newsmast.social,Humour,humour,false -_youssef_0k,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false -_youssef_0k,newsmast.social,Immigrants Rights,immigrants_rights,false -_youssef_0k,newsmast.social,Indigenous Peoples,indigenous_peoples,false -_youssef_0k,newsmast.social,Law & Justice,law_justice,false -_youssef_0k,newsmast.social,LGBTQ+,lgbtq,false -_youssef_0k,newsmast.social,Markets & Finance,markets_finance,false -_youssef_0k,newsmast.social,Mathematics,mathematics,false -_youssef_0k,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false -_youssef_0k,newsmast.social,Movies,movies,false -_youssef_0k,newsmast.social,Music,music,false -_youssef_0k,newsmast.social,Nature & Wildlife,nature_wildlife,false -_youssef_0k,newsmast.social,Journalism & Comment,news_comment_data,false -_youssef_0k,newsmast.social,Performing Arts,performing_arts,false -_youssef_0k,newsmast.social,Pets,pets,false -_youssef_0k,newsmast.social,Philosophy,philosophy,false -_youssef_0k,newsmast.social,Photography,photography,false -_youssef_0k,newsmast.social,Physics,physics,false -_youssef_0k,newsmast.social,Politics,politics,false -_youssef_0k,newsmast.social,Poverty & Inequality,poverty_inequality,false -_youssef_0k,newsmast.social,Programming,programming,false -_youssef_0k,newsmast.social,Puzzles,puzzles,false -_youssef_0k,newsmast.social,Science,science,false -_youssef_0k,newsmast.social,Social Media,social_media,false -_youssef_0k,newsmast.social,Social Sciences,social_sciences,false -_youssef_0k,newsmast.social,Space,space,false -_youssef_0k,newsmast.social,Sport,sport,false -_youssef_0k,newsmast.social,Technology,technology,false -_youssef_0k,newsmast.social,Travel,travel,false -_youssef_0k,newsmast.social,TV & Radio,tv_radio,false -_youssef_0k,newsmast.social,Ukraine Invasion,ukraine_invasion,false -_youssef_0k,newsmast.social,US Politics,us_politics,false -_youssef_0k,newsmast.social,US Sport,us_sport,false -_youssef_0k,newsmast.social,Visual Arts,visual_arts,false -_youssef_0k,newsmast.social,Weather,weather,false -_youssef_0k,newsmast.social,Women’s Voices,women_voices,false -_youssef_0k,newsmast.social,Workers Rights,workers_rights,false -_youssef_0k,newsmast.social,AI,ai,true -guzz,newsmast.social,Books & Literature,books_literature,false -guzz,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -guzz,newsmast.social,Environment,environment,false -guzz,newsmast.social,Food & Drink,food_drink,false -guzz,newsmast.social,Government & Policy,government_policy,false -guzz,newsmast.social,History,history,false -guzz,newsmast.social,Humanities,humanities,false -guzz,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false -guzz,newsmast.social,Movies,movies,false -guzz,newsmast.social,Music,music,false -guzz,newsmast.social,Journalism & Comment,news_comment_data,false -guzz,newsmast.social,Pets,pets,false -guzz,newsmast.social,Philosophy,philosophy,false -guzz,newsmast.social,Photography,photography,true -guzz,newsmast.social,Politics,politics,false -guzz,newsmast.social,Puzzles,puzzles,false -guzz,newsmast.social,Science,science,false -guzz,newsmast.social,Social Sciences,social_sciences,false -guzz,newsmast.social,Space,space,false -guzz,newsmast.social,Technology,technology,false -guzz,newsmast.social,Travel,travel,false -guzz,newsmast.social,Ukraine Invasion,ukraine_invasion,false -guzz,newsmast.social,Social Media,social_media,false -guzz,newsmast.social,Poverty & Inequality,poverty_inequality,false -guzz,newsmast.social,Healthcare,healthcare,false -guzz,newsmast.social,Business,business,false -guzz,newsmast.social,Workers Rights,workers_rights,false -guzz,newsmast.social,Engineering,engineering,false -guzz,newsmast.social,Chemistry,chemistry,false -guzz,newsmast.social,Gaming,gaming,false -guzz,newsmast.social,Visual Arts,visual_arts,false -guzz,newsmast.social,Creative Arts,creative_arts,false -guzz,newsmast.social,Weather,weather,false -guzz,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false -guzz,newsmast.social,Academia & Research,academia_research,false -guzz,newsmast.social,Markets & Finance,markets_finance,false -guzz,newsmast.social,AI,ai,false -guzz,newsmast.social,Biology,biology,false -guzz,newsmast.social,Mathematics,mathematics,false -guzz,newsmast.social,Physics,physics,false -guzz,newsmast.social,Architecture & Design,architecture_design,false -guzz,newsmast.social,Performing Arts,performing_arts,false -guzz,newsmast.social,TV & Radio,tv_radio,false -guzz,newsmast.social,Sport,sport,false -guzz,newsmast.social,US Sport,us_sport,false -guzz,newsmast.social,Humour,humour,false -guzz,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false -guzz,newsmast.social,Activism & Civil Rights,activism_civil_rights,false -guzz,newsmast.social,Disabled Voices,disabled_voices,false -guzz,newsmast.social,Indigenous Peoples,indigenous_peoples,false -guzz,newsmast.social,Women’s Voices,women_voices,false -guzz,newsmast.social,Climate change,climate_change,false -guzz,newsmast.social,Black Voices,black_voices,false -guzz,newsmast.social,Immigrants Rights,immigrants_rights,false -guzz,newsmast.social,LGBTQ+,lgbtq,false -guzz,newsmast.social,Football,football,false -guzz,newsmast.social,Breaking News,breaking_news,false -transfers,newsmast.social,Breaking News,breaking_news,false -transfers,newsmast.social,Football,football,true -transfers,newsmast.social,Journalism & Comment,news_comment_data,false -transfers,newsmast.social,Social Media,social_media,false -transfers,newsmast.social,Sport,sport,false -PetsMag,newsmast.social,AI,ai,false -PetsMag,newsmast.social,Architecture & Design,architecture_design,false -PetsMag,newsmast.social,Biology,biology,false -PetsMag,newsmast.social,Books & Literature,books_literature,false -PetsMag,newsmast.social,Breaking News,breaking_news,false -PetsMag,newsmast.social,Chemistry,chemistry,false -PetsMag,newsmast.social,Creative Arts,creative_arts,false -PetsMag,newsmast.social,Engineering,engineering,false -PetsMag,newsmast.social,Food & Drink,food_drink,false -PetsMag,newsmast.social,Gaming,gaming,false -PetsMag,newsmast.social,Humour,humour,false -PetsMag,newsmast.social,Mathematics,mathematics,false -PetsMag,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false -PetsMag,newsmast.social,Movies,movies,false -PetsMag,newsmast.social,Music,music,false -PetsMag,newsmast.social,Nature & Wildlife,nature_wildlife,false -PetsMag,newsmast.social,Journalism & Comment,news_comment_data,false -PetsMag,newsmast.social,Performing Arts,performing_arts,false -PetsMag,newsmast.social,Pets,pets,true -PetsMag,newsmast.social,Photography,photography,false -PetsMag,newsmast.social,Science,science,false -PetsMag,newsmast.social,Physics,physics,false -PetsMag,newsmast.social,Programming,programming,false -PetsMag,newsmast.social,Puzzles,puzzles,false -PetsMag,newsmast.social,Social Media,social_media,false -PetsMag,newsmast.social,Space,space,false -PetsMag,newsmast.social,Technology,technology,false -PetsMag,newsmast.social,Travel,travel,false -PetsMag,newsmast.social,TV & Radio,tv_radio,false -PetsMag,newsmast.social,Ukraine Invasion,ukraine_invasion,false -PetsMag,newsmast.social,Visual Arts,visual_arts,false -PetsMag,newsmast.social,Weather,weather,false -Rachael,newsmast.social,Creative Arts,creative_arts,false -Rachael,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,true -Rachael,newsmast.social,Music,music,false -Rachael,newsmast.social,Nature & Wildlife,nature_wildlife,false -Rachael,newsmast.social,Travel,travel,false -Michael_E,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,true -Michael_E,newsmast.social,Environment,environment,false -Michael_E,newsmast.social,History,history,false -Michael_E,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false -Michael_E,newsmast.social,Philosophy,philosophy,false -Michael_E,newsmast.social,Poverty & Inequality,poverty_inequality,false -Michael_E,newsmast.social,Social Sciences,social_sciences,false -TimBlack,newsmast.social,Black Voices,black_voices,false -TimBlack,newsmast.social,Breaking News,breaking_news,false -TimBlack,newsmast.social,Journalism & Comment,news_comment_data,false -TimBlack,newsmast.social,Social Media,social_media,false -TimBlack,newsmast.social,TV & Radio,tv_radio,false -TimBlack,newsmast.social,Politics,politics,true -TheBeeGuy,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false -TheBeeGuy,newsmast.social,Books & Literature,books_literature,false -TheBeeGuy,newsmast.social,Climate change,climate_change,false -TheBeeGuy,newsmast.social,Energy & Pollution,energy_pollution,false -TheBeeGuy,newsmast.social,Environment,environment,true -TheBeeGuy,newsmast.social,Humanities,humanities,false -TheBeeGuy,newsmast.social,Music,music,false -TheBeeGuy,newsmast.social,Performing Arts,performing_arts,false -TheBeeGuy,newsmast.social,Philosophy,philosophy,false -TheBeeGuy,newsmast.social,Photography,photography,false -TheBeeGuy,newsmast.social,Science,science,false -TheBeeGuy,newsmast.social,Breaking News,breaking_news,false -mohammed,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,true -mohammed,newsmast.social,Biology,biology,false -mohammed,newsmast.social,History,history,false -mohammed,newsmast.social,Humanities,humanities,false -mohammed,newsmast.social,Philosophy,philosophy,false -mohammed,newsmast.social,Social Sciences,social_sciences,false -Alomox,newsmast.social,Architecture & Design,architecture_design,true -Alomox,newsmast.social,Books & Literature,books_literature,false -Alomox,newsmast.social,Gaming,gaming,false -Alomox,newsmast.social,Movies,movies,false -Alomox,newsmast.social,Music,music,false -Nil253259,newsmast.social,AI,ai,true -Nil253259,newsmast.social,Business,business,false -Nil253259,newsmast.social,Climate change,climate_change,false -Nil253259,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -Nil253259,newsmast.social,Environment,environment,false -Nil253259,newsmast.social,Science,science,false -Nil253259,newsmast.social,Space,space,false -Nil253259,newsmast.social,Technology,technology,false -theshescribe,newsmast.social,Academia & Research,academia_research,false -theshescribe,newsmast.social,Activism & Civil Rights,activism_civil_rights,false -theshescribe,newsmast.social,Architecture & Design,architecture_design,false -theshescribe,newsmast.social,Black Voices,black_voices,false -theshescribe,newsmast.social,Books & Literature,books_literature,false -theshescribe,newsmast.social,Breaking News,breaking_news,false -theshescribe,newsmast.social,Business,business,false -theshescribe,newsmast.social,Creative Arts,creative_arts,false -theshescribe,newsmast.social,Disabled Voices,disabled_voices,false -theshescribe,newsmast.social,Food & Drink,food_drink,false -theshescribe,newsmast.social,Gaming,gaming,false -theshescribe,newsmast.social,Government & Policy,government_policy,false -theshescribe,newsmast.social,Healthcare,healthcare,false -theshescribe,newsmast.social,History,history,false -theshescribe,newsmast.social,Humanities,humanities,false -theshescribe,newsmast.social,Humour,humour,false -theshescribe,newsmast.social,Immigrants Rights,immigrants_rights,false -theshescribe,newsmast.social,Indigenous Peoples,indigenous_peoples,false -theshescribe,newsmast.social,Law & Justice,law_justice,false -theshescribe,newsmast.social,LGBTQ+,lgbtq,false -theshescribe,newsmast.social,Markets & Finance,markets_finance,false -theshescribe,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false -theshescribe,newsmast.social,Movies,movies,false -theshescribe,newsmast.social,Music,music,false -theshescribe,newsmast.social,Nature & Wildlife,nature_wildlife,false -theshescribe,newsmast.social,Journalism & Comment,news_comment_data,false -theshescribe,newsmast.social,Performing Arts,performing_arts,false -theshescribe,newsmast.social,Pets,pets,false -theshescribe,newsmast.social,Philosophy,philosophy,false -theshescribe,newsmast.social,Photography,photography,false -theshescribe,newsmast.social,Politics,politics,false -theshescribe,newsmast.social,Puzzles,puzzles,false -theshescribe,newsmast.social,Social Media,social_media,false -theshescribe,newsmast.social,Social Sciences,social_sciences,false -theshescribe,newsmast.social,Travel,travel,false -theshescribe,newsmast.social,TV & Radio,tv_radio,false -theshescribe,newsmast.social,Ukraine Invasion,ukraine_invasion,false -theshescribe,newsmast.social,US Politics,us_politics,false -theshescribe,newsmast.social,Visual Arts,visual_arts,false -theshescribe,newsmast.social,Weather,weather,false -theshescribe,newsmast.social,Workers Rights,workers_rights,false -theshescribe,newsmast.social,Women’s Voices,women_voices,true -latif,newsmast.social,AI,ai,false -latif,newsmast.social,Engineering,engineering,false -latif,newsmast.social,Humanities,humanities,false -latif,newsmast.social,Programming,programming,false -latif,newsmast.social,Technology,technology,true -b_o_b_o,newsmast.social,Breaking News,breaking_news,true -b_o_b_o,newsmast.social,Journalism & Comment,news_comment_data,false -b_o_b_o,newsmast.social,Social Media,social_media,false -b_o_b_o,newsmast.social,Ukraine Invasion,ukraine_invasion,false -b_o_b_o,newsmast.social,Weather,weather,false -Lambo,newsmast.social,AI,ai,false -Lambo,newsmast.social,History,history,false -Lambo,newsmast.social,Humanities,humanities,false -Lambo,newsmast.social,Science,science,true -Lambo,newsmast.social,Workers Rights,workers_rights,false -Scotty,newsmast.social,AI,ai,false -Scotty,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false -Scotty,newsmast.social,Pets,pets,true -Scotty,newsmast.social,Science,science,false -Scotty,newsmast.social,Space,space,false -Scotty,newsmast.social,Food & Drink,food_drink,false -Scotty,newsmast.social,Humour,humour,false -breaking_news_admin_3,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false -breaking_news_admin_3,newsmast.social,Climate change,climate_change,true -breaking_news_admin_3,newsmast.social,Energy & Pollution,energy_pollution,false -breaking_news_admin_3,newsmast.social,Environment,environment,false -breaking_news_admin_3,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false -ExpertPlus,newsmast.social,Activism & Civil Rights,activism_civil_rights,false -ExpertPlus,newsmast.social,AI,ai,false -ExpertPlus,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false -ExpertPlus,newsmast.social,Black Voices,black_voices,false -ExpertPlus,newsmast.social,Climate change,climate_change,false -ExpertPlus,newsmast.social,Creative Arts,creative_arts,false -ExpertPlus,newsmast.social,Disabled Voices,disabled_voices,false -ExpertPlus,newsmast.social,Energy & Pollution,energy_pollution,false -ExpertPlus,newsmast.social,Engineering,engineering,false -ExpertPlus,newsmast.social,Environment,environment,false -ExpertPlus,newsmast.social,Food & Drink,food_drink,false -ExpertPlus,newsmast.social,Humour,humour,true -ExpertPlus,newsmast.social,Immigrants Rights,immigrants_rights,false -ExpertPlus,newsmast.social,Indigenous Peoples,indigenous_peoples,false -ExpertPlus,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false -ExpertPlus,newsmast.social,Nature & Wildlife,nature_wildlife,false -ExpertPlus,newsmast.social,Pets,pets,false -ExpertPlus,newsmast.social,Programming,programming,false -ExpertPlus,newsmast.social,Puzzles,puzzles,false -ExpertPlus,newsmast.social,Technology,technology,false -ExpertPlus,newsmast.social,Travel,travel,false -ExpertPlus,newsmast.social,Women’s Voices,women_voices,false -jperlow,newsmast.social,AI,ai,false -jperlow,newsmast.social,Biology,biology,false -jperlow,newsmast.social,Breaking News,breaking_news,false -jperlow,newsmast.social,Chemistry,chemistry,false -jperlow,newsmast.social,Engineering,engineering,false -jperlow,newsmast.social,Mathematics,mathematics,false -jperlow,newsmast.social,Physics,physics,false -jperlow,newsmast.social,Programming,programming,false -jperlow,newsmast.social,Science,science,false -jperlow,newsmast.social,Social Media,social_media,false -jperlow,newsmast.social,Space,space,false -jperlow,newsmast.social,Technology,technology,false -jperlow,newsmast.social,Ukraine Invasion,ukraine_invasion,false -jperlow,newsmast.social,Weather,weather,false -jperlow,newsmast.social,Journalism & Comment,news_comment_data,true -teeheehee,newsmast.social,AI,ai,false -teeheehee,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false -teeheehee,newsmast.social,Biology,biology,false -teeheehee,newsmast.social,Breaking News,breaking_news,false -teeheehee,newsmast.social,Chemistry,chemistry,false -teeheehee,newsmast.social,Climate change,climate_change,false -teeheehee,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -teeheehee,newsmast.social,Energy & Pollution,energy_pollution,true -teeheehee,newsmast.social,Engineering,engineering,false -teeheehee,newsmast.social,Environment,environment,false -teeheehee,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false -teeheehee,newsmast.social,Mathematics,mathematics,false -teeheehee,newsmast.social,Physics,physics,false -teeheehee,newsmast.social,Poverty & Inequality,poverty_inequality,false -teeheehee,newsmast.social,Programming,programming,false -teeheehee,newsmast.social,Science,science,false -teeheehee,newsmast.social,Space,space,false -teeheehee,newsmast.social,Technology,technology,false -teeheehee,newsmast.social,Ukraine Invasion,ukraine_invasion,false -daniel,newsmast.social,Breaking News,breaking_news,false -daniel,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -daniel,newsmast.social,Engineering,engineering,false -daniel,newsmast.social,Journalism & Comment,news_comment_data,false -daniel,newsmast.social,Programming,programming,false -daniel,newsmast.social,Science,science,false -daniel,newsmast.social,Space,space,false -daniel,newsmast.social,Technology,technology,true -LaurelOld,newsmast.social,AI,ai,false -LaurelOld,newsmast.social,Biology,biology,true -LaurelOld,newsmast.social,Breaking News,breaking_news,false -LaurelOld,newsmast.social,Chemistry,chemistry,false -LaurelOld,newsmast.social,Engineering,engineering,false -LaurelOld,newsmast.social,Journalism & Comment,news_comment_data,false -LaurelOld,newsmast.social,Science,science,false -Themontyproject,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false -Themontyproject,newsmast.social,Books & Literature,books_literature,false -Themontyproject,newsmast.social,Humour,humour,false -Themontyproject,newsmast.social,Pets,pets,true -Themontyproject,newsmast.social,Workers Rights,workers_rights,false -JayAySevenTwo,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false -JayAySevenTwo,newsmast.social,Ukraine Invasion,ukraine_invasion,false -JayAySevenTwo,newsmast.social,Academia & Research,academia_research,false -JayAySevenTwo,newsmast.social,Activism & Civil Rights,activism_civil_rights,false -JayAySevenTwo,newsmast.social,AI,ai,false -JayAySevenTwo,newsmast.social,Black Voices,black_voices,false -JayAySevenTwo,newsmast.social,Breaking News,breaking_news,true -JayAySevenTwo,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -JayAySevenTwo,newsmast.social,Disabled Voices,disabled_voices,false -JayAySevenTwo,newsmast.social,Government & Policy,government_policy,false -JayAySevenTwo,newsmast.social,History,history,false -JayAySevenTwo,newsmast.social,Humanities,humanities,false -JayAySevenTwo,newsmast.social,Indigenous Peoples,indigenous_peoples,false -JayAySevenTwo,newsmast.social,Mathematics,mathematics,false -JayAySevenTwo,newsmast.social,Journalism & Comment,news_comment_data,false -JayAySevenTwo,newsmast.social,Philosophy,philosophy,false -JayAySevenTwo,newsmast.social,Poverty & Inequality,poverty_inequality,false -JayAySevenTwo,newsmast.social,Science,science,false -JayAySevenTwo,newsmast.social,Social Sciences,social_sciences,false -JayAySevenTwo,newsmast.social,Space,space,false -JayAySevenTwo,newsmast.social,Technology,technology,false -posts2,newsmast.social,AI,ai,false -posts2,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false -posts2,newsmast.social,Biology,biology,false -posts2,newsmast.social,Breaking News,breaking_news,true -posts2,newsmast.social,Chemistry,chemistry,false -posts2,newsmast.social,Climate change,climate_change,false -posts2,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -posts2,newsmast.social,Energy & Pollution,energy_pollution,false -posts2,newsmast.social,Engineering,engineering,false -posts2,newsmast.social,Environment,environment,false -posts2,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false -posts2,newsmast.social,Mathematics,mathematics,false -posts2,newsmast.social,Journalism & Comment,news_comment_data,false -posts2,newsmast.social,Physics,physics,false -posts2,newsmast.social,Poverty & Inequality,poverty_inequality,false -posts2,newsmast.social,Programming,programming,false -posts2,newsmast.social,Science,science,false -posts2,newsmast.social,Social Media,social_media,false -posts2,newsmast.social,Space,space,false -posts2,newsmast.social,Technology,technology,false -posts2,newsmast.social,Ukraine Invasion,ukraine_invasion,false -posts2,newsmast.social,Weather,weather,false -akamar87,newsmast.social,Breaking News,breaking_news,false -akamar87,newsmast.social,History,history,false -akamar87,newsmast.social,Mathematics,mathematics,false -akamar87,newsmast.social,Philosophy,philosophy,false -akamar87,newsmast.social,Programming,programming,true -akamar87,newsmast.social,Technology,technology,false -GJMPUBLISHER,newsmast.social,AI,ai,false -GJMPUBLISHER,newsmast.social,Business,business,false -GJMPUBLISHER,newsmast.social,Creative Arts,creative_arts,false -GJMPUBLISHER,newsmast.social,Food & Drink,food_drink,false -GJMPUBLISHER,newsmast.social,LGBTQ+,lgbtq,true -GJMPUBLISHER,newsmast.social,Travel,travel,false -rgallery,newsmast.social,Humanities,humanities,false -rgallery,newsmast.social,Journalism & Comment,news_comment_data,true -rgallery,newsmast.social,Politics,politics,false -rgallery,newsmast.social,Social Media,social_media,false -rgallery,newsmast.social,Social Sciences,social_sciences,false -CakeBoy,newsmast.social,Breaking News,breaking_news,false -CakeBoy,newsmast.social,Creative Arts,creative_arts,false -CakeBoy,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -CakeBoy,newsmast.social,Food & Drink,food_drink,true -CakeBoy,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false -CakeBoy,newsmast.social,Nature & Wildlife,nature_wildlife,false -CakeBoy,newsmast.social,Journalism & Comment,news_comment_data,false -CakeBoy,newsmast.social,Poverty & Inequality,poverty_inequality,false -CakeBoy,newsmast.social,Social Media,social_media,false -CakeBoy,newsmast.social,Travel,travel,false -CakeBoy,newsmast.social,Weather,weather,false -Question,newsmast.social,AI,ai,false -Question,newsmast.social,Breaking News,breaking_news,true -Question,newsmast.social,Football,football,false -Question,newsmast.social,Government & Policy,government_policy,false -Question,newsmast.social,Journalism & Comment,news_comment_data,false -Question,newsmast.social,Technology,technology,false -Question,newsmast.social,US Politics,us_politics,false -Question,newsmast.social,Weather,weather,false -YOUME25,newsmast.social,Academia & Research,academia_research,false -YOUME25,newsmast.social,Activism & Civil Rights,activism_civil_rights,false -YOUME25,newsmast.social,AI,ai,true -YOUME25,newsmast.social,Architecture & Design,architecture_design,false -YOUME25,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false -YOUME25,newsmast.social,Biology,biology,false -YOUME25,newsmast.social,Black Voices,black_voices,false -YOUME25,newsmast.social,Books & Literature,books_literature,false -YOUME25,newsmast.social,Breaking News,breaking_news,false -YOUME25,newsmast.social,Business,business,false -YOUME25,newsmast.social,Chemistry,chemistry,false -YOUME25,newsmast.social,Climate change,climate_change,false -YOUME25,newsmast.social,Creative Arts,creative_arts,false -YOUME25,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -YOUME25,newsmast.social,Disabled Voices,disabled_voices,false -YOUME25,newsmast.social,Energy & Pollution,energy_pollution,false -YOUME25,newsmast.social,Engineering,engineering,false -YOUME25,newsmast.social,Environment,environment,false -YOUME25,newsmast.social,Food & Drink,food_drink,false -YOUME25,newsmast.social,Football,football,false -YOUME25,newsmast.social,Gaming,gaming,false -YOUME25,newsmast.social,Government & Policy,government_policy,false -YOUME25,newsmast.social,Healthcare,healthcare,false -YOUME25,newsmast.social,History,history,false -YOUME25,newsmast.social,Humanities,humanities,false -YOUME25,newsmast.social,Humour,humour,false -YOUME25,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false -YOUME25,newsmast.social,Immigrants Rights,immigrants_rights,false -YOUME25,newsmast.social,Indigenous Peoples,indigenous_peoples,false -YOUME25,newsmast.social,Law & Justice,law_justice,false -YOUME25,newsmast.social,LGBTQ+,lgbtq,false -YOUME25,newsmast.social,Markets & Finance,markets_finance,false -YOUME25,newsmast.social,Mathematics,mathematics,false -YOUME25,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false -YOUME25,newsmast.social,Movies,movies,false -YOUME25,newsmast.social,Music,music,false -YOUME25,newsmast.social,Nature & Wildlife,nature_wildlife,false -YOUME25,newsmast.social,Journalism & Comment,news_comment_data,false -YOUME25,newsmast.social,Performing Arts,performing_arts,false -YOUME25,newsmast.social,Pets,pets,false -YOUME25,newsmast.social,Philosophy,philosophy,false -YOUME25,newsmast.social,Photography,photography,false -YOUME25,newsmast.social,Physics,physics,false -YOUME25,newsmast.social,Politics,politics,false -YOUME25,newsmast.social,Poverty & Inequality,poverty_inequality,false -YOUME25,newsmast.social,Programming,programming,false -YOUME25,newsmast.social,Puzzles,puzzles,false -YOUME25,newsmast.social,Science,science,false -YOUME25,newsmast.social,Social Media,social_media,false -YOUME25,newsmast.social,Social Sciences,social_sciences,false -YOUME25,newsmast.social,Space,space,false -YOUME25,newsmast.social,Sport,sport,false -YOUME25,newsmast.social,Technology,technology,false -YOUME25,newsmast.social,Travel,travel,false -YOUME25,newsmast.social,TV & Radio,tv_radio,false -YOUME25,newsmast.social,Ukraine Invasion,ukraine_invasion,false -YOUME25,newsmast.social,US Politics,us_politics,false -YOUME25,newsmast.social,US Sport,us_sport,false -YOUME25,newsmast.social,Visual Arts,visual_arts,false -YOUME25,newsmast.social,Weather,weather,false -YOUME25,newsmast.social,Women’s Voices,women_voices,false -YOUME25,newsmast.social,Workers Rights,workers_rights,false -forgottenxi,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -forgottenxi,newsmast.social,Football,football,false -forgottenxi,newsmast.social,Poverty & Inequality,poverty_inequality,false -forgottenxi,newsmast.social,Ukraine Invasion,ukraine_invasion,false -forgottenxi,newsmast.social,Breaking News,breaking_news,true -TechRaptor,newsmast.social,Breaking News,breaking_news,false -TechRaptor,newsmast.social,Gaming,gaming,true -TechRaptor,newsmast.social,Journalism & Comment,news_comment_data,false -TechRaptor,newsmast.social,Technology,technology,false -NextGen,newsmast.social,Architecture & Design,architecture_design,false -NextGen,newsmast.social,Books & Literature,books_literature,false -NextGen,newsmast.social,Climate change,climate_change,false -NextGen,newsmast.social,Energy & Pollution,energy_pollution,false -NextGen,newsmast.social,Environment,environment,false -NextGen,newsmast.social,Food & Drink,food_drink,true -NextGen,newsmast.social,History,history,false -NextGen,newsmast.social,Physics,physics,false -NextGen,newsmast.social,Science,science,false -NextGen,newsmast.social,Travel,travel,false -davidnaylorww,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false -davidnaylorww,newsmast.social,Biology,biology,true -davidnaylorww,newsmast.social,Chemistry,chemistry,false -davidnaylorww,newsmast.social,Climate change,climate_change,false -davidnaylorww,newsmast.social,Energy & Pollution,energy_pollution,false -davidnaylorww,newsmast.social,Engineering,engineering,false -davidnaylorww,newsmast.social,Environment,environment,false -davidnaylorww,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false -davidnaylorww,newsmast.social,Mathematics,mathematics,false -davidnaylorww,newsmast.social,Physics,physics,false -davidnaylorww,newsmast.social,Science,science,false -davidnaylorww,newsmast.social,Technology,technology,false -bobbymcd,newsmast.social,Breaking News,breaking_news,false -bobbymcd,newsmast.social,Climate change,climate_change,false -bobbymcd,newsmast.social,Energy & Pollution,energy_pollution,false -bobbymcd,newsmast.social,Mathematics,mathematics,false -bobbymcd,newsmast.social,Weather,weather,true -alternative,newsmast.social,Architecture & Design,architecture_design,false -alternative,newsmast.social,Engineering,engineering,false -alternative,newsmast.social,Movies,movies,false -alternative,newsmast.social,Music,music,false -alternative,newsmast.social,Programming,programming,false -alternative,newsmast.social,Social Sciences,social_sciences,false -alternative,newsmast.social,Technology,technology,true -alternative,newsmast.social,TV & Radio,tv_radio,false -davidrees5761,newsmast.social,Books & Literature,books_literature,false -davidrees5761,newsmast.social,Movies,movies,true -davidrees5761,newsmast.social,Music,music,false -davidrees5761,newsmast.social,TV & Radio,tv_radio,false -davidrees5761,newsmast.social,Visual Arts,visual_arts,false -ChiefOldMist,newsmast.social,AI,ai,false -ChiefOldMist,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false -ChiefOldMist,newsmast.social,Biology,biology,false -ChiefOldMist,newsmast.social,Breaking News,breaking_news,false -ChiefOldMist,newsmast.social,Chemistry,chemistry,false -ChiefOldMist,newsmast.social,Climate change,climate_change,false -ChiefOldMist,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -ChiefOldMist,newsmast.social,Energy & Pollution,energy_pollution,false -ChiefOldMist,newsmast.social,Engineering,engineering,false -ChiefOldMist,newsmast.social,Environment,environment,false -ChiefOldMist,newsmast.social,Government & Policy,government_policy,false -ChiefOldMist,newsmast.social,History,history,false -ChiefOldMist,newsmast.social,Humanities,humanities,false -ChiefOldMist,newsmast.social,Mathematics,mathematics,false -ChiefOldMist,newsmast.social,Journalism & Comment,news_comment_data,false -ChiefOldMist,newsmast.social,Philosophy,philosophy,false -ChiefOldMist,newsmast.social,Physics,physics,false -ChiefOldMist,newsmast.social,Science,science,false -ChiefOldMist,newsmast.social,Social Media,social_media,false -ChiefOldMist,newsmast.social,Social Sciences,social_sciences,false -ChiefOldMist,newsmast.social,Space,space,false -ChiefOldMist,newsmast.social,Technology,technology,true -rileyhBat,newsmast.social,Breaking News,breaking_news,false -rileyhBat,newsmast.social,Business,business,false -rileyhBat,newsmast.social,Engineering,engineering,true -rileyhBat,newsmast.social,Markets & Finance,markets_finance,false -rileyhBat,newsmast.social,Technology,technology,false -Dragonfly,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false -Dragonfly,newsmast.social,Biology,biology,false -Dragonfly,newsmast.social,Chemistry,chemistry,false -Dragonfly,newsmast.social,Climate change,climate_change,true -Dragonfly,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -Dragonfly,newsmast.social,Energy & Pollution,energy_pollution,false -Dragonfly,newsmast.social,Environment,environment,false -Dragonfly,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false -Dragonfly,newsmast.social,Poverty & Inequality,poverty_inequality,false -Dragonfly,newsmast.social,Space,space,false -newsmast_public,newsmast.social,Academia & Research,academia_research,false -newsmast_public,newsmast.social,Biology,biology,false -newsmast_public,newsmast.social,Books & Literature,books_literature,false -newsmast_public,newsmast.social,Breaking News,breaking_news,false -newsmast_public,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -newsmast_public,newsmast.social,Engineering,engineering,false -newsmast_public,newsmast.social,Environment,environment,false -newsmast_public,newsmast.social,Gaming,gaming,false -newsmast_public,newsmast.social,Government & Policy,government_policy,false -newsmast_public,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false -newsmast_public,newsmast.social,Movies,movies,false -newsmast_public,newsmast.social,Music,music,false -newsmast_public,newsmast.social,Journalism & Comment,news_comment_data,false -newsmast_public,newsmast.social,Photography,photography,false -newsmast_public,newsmast.social,Physics,physics,false -newsmast_public,newsmast.social,Politics,politics,false -newsmast_public,newsmast.social,Poverty & Inequality,poverty_inequality,false -newsmast_public,newsmast.social,Programming,programming,false -newsmast_public,newsmast.social,Science,science,false -newsmast_public,newsmast.social,Social Media,social_media,false -newsmast_public,newsmast.social,Social Sciences,social_sciences,false -newsmast_public,newsmast.social,Space,space,false -newsmast_public,newsmast.social,Technology,technology,true -newsmast_public,newsmast.social,TV & Radio,tv_radio,false -newsmast_public,newsmast.social,Visual Arts,visual_arts,false -RevRobinDB,newsmast.social,Activism & Civil Rights,activism_civil_rights,false -RevRobinDB,newsmast.social,Black Voices,black_voices,false -RevRobinDB,newsmast.social,Books & Literature,books_literature,false -RevRobinDB,newsmast.social,Breaking News,breaking_news,false -RevRobinDB,newsmast.social,Climate change,climate_change,false -RevRobinDB,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -RevRobinDB,newsmast.social,Government & Policy,government_policy,false -RevRobinDB,newsmast.social,History,history,false -RevRobinDB,newsmast.social,Immigrants Rights,immigrants_rights,false -RevRobinDB,newsmast.social,Indigenous Peoples,indigenous_peoples,false -RevRobinDB,newsmast.social,LGBTQ+,lgbtq,true -RevRobinDB,newsmast.social,Journalism & Comment,news_comment_data,false -RevRobinDB,newsmast.social,Philosophy,philosophy,false -RevRobinDB,newsmast.social,Politics,politics,false -RevRobinDB,newsmast.social,Poverty & Inequality,poverty_inequality,false -RevRobinDB,newsmast.social,Women’s Voices,women_voices,false -elliottrichmond,newsmast.social,AI,ai,false -elliottrichmond,newsmast.social,Biology,biology,false -elliottrichmond,newsmast.social,Business,business,false -elliottrichmond,newsmast.social,Chemistry,chemistry,false -elliottrichmond,newsmast.social,Engineering,engineering,false -elliottrichmond,newsmast.social,Markets & Finance,markets_finance,false -elliottrichmond,newsmast.social,Mathematics,mathematics,false -elliottrichmond,newsmast.social,Physics,physics,false -elliottrichmond,newsmast.social,Programming,programming,true -elliottrichmond,newsmast.social,Science,science,false -elliottrichmond,newsmast.social,Space,space,false -elliottrichmond,newsmast.social,Technology,technology,false -elliottrichmond,newsmast.social,Workers Rights,workers_rights,false -seasonssuppers,newsmast.social,Breaking News,breaking_news,false -seasonssuppers,newsmast.social,Creative Arts,creative_arts,false -seasonssuppers,newsmast.social,History,history,false -seasonssuppers,newsmast.social,Humanities,humanities,false -seasonssuppers,newsmast.social,Humour,humour,false -seasonssuppers,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false -seasonssuppers,newsmast.social,Nature & Wildlife,nature_wildlife,false -seasonssuppers,newsmast.social,Journalism & Comment,news_comment_data,false -seasonssuppers,newsmast.social,Pets,pets,false -seasonssuppers,newsmast.social,Philosophy,philosophy,false -seasonssuppers,newsmast.social,Puzzles,puzzles,false -seasonssuppers,newsmast.social,Social Media,social_media,false -seasonssuppers,newsmast.social,Social Sciences,social_sciences,false -seasonssuppers,newsmast.social,Travel,travel,false -seasonssuppers,newsmast.social,Ukraine Invasion,ukraine_invasion,false -seasonssuppers,newsmast.social,Weather,weather,false -seasonssuppers,newsmast.social,Food & Drink,food_drink,true -josebilingue,newsmast.social,Academia & Research,academia_research,false -josebilingue,newsmast.social,Activism & Civil Rights,activism_civil_rights,false -josebilingue,newsmast.social,Architecture & Design,architecture_design,false -josebilingue,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false -josebilingue,newsmast.social,Biology,biology,false -josebilingue,newsmast.social,Black Voices,black_voices,false -josebilingue,newsmast.social,Books & Literature,books_literature,false -josebilingue,newsmast.social,Breaking News,breaking_news,false -josebilingue,newsmast.social,Chemistry,chemistry,false -josebilingue,newsmast.social,Climate change,climate_change,false -josebilingue,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -josebilingue,newsmast.social,Disabled Voices,disabled_voices,false -josebilingue,newsmast.social,Energy & Pollution,energy_pollution,false -josebilingue,newsmast.social,Environment,environment,false -josebilingue,newsmast.social,Gaming,gaming,false -josebilingue,newsmast.social,Government & Policy,government_policy,false -josebilingue,newsmast.social,Healthcare,healthcare,false -josebilingue,newsmast.social,History,history,false -josebilingue,newsmast.social,Humanities,humanities,false -josebilingue,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false -josebilingue,newsmast.social,Immigrants Rights,immigrants_rights,false -josebilingue,newsmast.social,Indigenous Peoples,indigenous_peoples,false -josebilingue,newsmast.social,Law & Justice,law_justice,false -josebilingue,newsmast.social,LGBTQ+,lgbtq,false -josebilingue,newsmast.social,Mathematics,mathematics,false -josebilingue,newsmast.social,Movies,movies,false -josebilingue,newsmast.social,Music,music,false -josebilingue,newsmast.social,Journalism & Comment,news_comment_data,false -josebilingue,newsmast.social,Performing Arts,performing_arts,false -josebilingue,newsmast.social,Philosophy,philosophy,false -josebilingue,newsmast.social,Photography,photography,false -josebilingue,newsmast.social,Physics,physics,false -josebilingue,newsmast.social,Politics,politics,false -josebilingue,newsmast.social,Poverty & Inequality,poverty_inequality,false -josebilingue,newsmast.social,Science,science,false -josebilingue,newsmast.social,Social Media,social_media,false -josebilingue,newsmast.social,Space,space,false -josebilingue,newsmast.social,TV & Radio,tv_radio,false -josebilingue,newsmast.social,Ukraine Invasion,ukraine_invasion,false -josebilingue,newsmast.social,US Politics,us_politics,false -josebilingue,newsmast.social,Visual Arts,visual_arts,false -josebilingue,newsmast.social,Weather,weather,false -josebilingue,newsmast.social,Women’s Voices,women_voices,false -josebilingue,newsmast.social,Social Sciences,social_sciences,true -Nusm,newsmast.social,Breaking News,breaking_news,false -Nusm,newsmast.social,Football,football,false -Nusm,newsmast.social,Government & Policy,government_policy,false -Nusm,newsmast.social,Humour,humour,false -Nusm,newsmast.social,Politics,politics,true -Nusm,newsmast.social,Puzzles,puzzles,false -Nusm,newsmast.social,Technology,technology,false -Nusm,newsmast.social,US Politics,us_politics,false -Nusm,newsmast.social,US Sport,us_sport,false -Nusm,newsmast.social,Weather,weather,false -metalman,newsmast.social,Breaking News,breaking_news,false -metalman,newsmast.social,Journalism & Comment,news_comment_data,false -metalman,newsmast.social,Social Media,social_media,false -metalman,newsmast.social,Ukraine Invasion,ukraine_invasion,false -metalman,newsmast.social,Weather,weather,true -sonia_sna0002,newsmast.social,Ukraine Invasion,ukraine_invasion,false -sonia_sna0002,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false -sonia_sna0002,newsmast.social,Breaking News,breaking_news,false -sonia_sna0002,newsmast.social,Climate change,climate_change,false -sonia_sna0002,newsmast.social,Democracy & Human Rights,democracy_human_rights,true -sonia_sna0002,newsmast.social,Energy & Pollution,energy_pollution,false -sonia_sna0002,newsmast.social,Environment,environment,false -sonia_sna0002,newsmast.social,History,history,false -sonia_sna0002,newsmast.social,Humanities,humanities,false -sonia_sna0002,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false -sonia_sna0002,newsmast.social,Journalism & Comment,news_comment_data,false -sonia_sna0002,newsmast.social,Philosophy,philosophy,false -sonia_sna0002,newsmast.social,Poverty & Inequality,poverty_inequality,false -sonia_sna0002,newsmast.social,Social Media,social_media,false -sonia_sna0002,newsmast.social,Social Sciences,social_sciences,false -sonia_sna0002,newsmast.social,Weather,weather,false -TexasHistoryL,newsmast.social,Books & Literature,books_literature,false -TexasHistoryL,newsmast.social,Humanities,humanities,false -TexasHistoryL,newsmast.social,Movies,movies,false -TexasHistoryL,newsmast.social,Music,music,false -TexasHistoryL,newsmast.social,Social Sciences,social_sciences,false -TexasHistoryL,newsmast.social,Visual Arts,visual_arts,false -TexasHistoryL,newsmast.social,History,history,true -nclm,newsmast.social,Activism & Civil Rights,activism_civil_rights,false -nclm,newsmast.social,Architecture & Design,architecture_design,true -nclm,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false -nclm,newsmast.social,Biology,biology,false -nclm,newsmast.social,Books & Literature,books_literature,false -nclm,newsmast.social,Climate change,climate_change,false -nclm,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -nclm,newsmast.social,Disabled Voices,disabled_voices,false -nclm,newsmast.social,Environment,environment,false -nclm,newsmast.social,Gaming,gaming,false -nclm,newsmast.social,History,history,false -nclm,newsmast.social,Humanities,humanities,false -nclm,newsmast.social,Immigrants Rights,immigrants_rights,false -nclm,newsmast.social,Indigenous Peoples,indigenous_peoples,false -nclm,newsmast.social,LGBTQ+,lgbtq,false -nclm,newsmast.social,Movies,movies,false -nclm,newsmast.social,Music,music,false -nclm,newsmast.social,Performing Arts,performing_arts,false -nclm,newsmast.social,Photography,photography,false -nclm,newsmast.social,Physics,physics,false -nclm,newsmast.social,Science,science,false -nclm,newsmast.social,Social Sciences,social_sciences,false -nclm,newsmast.social,Visual Arts,visual_arts,false -nclm,newsmast.social,Women’s Voices,women_voices,false -anujahooja,newsmast.social,AI,ai,false -anujahooja,newsmast.social,Breaking News,breaking_news,false -anujahooja,newsmast.social,Business,business,false -anujahooja,newsmast.social,Engineering,engineering,false -anujahooja,newsmast.social,Gaming,gaming,false -anujahooja,newsmast.social,Markets & Finance,markets_finance,false -anujahooja,newsmast.social,Programming,programming,false -anujahooja,newsmast.social,Social Media,social_media,false -anujahooja,newsmast.social,Technology,technology,true -anujahooja,newsmast.social,Workers Rights,workers_rights,false -kirukarki2,newsmast.social,AI,ai,true -kirukarki2,newsmast.social,Technology,technology,false -kirukarki2,newsmast.social,Programming,programming,false -kirukarki2,newsmast.social,Breaking News,breaking_news,false -kirukarki2,newsmast.social,LGBTQ+,lgbtq,false -kirukarki2,newsmast.social,Private Community,private-community,false -scharfnado,newsmast.social,Academia & Research,academia_research,false -scharfnado,newsmast.social,Breaking News,breaking_news,true -scharfnado,newsmast.social,Government & Policy,government_policy,false -scharfnado,newsmast.social,Physics,physics,false -scharfnado,newsmast.social,Space,space,false -scharfnado,newsmast.social,Technology,technology,false -scharfnado,newsmast.social,Travel,travel,false -scharfnado,newsmast.social,Energy & Pollution,energy_pollution,false -NoisyBits,newsmast.social,Activism & Civil Rights,activism_civil_rights,false -NoisyBits,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -NoisyBits,newsmast.social,History,history,false -NoisyBits,newsmast.social,Humanities,humanities,true -NoisyBits,newsmast.social,Poverty & Inequality,poverty_inequality,false -NoisyBits,newsmast.social,LGBTQ+,lgbtq,false -NoisyBits,newsmast.social,Philosophy,philosophy,false -NoisyBits,newsmast.social,Social Sciences,social_sciences,false -NoisyBits,newsmast.social,Visual Arts,visual_arts,false -backtobella,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false -backtobella,newsmast.social,Biology,biology,false -backtobella,newsmast.social,Environment,environment,false -backtobella,newsmast.social,History,history,false -backtobella,newsmast.social,Mathematics,mathematics,false -backtobella,newsmast.social,Movies,movies,false -backtobella,newsmast.social,Performing Arts,performing_arts,false -backtobella,newsmast.social,Science,science,false -backtobella,newsmast.social,Space,space,false -backtobella,newsmast.social,TV & Radio,tv_radio,false -backtobella,newsmast.social,Visual Arts,visual_arts,true -Acethe1st,newsmast.social,Academia & Research,academia_research,false -Acethe1st,newsmast.social,Activism & Civil Rights,activism_civil_rights,false -Acethe1st,newsmast.social,Architecture & Design,architecture_design,false -Acethe1st,newsmast.social,Biology,biology,false -Acethe1st,newsmast.social,Black Voices,black_voices,false -Acethe1st,newsmast.social,Books & Literature,books_literature,false -Acethe1st,newsmast.social,Breaking News,breaking_news,false -Acethe1st,newsmast.social,Chemistry,chemistry,false -Acethe1st,newsmast.social,Democracy & Human Rights,democracy_human_rights,true -Acethe1st,newsmast.social,Disabled Voices,disabled_voices,false -Acethe1st,newsmast.social,Gaming,gaming,false -Acethe1st,newsmast.social,Government & Policy,government_policy,false -Acethe1st,newsmast.social,Healthcare,healthcare,false -Acethe1st,newsmast.social,History,history,false -Acethe1st,newsmast.social,Humanities,humanities,false -Acethe1st,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false -Acethe1st,newsmast.social,Immigrants Rights,immigrants_rights,false -Acethe1st,newsmast.social,Indigenous Peoples,indigenous_peoples,false -Acethe1st,newsmast.social,Law & Justice,law_justice,false -Acethe1st,newsmast.social,LGBTQ+,lgbtq,false -Acethe1st,newsmast.social,Mathematics,mathematics,false -Acethe1st,newsmast.social,Movies,movies,false -Acethe1st,newsmast.social,Music,music,false -Acethe1st,newsmast.social,Journalism & Comment,news_comment_data,false -Acethe1st,newsmast.social,Performing Arts,performing_arts,false -Acethe1st,newsmast.social,Philosophy,philosophy,false -Acethe1st,newsmast.social,Photography,photography,false -Acethe1st,newsmast.social,Physics,physics,false -Acethe1st,newsmast.social,Politics,politics,false -Acethe1st,newsmast.social,Poverty & Inequality,poverty_inequality,false -Acethe1st,newsmast.social,Science,science,false -Acethe1st,newsmast.social,Social Media,social_media,false -Acethe1st,newsmast.social,Social Sciences,social_sciences,false -Acethe1st,newsmast.social,Space,space,false -Acethe1st,newsmast.social,TV & Radio,tv_radio,false -Acethe1st,newsmast.social,Ukraine Invasion,ukraine_invasion,false -Acethe1st,newsmast.social,US Politics,us_politics,false -Acethe1st,newsmast.social,Visual Arts,visual_arts,false -Acethe1st,newsmast.social,Weather,weather,false -Acethe1st,newsmast.social,Women’s Voices,women_voices,false -test12,newsmast.social,Academia & Research,academia_research,false -test12,newsmast.social,Activism & Civil Rights,activism_civil_rights,false -test12,newsmast.social,AI,ai,false -test12,newsmast.social,Black Voices,black_voices,true -test12,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -test12,newsmast.social,Gaming,gaming,false -test12,newsmast.social,Government & Policy,government_policy,false -test12,newsmast.social,History,history,false -test12,newsmast.social,Humanities,humanities,false -test12,newsmast.social,Indigenous Peoples,indigenous_peoples,false -test12,newsmast.social,Law & Justice,law_justice,false -test12,newsmast.social,Movies,movies,false -test12,newsmast.social,Music,music,false -test12,newsmast.social,Journalism & Comment,news_comment_data,false -test12,newsmast.social,Social Media,social_media,false -test12,newsmast.social,Technology,technology,false -test12,newsmast.social,TV & Radio,tv_radio,false -test12,newsmast.social,US Politics,us_politics,false -test12,newsmast.social,US Sport,us_sport,false -yethiha,newsmast.social,AI,ai,false -yethiha,newsmast.social,Biology,biology,false -yethiha,newsmast.social,Chemistry,chemistry,false -yethiha,newsmast.social,Engineering,engineering,true -yethiha,newsmast.social,Mathematics,mathematics,false -yethiha,newsmast.social,Physics,physics,false -yethiha,newsmast.social,Programming,programming,false -yethiha,newsmast.social,Science,science,false -yethiha,newsmast.social,Space,space,false -yethiha,newsmast.social,Technology,technology,false -yethiha,newsmast.social,Breaking News,breaking_news,false -fxdpntthm,newsmast.social,Architecture & Design,architecture_design,false -fxdpntthm,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false -fxdpntthm,newsmast.social,Books & Literature,books_literature,false -fxdpntthm,newsmast.social,Breaking News,breaking_news,false -fxdpntthm,newsmast.social,Chemistry,chemistry,false -fxdpntthm,newsmast.social,Creative Arts,creative_arts,false -fxdpntthm,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -fxdpntthm,newsmast.social,Energy & Pollution,energy_pollution,false -fxdpntthm,newsmast.social,Engineering,engineering,false -fxdpntthm,newsmast.social,Humour,humour,false -fxdpntthm,newsmast.social,Markets & Finance,markets_finance,false -fxdpntthm,newsmast.social,Mathematics,mathematics,false -fxdpntthm,newsmast.social,Movies,movies,false -fxdpntthm,newsmast.social,Music,music,false -fxdpntthm,newsmast.social,Nature & Wildlife,nature_wildlife,false -fxdpntthm,newsmast.social,Performing Arts,performing_arts,false -fxdpntthm,newsmast.social,Photography,photography,false -fxdpntthm,newsmast.social,Physics,physics,false -fxdpntthm,newsmast.social,Poverty & Inequality,poverty_inequality,false -fxdpntthm,newsmast.social,Puzzles,puzzles,false -fxdpntthm,newsmast.social,Science,science,false -fxdpntthm,newsmast.social,Social Media,social_media,false -fxdpntthm,newsmast.social,Space,space,false -fxdpntthm,newsmast.social,Technology,technology,true -fxdpntthm,newsmast.social,Travel,travel,false -fxdpntthm,newsmast.social,Visual Arts,visual_arts,false -fxdpntthm,newsmast.social,Weather,weather,false -fxdpntthm,newsmast.social,Workers Rights,workers_rights,false -fxdpntthm,newsmast.social,Biology,biology,false -mariabelfort,newsmast.social,Architecture & Design,architecture_design,false -mariabelfort,newsmast.social,Creative Arts,creative_arts,false -mariabelfort,newsmast.social,Food & Drink,food_drink,false -mariabelfort,newsmast.social,Photography,photography,false -mariabelfort,newsmast.social,Puzzles,puzzles,false -mariabelfort,newsmast.social,Travel,travel,true -mariabelfort,newsmast.social,Visual Arts,visual_arts,false -BobH,newsmast.social,Breaking News,breaking_news,true -BobH,newsmast.social,Journalism & Comment,news_comment_data,false -BobH,newsmast.social,Social Media,social_media,false -BobH,newsmast.social,Ukraine Invasion,ukraine_invasion,false -BobH,newsmast.social,Weather,weather,false -Oma,newsmast.social,Activism & Civil Rights,activism_civil_rights,false -Oma,newsmast.social,AI,ai,false -Oma,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false -Oma,newsmast.social,Breaking News,breaking_news,false -Oma,newsmast.social,Climate change,climate_change,false -Oma,newsmast.social,Government & Policy,government_policy,false -Oma,newsmast.social,Indigenous Peoples,indigenous_peoples,false -Oma,newsmast.social,Journalism & Comment,news_comment_data,false -Oma,newsmast.social,Politics,politics,false -Oma,newsmast.social,Poverty & Inequality,poverty_inequality,false -Oma,newsmast.social,Science,science,false -Oma,newsmast.social,Women’s Voices,women_voices,false -Oma,newsmast.social,Democracy & Human Rights,democracy_human_rights,true -kuzushi,newsmast.social,AI,ai,false -kuzushi,newsmast.social,Architecture & Design,architecture_design,false -kuzushi,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false -kuzushi,newsmast.social,Biology,biology,false -kuzushi,newsmast.social,Books & Literature,books_literature,false -kuzushi,newsmast.social,Chemistry,chemistry,false -kuzushi,newsmast.social,Climate change,climate_change,false -kuzushi,newsmast.social,Democracy & Human Rights,democracy_human_rights,true -kuzushi,newsmast.social,Energy & Pollution,energy_pollution,false -kuzushi,newsmast.social,Environment,environment,false -kuzushi,newsmast.social,Government & Policy,government_policy,false -kuzushi,newsmast.social,Healthcare,healthcare,false -kuzushi,newsmast.social,History,history,false -kuzushi,newsmast.social,Humanities,humanities,false -kuzushi,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false -kuzushi,newsmast.social,Law & Justice,law_justice,false -kuzushi,newsmast.social,Mathematics,mathematics,false -kuzushi,newsmast.social,Movies,movies,false -kuzushi,newsmast.social,Music,music,false -kuzushi,newsmast.social,Performing Arts,performing_arts,false -kuzushi,newsmast.social,Philosophy,philosophy,false -kuzushi,newsmast.social,Photography,photography,false -kuzushi,newsmast.social,Physics,physics,false -kuzushi,newsmast.social,Poverty & Inequality,poverty_inequality,false -kuzushi,newsmast.social,Programming,programming,false -kuzushi,newsmast.social,Science,science,false -kuzushi,newsmast.social,Social Sciences,social_sciences,false -kuzushi,newsmast.social,Space,space,false -kuzushi,newsmast.social,Sport,sport,false -kuzushi,newsmast.social,Visual Arts,visual_arts,false -kiko,newsmast.social,Football,football,true -kiko,newsmast.social,Programming,programming,false -kiko,newsmast.social,Social Media,social_media,false -kiko,newsmast.social,Technology,technology,false -kiko,newsmast.social,US Sport,us_sport,false -surya,newsmast.social,AI,ai,false -surya,newsmast.social,Football,football,true -surya,newsmast.social,Social Media,social_media,false -surya,newsmast.social,Sport,sport,false -surya,newsmast.social,Technology,technology,false -markrubbo,newsmast.social,Academia & Research,academia_research,false -markrubbo,newsmast.social,Healthcare,healthcare,false -markrubbo,newsmast.social,Law & Justice,law_justice,false -markrubbo,newsmast.social,Politics,politics,false -markrubbo,newsmast.social,US Politics,us_politics,false -markrubbo,newsmast.social,Government & Policy,government_policy,true -igs,newsmast.social,Breaking News,breaking_news,false -igs,newsmast.social,Engineering,engineering,false -igs,newsmast.social,Mathematics,mathematics,false -igs,newsmast.social,Puzzles,puzzles,true -igs,newsmast.social,Space,space,false -Nido,newsmast.social,Academia & Research,academia_research,false -Nido,newsmast.social,AI,ai,false -Nido,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false -Nido,newsmast.social,Biology,biology,false -Nido,newsmast.social,Books & Literature,books_literature,false -Nido,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -Nido,newsmast.social,Engineering,engineering,false -Nido,newsmast.social,Environment,environment,false -Nido,newsmast.social,History,history,false -Nido,newsmast.social,Humanities,humanities,false -Nido,newsmast.social,Mathematics,mathematics,false -Nido,newsmast.social,Movies,movies,false -Nido,newsmast.social,Music,music,false -Nido,newsmast.social,Journalism & Comment,news_comment_data,false -Nido,newsmast.social,Performing Arts,performing_arts,false -Nido,newsmast.social,Philosophy,philosophy,false -Nido,newsmast.social,Photography,photography,false -Nido,newsmast.social,Physics,physics,false -Nido,newsmast.social,Politics,politics,false -Nido,newsmast.social,Programming,programming,false -Nido,newsmast.social,Science,science,false -Nido,newsmast.social,Social Media,social_media,false -Nido,newsmast.social,Social Sciences,social_sciences,false -Nido,newsmast.social,Technology,technology,false -Nido,newsmast.social,TV & Radio,tv_radio,false -Nido,newsmast.social,Visual Arts,visual_arts,false -Nido,newsmast.social,Activism & Civil Rights,activism_civil_rights,true -Aurefreepress,newsmast.social,Breaking News,breaking_news,true -Aurefreepress,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -Aurefreepress,newsmast.social,Government & Policy,government_policy,false -Aurefreepress,newsmast.social,Journalism & Comment,news_comment_data,false -Aurefreepress,newsmast.social,Social Media,social_media,false -Aurefreepress,newsmast.social,Ukraine Invasion,ukraine_invasion,false -Aurefreepress,newsmast.social,Weather,weather,false -Aurefreepress,newsmast.social,Academia & Research,academia_research,false -Aurefreepress,newsmast.social,Healthcare,healthcare,false -Aurefreepress,newsmast.social,US Politics,us_politics,false -Aurefreepress,newsmast.social,Environment,environment,false -Aurefreepress,newsmast.social,Climate change,climate_change,false -Aurefreepress,newsmast.social,Energy & Pollution,energy_pollution,false -Aurefreepress,newsmast.social,Activism & Civil Rights,activism_civil_rights,false -Aurefreepress,newsmast.social,Black Voices,black_voices,false -Aurefreepress,newsmast.social,Disabled Voices,disabled_voices,false -Aurefreepress,newsmast.social,Immigrants Rights,immigrants_rights,false -Aurefreepress,newsmast.social,Indigenous Peoples,indigenous_peoples,false -Aurefreepress,newsmast.social,LGBTQ+,lgbtq,false -Aurefreepress,newsmast.social,Women’s Voices,women_voices,false -Aurefreepress,newsmast.social,Science,science,false -Aurefreepress,newsmast.social,Space,space,false -ftalk,newsmast.social,Travel,travel,false -ftalk,newsmast.social,US Sport,us_sport,false -ftalk,newsmast.social,AI,ai,false -ftalk,newsmast.social,Creative Arts,creative_arts,false -ftalk,newsmast.social,Engineering,engineering,false -ftalk,newsmast.social,Food & Drink,food_drink,false -ftalk,newsmast.social,Football,football,false -ftalk,newsmast.social,Humour,humour,true -ftalk,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false -ftalk,newsmast.social,Nature & Wildlife,nature_wildlife,false -ftalk,newsmast.social,Pets,pets,false -ftalk,newsmast.social,Programming,programming,false -ftalk,newsmast.social,Puzzles,puzzles,false -ftalk,newsmast.social,Sport,sport,false -ftalk,newsmast.social,Technology,technology,false -ftalk,newsmast.social,Travel,travel,false -ftalk,newsmast.social,US Sport,us_sport,false -vijaysingh,newsmast.social,Academia & Research,academia_research,false -vijaysingh,newsmast.social,Government & Policy,government_policy,false -vijaysingh,newsmast.social,Healthcare,healthcare,false -vijaysingh,newsmast.social,Law & Justice,law_justice,false -vijaysingh,newsmast.social,Politics,politics,true -vijaysingh,newsmast.social,US Politics,us_politics,false -davidadobbs,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false -davidadobbs,newsmast.social,Climate change,climate_change,false -davidadobbs,newsmast.social,Environment,environment,false -davidadobbs,newsmast.social,History,history,false -davidadobbs,newsmast.social,Humanities,humanities,false -davidadobbs,newsmast.social,Science,science,true -BillSaysThis,newsmast.social,Breaking News,breaking_news,false -BillSaysThis,newsmast.social,Law & Justice,law_justice,false -BillSaysThis,newsmast.social,Politics,politics,false -BillSaysThis,newsmast.social,Sport,sport,true -BillSaysThis,newsmast.social,US Politics,us_politics,false -Leslie_Jones,newsmast.social,Academia & Research,academia_research,false -Leslie_Jones,newsmast.social,Activism & Civil Rights,activism_civil_rights,false -Leslie_Jones,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false -Leslie_Jones,newsmast.social,Books & Literature,books_literature,false -Leslie_Jones,newsmast.social,Breaking News,breaking_news,false -Leslie_Jones,newsmast.social,Business,business,false -Leslie_Jones,newsmast.social,Climate change,climate_change,false -Leslie_Jones,newsmast.social,Creative Arts,creative_arts,false -Leslie_Jones,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -Leslie_Jones,newsmast.social,Energy & Pollution,energy_pollution,false -Leslie_Jones,newsmast.social,Environment,environment,false -Leslie_Jones,newsmast.social,Food & Drink,food_drink,false -Leslie_Jones,newsmast.social,Football,football,false -Leslie_Jones,newsmast.social,Government & Policy,government_policy,false -Leslie_Jones,newsmast.social,Healthcare,healthcare,false -Leslie_Jones,newsmast.social,History,history,false -Leslie_Jones,newsmast.social,Humanities,humanities,false -Leslie_Jones,newsmast.social,Humour,humour,false -Leslie_Jones,newsmast.social,Law & Justice,law_justice,true -Leslie_Jones,newsmast.social,Markets & Finance,markets_finance,false -Leslie_Jones,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false -Leslie_Jones,newsmast.social,Nature & Wildlife,nature_wildlife,false -Leslie_Jones,newsmast.social,Pets,pets,false -Leslie_Jones,newsmast.social,Philosophy,philosophy,false -Leslie_Jones,newsmast.social,Photography,photography,false -Leslie_Jones,newsmast.social,Politics,politics,false -Leslie_Jones,newsmast.social,Puzzles,puzzles,false -Leslie_Jones,newsmast.social,Science,science,false -Leslie_Jones,newsmast.social,Social Sciences,social_sciences,false -Leslie_Jones,newsmast.social,Sport,sport,false -Leslie_Jones,newsmast.social,Technology,technology,false -Leslie_Jones,newsmast.social,Travel,travel,false -Leslie_Jones,newsmast.social,Ukraine Invasion,ukraine_invasion,false -Leslie_Jones,newsmast.social,US Politics,us_politics,false -Leslie_Jones,newsmast.social,US Sport,us_sport,false -Leslie_Jones,newsmast.social,Weather,weather,false -Leslie_Jones,newsmast.social,Women’s Voices,women_voices,false -Leslie_Jones,newsmast.social,Workers Rights,workers_rights,false -tayndua,newsmast.social,Social Sciences,social_sciences,false -tayndua,newsmast.social,Technology,technology,false -tayndua,newsmast.social,TV & Radio,tv_radio,false -tayndua,newsmast.social,US Politics,us_politics,false -tayndua,newsmast.social,Women’s Voices,women_voices,false -tayndua,newsmast.social,Workers Rights,workers_rights,false -tayndua,newsmast.social,Activism & Civil Rights,activism_civil_rights,true -tayndua,newsmast.social,AI,ai,false -tayndua,newsmast.social,Black Voices,black_voices,false -tayndua,newsmast.social,Books & Literature,books_literature,false -tayndua,newsmast.social,Business,business,false -tayndua,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -tayndua,newsmast.social,Disabled Voices,disabled_voices,false -tayndua,newsmast.social,Government & Policy,government_policy,false -tayndua,newsmast.social,Humanities,humanities,false -tayndua,newsmast.social,LGBTQ+,lgbtq,false -tayndua,newsmast.social,Markets & Finance,markets_finance,false -tayndua,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false -tayndua,newsmast.social,Movies,movies,false -tayndua,newsmast.social,Performing Arts,performing_arts,false -tayndua,newsmast.social,Pets,pets,false -tayndua,newsmast.social,Philosophy,philosophy,false -tayndua,newsmast.social,Politics,politics,false -tayndua,newsmast.social,Poverty & Inequality,poverty_inequality,false -tayndua,newsmast.social,Social Media,social_media,false -giff,newsmast.social,Biology,biology,false -giff,newsmast.social,Breaking News,breaking_news,true -giff,newsmast.social,Chemistry,chemistry,false -giff,newsmast.social,Government & Policy,government_policy,false -giff,newsmast.social,Healthcare,healthcare,false -giff,newsmast.social,History,history,false -giff,newsmast.social,Mathematics,mathematics,false -giff,newsmast.social,Journalism & Comment,news_comment_data,false -giff,newsmast.social,Physics,physics,false -giff,newsmast.social,Politics,politics,false -giff,newsmast.social,Science,science,false -giff,newsmast.social,Social Media,social_media,false -giff,newsmast.social,Social Sciences,social_sciences,false -giff,newsmast.social,Space,space,false -giff,newsmast.social,Technology,technology,false -giff,newsmast.social,US Sport,us_sport,false -SithuBoo,newsmast.social,Breaking News,breaking_news,true -SithuBoo,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -SithuBoo,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false -SithuBoo,newsmast.social,Journalism & Comment,news_comment_data,false -SithuBoo,newsmast.social,Poverty & Inequality,poverty_inequality,false -SithuBoo,newsmast.social,Social Media,social_media,false -SithuBoo,newsmast.social,Ukraine Invasion,ukraine_invasion,false -SithuBoo,newsmast.social,Weather,weather,false -Simon,newsmast.social,Activism & Civil Rights,activism_civil_rights,false -Simon,newsmast.social,AI,ai,false -Simon,newsmast.social,Architecture & Design,architecture_design,false -Simon,newsmast.social,Biology,biology,false -Simon,newsmast.social,Black Voices,black_voices,false -Simon,newsmast.social,Books & Literature,books_literature,false -Simon,newsmast.social,Breaking News,breaking_news,false -Simon,newsmast.social,Business,business,false -Simon,newsmast.social,Chemistry,chemistry,false -Simon,newsmast.social,Creative Arts,creative_arts,false -Simon,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -Simon,newsmast.social,Disabled Voices,disabled_voices,false -Simon,newsmast.social,Engineering,engineering,false -Simon,newsmast.social,Gaming,gaming,false -Simon,newsmast.social,History,history,false -Simon,newsmast.social,Humanities,humanities,false -Simon,newsmast.social,Humour,humour,false -Simon,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false -Simon,newsmast.social,Immigrants Rights,immigrants_rights,false -Simon,newsmast.social,Indigenous Peoples,indigenous_peoples,false -Simon,newsmast.social,Markets & Finance,markets_finance,false -Simon,newsmast.social,Mathematics,mathematics,false -Simon,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false -Simon,newsmast.social,Movies,movies,false -Simon,newsmast.social,Music,music,false -Simon,newsmast.social,Nature & Wildlife,nature_wildlife,false -Simon,newsmast.social,Journalism & Comment,news_comment_data,false -Simon,newsmast.social,Performing Arts,performing_arts,false -Simon,newsmast.social,Philosophy,philosophy,false -Simon,newsmast.social,Photography,photography,false -Simon,newsmast.social,Physics,physics,false -Simon,newsmast.social,Poverty & Inequality,poverty_inequality,false -Simon,newsmast.social,Programming,programming,false -Simon,newsmast.social,Puzzles,puzzles,false -Simon,newsmast.social,Science,science,false -Simon,newsmast.social,Social Media,social_media,false -Simon,newsmast.social,Social Sciences,social_sciences,false -Simon,newsmast.social,Space,space,false -Simon,newsmast.social,Technology,technology,true -Simon,newsmast.social,TV & Radio,tv_radio,false -Simon,newsmast.social,Ukraine Invasion,ukraine_invasion,false -Simon,newsmast.social,Visual Arts,visual_arts,false -Simon,newsmast.social,Weather,weather,false -Simon,newsmast.social,Women’s Voices,women_voices,false -game,newsmast.social,Breaking News,breaking_news,false -game,newsmast.social,Creative Arts,creative_arts,false -game,newsmast.social,Food & Drink,food_drink,false -game,newsmast.social,Humour,humour,true -game,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false -game,newsmast.social,Nature & Wildlife,nature_wildlife,false -game,newsmast.social,Journalism & Comment,news_comment_data,false -game,newsmast.social,Pets,pets,false -game,newsmast.social,Puzzles,puzzles,false -game,newsmast.social,Social Media,social_media,false -game,newsmast.social,Travel,travel,false -game,newsmast.social,Ukraine Invasion,ukraine_invasion,false -game,newsmast.social,Weather,weather,false -violiver,newsmast.social,Activism & Civil Rights,activism_civil_rights,false -violiver,newsmast.social,LGBTQ+,lgbtq,true -violiver,newsmast.social,Music,music,false -violiver,newsmast.social,Performing Arts,performing_arts,false -violiver,newsmast.social,Science,science,false -Binary_MinKhant,newsmast.social,Journalism & Comment,news_comment_data,true -Binary_MinKhant,newsmast.social,Social Media,social_media,false -Binary_MinKhant,newsmast.social,Ukraine Invasion,ukraine_invasion,false -Binary_MinKhant,newsmast.social,Weather,weather,false -Binary_MinKhant,newsmast.social,Breaking News,breaking_news,false -Binary_MinKhant,newsmast.social,Climate change,climate_change,false -Binary_MinKhant,newsmast.social,Energy & Pollution,energy_pollution,false -Binary_MinKhant,newsmast.social,Environment,environment,false -Binary_MinKhant,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false -Binary_MinKhant,newsmast.social,Indigenous Peoples,indigenous_peoples,false -Binary_MinKhant,newsmast.social,Disabled Voices,disabled_voices,false -Binary_MinKhant,newsmast.social,LGBTQ+,lgbtq,false -Binary_MinKhant,newsmast.social,Immigrants Rights,immigrants_rights,false -Binary_MinKhant,newsmast.social,Activism & Civil Rights,activism_civil_rights,false -Binary_MinKhant,newsmast.social,Black Voices,black_voices,false -Binary_MinKhant,newsmast.social,Women’s Voices,women_voices,false -Binary_MinKhant,newsmast.social,Markets & Finance,markets_finance,false -Binary_MinKhant,newsmast.social,Business,business,false -Binary_MinKhant,newsmast.social,Workers Rights,workers_rights,false -Binary_MinKhant,newsmast.social,Engineering,engineering,false -Binary_MinKhant,newsmast.social,Technology,technology,false -Binary_MinKhant,newsmast.social,AI,ai,false -Binary_MinKhant,newsmast.social,Programming,programming,false -Binary_MinKhant,newsmast.social,Chemistry,chemistry,false -Binary_MinKhant,newsmast.social,Science,science,false -Binary_MinKhant,newsmast.social,Space,space,false -Binary_MinKhant,newsmast.social,Biology,biology,false -Binary_MinKhant,newsmast.social,Mathematics,mathematics,false -Binary_MinKhant,newsmast.social,Physics,physics,false -Binary_MinKhant,newsmast.social,History,history,false -Binary_MinKhant,newsmast.social,Humanities,humanities,false -Binary_MinKhant,newsmast.social,Social Sciences,social_sciences,false -Binary_MinKhant,newsmast.social,Philosophy,philosophy,false -Binary_MinKhant,newsmast.social,Sport,sport,false -Binary_MinKhant,newsmast.social,Football,football,false -Binary_MinKhant,newsmast.social,US Sport,us_sport,false -Binary_MinKhant,newsmast.social,Creative Arts,creative_arts,false -Binary_MinKhant,newsmast.social,Humour,humour,false -Binary_MinKhant,newsmast.social,Pets,pets,false -Binary_MinKhant,newsmast.social,Nature & Wildlife,nature_wildlife,false -Binary_MinKhant,newsmast.social,Food & Drink,food_drink,false -Binary_MinKhant,newsmast.social,Puzzles,puzzles,false -Binary_MinKhant,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false -Binary_MinKhant,newsmast.social,Travel,travel,false -Binary_MinKhant,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -Binary_MinKhant,newsmast.social,Poverty & Inequality,poverty_inequality,false -Binary_MinKhant,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false -Binary_MinKhant,newsmast.social,US Politics,us_politics,false -Binary_MinKhant,newsmast.social,Politics,politics,false -Binary_MinKhant,newsmast.social,Law & Justice,law_justice,false -Binary_MinKhant,newsmast.social,Healthcare,healthcare,false -Binary_MinKhant,newsmast.social,Academia & Research,academia_research,false -Binary_MinKhant,newsmast.social,Government & Policy,government_policy,false -Binary_MinKhant,newsmast.social,Visual Arts,visual_arts,false -Binary_MinKhant,newsmast.social,TV & Radio,tv_radio,false -Binary_MinKhant,newsmast.social,Photography,photography,false -Binary_MinKhant,newsmast.social,Performing Arts,performing_arts,false -Binary_MinKhant,newsmast.social,Music,music,false -Binary_MinKhant,newsmast.social,Movies,movies,false -Binary_MinKhant,newsmast.social,Gaming,gaming,false -Binary_MinKhant,newsmast.social,Books & Literature,books_literature,false -Binary_MinKhant,newsmast.social,Architecture & Design,architecture_design,false -sks1084,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false -sks1084,newsmast.social,Breaking News,breaking_news,false -sks1084,newsmast.social,Climate change,climate_change,false -sks1084,newsmast.social,Energy & Pollution,energy_pollution,false -sks1084,newsmast.social,Environment,environment,false -sks1084,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false -sks1084,newsmast.social,Social Media,social_media,false -sks1084,newsmast.social,Ukraine Invasion,ukraine_invasion,false -sks1084,newsmast.social,Weather,weather,true -aadyrocker,newsmast.social,Breaking News,breaking_news,true -aadyrocker,newsmast.social,Football,football,false -aadyrocker,newsmast.social,Journalism & Comment,news_comment_data,false -aadyrocker,newsmast.social,Sport,sport,false -aadyrocker,newsmast.social,US Sport,us_sport,false -MarciaHHendrick,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false -MarciaHHendrick,newsmast.social,Breaking News,breaking_news,false -MarciaHHendrick,newsmast.social,Climate change,climate_change,false -MarciaHHendrick,newsmast.social,Democracy & Human Rights,democracy_human_rights,true -MarciaHHendrick,newsmast.social,Energy & Pollution,energy_pollution,false -MarciaHHendrick,newsmast.social,Environment,environment,false -MarciaHHendrick,newsmast.social,Government & Policy,government_policy,false -MarciaHHendrick,newsmast.social,Law & Justice,law_justice,false -MarciaHHendrick,newsmast.social,Poverty & Inequality,poverty_inequality,false -MarciaHHendrick,newsmast.social,Ukraine Invasion,ukraine_invasion,false -MarciaHHendrick,newsmast.social,US Politics,us_politics,false -maungchawnwe,newsmast.social,Academia & Research,academia_research,false -maungchawnwe,newsmast.social,AI,ai,false -maungchawnwe,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false -maungchawnwe,newsmast.social,Biology,biology,false -maungchawnwe,newsmast.social,Breaking News,breaking_news,false -maungchawnwe,newsmast.social,Chemistry,chemistry,false -maungchawnwe,newsmast.social,Climate change,climate_change,false -maungchawnwe,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -maungchawnwe,newsmast.social,Energy & Pollution,energy_pollution,false -maungchawnwe,newsmast.social,Engineering,engineering,true -maungchawnwe,newsmast.social,Environment,environment,false -maungchawnwe,newsmast.social,Government & Policy,government_policy,false -maungchawnwe,newsmast.social,Healthcare,healthcare,false -maungchawnwe,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false -maungchawnwe,newsmast.social,Law & Justice,law_justice,false -maungchawnwe,newsmast.social,Mathematics,mathematics,false -maungchawnwe,newsmast.social,Journalism & Comment,news_comment_data,false -maungchawnwe,newsmast.social,Physics,physics,false -maungchawnwe,newsmast.social,Politics,politics,false -maungchawnwe,newsmast.social,Poverty & Inequality,poverty_inequality,false -maungchawnwe,newsmast.social,Programming,programming,false -maungchawnwe,newsmast.social,Science,science,false -maungchawnwe,newsmast.social,Social Media,social_media,false -maungchawnwe,newsmast.social,Space,space,false -maungchawnwe,newsmast.social,Technology,technology,false -maungchawnwe,newsmast.social,Ukraine Invasion,ukraine_invasion,false -maungchawnwe,newsmast.social,US Politics,us_politics,false -maungchawnwe,newsmast.social,Weather,weather,false -stuckiniceland,newsmast.social,Business,business,false -stuckiniceland,newsmast.social,Creative Arts,creative_arts,false -stuckiniceland,newsmast.social,Food & Drink,food_drink,false -stuckiniceland,newsmast.social,Humour,humour,false -stuckiniceland,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false -stuckiniceland,newsmast.social,Nature & Wildlife,nature_wildlife,false -stuckiniceland,newsmast.social,Pets,pets,false -stuckiniceland,newsmast.social,Photography,photography,false -stuckiniceland,newsmast.social,Puzzles,puzzles,false -stuckiniceland,newsmast.social,Travel,travel,true -HarveyJKaye,newsmast.social,Breaking News,breaking_news,false -HarveyJKaye,newsmast.social,Government & Policy,government_policy,false -HarveyJKaye,newsmast.social,History,history,false -HarveyJKaye,newsmast.social,Humanities,humanities,false -HarveyJKaye,newsmast.social,Journalism & Comment,news_comment_data,true -HarveyJKaye,newsmast.social,Social Sciences,social_sciences,false -HarveyJKaye,newsmast.social,Ukraine Invasion,ukraine_invasion,false -HarveyJKaye,newsmast.social,US Politics,us_politics,false -alemida30,newsmast.social,Breaking News,breaking_news,false -alemida30,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -alemida30,newsmast.social,Humanities,humanities,false -alemida30,newsmast.social,LGBTQ+,lgbtq,true -alemida30,newsmast.social,Social Media,social_media,false -CenTxHank,newsmast.social,History,history,true -CenTxHank,newsmast.social,Humanities,humanities,false -CenTxHank,newsmast.social,Philosophy,philosophy,false -CenTxHank,newsmast.social,Physics,physics,false -CenTxHank,newsmast.social,Space,space,false -puk4_heart,newsmast.social,AI,ai,false -puk4_heart,newsmast.social,Creative Arts,creative_arts,false -puk4_heart,newsmast.social,Engineering,engineering,false -puk4_heart,newsmast.social,Food & Drink,food_drink,false -puk4_heart,newsmast.social,Social Media,social_media,true -puk4_heart,newsmast.social,Weather,weather,false -Test_App,newsmast.social,AI,ai,false -Test_App,newsmast.social,Technology,technology,true -Test_App,newsmast.social,Nature & Wildlife,nature_wildlife,false -sithudev,newsmast.social,Academia & Research,academia_research,false -sithudev,newsmast.social,Activism & Civil Rights,activism_civil_rights,false -sithudev,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false -sithudev,newsmast.social,Black Voices,black_voices,false -sithudev,newsmast.social,Breaking News,breaking_news,true -sithudev,newsmast.social,Climate change,climate_change,false -sithudev,newsmast.social,Disabled Voices,disabled_voices,false -sithudev,newsmast.social,Energy & Pollution,energy_pollution,false -sithudev,newsmast.social,Environment,environment,false -sithudev,newsmast.social,Government & Policy,government_policy,false -sithudev,newsmast.social,Healthcare,healthcare,false -sithudev,newsmast.social,Immigrants Rights,immigrants_rights,false -sithudev,newsmast.social,Indigenous Peoples,indigenous_peoples,false -sithudev,newsmast.social,Law & Justice,law_justice,false -sithudev,newsmast.social,LGBTQ+,lgbtq,false -sithudev,newsmast.social,Journalism & Comment,news_comment_data,false -sithudev,newsmast.social,Politics,politics,false -sithudev,newsmast.social,Social Media,social_media,false -sithudev,newsmast.social,Ukraine Invasion,ukraine_invasion,false -sithudev,newsmast.social,US Politics,us_politics,false -sithudev,newsmast.social,Weather,weather,false -sithudev,newsmast.social,Women’s Voices,women_voices,false -sciencefeed,newsmast.social,Biology,biology,false -sciencefeed,newsmast.social,Chemistry,chemistry,false -sciencefeed,newsmast.social,Mathematics,mathematics,false -sciencefeed,newsmast.social,Physics,physics,false -sciencefeed,newsmast.social,Science,science,true -sciencefeed,newsmast.social,Space,space,false -environmentfeed,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false -environmentfeed,newsmast.social,Climate change,climate_change,false -environmentfeed,newsmast.social,Energy & Pollution,energy_pollution,false -environmentfeed,newsmast.social,Environment,environment,true -environmentfeed,newsmast.social,Poverty & Inequality,poverty_inequality,false -dpopa25,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false -dpopa25,newsmast.social,Books & Literature,books_literature,false -dpopa25,newsmast.social,Creative Arts,creative_arts,false -dpopa25,newsmast.social,Environment,environment,false -dpopa25,newsmast.social,Food & Drink,food_drink,false -dpopa25,newsmast.social,History,history,false -dpopa25,newsmast.social,Humanities,humanities,false -dpopa25,newsmast.social,Humour,humour,true -dpopa25,newsmast.social,Science,science,false -dpopa25,newsmast.social,Social Sciences,social_sciences,false -dpopa25,newsmast.social,Visual Arts,visual_arts,false -acastro,newsmast.social,AI,ai,true -acastro,newsmast.social,Architecture & Design,architecture_design,false -acastro,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false -acastro,newsmast.social,Books & Literature,books_literature,false -acastro,newsmast.social,Creative Arts,creative_arts,false -acastro,newsmast.social,Energy & Pollution,energy_pollution,false -acastro,newsmast.social,History,history,false -acastro,newsmast.social,Humanities,humanities,false -acastro,newsmast.social,Humour,humour,false -acastro,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false -acastro,newsmast.social,Music,music,false -acastro,newsmast.social,Philosophy,philosophy,false -acastro,newsmast.social,Puzzles,puzzles,false -acastro,newsmast.social,Social Sciences,social_sciences,false -acastro,newsmast.social,Space,space,false -acastro,newsmast.social,Technology,technology,false -acastro,newsmast.social,Visual Arts,visual_arts,false -cjapsmith,newsmast.social,Climate change,climate_change,false -cjapsmith,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -cjapsmith,newsmast.social,Environment,environment,false -cjapsmith,newsmast.social,Humanities,humanities,false -cjapsmith,newsmast.social,Philosophy,philosophy,true -cjapsmith,newsmast.social,Poverty & Inequality,poverty_inequality,false -impactphysio,newsmast.social,Breaking News,breaking_news,false -impactphysio,newsmast.social,Journalism & Comment,news_comment_data,false -impactphysio,newsmast.social,Social Media,social_media,true -impactphysio,newsmast.social,Ukraine Invasion,ukraine_invasion,false -impactphysio,newsmast.social,Weather,weather,false -eannac,newsmast.social,Government & Policy,government_policy,false -eannac,newsmast.social,Politics,politics,false -eannac,newsmast.social,Technology,technology,false -eannac,newsmast.social,US Politics,us_politics,false -eannac,newsmast.social,Weather,weather,false -eannac,newsmast.social,Science,science,false -eannac,newsmast.social,Philosophy,philosophy,false -eannac,newsmast.social,Law & Justice,law_justice,false -eannac,newsmast.social,Business,business,true -eannac,newsmast.social,Journalism & Comment,news_comment_data,false -eannac,newsmast.social,History,history,false -eannac,newsmast.social,Energy & Pollution,energy_pollution,false -eannac,newsmast.social,Social Media,social_media,false -eannac,newsmast.social,Social Sciences,social_sciences,false -eannac,newsmast.social,Climate change,climate_change,false -eannac,newsmast.social,Academia & Research,academia_research,false -eannac,newsmast.social,Space,space,false -eannac,newsmast.social,AI,ai,false -abchcz4p,newsmast.social,AI,ai,false -abchcz4p,newsmast.social,Breaking News,breaking_news,false -abchcz4p,newsmast.social,Football,football,false -abchcz4p,newsmast.social,Programming,programming,false -abchcz4p,newsmast.social,Science,science,false -abchcz4p,newsmast.social,Space,space,false -abchcz4p,newsmast.social,Sport,sport,false -abchcz4p,newsmast.social,Technology,technology,true -CELSET,newsmast.social,Breaking News,breaking_news,false -CELSET,newsmast.social,Law & Justice,law_justice,false -CELSET,newsmast.social,Politics,politics,false -CELSET,newsmast.social,US Politics,us_politics,false -CELSET,newsmast.social,Ukraine Invasion,ukraine_invasion,false -CELSET,newsmast.social,Social Media,social_media,false -CELSET,newsmast.social,Weather,weather,false -CELSET,newsmast.social,Healthcare,healthcare,false -CELSET,newsmast.social,Workers Rights,workers_rights,false -CELSET,newsmast.social,Social Sciences,social_sciences,false -CELSET,newsmast.social,History,history,false -CELSET,newsmast.social,Movies,movies,false -CELSET,newsmast.social,Music,music,false -CELSET,newsmast.social,Performing Arts,performing_arts,false -CELSET,newsmast.social,TV & Radio,tv_radio,false -CELSET,newsmast.social,Pets,pets,false -CELSET,newsmast.social,Creative Arts,creative_arts,false -CELSET,newsmast.social,Puzzles,puzzles,false -CELSET,newsmast.social,Nature & Wildlife,nature_wildlife,false -CELSET,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false -CELSET,newsmast.social,Humour,humour,false -CELSET,newsmast.social,Journalism & Comment,news_comment_data,false -CELSET,newsmast.social,Books & Literature,books_literature,false -CELSET,newsmast.social,Black Voices,black_voices,false -CELSET,newsmast.social,Immigrants Rights,immigrants_rights,false -CELSET,newsmast.social,Indigenous Peoples,indigenous_peoples,false -CELSET,newsmast.social,Women’s Voices,women_voices,false -CELSET,newsmast.social,Activism & Civil Rights,activism_civil_rights,false -CELSET,newsmast.social,Government & Policy,government_policy,true -marianaa,newsmast.social,Business,business,false -marianaa,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -marianaa,newsmast.social,Markets & Finance,markets_finance,false -marianaa,newsmast.social,Women’s Voices,women_voices,false -marianaa,newsmast.social,LGBTQ+,lgbtq,true -j022,newsmast.social,Breaking News,breaking_news,false -j022,newsmast.social,Markets & Finance,markets_finance,false -j022,newsmast.social,Journalism & Comment,news_comment_data,false -j022,newsmast.social,Weather,weather,false -j022,newsmast.social,Workers Rights,workers_rights,true -jelly427,newsmast.social,Breaking News,breaking_news,false -jelly427,newsmast.social,Engineering,engineering,false -jelly427,newsmast.social,Football,football,false -jelly427,newsmast.social,Journalism & Comment,news_comment_data,false -jelly427,newsmast.social,Programming,programming,false -jelly427,newsmast.social,Social Media,social_media,false -jelly427,newsmast.social,Sport,sport,false -jelly427,newsmast.social,Technology,technology,false -jelly427,newsmast.social,Ukraine Invasion,ukraine_invasion,false -jelly427,newsmast.social,US Sport,us_sport,false -jelly427,newsmast.social,Weather,weather,false -jelly427,newsmast.social,AI,ai,true -shortstay,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,true -shortstay,newsmast.social,Books & Literature,books_literature,false -shortstay,newsmast.social,Breaking News,breaking_news,false -shortstay,newsmast.social,Climate change,climate_change,false -shortstay,newsmast.social,Philosophy,philosophy,false -stevetough,newsmast.social,AI,ai,false -stevetough,newsmast.social,Biology,biology,false -stevetough,newsmast.social,Breaking News,breaking_news,false -stevetough,newsmast.social,Chemistry,chemistry,false -stevetough,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -stevetough,newsmast.social,Engineering,engineering,false -stevetough,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false -stevetough,newsmast.social,Mathematics,mathematics,false -stevetough,newsmast.social,Journalism & Comment,news_comment_data,false -stevetough,newsmast.social,Physics,physics,false -stevetough,newsmast.social,Poverty & Inequality,poverty_inequality,false -stevetough,newsmast.social,Programming,programming,false -stevetough,newsmast.social,Science,science,false -stevetough,newsmast.social,Social Media,social_media,false -stevetough,newsmast.social,Space,space,false -stevetough,newsmast.social,Sport,sport,false -stevetough,newsmast.social,Ukraine Invasion,ukraine_invasion,false -stevetough,newsmast.social,US Sport,us_sport,false -stevetough,newsmast.social,Weather,weather,false -stevetough,newsmast.social,Government & Policy,government_policy,false -stevetough,newsmast.social,Academia & Research,academia_research,false -stevetough,newsmast.social,Healthcare,healthcare,false -stevetough,newsmast.social,Law & Justice,law_justice,false -stevetough,newsmast.social,Politics,politics,false -stevetough,newsmast.social,US Politics,us_politics,false -stevetough,newsmast.social,Environment,environment,false -stevetough,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false -stevetough,newsmast.social,Climate change,climate_change,false -stevetough,newsmast.social,Energy & Pollution,energy_pollution,false -stevetough,newsmast.social,Activism & Civil Rights,activism_civil_rights,false -stevetough,newsmast.social,Black Voices,black_voices,false -stevetough,newsmast.social,Disabled Voices,disabled_voices,false -stevetough,newsmast.social,Immigrants Rights,immigrants_rights,false -stevetough,newsmast.social,Indigenous Peoples,indigenous_peoples,false -stevetough,newsmast.social,LGBTQ+,lgbtq,false -stevetough,newsmast.social,Women’s Voices,women_voices,false -stevetough,newsmast.social,Business,business,false -stevetough,newsmast.social,Markets & Finance,markets_finance,false -stevetough,newsmast.social,Workers Rights,workers_rights,false -stevetough,newsmast.social,Technology,technology,false -stevetough,newsmast.social,Humanities,humanities,false -stevetough,newsmast.social,Social Sciences,social_sciences,false -stevetough,newsmast.social,History,history,true -stevetough,newsmast.social,Philosophy,philosophy,false -stevetough,newsmast.social,Architecture & Design,architecture_design,false -stevetough,newsmast.social,Books & Literature,books_literature,false -stevetough,newsmast.social,Gaming,gaming,false -stevetough,newsmast.social,Movies,movies,false -stevetough,newsmast.social,Music,music,false -stevetough,newsmast.social,Performing Arts,performing_arts,false -stevetough,newsmast.social,Photography,photography,false -stevetough,newsmast.social,TV & Radio,tv_radio,false -stevetough,newsmast.social,Visual Arts,visual_arts,false -stevetough,newsmast.social,Football,football,false -stevetough,newsmast.social,Creative Arts,creative_arts,false -stevetough,newsmast.social,Food & Drink,food_drink,false -stevetough,newsmast.social,Humour,humour,false -stevetough,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false -stevetough,newsmast.social,Nature & Wildlife,nature_wildlife,false -stevetough,newsmast.social,Pets,pets,false -stevetough,newsmast.social,Puzzles,puzzles,false -stevetough,newsmast.social,Travel,travel,false -michaelleib,newsmast.social,AI,ai,false -michaelleib,newsmast.social,Business,business,false -michaelleib,newsmast.social,Engineering,engineering,false -michaelleib,newsmast.social,Government & Policy,government_policy,false -michaelleib,newsmast.social,Markets & Finance,markets_finance,false -michaelleib,newsmast.social,Politics,politics,false -michaelleib,newsmast.social,Programming,programming,false -michaelleib,newsmast.social,Science,science,false -michaelleib,newsmast.social,Technology,technology,false -michaelleib,newsmast.social,Ukraine Invasion,ukraine_invasion,true -michaelleib,newsmast.social,US Politics,us_politics,false -Manjunatha,newsmast.social,AI,ai,false -Manjunatha,newsmast.social,Biology,biology,false -Manjunatha,newsmast.social,Humour,humour,false -Manjunatha,newsmast.social,Science,science,true -magnor,newsmast.social,Academia & Research,academia_research,false -magnor,newsmast.social,Activism & Civil Rights,activism_civil_rights,false -magnor,newsmast.social,AI,ai,false -magnor,newsmast.social,Breaking News,breaking_news,false -magnor,newsmast.social,Climate change,climate_change,false -magnor,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -magnor,newsmast.social,Energy & Pollution,energy_pollution,false -magnor,newsmast.social,Engineering,engineering,false -magnor,newsmast.social,Environment,environment,false -magnor,newsmast.social,Government & Policy,government_policy,false -magnor,newsmast.social,History,history,false -magnor,newsmast.social,LGBTQ+,lgbtq,false -magnor,newsmast.social,Mathematics,mathematics,false -magnor,newsmast.social,Journalism & Comment,news_comment_data,false -magnor,newsmast.social,Physics,physics,false -magnor,newsmast.social,Politics,politics,false -magnor,newsmast.social,Poverty & Inequality,poverty_inequality,false -magnor,newsmast.social,Programming,programming,false -magnor,newsmast.social,Social Media,social_media,false -magnor,newsmast.social,Space,space,false -magnor,newsmast.social,Technology,technology,false -magnor,newsmast.social,US Politics,us_politics,false -magnor,newsmast.social,Women’s Voices,women_voices,false -magnor,newsmast.social,Workers Rights,workers_rights,false -magnor,newsmast.social,Science,science,true -ppt556_365,newsmast.social,Activism & Civil Rights,activism_civil_rights,false -ppt556_365,newsmast.social,Black Voices,black_voices,false -ppt556_365,newsmast.social,Breaking News,breaking_news,false -ppt556_365,newsmast.social,Disabled Voices,disabled_voices,false -ppt556_365,newsmast.social,Immigrants Rights,immigrants_rights,false -ppt556_365,newsmast.social,Indigenous Peoples,indigenous_peoples,false -ppt556_365,newsmast.social,LGBTQ+,lgbtq,false -ppt556_365,newsmast.social,Journalism & Comment,news_comment_data,false -ppt556_365,newsmast.social,Social Media,social_media,true -ppt556_365,newsmast.social,Ukraine Invasion,ukraine_invasion,false -ppt556_365,newsmast.social,Weather,weather,false -ppt556_365,newsmast.social,Women’s Voices,women_voices,false -satnaing,newsmast.social,Breaking News,breaking_news,true -satnaing,newsmast.social,Journalism & Comment,news_comment_data,false -satnaing,newsmast.social,Social Media,social_media,false -satnaing,newsmast.social,Ukraine Invasion,ukraine_invasion,false -satnaing,newsmast.social,Weather,weather,false -wwrr,newsmast.social,AI,ai,false -wwrr,newsmast.social,Breaking News,breaking_news,true -wwrr,newsmast.social,Engineering,engineering,false -wwrr,newsmast.social,Government & Policy,government_policy,false -wwrr,newsmast.social,Healthcare,healthcare,false -wwrr,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false -wwrr,newsmast.social,Law & Justice,law_justice,false -wwrr,newsmast.social,Politics,politics,false -wwrr,newsmast.social,Poverty & Inequality,poverty_inequality,false -wwrr,newsmast.social,Programming,programming,false -wwrr,newsmast.social,Technology,technology,false -wwrr,newsmast.social,US Politics,us_politics,false -wolfw,newsmast.social,Academia & Research,academia_research,false -wolfw,newsmast.social,Activism & Civil Rights,activism_civil_rights,false -wolfw,newsmast.social,Books & Literature,books_literature,false -wolfw,newsmast.social,Breaking News,breaking_news,false -wolfw,newsmast.social,Democracy & Human Rights,democracy_human_rights,true -wolfw,newsmast.social,Movies,movies,false -wolfw,newsmast.social,Music,music,false -wolfw,newsmast.social,Journalism & Comment,news_comment_data,false -wolfw,newsmast.social,Performing Arts,performing_arts,false -wolfw,newsmast.social,Philosophy,philosophy,false -wolfw,newsmast.social,Politics,politics,false -wolfw,newsmast.social,Social Sciences,social_sciences,false -wolfw,newsmast.social,US Politics,us_politics,false -wolfw,newsmast.social,Visual Arts,visual_arts,false -wolfw,newsmast.social,Women’s Voices,women_voices,false -wolfw,newsmast.social,Workers Rights,workers_rights,false -callum,newsmast.social,Books & Literature,books_literature,false -callum,newsmast.social,Gaming,gaming,false -callum,newsmast.social,Movies,movies,true -callum,newsmast.social,Performing Arts,performing_arts,false -callum,newsmast.social,TV & Radio,tv_radio,false -callum,newsmast.social,Visual Arts,visual_arts,false -robbhoy,newsmast.social,AI,ai,false -robbhoy,newsmast.social,Architecture & Design,architecture_design,false -robbhoy,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false -robbhoy,newsmast.social,Books & Literature,books_literature,false -robbhoy,newsmast.social,Climate change,climate_change,false -robbhoy,newsmast.social,Energy & Pollution,energy_pollution,false -robbhoy,newsmast.social,Engineering,engineering,false -robbhoy,newsmast.social,Environment,environment,false -robbhoy,newsmast.social,Gaming,gaming,false -robbhoy,newsmast.social,Movies,movies,true -robbhoy,newsmast.social,Music,music,false -robbhoy,newsmast.social,Performing Arts,performing_arts,false -robbhoy,newsmast.social,Photography,photography,false -robbhoy,newsmast.social,Programming,programming,false -robbhoy,newsmast.social,Social Media,social_media,false -robbhoy,newsmast.social,Technology,technology,false -robbhoy,newsmast.social,TV & Radio,tv_radio,false -robbhoy,newsmast.social,Ukraine Invasion,ukraine_invasion,false -robbhoy,newsmast.social,Visual Arts,visual_arts,false -robbhoy,newsmast.social,Weather,weather,false -HotCoffee,newsmast.social,Physics,physics,false -HotCoffee,newsmast.social,Food & Drink,food_drink,false -HotCoffee,newsmast.social,Humour,humour,false -HotCoffee,newsmast.social,Pets,pets,false -HotCoffee,newsmast.social,Nature & Wildlife,nature_wildlife,false -HotCoffee,newsmast.social,Biology,biology,false -HotCoffee,newsmast.social,Breaking News,breaking_news,true -HotCoffee,newsmast.social,Chemistry,chemistry,false -HotCoffee,newsmast.social,Science,science,false -HotCoffee,newsmast.social,Social Media,social_media,false -HotCoffee,newsmast.social,Space,space,false -HotCoffee,newsmast.social,Technology,technology,false -HotCoffee,newsmast.social,Ukraine Invasion,ukraine_invasion,false -HotCoffee,newsmast.social,Movies,movies,false -HotCoffee,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false -chriskenshin,newsmast.social,Biology,biology,true -chriskenshin,newsmast.social,Business,business,false -chriskenshin,newsmast.social,Government & Policy,government_policy,false -chriskenshin,newsmast.social,Law & Justice,law_justice,false -chriskenshin,newsmast.social,Science,science,false -chriskenshin,newsmast.social,Technology,technology,false -chriskenshin,newsmast.social,Workers Rights,workers_rights,false -silly_hamster,newsmast.social,AI,ai,false -silly_hamster,newsmast.social,Biology,biology,true -silly_hamster,newsmast.social,Breaking News,breaking_news,false -silly_hamster,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -silly_hamster,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false -silly_hamster,newsmast.social,Journalism & Comment,news_comment_data,false -silly_hamster,newsmast.social,Physics,physics,false -silly_hamster,newsmast.social,Poverty & Inequality,poverty_inequality,false -silly_hamster,newsmast.social,Science,science,false -silly_hamster,newsmast.social,Social Media,social_media,false -silly_hamster,newsmast.social,Space,space,false -silly_hamster,newsmast.social,Technology,technology,false -petroofrats,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false -petroofrats,newsmast.social,Biology,biology,true -petroofrats,newsmast.social,Environment,environment,false -petroofrats,newsmast.social,Programming,programming,false -petroofrats,newsmast.social,Science,science,false -petroofrats,newsmast.social,Technology,technology,false -sharonk,newsmast.social,Markets & Finance,markets_finance,true -sharonk,newsmast.social,Activism & Civil Rights,activism_civil_rights,false -sharonk,newsmast.social,Black Voices,black_voices,false -sharonk,newsmast.social,Disabled Voices,disabled_voices,false -sharonk,newsmast.social,Immigrants Rights,immigrants_rights,false -sharonk,newsmast.social,Indigenous Peoples,indigenous_peoples,false -sharonk,newsmast.social,LGBTQ+,lgbtq,false -sharonk,newsmast.social,Women’s Voices,women_voices,false -sharonk,newsmast.social,Business,business,false -sharonk,newsmast.social,AI,ai,false -sharonk,newsmast.social,Workers Rights,workers_rights,false -sharonk,newsmast.social,Technology,technology,false -sithu_dev3,newsmast.social,Journalism & Comment,news_comment_data,false -sithu_dev3,newsmast.social,Creative Arts,creative_arts,false -sithu_dev3,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false -sithu_dev3,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -sithu_dev3,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,true -sithu_dev3,newsmast.social,Poverty & Inequality,poverty_inequality,false -sithu_dev3,newsmast.social,Politics,politics,false -sithu_dev3,newsmast.social,Ukraine Invasion,ukraine_invasion,false -sithu_dev3,newsmast.social,Weather,weather,false -sithu_dev3,newsmast.social,Environment,environment,false -sithu_dev3,newsmast.social,Immigrants Rights,immigrants_rights,false -WeCanFlipTS,newsmast.social,Activism & Civil Rights,activism_civil_rights,false -WeCanFlipTS,newsmast.social,AI,ai,false -WeCanFlipTS,newsmast.social,Business,business,false -WeCanFlipTS,newsmast.social,Government & Policy,government_policy,false -WeCanFlipTS,newsmast.social,Humanities,humanities,false -WeCanFlipTS,newsmast.social,Law & Justice,law_justice,false -WeCanFlipTS,newsmast.social,Markets & Finance,markets_finance,false -WeCanFlipTS,newsmast.social,Politics,politics,false -WeCanFlipTS,newsmast.social,Social Sciences,social_sciences,false -WeCanFlipTS,newsmast.social,Technology,technology,false -WeCanFlipTS,newsmast.social,Women’s Voices,women_voices,true -WeCanFlipTS,newsmast.social,Workers Rights,workers_rights,false -0j22,newsmast.social,Architecture & Design,architecture_design,false -0j22,newsmast.social,Books & Literature,books_literature,false -0j22,newsmast.social,Business,business,false -0j22,newsmast.social,Markets & Finance,markets_finance,true -0j22,newsmast.social,Workers Rights,workers_rights,false -DforDog,newsmast.social,Creative Arts,creative_arts,false -DforDog,newsmast.social,Humour,humour,false -DforDog,newsmast.social,Pets,pets,true -DforDog,newsmast.social,Philosophy,philosophy,false -DforDog,newsmast.social,Puzzles,puzzles,false -DforDog,newsmast.social,TV & Radio,tv_radio,false -kxgmdkvkg,newsmast.social,AI,ai,false -kxgmdkvkg,newsmast.social,Biology,biology,false -kxgmdkvkg,newsmast.social,Breaking News,breaking_news,true -kxgmdkvkg,newsmast.social,Chemistry,chemistry,false -kxgmdkvkg,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -kxgmdkvkg,newsmast.social,Engineering,engineering,false -kxgmdkvkg,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false -kxgmdkvkg,newsmast.social,Mathematics,mathematics,false -kxgmdkvkg,newsmast.social,Journalism & Comment,news_comment_data,false -kxgmdkvkg,newsmast.social,Physics,physics,false -kxgmdkvkg,newsmast.social,Poverty & Inequality,poverty_inequality,false -kxgmdkvkg,newsmast.social,Programming,programming,false -kxgmdkvkg,newsmast.social,Science,science,false -kxgmdkvkg,newsmast.social,Social Media,social_media,false -kxgmdkvkg,newsmast.social,Space,space,false -kxgmdkvkg,newsmast.social,Technology,technology,false -kxgmdkvkg,newsmast.social,Ukraine Invasion,ukraine_invasion,false -kxgmdkvkg,newsmast.social,Weather,weather,false -soundofamoped,newsmast.social,Academia & Research,academia_research,false -soundofamoped,newsmast.social,Architecture & Design,architecture_design,false -soundofamoped,newsmast.social,Biology,biology,false -soundofamoped,newsmast.social,Books & Literature,books_literature,false -soundofamoped,newsmast.social,Chemistry,chemistry,false -soundofamoped,newsmast.social,Creative Arts,creative_arts,false -soundofamoped,newsmast.social,Food & Drink,food_drink,false -soundofamoped,newsmast.social,Government & Policy,government_policy,false -soundofamoped,newsmast.social,Mathematics,mathematics,false -soundofamoped,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false -soundofamoped,newsmast.social,Music,music,false -soundofamoped,newsmast.social,Nature & Wildlife,nature_wildlife,false -soundofamoped,newsmast.social,Photography,photography,false -soundofamoped,newsmast.social,Physics,physics,false -soundofamoped,newsmast.social,Science,science,true -soundofamoped,newsmast.social,Space,space,false -soundofamoped,newsmast.social,Visual Arts,visual_arts,false -soundofamoped,newsmast.social,Humour,humour,false -soundofamoped,newsmast.social,Puzzles,puzzles,false -soundofamoped,newsmast.social,Pets,pets,false -soundofamoped,newsmast.social,Travel,travel,false -vespula,newsmast.social,Biology,biology,false -vespula,newsmast.social,Engineering,engineering,false -vespula,newsmast.social,Science,science,false -vespula,newsmast.social,Space,space,false -vespula,newsmast.social,Technology,technology,false -vespula,newsmast.social,AI,ai,true -Linguasia,newsmast.social,Architecture & Design,architecture_design,false -Linguasia,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false -Linguasia,newsmast.social,Books & Literature,books_literature,false -Linguasia,newsmast.social,Business,business,false -Linguasia,newsmast.social,Climate change,climate_change,false -Linguasia,newsmast.social,Creative Arts,creative_arts,false -Linguasia,newsmast.social,Energy & Pollution,energy_pollution,false -Linguasia,newsmast.social,Environment,environment,false -Linguasia,newsmast.social,Food & Drink,food_drink,false -Linguasia,newsmast.social,Gaming,gaming,false -Linguasia,newsmast.social,Humour,humour,false -Linguasia,newsmast.social,Markets & Finance,markets_finance,false -Linguasia,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false -Linguasia,newsmast.social,Movies,movies,false -Linguasia,newsmast.social,Music,music,false -Linguasia,newsmast.social,Nature & Wildlife,nature_wildlife,false -Linguasia,newsmast.social,Performing Arts,performing_arts,false -Linguasia,newsmast.social,Pets,pets,false -Linguasia,newsmast.social,Photography,photography,false -Linguasia,newsmast.social,Puzzles,puzzles,false -Linguasia,newsmast.social,Travel,travel,true -Linguasia,newsmast.social,TV & Radio,tv_radio,false -Linguasia,newsmast.social,Visual Arts,visual_arts,false -Linguasia,newsmast.social,Workers Rights,workers_rights,false -torogbeck,newsmast.social,Activism & Civil Rights,activism_civil_rights,false -torogbeck,newsmast.social,Creative Arts,creative_arts,false -torogbeck,newsmast.social,Government & Policy,government_policy,false -torogbeck,newsmast.social,History,history,false -torogbeck,newsmast.social,Humanities,humanities,false -torogbeck,newsmast.social,Humour,humour,false -torogbeck,newsmast.social,Law & Justice,law_justice,false -torogbeck,newsmast.social,LGBTQ+,lgbtq,false -torogbeck,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false -torogbeck,newsmast.social,Movies,movies,false -torogbeck,newsmast.social,Music,music,false -torogbeck,newsmast.social,Nature & Wildlife,nature_wildlife,false -torogbeck,newsmast.social,Journalism & Comment,news_comment_data,false -torogbeck,newsmast.social,Politics,politics,false -torogbeck,newsmast.social,Programming,programming,false -torogbeck,newsmast.social,Social Media,social_media,false -torogbeck,newsmast.social,Social Sciences,social_sciences,false -torogbeck,newsmast.social,Technology,technology,false -torogbeck,newsmast.social,TV & Radio,tv_radio,false -torogbeck,newsmast.social,US Politics,us_politics,false -torogbeck,newsmast.social,Weather,weather,false -torogbeck,newsmast.social,Breaking News,breaking_news,true -0j33,newsmast.social,AI,ai,true -0j33,newsmast.social,Business,business,false -0j33,newsmast.social,Engineering,engineering,false -0j33,newsmast.social,Markets & Finance,markets_finance,false -0j33,newsmast.social,Programming,programming,false -ModernArtifice,newsmast.social,AI,ai,false -ModernArtifice,newsmast.social,Books & Literature,books_literature,false -ModernArtifice,newsmast.social,Gaming,gaming,true -ModernArtifice,newsmast.social,Movies,movies,false -ModernArtifice,newsmast.social,Science,science,false -ModernArtifice,newsmast.social,Technology,technology,false -sahanakulur,newsmast.social,Academia & Research,academia_research,false -sahanakulur,newsmast.social,Architecture & Design,architecture_design,true -sahanakulur,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false -sahanakulur,newsmast.social,Books & Literature,books_literature,false -sahanakulur,newsmast.social,Creative Arts,creative_arts,false -sahanakulur,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -sahanakulur,newsmast.social,Environment,environment,false -sahanakulur,newsmast.social,Food & Drink,food_drink,false -sahanakulur,newsmast.social,Gaming,gaming,false -sahanakulur,newsmast.social,Movies,movies,false -sahanakulur,newsmast.social,Nature & Wildlife,nature_wildlife,false -sahanakulur,newsmast.social,Performing Arts,performing_arts,false -sahanakulur,newsmast.social,Pets,pets,false -sahanakulur,newsmast.social,Photography,photography,false -sahanakulur,newsmast.social,TV & Radio,tv_radio,false -sahanakulur,newsmast.social,Visual Arts,visual_arts,false -MinMaungHein,newsmast.social,Puzzles,puzzles,false -MinMaungHein,newsmast.social,Nature & Wildlife,nature_wildlife,false -MinMaungHein,newsmast.social,Humour,humour,false -MinMaungHein,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false -MinMaungHein,newsmast.social,Creative Arts,creative_arts,false -MinMaungHein,newsmast.social,Food & Drink,food_drink,false -MinMaungHein,newsmast.social,Travel,travel,false -MinMaungHein,newsmast.social,Pets,pets,false -MinMaungHein,newsmast.social,Science,science,true -MinMaungHein,newsmast.social,Physics,physics,false -MinMaungHein,newsmast.social,Humanities,humanities,false -MinMaungHein,newsmast.social,LGBTQ+,lgbtq,false -MinMaungHein,newsmast.social,Academia & Research,academia_research,false -MinMaungHein,newsmast.social,Climate change,climate_change,false -MinMaungHein,newsmast.social,Breaking News,breaking_news,false -MinMaungHein,newsmast.social,Environment,environment,false -MinMaungHein,newsmast.social,Photography,photography,false -SabahH,newsmast.social,Breaking News,breaking_news,false -SabahH,newsmast.social,Business,business,false -SabahH,newsmast.social,Creative Arts,creative_arts,false -SabahH,newsmast.social,Markets & Finance,markets_finance,false -SabahH,newsmast.social,Movies,movies,false -SabahH,newsmast.social,Music,music,false -SabahH,newsmast.social,Journalism & Comment,news_comment_data,true -SabahH,newsmast.social,Performing Arts,performing_arts,false -SabahH,newsmast.social,Photography,photography,false -SabahH,newsmast.social,Social Media,social_media,false -SabahH,newsmast.social,Travel,travel,false -SabahH,newsmast.social,TV & Radio,tv_radio,false -SabahH,newsmast.social,Visual Arts,visual_arts,false -Nyein,newsmast.social,Workers Rights,workers_rights,false -Nyein,newsmast.social,Journalism & Comment,news_comment_data,false -Nyein,newsmast.social,Performing Arts,performing_arts,false -Nyein,newsmast.social,TV & Radio,tv_radio,false -Nyein,newsmast.social,Music,music,false -Nyein,newsmast.social,Movies,movies,false -Nyein,newsmast.social,Visual Arts,visual_arts,false -Nyein,newsmast.social,History,history,false -Nyein,newsmast.social,Humanities,humanities,false -Nyein,newsmast.social,Social Sciences,social_sciences,false -Nyein,newsmast.social,Philosophy,philosophy,false -Nyein,newsmast.social,Programming,programming,false -Nyein,newsmast.social,Chemistry,chemistry,true -Nyein,newsmast.social,Engineering,engineering,false -Nyein,newsmast.social,Technology,technology,false -Nyein,newsmast.social,Social Media,social_media,false -Nyein,newsmast.social,Gaming,gaming,false -Nyein,newsmast.social,US Sport,us_sport,false -Nyein,newsmast.social,Food & Drink,food_drink,false -Nyein,newsmast.social,Sport,sport,false -Nyein,newsmast.social,Creative Arts,creative_arts,false -Nyein,newsmast.social,Ukraine Invasion,ukraine_invasion,false -Nyein,newsmast.social,Photography,photography,false -Nyein,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false -Nyein,newsmast.social,Poverty & Inequality,poverty_inequality,false -Nyein,newsmast.social,Football,football,false -jasonbcfcufc,newsmast.social,Breaking News,breaking_news,true -jasonbcfcufc,newsmast.social,Engineering,engineering,false -jasonbcfcufc,newsmast.social,Government & Policy,government_policy,false -jasonbcfcufc,newsmast.social,Social Media,social_media,false -jasonbcfcufc,newsmast.social,Technology,technology,false -Rich134,newsmast.social,Gaming,gaming,false -Rich134,newsmast.social,Movies,movies,true -Rich134,newsmast.social,Photography,photography,false -Rich134,newsmast.social,TV & Radio,tv_radio,false -Rich134,newsmast.social,Visual Arts,visual_arts,false -joshmike35,newsmast.social,Academia & Research,academia_research,true -joshmike35,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -joshmike35,newsmast.social,Government & Policy,government_policy,false -joshmike35,newsmast.social,Healthcare,healthcare,false -joshmike35,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false -joshmike35,newsmast.social,Law & Justice,law_justice,false -joshmike35,newsmast.social,Politics,politics,false -joshmike35,newsmast.social,Poverty & Inequality,poverty_inequality,false -joshmike35,newsmast.social,US Politics,us_politics,false -lanartri,newsmast.social,AI,ai,false -lanartri,newsmast.social,Architecture & Design,architecture_design,false -lanartri,newsmast.social,Books & Literature,books_literature,false -lanartri,newsmast.social,Breaking News,breaking_news,false -lanartri,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -lanartri,newsmast.social,Movies,movies,false -lanartri,newsmast.social,Music,music,false -lanartri,newsmast.social,Photography,photography,true -lanartri,newsmast.social,Programming,programming,false -lanartri,newsmast.social,Science,science,false -lanartri,newsmast.social,Space,space,false -lanartri,newsmast.social,Technology,technology,false -lanartri,newsmast.social,Visual Arts,visual_arts,false -beautycaters,newsmast.social,Food & Drink,food_drink,false -beautycaters,newsmast.social,Humour,humour,false -beautycaters,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false -beautycaters,newsmast.social,Nature & Wildlife,nature_wildlife,false -beautycaters,newsmast.social,Pets,pets,false -beautycaters,newsmast.social,Puzzles,puzzles,false -beautycaters,newsmast.social,Travel,travel,true -Krusti,newsmast.social,AI,ai,false -Krusti,newsmast.social,Creative Arts,creative_arts,false -Krusti,newsmast.social,Engineering,engineering,false -Krusti,newsmast.social,Food & Drink,food_drink,false -Krusti,newsmast.social,Humour,humour,false -Krusti,newsmast.social,Nature & Wildlife,nature_wildlife,false -Krusti,newsmast.social,Pets,pets,false -Krusti,newsmast.social,Programming,programming,false -Krusti,newsmast.social,Puzzles,puzzles,false -Krusti,newsmast.social,Technology,technology,false -Krusti,newsmast.social,Travel,travel,false -Krusti,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,true -roler34,newsmast.social,Activism & Civil Rights,activism_civil_rights,true -roler34,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false -roler34,newsmast.social,Black Voices,black_voices,false -roler34,newsmast.social,Climate change,climate_change,false -roler34,newsmast.social,Disabled Voices,disabled_voices,false -roler34,newsmast.social,Energy & Pollution,energy_pollution,false -roler34,newsmast.social,Environment,environment,false -roler34,newsmast.social,Immigrants Rights,immigrants_rights,false -roler34,newsmast.social,Indigenous Peoples,indigenous_peoples,false -roler34,newsmast.social,LGBTQ+,lgbtq,false -roler34,newsmast.social,Women’s Voices,women_voices,false -EdBowers101,newsmast.social,Markets & Finance,markets_finance,false -EdBowers101,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false -EdBowers101,newsmast.social,Business,business,false -EdBowers101,newsmast.social,Football,football,false -EdBowers101,newsmast.social,Sport,sport,true -EdBowers101,newsmast.social,Books & Literature,books_literature,false -CoopCoding,newsmast.social,AI,ai,false -CoopCoding,newsmast.social,Engineering,engineering,false -CoopCoding,newsmast.social,Programming,programming,true -CoopCoding,newsmast.social,Space,space,false -CoopCoding,newsmast.social,Technology,technology,false -Sylkeweb,newsmast.social,Environment,environment,false -Sylkeweb,newsmast.social,Food & Drink,food_drink,true -Sylkeweb,newsmast.social,Nature & Wildlife,nature_wildlife,false -Sylkeweb,newsmast.social,Science,science,false -Sylkeweb,newsmast.social,Social Sciences,social_sciences,false -Sylkeweb,newsmast.social,Social Media,social_media,false -Sylkeweb,newsmast.social,Energy & Pollution,energy_pollution,false -Sylkeweb,newsmast.social,Technology,technology,false -Sylkeweb,newsmast.social,Space,space,false -Sylkeweb,newsmast.social,History,history,false -Sylkeweb,newsmast.social,Breaking News,breaking_news,false -Sylkeweb,newsmast.social,Ukraine Invasion,ukraine_invasion,false -Sylkeweb,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -Sylkeweb,newsmast.social,Government & Policy,government_policy,false -Sylkeweb,newsmast.social,Climate change,climate_change,false -Sylkeweb,newsmast.social,Humanities,humanities,false -Gadget_Ry,newsmast.social,AI,ai,false -Gadget_Ry,newsmast.social,Breaking News,breaking_news,false -Gadget_Ry,newsmast.social,Politics,politics,false -Gadget_Ry,newsmast.social,Technology,technology,true -marcie,newsmast.social,Activism & Civil Rights,activism_civil_rights,false -marcie,newsmast.social,Breaking News,breaking_news,false -marcie,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -marcie,newsmast.social,Disabled Voices,disabled_voices,true -marcie,newsmast.social,Women’s Voices,women_voices,false -JeffreyStreeter,newsmast.social,Books & Literature,books_literature,true -JeffreyStreeter,newsmast.social,History,history,false -JeffreyStreeter,newsmast.social,Movies,movies,false -JeffreyStreeter,newsmast.social,Physics,physics,false -JeffreyStreeter,newsmast.social,Science,science,false -JeffreyStreeter,newsmast.social,Social Sciences,social_sciences,false -JeffreyStreeter,newsmast.social,Space,space,false -JeffreyStreeter,newsmast.social,Visual Arts,visual_arts,false -HarleyWarren,newsmast.social,Books & Literature,books_literature,false -HarleyWarren,newsmast.social,Breaking News,breaking_news,false -HarleyWarren,newsmast.social,Gaming,gaming,false -HarleyWarren,newsmast.social,Movies,movies,false -HarleyWarren,newsmast.social,Music,music,false -HarleyWarren,newsmast.social,Technology,technology,false -HarleyWarren,newsmast.social,Visual Arts,visual_arts,true -HarleyWarren,newsmast.social,Weather,weather,false -jimchapman,newsmast.social,Academia & Research,academia_research,false -jimchapman,newsmast.social,Activism & Civil Rights,activism_civil_rights,false -jimchapman,newsmast.social,AI,ai,false -jimchapman,newsmast.social,Architecture & Design,architecture_design,false -jimchapman,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false -jimchapman,newsmast.social,Biology,biology,false -jimchapman,newsmast.social,Black Voices,black_voices,false -jimchapman,newsmast.social,Books & Literature,books_literature,false -jimchapman,newsmast.social,Breaking News,breaking_news,false -jimchapman,newsmast.social,Business,business,false -jimchapman,newsmast.social,Chemistry,chemistry,false -jimchapman,newsmast.social,Climate change,climate_change,false -jimchapman,newsmast.social,Democracy & Human Rights,democracy_human_rights,true -jimchapman,newsmast.social,Disabled Voices,disabled_voices,false -jimchapman,newsmast.social,Energy & Pollution,energy_pollution,false -jimchapman,newsmast.social,Engineering,engineering,false -jimchapman,newsmast.social,Environment,environment,false -jimchapman,newsmast.social,Football,football,false -jimchapman,newsmast.social,Gaming,gaming,false -jimchapman,newsmast.social,Government & Policy,government_policy,false -jimchapman,newsmast.social,Healthcare,healthcare,false -jimchapman,newsmast.social,History,history,false -jimchapman,newsmast.social,Humanities,humanities,false -jimchapman,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false -jimchapman,newsmast.social,Immigrants Rights,immigrants_rights,false -jimchapman,newsmast.social,Indigenous Peoples,indigenous_peoples,false -jimchapman,newsmast.social,Law & Justice,law_justice,false -jimchapman,newsmast.social,LGBTQ+,lgbtq,false -jimchapman,newsmast.social,Markets & Finance,markets_finance,false -jimchapman,newsmast.social,Mathematics,mathematics,false -jimchapman,newsmast.social,Movies,movies,false -jimchapman,newsmast.social,Music,music,false -jimchapman,newsmast.social,Journalism & Comment,news_comment_data,false -jimchapman,newsmast.social,Performing Arts,performing_arts,false -jimchapman,newsmast.social,Philosophy,philosophy,false -jimchapman,newsmast.social,Photography,photography,false -jimchapman,newsmast.social,Physics,physics,false -jimchapman,newsmast.social,Politics,politics,false -jimchapman,newsmast.social,Poverty & Inequality,poverty_inequality,false -jimchapman,newsmast.social,Programming,programming,false -jimchapman,newsmast.social,Science,science,false -jimchapman,newsmast.social,Social Media,social_media,false -jimchapman,newsmast.social,Social Sciences,social_sciences,false -jimchapman,newsmast.social,Space,space,false -jimchapman,newsmast.social,Sport,sport,false -jimchapman,newsmast.social,Technology,technology,false -jimchapman,newsmast.social,TV & Radio,tv_radio,false -jimchapman,newsmast.social,Ukraine Invasion,ukraine_invasion,false -jimchapman,newsmast.social,US Politics,us_politics,false -jimchapman,newsmast.social,Visual Arts,visual_arts,false -jimchapman,newsmast.social,Weather,weather,false -jimchapman,newsmast.social,Women’s Voices,women_voices,false -jimchapman,newsmast.social,Workers Rights,workers_rights,false -Sven,newsmast.social,AI,ai,false -Sven,newsmast.social,Biology,biology,false -Sven,newsmast.social,Breaking News,breaking_news,true -Sven,newsmast.social,Business,business,false -Sven,newsmast.social,Healthcare,healthcare,false -Sven,newsmast.social,Mathematics,mathematics,false -Sven,newsmast.social,Physics,physics,false -Sven,newsmast.social,Programming,programming,false -Sven,newsmast.social,Space,space,false -Sven,newsmast.social,Technology,technology,false -Sven,newsmast.social,US Politics,us_politics,false -axonrg,newsmast.social,Gaming,gaming,false -axonrg,newsmast.social,Movies,movies,false -axonrg,newsmast.social,Politics,politics,false -axonrg,newsmast.social,Programming,programming,false -axonrg,newsmast.social,Science,science,false -axonrg,newsmast.social,Technology,technology,false -axonrg,newsmast.social,TV & Radio,tv_radio,false -axonrg,newsmast.social,US Politics,us_politics,false -axonrg,newsmast.social,Breaking News,breaking_news,true -railrecipe,newsmast.social,Business,business,false -railrecipe,newsmast.social,Food & Drink,food_drink,true -railrecipe,newsmast.social,Journalism & Comment,news_comment_data,false -railrecipe,newsmast.social,Travel,travel,false -railrecipe,newsmast.social,Weather,weather,false -IEF_FIE,newsmast.social,Activism & Civil Rights,activism_civil_rights,false -IEF_FIE,newsmast.social,Black Voices,black_voices,false -IEF_FIE,newsmast.social,Government & Policy,government_policy,false -IEF_FIE,newsmast.social,Healthcare,healthcare,false -IEF_FIE,newsmast.social,Immigrants Rights,immigrants_rights,false -IEF_FIE,newsmast.social,Indigenous Peoples,indigenous_peoples,false -IEF_FIE,newsmast.social,Politics,politics,true -IEF_FIE,newsmast.social,US Politics,us_politics,true -IEF_FIE,newsmast.social,Women’s Voices,women_voices,false -IEF_FIE,newsmast.social,Healthcare,healthcare,false -IEF_FIE,newsmast.social,Immigrants Rights,immigrants_rights,false -IEF_FIE,newsmast.social,Indigenous Peoples,indigenous_peoples,false -IEF_FIE,newsmast.social,Politics,politics,false -IEF_FIE,newsmast.social,US Politics,us_politics,false -IEF_FIE,newsmast.social,Women’s Voices,women_voices,false -IEF_FIE,newsmast.social,Activism & Civil Rights,activism_civil_rights,false -IEF_FIE,newsmast.social,Black Voices,black_voices,false -IEF_FIE,newsmast.social,Government & Policy,government_policy,false -GastroMedia,newsmast.social,AI,ai,false -GastroMedia,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false -GastroMedia,newsmast.social,Climate change,climate_change,false -GastroMedia,newsmast.social,Environment,environment,false -GastroMedia,newsmast.social,Food & Drink,food_drink,true -GastroMedia,newsmast.social,Humanities,humanities,false -GastroMedia,newsmast.social,Performing Arts,performing_arts,false -GastroMedia,newsmast.social,Photography,photography,false -GastroMedia,newsmast.social,Social Media,social_media,false -GastroMedia,newsmast.social,Social Sciences,social_sciences,false -GastroMedia,newsmast.social,Travel,travel,false -GastroMedia,newsmast.social,Visual Arts,visual_arts,false -smartphonology,newsmast.social,Academia & Research,academia_research,false -smartphonology,newsmast.social,AI,ai,false -smartphonology,newsmast.social,Breaking News,breaking_news,true -smartphonology,newsmast.social,Engineering,engineering,false -smartphonology,newsmast.social,Government & Policy,government_policy,false -smartphonology,newsmast.social,Healthcare,healthcare,false -smartphonology,newsmast.social,Law & Justice,law_justice,false -smartphonology,newsmast.social,Journalism & Comment,news_comment_data,false -smartphonology,newsmast.social,Politics,politics,false -smartphonology,newsmast.social,Programming,programming,false -smartphonology,newsmast.social,Social Media,social_media,false -smartphonology,newsmast.social,Technology,technology,false -smartphonology,newsmast.social,Ukraine Invasion,ukraine_invasion,false -smartphonology,newsmast.social,US Politics,us_politics,false -smartphonology,newsmast.social,Weather,weather,false -tthcreation,newsmast.social,Breaking News,breaking_news,false -tthcreation,newsmast.social,Business,business,false -tthcreation,newsmast.social,Markets & Finance,markets_finance,false -tthcreation,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false -tthcreation,newsmast.social,Photography,photography,false -tthcreation,newsmast.social,Travel,travel,true -tthcreation,newsmast.social,Women’s Voices,women_voices,false -sandos,newsmast.social,AI,ai,true -sandos,newsmast.social,Biology,biology,false -sandos,newsmast.social,Books & Literature,books_literature,false -sandos,newsmast.social,Breaking News,breaking_news,false -sandos,newsmast.social,Environment,environment,false -sandos,newsmast.social,Food & Drink,food_drink,false -sandos,newsmast.social,Gaming,gaming,false -sandos,newsmast.social,Humour,humour,false -sandos,newsmast.social,Mathematics,mathematics,false -sandos,newsmast.social,Movies,movies,false -sandos,newsmast.social,Music,music,false -sandos,newsmast.social,Philosophy,philosophy,false -sandos,newsmast.social,Photography,photography,false -sandos,newsmast.social,Physics,physics,false -sandos,newsmast.social,Programming,programming,false -sandos,newsmast.social,Puzzles,puzzles,false -sandos,newsmast.social,Space,space,false -sandos,newsmast.social,Technology,technology,false -sandos,newsmast.social,Travel,travel,false -sandos,newsmast.social,TV & Radio,tv_radio,false -spatial1,newsmast.social,AI,ai,false -spatial1,newsmast.social,Business,business,true -spatial1,newsmast.social,Engineering,engineering,false -spatial1,newsmast.social,Markets & Finance,markets_finance,false -spatial1,newsmast.social,Technology,technology,false -magbeat,newsmast.social,AI,ai,false -magbeat,newsmast.social,Breaking News,breaking_news,false -magbeat,newsmast.social,Journalism & Comment,news_comment_data,false -magbeat,newsmast.social,Programming,programming,false -magbeat,newsmast.social,Social Media,social_media,false -magbeat,newsmast.social,Engineering,engineering,true -JimJQ,newsmast.social,Breaking News,breaking_news,false -JimJQ,newsmast.social,Climate change,climate_change,false -JimJQ,newsmast.social,Politics,politics,false -JimJQ,newsmast.social,Science,science,false -JimJQ,newsmast.social,Technology,technology,false -JimJQ,newsmast.social,US Politics,us_politics,true -travelpast50,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false -travelpast50,newsmast.social,Books & Literature,books_literature,false -travelpast50,newsmast.social,History,history,false -travelpast50,newsmast.social,Journalism & Comment,news_comment_data,false -travelpast50,newsmast.social,Photography,photography,false -travelpast50,newsmast.social,Travel,travel,true -travelpast50,newsmast.social,Visual Arts,visual_arts,false -0j30,newsmast.social,Business,business,false -0j30,newsmast.social,Creative Arts,creative_arts,false -0j30,newsmast.social,Humour,humour,false -0j30,newsmast.social,Markets & Finance,markets_finance,false -0j30,newsmast.social,Workers Rights,workers_rights,true -If_This_Goes_On,newsmast.social,LGBTQ+,lgbtq,false -If_This_Goes_On,newsmast.social,Movies,movies,false -If_This_Goes_On,newsmast.social,Music,music,false -If_This_Goes_On,newsmast.social,Performing Arts,performing_arts,false -If_This_Goes_On,newsmast.social,Philosophy,philosophy,false -If_This_Goes_On,newsmast.social,Photography,photography,false -If_This_Goes_On,newsmast.social,Social Sciences,social_sciences,false -If_This_Goes_On,newsmast.social,TV & Radio,tv_radio,false -If_This_Goes_On,newsmast.social,Visual Arts,visual_arts,false -If_This_Goes_On,newsmast.social,Women’s Voices,women_voices,false -If_This_Goes_On,newsmast.social,Activism & Civil Rights,activism_civil_rights,false -If_This_Goes_On,newsmast.social,Architecture & Design,architecture_design,false -If_This_Goes_On,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false -If_This_Goes_On,newsmast.social,Black Voices,black_voices,false -If_This_Goes_On,newsmast.social,Books & Literature,books_literature,true -If_This_Goes_On,newsmast.social,Climate change,climate_change,false -If_This_Goes_On,newsmast.social,Disabled Voices,disabled_voices,false -If_This_Goes_On,newsmast.social,Energy & Pollution,energy_pollution,false -If_This_Goes_On,newsmast.social,Environment,environment,false -If_This_Goes_On,newsmast.social,Gaming,gaming,false -If_This_Goes_On,newsmast.social,History,history,false -If_This_Goes_On,newsmast.social,Humanities,humanities,false -If_This_Goes_On,newsmast.social,Immigrants Rights,immigrants_rights,false -If_This_Goes_On,newsmast.social,Indigenous Peoples,indigenous_peoples,false -patnawomens,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false -patnawomens,newsmast.social,Energy & Pollution,energy_pollution,false -patnawomens,newsmast.social,Government & Policy,government_policy,false -patnawomens,newsmast.social,Law & Justice,law_justice,false -patnawomens,newsmast.social,Academia & Research,academia_research,true -gabbab1,newsmast.social,Academia & Research,academia_research,false -gabbab1,newsmast.social,Activism & Civil Rights,activism_civil_rights,false -gabbab1,newsmast.social,AI,ai,false -gabbab1,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false -gabbab1,newsmast.social,Black Voices,black_voices,false -gabbab1,newsmast.social,Breaking News,breaking_news,false -gabbab1,newsmast.social,Business,business,false -gabbab1,newsmast.social,Climate change,climate_change,false -gabbab1,newsmast.social,Democracy & Human Rights,democracy_human_rights,true -gabbab1,newsmast.social,Disabled Voices,disabled_voices,false -gabbab1,newsmast.social,Energy & Pollution,energy_pollution,false -gabbab1,newsmast.social,Engineering,engineering,false -gabbab1,newsmast.social,Environment,environment,false -gabbab1,newsmast.social,Government & Policy,government_policy,false -gabbab1,newsmast.social,Healthcare,healthcare,false -gabbab1,newsmast.social,History,history,false -gabbab1,newsmast.social,Humanities,humanities,false -gabbab1,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false -gabbab1,newsmast.social,Immigrants Rights,immigrants_rights,false -gabbab1,newsmast.social,Indigenous Peoples,indigenous_peoples,false -gabbab1,newsmast.social,Law & Justice,law_justice,false -gabbab1,newsmast.social,LGBTQ+,lgbtq,false -gabbab1,newsmast.social,Markets & Finance,markets_finance,false -gabbab1,newsmast.social,Journalism & Comment,news_comment_data,false -gabbab1,newsmast.social,Philosophy,philosophy,false -gabbab1,newsmast.social,Politics,politics,false -gabbab1,newsmast.social,Poverty & Inequality,poverty_inequality,false -gabbab1,newsmast.social,Programming,programming,false -gabbab1,newsmast.social,Social Media,social_media,false -gabbab1,newsmast.social,Social Sciences,social_sciences,false -gabbab1,newsmast.social,Technology,technology,false -gabbab1,newsmast.social,Ukraine Invasion,ukraine_invasion,false -gabbab1,newsmast.social,US Politics,us_politics,false -gabbab1,newsmast.social,Weather,weather,false -gabbab1,newsmast.social,Women’s Voices,women_voices,false -gabbab1,newsmast.social,Workers Rights,workers_rights,false -scottcaneat,newsmast.social,Architecture & Design,architecture_design,false -scottcaneat,newsmast.social,Creative Arts,creative_arts,false -scottcaneat,newsmast.social,Food & Drink,food_drink,true -scottcaneat,newsmast.social,Nature & Wildlife,nature_wildlife,false -scottcaneat,newsmast.social,Travel,travel,false -srijit,newsmast.social,Academia & Research,academia_research,false -srijit,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false -srijit,newsmast.social,Biology,biology,false -srijit,newsmast.social,Breaking News,breaking_news,false -srijit,newsmast.social,Chemistry,chemistry,false -srijit,newsmast.social,Climate change,climate_change,false -srijit,newsmast.social,Democracy & Human Rights,democracy_human_rights,true -srijit,newsmast.social,Energy & Pollution,energy_pollution,false -srijit,newsmast.social,Government & Policy,government_policy,false -srijit,newsmast.social,Healthcare,healthcare,false -srijit,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false -srijit,newsmast.social,Law & Justice,law_justice,false -srijit,newsmast.social,Mathematics,mathematics,false -srijit,newsmast.social,Journalism & Comment,news_comment_data,false -srijit,newsmast.social,Physics,physics,false -srijit,newsmast.social,Politics,politics,false -srijit,newsmast.social,Poverty & Inequality,poverty_inequality,false -srijit,newsmast.social,Science,science,false -srijit,newsmast.social,Social Media,social_media,false -srijit,newsmast.social,Space,space,false -srijit,newsmast.social,Ukraine Invasion,ukraine_invasion,false -srijit,newsmast.social,US Politics,us_politics,false -srijit,newsmast.social,Weather,weather,false -srijit,newsmast.social,Environment,environment,false -tbutler,newsmast.social,AI,ai,false -tbutler,newsmast.social,History,history,false -tbutler,newsmast.social,Humanities,humanities,false -tbutler,newsmast.social,Journalism & Comment,news_comment_data,true -tbutler,newsmast.social,Philosophy,philosophy,false -tbutler,newsmast.social,Politics,politics,false -tbutler,newsmast.social,Programming,programming,false -tbutler,newsmast.social,Social Media,social_media,false -tbutler,newsmast.social,Social Sciences,social_sciences,false -tbutler,newsmast.social,Technology,technology,false -tbutler,newsmast.social,Ukraine Invasion,ukraine_invasion,false -tbutler,newsmast.social,US Politics,us_politics,false -seosiri,newsmast.social,Biology,biology,false -seosiri,newsmast.social,Business,business,true -seosiri,newsmast.social,Chemistry,chemistry,false -seosiri,newsmast.social,Markets & Finance,markets_finance,false -seosiri,newsmast.social,Mathematics,mathematics,false -seosiri,newsmast.social,Physics,physics,false -seosiri,newsmast.social,Science,science,false -seosiri,newsmast.social,Space,space,false -seosiri,newsmast.social,Workers Rights,workers_rights,false -Mihajlo,newsmast.social,AI,ai,false -Mihajlo,newsmast.social,Breaking News,breaking_news,false -Mihajlo,newsmast.social,Football,football,false -Mihajlo,newsmast.social,Movies,movies,false -Mihajlo,newsmast.social,Music,music,false -Mihajlo,newsmast.social,Social Media,social_media,false -Mihajlo,newsmast.social,Sport,sport,true -Mihajlo,newsmast.social,Technology,technology,false -Mihajlo,newsmast.social,TV & Radio,tv_radio,false -Mihajlo,newsmast.social,Weather,weather,false -incnews,newsmast.social,Academia & Research,academia_research,false -incnews,newsmast.social,Breaking News,breaking_news,false -incnews,newsmast.social,Business,business,false -incnews,newsmast.social,Government & Policy,government_policy,false -incnews,newsmast.social,Healthcare,healthcare,false -incnews,newsmast.social,Law & Justice,law_justice,false -incnews,newsmast.social,Markets & Finance,markets_finance,false -incnews,newsmast.social,Politics,politics,false -incnews,newsmast.social,Social Media,social_media,false -incnews,newsmast.social,Ukraine Invasion,ukraine_invasion,false -incnews,newsmast.social,US Politics,us_politics,false -incnews,newsmast.social,Weather,weather,false -incnews,newsmast.social,Workers Rights,workers_rights,false -incnews,newsmast.social,Journalism & Comment,news_comment_data,true -leonfeuer,newsmast.social,Academia & Research,academia_research,false -leonfeuer,newsmast.social,Breaking News,breaking_news,false -leonfeuer,newsmast.social,Government & Policy,government_policy,false -leonfeuer,newsmast.social,Healthcare,healthcare,false -leonfeuer,newsmast.social,History,history,false -leonfeuer,newsmast.social,Humanities,humanities,false -leonfeuer,newsmast.social,Law & Justice,law_justice,false -leonfeuer,newsmast.social,Journalism & Comment,news_comment_data,false -leonfeuer,newsmast.social,Philosophy,philosophy,false -leonfeuer,newsmast.social,Politics,politics,false -leonfeuer,newsmast.social,Social Media,social_media,true -leonfeuer,newsmast.social,Social Sciences,social_sciences,false -leonfeuer,newsmast.social,Ukraine Invasion,ukraine_invasion,false -leonfeuer,newsmast.social,US Politics,us_politics,false -leonfeuer,newsmast.social,Weather,weather,false -Travelwisesr,newsmast.social,AI,ai,true -Travelwisesr,newsmast.social,Business,business,false -Travelwisesr,newsmast.social,Music,music,false -Travelwisesr,newsmast.social,Photography,photography,false -Travelwisesr,newsmast.social,Visual Arts,visual_arts,false -Annon,newsmast.social,Books & Literature,books_literature,false -Annon,newsmast.social,Gaming,gaming,false -Annon,newsmast.social,History,history,false -Annon,newsmast.social,Movies,movies,false -Annon,newsmast.social,Music,music,false -Annon,newsmast.social,Programming,programming,true -Annon,newsmast.social,Social Sciences,social_sciences,false -Annon,newsmast.social,Space,space,false -Annon,newsmast.social,Technology,technology,false -Annon,newsmast.social,Visual Arts,visual_arts,false -Annon,newsmast.social,Creative Arts,creative_arts,false -Annon,newsmast.social,Nature & Wildlife,nature_wildlife,false -Annon,newsmast.social,Puzzles,puzzles,false -Annon,newsmast.social,Food & Drink,food_drink,false -Annon,newsmast.social,Pets,pets,false -Annon,newsmast.social,Humour,humour,false -Tom,newsmast.social,Books & Literature,books_literature,false -Tom,newsmast.social,Environment,environment,false -Tom,newsmast.social,Movies,movies,false -Tom,newsmast.social,Music,music,false -Tom,newsmast.social,Journalism & Comment,news_comment_data,false -Tom,newsmast.social,Social Media,social_media,false -Tom,newsmast.social,Ukraine Invasion,ukraine_invasion,false -Tom,newsmast.social,Weather,weather,false -Tom,newsmast.social,Breaking News,breaking_news,true -davetechg,newsmast.social,AI,ai,false -davetechg,newsmast.social,Business,business,false -davetechg,newsmast.social,Engineering,engineering,false -davetechg,newsmast.social,Markets & Finance,markets_finance,false -davetechg,newsmast.social,Technology,technology,true -WorldTravelFam,newsmast.social,Food & Drink,food_drink,false -WorldTravelFam,newsmast.social,Humour,humour,false -WorldTravelFam,newsmast.social,Nature & Wildlife,nature_wildlife,false -WorldTravelFam,newsmast.social,Pets,pets,false -WorldTravelFam,newsmast.social,Travel,travel,true -aunghtetnay,newsmast.social,Academia & Research,academia_research,true -aunghtetnay,newsmast.social,Academia & Research,academia_research,false -aunghtetnay,newsmast.social,AI,ai,false -aunghtetnay,newsmast.social,AI,ai,false -aunghtetnay,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false -aunghtetnay,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false -aunghtetnay,newsmast.social,Breaking News,breaking_news,false -aunghtetnay,newsmast.social,Breaking News,breaking_news,false -aunghtetnay,newsmast.social,Climate change,climate_change,false -aunghtetnay,newsmast.social,Climate change,climate_change,false -aunghtetnay,newsmast.social,Energy & Pollution,energy_pollution,false -aunghtetnay,newsmast.social,Energy & Pollution,energy_pollution,false -aunghtetnay,newsmast.social,Engineering,engineering,false -aunghtetnay,newsmast.social,Engineering,engineering,false -aunghtetnay,newsmast.social,Environment,environment,false -aunghtetnay,newsmast.social,Environment,environment,false -aunghtetnay,newsmast.social,Government & Policy,government_policy,false -aunghtetnay,newsmast.social,Government & Policy,government_policy,false -aunghtetnay,newsmast.social,Healthcare,healthcare,false -aunghtetnay,newsmast.social,Healthcare,healthcare,false -aunghtetnay,newsmast.social,Law & Justice,law_justice,false -aunghtetnay,newsmast.social,Law & Justice,law_justice,false -aunghtetnay,newsmast.social,Journalism & Comment,news_comment_data,false -aunghtetnay,newsmast.social,Journalism & Comment,news_comment_data,false -aunghtetnay,newsmast.social,Politics,politics,false -aunghtetnay,newsmast.social,Politics,politics,false -aunghtetnay,newsmast.social,Programming,programming,false -aunghtetnay,newsmast.social,Programming,programming,false -aunghtetnay,newsmast.social,Social Media,social_media,false -aunghtetnay,newsmast.social,Social Media,social_media,false -aunghtetnay,newsmast.social,Technology,technology,false -aunghtetnay,newsmast.social,Technology,technology,false -aunghtetnay,newsmast.social,Ukraine Invasion,ukraine_invasion,false -aunghtetnay,newsmast.social,US Politics,us_politics,false -aunghtetnay,newsmast.social,Ukraine Invasion,ukraine_invasion,false -aunghtetnay,newsmast.social,Weather,weather,false -aunghtetnay,newsmast.social,US Politics,us_politics,false -aunghtetnay,newsmast.social,Weather,weather,false -0j20,newsmast.social,Business,business,true -0j20,newsmast.social,Creative Arts,creative_arts,false -0j20,newsmast.social,Markets & Finance,markets_finance,false -0j20,newsmast.social,Technology,technology,false -0j20,newsmast.social,Workers Rights,workers_rights,false -ahnay,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false -ahnay,newsmast.social,Business,business,false -ahnay,newsmast.social,Climate change,climate_change,false -ahnay,newsmast.social,Energy & Pollution,energy_pollution,false -ahnay,newsmast.social,Environment,environment,false -ahnay,newsmast.social,Markets & Finance,markets_finance,false -ahnay,newsmast.social,Workers Rights,workers_rights,true -dko10440,newsmast.social,AI,ai,false -dko10440,newsmast.social,Architecture & Design,architecture_design,false -dko10440,newsmast.social,Breaking News,breaking_news,false -dko10440,newsmast.social,Creative Arts,creative_arts,false -dko10440,newsmast.social,Food & Drink,food_drink,false -dko10440,newsmast.social,Humour,humour,false -dko10440,newsmast.social,Movies,movies,false -dko10440,newsmast.social,Music,music,false -dko10440,newsmast.social,Nature & Wildlife,nature_wildlife,false -dko10440,newsmast.social,Journalism & Comment,news_comment_data,false -dko10440,newsmast.social,Photography,photography,true -dko10440,newsmast.social,Physics,physics,false -dko10440,newsmast.social,Science,science,false -dko10440,newsmast.social,Space,space,false -dko10440,newsmast.social,Technology,technology,false -dko10440,newsmast.social,Travel,travel,false -dko10440,newsmast.social,TV & Radio,tv_radio,false -dko10440,newsmast.social,Ukraine Invasion,ukraine_invasion,false -vile_person,newsmast.social,Books & Literature,books_literature,false -vile_person,newsmast.social,Climate change,climate_change,false -vile_person,newsmast.social,Democracy & Human Rights,democracy_human_rights,true -vile_person,newsmast.social,Energy & Pollution,energy_pollution,false -vile_person,newsmast.social,Environment,environment,false -vile_person,newsmast.social,Gaming,gaming,false -vile_person,newsmast.social,LGBTQ+,lgbtq,false -vile_person,newsmast.social,Mathematics,mathematics,false -vile_person,newsmast.social,Music,music,false -vile_person,newsmast.social,Journalism & Comment,news_comment_data,false -vile_person,newsmast.social,Philosophy,philosophy,false -vile_person,newsmast.social,Photography,photography,false -vile_person,newsmast.social,Poverty & Inequality,poverty_inequality,false -vile_person,newsmast.social,Programming,programming,false -vile_person,newsmast.social,Women’s Voices,women_voices,false -smikwily,newsmast.social,Breaking News,breaking_news,true -smikwily,newsmast.social,Humour,humour,false -smikwily,newsmast.social,Pets,pets,false -smikwily,newsmast.social,Puzzles,puzzles,false -smikwily,newsmast.social,Social Media,social_media,false -smikwily,newsmast.social,Technology,technology,false -smikwily,newsmast.social,Gaming,gaming,false -smikwily,newsmast.social,Movies,movies,false -smikwily,newsmast.social,TV & Radio,tv_radio,false -LawyerSchiff,newsmast.social,Academia & Research,academia_research,false -LawyerSchiff,newsmast.social,Activism & Civil Rights,activism_civil_rights,false -LawyerSchiff,newsmast.social,Architecture & Design,architecture_design,false -LawyerSchiff,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false -LawyerSchiff,newsmast.social,Business,business,false -LawyerSchiff,newsmast.social,Climate change,climate_change,false -LawyerSchiff,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -LawyerSchiff,newsmast.social,Environment,environment,false -LawyerSchiff,newsmast.social,Food & Drink,food_drink,false -LawyerSchiff,newsmast.social,Government & Policy,government_policy,false -LawyerSchiff,newsmast.social,Healthcare,healthcare,false -LawyerSchiff,newsmast.social,History,history,false -LawyerSchiff,newsmast.social,Humour,humour,false -LawyerSchiff,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false -LawyerSchiff,newsmast.social,Law & Justice,law_justice,true -LawyerSchiff,newsmast.social,Markets & Finance,markets_finance,false -LawyerSchiff,newsmast.social,Nature & Wildlife,nature_wildlife,false -LawyerSchiff,newsmast.social,Journalism & Comment,news_comment_data,false -LawyerSchiff,newsmast.social,Performing Arts,performing_arts,false -LawyerSchiff,newsmast.social,Politics,politics,false -LawyerSchiff,newsmast.social,Poverty & Inequality,poverty_inequality,false -LawyerSchiff,newsmast.social,Social Media,social_media,false -LawyerSchiff,newsmast.social,Social Sciences,social_sciences,false -LawyerSchiff,newsmast.social,Space,space,false -LawyerSchiff,newsmast.social,Travel,travel,false -LawyerSchiff,newsmast.social,TV & Radio,tv_radio,false -LawyerSchiff,newsmast.social,US Politics,us_politics,false -LawyerSchiff,newsmast.social,Visual Arts,visual_arts,false -LawyerSchiff,newsmast.social,Workers Rights,workers_rights,false -paradym3,newsmast.social,Ukraine Invasion,ukraine_invasion,false -paradym3,newsmast.social,US Politics,us_politics,false -paradym3,newsmast.social,Weather,weather,false -paradym3,newsmast.social,Workers Rights,workers_rights,false -paradym3,newsmast.social,Academia & Research,academia_research,false -paradym3,newsmast.social,AI,ai,false -paradym3,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false -paradym3,newsmast.social,Biology,biology,false -paradym3,newsmast.social,Breaking News,breaking_news,true -paradym3,newsmast.social,Business,business,false -paradym3,newsmast.social,Chemistry,chemistry,false -paradym3,newsmast.social,Climate change,climate_change,false -paradym3,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -paradym3,newsmast.social,Energy & Pollution,energy_pollution,false -paradym3,newsmast.social,Engineering,engineering,false -paradym3,newsmast.social,Environment,environment,false -paradym3,newsmast.social,Food & Drink,food_drink,false -paradym3,newsmast.social,Gaming,gaming,false -paradym3,newsmast.social,Government & Policy,government_policy,false -paradym3,newsmast.social,Healthcare,healthcare,false -paradym3,newsmast.social,History,history,false -paradym3,newsmast.social,Humanities,humanities,false -paradym3,newsmast.social,Humour,humour,false -paradym3,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false -paradym3,newsmast.social,Law & Justice,law_justice,false -paradym3,newsmast.social,Markets & Finance,markets_finance,false -paradym3,newsmast.social,Mathematics,mathematics,false -paradym3,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false -paradym3,newsmast.social,Movies,movies,false -paradym3,newsmast.social,Music,music,false -paradym3,newsmast.social,Nature & Wildlife,nature_wildlife,false -paradym3,newsmast.social,Journalism & Comment,news_comment_data,false -paradym3,newsmast.social,Pets,pets,false -paradym3,newsmast.social,Philosophy,philosophy,false -paradym3,newsmast.social,Physics,physics,false -paradym3,newsmast.social,Politics,politics,false -paradym3,newsmast.social,Poverty & Inequality,poverty_inequality,false -paradym3,newsmast.social,Programming,programming,false -paradym3,newsmast.social,Puzzles,puzzles,false -paradym3,newsmast.social,Science,science,false -paradym3,newsmast.social,Social Media,social_media,false -paradym3,newsmast.social,Social Sciences,social_sciences,false -paradym3,newsmast.social,Space,space,false -paradym3,newsmast.social,Technology,technology,false -paradym3,newsmast.social,Travel,travel,false -paradym3,newsmast.social,TV & Radio,tv_radio,false -paradym3,newsmast.social,Ukraine Invasion,ukraine_invasion,false -paradym3,newsmast.social,US Politics,us_politics,false -paradym3,newsmast.social,Weather,weather,false -paradym3,newsmast.social,Workers Rights,workers_rights,false -TechFinancials,newsmast.social,AI,ai,false -TechFinancials,newsmast.social,Breaking News,breaking_news,true -TechFinancials,newsmast.social,Journalism & Comment,news_comment_data,false -TechFinancials,newsmast.social,Social Media,social_media,false -TechFinancials,newsmast.social,Technology,technology,false -ilwtm,newsmast.social,AI,ai,false -ilwtm,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false -ilwtm,newsmast.social,Breaking News,breaking_news,false -ilwtm,newsmast.social,Creative Arts,creative_arts,false -ilwtm,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -ilwtm,newsmast.social,Environment,environment,false -ilwtm,newsmast.social,Photography,photography,false -ilwtm,newsmast.social,Poverty & Inequality,poverty_inequality,false -ilwtm,newsmast.social,Technology,technology,false -ilwtm,newsmast.social,Travel,travel,true -ilwtm,newsmast.social,Visual Arts,visual_arts,false -lunabase,newsmast.social,AI,ai,true -lunabase,newsmast.social,Breaking News,breaking_news,false -lunabase,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -lunabase,newsmast.social,Engineering,engineering,false -lunabase,newsmast.social,Programming,programming,false -lunabase,newsmast.social,Science,science,false -lunabase,newsmast.social,Space,space,false -lunabase,newsmast.social,Technology,technology,false -lunabase,newsmast.social,Ukraine Invasion,ukraine_invasion,false -Frank_Zafiro,newsmast.social,AI,ai,false -Frank_Zafiro,newsmast.social,Creative Arts,creative_arts,false -Frank_Zafiro,newsmast.social,History,history,false -Frank_Zafiro,newsmast.social,Humanities,humanities,false -Frank_Zafiro,newsmast.social,Humour,humour,false -Frank_Zafiro,newsmast.social,LGBTQ+,lgbtq,false -Frank_Zafiro,newsmast.social,Movies,movies,false -Frank_Zafiro,newsmast.social,Music,music,false -Frank_Zafiro,newsmast.social,Philosophy,philosophy,false -Frank_Zafiro,newsmast.social,Physics,physics,false -Frank_Zafiro,newsmast.social,Science,science,false -Frank_Zafiro,newsmast.social,Social Sciences,social_sciences,false -Frank_Zafiro,newsmast.social,Space,space,false -Frank_Zafiro,newsmast.social,Sport,sport,false -Frank_Zafiro,newsmast.social,Technology,technology,false -Frank_Zafiro,newsmast.social,TV & Radio,tv_radio,false -Frank_Zafiro,newsmast.social,US Sport,us_sport,false -Frank_Zafiro,newsmast.social,Women’s Voices,women_voices,false -Frank_Zafiro,newsmast.social,Books & Literature,books_literature,true -wooWike23,newsmast.social,Breaking News,breaking_news,false -wooWike23,newsmast.social,Journalism & Comment,news_comment_data,false -wooWike23,newsmast.social,Social Media,social_media,false -wooWike23,newsmast.social,Ukraine Invasion,ukraine_invasion,false -wooWike23,newsmast.social,Weather,weather,true -wingingittravel,newsmast.social,Activism & Civil Rights,activism_civil_rights,false -wingingittravel,newsmast.social,AI,ai,false -wingingittravel,newsmast.social,Books & Literature,books_literature,false -wingingittravel,newsmast.social,Food & Drink,food_drink,false -wingingittravel,newsmast.social,Humour,humour,false -wingingittravel,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false -wingingittravel,newsmast.social,Music,music,false -wingingittravel,newsmast.social,Philosophy,philosophy,false -wingingittravel,newsmast.social,Technology,technology,false -wingingittravel,newsmast.social,Travel,travel,true -kess111,newsmast.social,Breaking News,breaking_news,true -kess111,newsmast.social,Journalism & Comment,news_comment_data,false -kess111,newsmast.social,Social Media,social_media,false -kess111,newsmast.social,Ukraine Invasion,ukraine_invasion,false -kess111,newsmast.social,Weather,weather,false -isobelwalster,newsmast.social,Books & Literature,books_literature,false -isobelwalster,newsmast.social,Breaking News,breaking_news,false -isobelwalster,newsmast.social,Humour,humour,false -isobelwalster,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false -isobelwalster,newsmast.social,Movies,movies,false -isobelwalster,newsmast.social,Journalism & Comment,news_comment_data,false -isobelwalster,newsmast.social,Pets,pets,false -isobelwalster,newsmast.social,Puzzles,puzzles,false -isobelwalster,newsmast.social,Social Media,social_media,false -isobelwalster,newsmast.social,Travel,travel,true -boribori,newsmast.social,AI,ai,false -boribori,newsmast.social,Breaking News,breaking_news,false -boribori,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -boribori,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false -boribori,newsmast.social,Physics,physics,false -boribori,newsmast.social,Poverty & Inequality,poverty_inequality,false -boribori,newsmast.social,Science,science,false -boribori,newsmast.social,Space,space,false -boribori,newsmast.social,Technology,technology,false -boribori,newsmast.social,Ukraine Invasion,ukraine_invasion,true -Andi,newsmast.social,AI,ai,false -Andi,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false -Andi,newsmast.social,Biology,biology,false -Andi,newsmast.social,Chemistry,chemistry,false -Andi,newsmast.social,Climate change,climate_change,false -Andi,newsmast.social,Energy & Pollution,energy_pollution,false -Andi,newsmast.social,Engineering,engineering,false -Andi,newsmast.social,Environment,environment,false -Andi,newsmast.social,Mathematics,mathematics,false -Andi,newsmast.social,Physics,physics,false -Andi,newsmast.social,Programming,programming,false -Andi,newsmast.social,Science,science,true -Andi,newsmast.social,Space,space,false -Andi,newsmast.social,Technology,technology,false -Mercedes,newsmast.social,TV & Radio,tv_radio,false -Mercedes,newsmast.social,Visual Arts,visual_arts,false -Mercedes,newsmast.social,Architecture & Design,architecture_design,false -Mercedes,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false -Mercedes,newsmast.social,Books & Literature,books_literature,false -Mercedes,newsmast.social,Climate change,climate_change,false -Mercedes,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -Mercedes,newsmast.social,Energy & Pollution,energy_pollution,false -Mercedes,newsmast.social,Environment,environment,false -Mercedes,newsmast.social,Gaming,gaming,false -Mercedes,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false -Mercedes,newsmast.social,Movies,movies,false -Mercedes,newsmast.social,Music,music,true -Mercedes,newsmast.social,Performing Arts,performing_arts,false -Mercedes,newsmast.social,Photography,photography,false -Mercedes,newsmast.social,Poverty & Inequality,poverty_inequality,false -Mercedes,newsmast.social,TV & Radio,tv_radio,false -Mercedes,newsmast.social,Visual Arts,visual_arts,false -WayneDupreeShow,newsmast.social,Black Voices,black_voices,false -WayneDupreeShow,newsmast.social,Breaking News,breaking_news,false -WayneDupreeShow,newsmast.social,Food & Drink,food_drink,false -WayneDupreeShow,newsmast.social,Government & Policy,government_policy,false -WayneDupreeShow,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false -WayneDupreeShow,newsmast.social,Journalism & Comment,news_comment_data,false -WayneDupreeShow,newsmast.social,Politics,politics,false -WayneDupreeShow,newsmast.social,Social Media,social_media,false -WayneDupreeShow,newsmast.social,TV & Radio,tv_radio,false -WayneDupreeShow,newsmast.social,US Politics,us_politics,true -research,newsmast.social,AI,ai,false -research,newsmast.social,Biology,biology,false -research,newsmast.social,Chemistry,chemistry,false -research,newsmast.social,Engineering,engineering,false -research,newsmast.social,Journalism & Comment,news_comment_data,false -research,newsmast.social,Physics,physics,false -research,newsmast.social,Science,science,true -research,newsmast.social,Space,space,false -research,newsmast.social,Technology,technology,false -rogergraf,newsmast.social,AI,ai,false -rogergraf,newsmast.social,Breaking News,breaking_news,true -rogergraf,newsmast.social,History,history,false -rogergraf,newsmast.social,Humanities,humanities,false -rogergraf,newsmast.social,Philosophy,philosophy,false -rogergraf,newsmast.social,Science,science,false -rogergraf,newsmast.social,Social Sciences,social_sciences,false -rogergraf,newsmast.social,Technology,technology,false -rogergraf,newsmast.social,Books & Literature,books_literature,false -rogergraf,newsmast.social,Movies,movies,false -rogergraf,newsmast.social,Music,music,false -rogergraf,newsmast.social,TV & Radio,tv_radio,false -rogergraf,newsmast.social,Visual Arts,visual_arts,false -rogergraf,newsmast.social,Sport,sport,false -rogergraf,newsmast.social,Football,football,false -rogergraf,newsmast.social,Creative Arts,creative_arts,false -rogergraf,newsmast.social,Food & Drink,food_drink,false -rogergraf,newsmast.social,Humour,humour,false -rogergraf,newsmast.social,Nature & Wildlife,nature_wildlife,false -rogergraf,newsmast.social,Pets,pets,false -rogergraf,newsmast.social,Puzzles,puzzles,false -rogergraf,newsmast.social,Travel,travel,false -r0yaL,newsmast.social,Breaking News,breaking_news,false -r0yaL,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -r0yaL,newsmast.social,Government & Policy,government_policy,false -r0yaL,newsmast.social,Science,science,false -r0yaL,newsmast.social,Technology,technology,true -hardindr,newsmast.social,Biology,biology,false -hardindr,newsmast.social,Breaking News,breaking_news,false -hardindr,newsmast.social,Chemistry,chemistry,true -hardindr,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -hardindr,newsmast.social,Government & Policy,government_policy,false -hardindr,newsmast.social,History,history,false -hardindr,newsmast.social,Humanities,humanities,false -hardindr,newsmast.social,Law & Justice,law_justice,false -hardindr,newsmast.social,Mathematics,mathematics,false -hardindr,newsmast.social,Philosophy,philosophy,false -hardindr,newsmast.social,Physics,physics,false -hardindr,newsmast.social,Poverty & Inequality,poverty_inequality,false -hardindr,newsmast.social,Social Sciences,social_sciences,false -hardindr,newsmast.social,US Politics,us_politics,false -guchengsnakee,newsmast.social,AI,ai,true -guchengsnakee,newsmast.social,Markets & Finance,markets_finance,false -guchengsnakee,newsmast.social,Mathematics,mathematics,false -guchengsnakee,newsmast.social,Programming,programming,false -guchengsnakee,newsmast.social,Science,science,false -guchengsnakee,newsmast.social,Technology,technology,false -alexdickson,newsmast.social,Creative Arts,creative_arts,false -alexdickson,newsmast.social,Food & Drink,food_drink,false -alexdickson,newsmast.social,History,history,false -alexdickson,newsmast.social,Humanities,humanities,false -alexdickson,newsmast.social,Humour,humour,false -alexdickson,newsmast.social,Markets & Finance,markets_finance,false -alexdickson,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false -alexdickson,newsmast.social,Nature & Wildlife,nature_wildlife,false -alexdickson,newsmast.social,Pets,pets,false -alexdickson,newsmast.social,Philosophy,philosophy,false -alexdickson,newsmast.social,Puzzles,puzzles,false -alexdickson,newsmast.social,Social Sciences,social_sciences,false -alexdickson,newsmast.social,Workers Rights,workers_rights,false -alexdickson,newsmast.social,Business,business,true -DrMikeWatts,newsmast.social,Biology,biology,false -DrMikeWatts,newsmast.social,Climate change,climate_change,false -DrMikeWatts,newsmast.social,Programming,programming,false -DrMikeWatts,newsmast.social,Science,science,false -DrMikeWatts,newsmast.social,AI,ai,true -JessJ,newsmast.social,Activism & Civil Rights,activism_civil_rights,false -JessJ,newsmast.social,LGBTQ+,lgbtq,true -JessJ,newsmast.social,Programming,programming,false -JessJ,newsmast.social,Space,space,false -JessJ,newsmast.social,Women’s Voices,women_voices,false -Salexkenyon,newsmast.social,Activism & Civil Rights,activism_civil_rights,false -Salexkenyon,newsmast.social,Breaking News,breaking_news,false -Salexkenyon,newsmast.social,Climate change,climate_change,true -Salexkenyon,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -Salexkenyon,newsmast.social,Environment,environment,false -Salexkenyon,newsmast.social,Government & Policy,government_policy,false -Salexkenyon,newsmast.social,Immigrants Rights,immigrants_rights,false -Salexkenyon,newsmast.social,Journalism & Comment,news_comment_data,false -Salexkenyon,newsmast.social,Philosophy,philosophy,false -Salexkenyon,newsmast.social,Politics,politics,false -Salexkenyon,newsmast.social,Poverty & Inequality,poverty_inequality,false -Salexkenyon,newsmast.social,US Politics,us_politics,false -Salexkenyon,newsmast.social,Women’s Voices,women_voices,false -ballhaus,newsmast.social,Music,music,true -ballhaus,newsmast.social,History,history,false -ballhaus,newsmast.social,Mathematics,mathematics,false -ballhaus,newsmast.social,Movies,movies,false -ballhaus,newsmast.social,Performing Arts,performing_arts,false -ballhaus,newsmast.social,Philosophy,philosophy,false -ballhaus,newsmast.social,Photography,photography,false -ballhaus,newsmast.social,Science,science,false -ballhaus,newsmast.social,Social Sciences,social_sciences,false -ballhaus,newsmast.social,Space,space,false -ballhaus,newsmast.social,Visual Arts,visual_arts,false -ppttest456,newsmast.social,Academia & Research,academia_research,true -ppttest456,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -ppttest456,newsmast.social,Government & Policy,government_policy,false -ppttest456,newsmast.social,Healthcare,healthcare,false -ppttest456,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false -ppttest456,newsmast.social,Law & Justice,law_justice,false -ppttest456,newsmast.social,Politics,politics,false -ppttest456,newsmast.social,Poverty & Inequality,poverty_inequality,false -ppttest456,newsmast.social,US Politics,us_politics,false -JohnJVaccaro,newsmast.social,AI,ai,false -JohnJVaccaro,newsmast.social,Biology,biology,false -JohnJVaccaro,newsmast.social,Business,business,false -JohnJVaccaro,newsmast.social,Chemistry,chemistry,false -JohnJVaccaro,newsmast.social,Climate change,climate_change,false -JohnJVaccaro,newsmast.social,Energy & Pollution,energy_pollution,false -JohnJVaccaro,newsmast.social,Engineering,engineering,false -JohnJVaccaro,newsmast.social,Mathematics,mathematics,false -JohnJVaccaro,newsmast.social,Physics,physics,false -JohnJVaccaro,newsmast.social,Programming,programming,false -JohnJVaccaro,newsmast.social,Science,science,true -JohnJVaccaro,newsmast.social,Space,space,false -JohnJVaccaro,newsmast.social,Technology,technology,false -suthit,newsmast.social,AI,ai,false -suthit,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false -suthit,newsmast.social,Climate change,climate_change,false -suthit,newsmast.social,Energy & Pollution,energy_pollution,false -suthit,newsmast.social,Engineering,engineering,false -suthit,newsmast.social,Environment,environment,true -suthit,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false -suthit,newsmast.social,Poverty & Inequality,poverty_inequality,false -suthit,newsmast.social,Programming,programming,false -tom_webler,newsmast.social,Academia & Research,academia_research,false -tom_webler,newsmast.social,AI,ai,false -tom_webler,newsmast.social,Climate change,climate_change,false -tom_webler,newsmast.social,Energy & Pollution,energy_pollution,false -tom_webler,newsmast.social,Government & Policy,government_policy,true -tom_webler,newsmast.social,US Politics,us_politics,false -chatter,newsmast.social,Breaking News,breaking_news,false -chatter,newsmast.social,Journalism & Comment,news_comment_data,false -chatter,newsmast.social,Social Media,social_media,false -chatter,newsmast.social,Ukraine Invasion,ukraine_invasion,true -chatter,newsmast.social,Weather,weather,false -dave42w,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false -dave42w,newsmast.social,Climate change,climate_change,false -dave42w,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -dave42w,newsmast.social,Energy & Pollution,energy_pollution,false -dave42w,newsmast.social,Poverty & Inequality,poverty_inequality,false -dave42w,newsmast.social,Programming,programming,true -aydnkocek,newsmast.social,Academia & Research,academia_research,false -aydnkocek,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -aydnkocek,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false -aydnkocek,newsmast.social,Indigenous Peoples,indigenous_peoples,false -aydnkocek,newsmast.social,Politics,politics,true -sintrenton,newsmast.social,Breaking News,breaking_news,true -sintrenton,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -sintrenton,newsmast.social,Government & Policy,government_policy,false -sintrenton,newsmast.social,Humanities,humanities,false -sintrenton,newsmast.social,Law & Justice,law_justice,false -sintrenton,newsmast.social,Politics,politics,false -sintrenton,newsmast.social,Social Sciences,social_sciences,false -sintrenton,newsmast.social,Technology,technology,false -Chourouk,newsmast.social,Activism & Civil Rights,activism_civil_rights,false -Chourouk,newsmast.social,Black Voices,black_voices,false -Chourouk,newsmast.social,Books & Literature,books_literature,false -Chourouk,newsmast.social,Climate change,climate_change,false -Chourouk,newsmast.social,Disabled Voices,disabled_voices,false -Chourouk,newsmast.social,Energy & Pollution,energy_pollution,false -Chourouk,newsmast.social,Environment,environment,false -Chourouk,newsmast.social,Humanities,humanities,false -Chourouk,newsmast.social,Immigrants Rights,immigrants_rights,false -Chourouk,newsmast.social,Indigenous Peoples,indigenous_peoples,false -Chourouk,newsmast.social,LGBTQ+,lgbtq,false -Chourouk,newsmast.social,Movies,movies,false -Chourouk,newsmast.social,Music,music,false -Chourouk,newsmast.social,Performing Arts,performing_arts,false -Chourouk,newsmast.social,Politics,politics,false -Chourouk,newsmast.social,Poverty & Inequality,poverty_inequality,false -Chourouk,newsmast.social,TV & Radio,tv_radio,false -Chourouk,newsmast.social,US Politics,us_politics,false -Chourouk,newsmast.social,Visual Arts,visual_arts,false -Chourouk,newsmast.social,Women’s Voices,women_voices,false -Chourouk,newsmast.social,Democracy & Human Rights,democracy_human_rights,true -plus,newsmast.social,Academia & Research,academia_research,false -plus,newsmast.social,Activism & Civil Rights,activism_civil_rights,false -plus,newsmast.social,AI,ai,false -plus,newsmast.social,Architecture & Design,architecture_design,false -plus,newsmast.social,Black Voices,black_voices,false -plus,newsmast.social,Books & Literature,books_literature,false -plus,newsmast.social,Breaking News,breaking_news,true -plus,newsmast.social,Business,business,false -plus,newsmast.social,Creative Arts,creative_arts,false -plus,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -plus,newsmast.social,Disabled Voices,disabled_voices,false -plus,newsmast.social,Engineering,engineering,false -plus,newsmast.social,Food & Drink,food_drink,false -plus,newsmast.social,Gaming,gaming,false -plus,newsmast.social,Government & Policy,government_policy,false -plus,newsmast.social,Healthcare,healthcare,false -plus,newsmast.social,History,history,false -plus,newsmast.social,Humanities,humanities,false -plus,newsmast.social,Humour,humour,false -plus,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false -plus,newsmast.social,Immigrants Rights,immigrants_rights,false -plus,newsmast.social,Indigenous Peoples,indigenous_peoples,false -plus,newsmast.social,Law & Justice,law_justice,false -plus,newsmast.social,LGBTQ+,lgbtq,false -plus,newsmast.social,Markets & Finance,markets_finance,false -plus,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false -plus,newsmast.social,Movies,movies,false -plus,newsmast.social,Music,music,false -plus,newsmast.social,Nature & Wildlife,nature_wildlife,false -plus,newsmast.social,Journalism & Comment,news_comment_data,false -plus,newsmast.social,Performing Arts,performing_arts,false -plus,newsmast.social,Pets,pets,false -plus,newsmast.social,Philosophy,philosophy,false -plus,newsmast.social,Photography,photography,false -plus,newsmast.social,Politics,politics,false -plus,newsmast.social,Poverty & Inequality,poverty_inequality,false -plus,newsmast.social,Programming,programming,false -plus,newsmast.social,Puzzles,puzzles,false -plus,newsmast.social,Social Media,social_media,false -plus,newsmast.social,Social Sciences,social_sciences,false -plus,newsmast.social,Technology,technology,false -plus,newsmast.social,Travel,travel,false -plus,newsmast.social,TV & Radio,tv_radio,false -plus,newsmast.social,Ukraine Invasion,ukraine_invasion,false -plus,newsmast.social,US Politics,us_politics,false -plus,newsmast.social,Visual Arts,visual_arts,false -plus,newsmast.social,Weather,weather,false -plus,newsmast.social,Women’s Voices,women_voices,false -plus,newsmast.social,Workers Rights,workers_rights,false -jt1p5,newsmast.social,Democracy & Human Rights,democracy_human_rights,true -jt1p5,newsmast.social,Government & Policy,government_policy,false -jt1p5,newsmast.social,Law & Justice,law_justice,false -jt1p5,newsmast.social,Politics,politics,false -jt1p5,newsmast.social,US Politics,us_politics,false -SilverRainbow,newsmast.social,History,history,false -SilverRainbow,newsmast.social,Programming,programming,false -SilverRainbow,newsmast.social,Science,science,true -SilverRainbow,newsmast.social,Space,space,false -SilverRainbow,newsmast.social,Technology,technology,false -Empiricism,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false -Empiricism,newsmast.social,Biology,biology,false -Empiricism,newsmast.social,Chemistry,chemistry,false -Empiricism,newsmast.social,Climate change,climate_change,false -Empiricism,newsmast.social,Energy & Pollution,energy_pollution,false -Empiricism,newsmast.social,Environment,environment,false -Empiricism,newsmast.social,Mathematics,mathematics,false -Empiricism,newsmast.social,Philosophy,philosophy,false -Empiricism,newsmast.social,Physics,physics,false -Empiricism,newsmast.social,Science,science,true -Empiricism,newsmast.social,Social Sciences,social_sciences,false -Empiricism,newsmast.social,Space,space,false -Eklektikos,newsmast.social,Academia & Research,academia_research,false -Eklektikos,newsmast.social,AI,ai,false -Eklektikos,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false -Eklektikos,newsmast.social,Biology,biology,false -Eklektikos,newsmast.social,Books & Literature,books_literature,false -Eklektikos,newsmast.social,Breaking News,breaking_news,true -Eklektikos,newsmast.social,Business,business,false -Eklektikos,newsmast.social,Chemistry,chemistry,false -Eklektikos,newsmast.social,Climate change,climate_change,false -Eklektikos,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -Eklektikos,newsmast.social,Energy & Pollution,energy_pollution,false -Eklektikos,newsmast.social,Engineering,engineering,false -Eklektikos,newsmast.social,Environment,environment,false -Eklektikos,newsmast.social,Government & Policy,government_policy,false -Eklektikos,newsmast.social,Healthcare,healthcare,false -Eklektikos,newsmast.social,History,history,false -Eklektikos,newsmast.social,Humanities,humanities,false -Eklektikos,newsmast.social,Humour,humour,false -Eklektikos,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false -Eklektikos,newsmast.social,Law & Justice,law_justice,false -Eklektikos,newsmast.social,Markets & Finance,markets_finance,false -Eklektikos,newsmast.social,Mathematics,mathematics,false -Eklektikos,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false -Eklektikos,newsmast.social,Movies,movies,false -Eklektikos,newsmast.social,Nature & Wildlife,nature_wildlife,false -Eklektikos,newsmast.social,Journalism & Comment,news_comment_data,false -Eklektikos,newsmast.social,Philosophy,philosophy,false -Eklektikos,newsmast.social,Physics,physics,false -Eklektikos,newsmast.social,Politics,politics,false -Eklektikos,newsmast.social,Poverty & Inequality,poverty_inequality,false -Eklektikos,newsmast.social,Programming,programming,false -Eklektikos,newsmast.social,Puzzles,puzzles,false -Eklektikos,newsmast.social,Science,science,false -Eklektikos,newsmast.social,Social Media,social_media,false -Eklektikos,newsmast.social,Social Sciences,social_sciences,false -Eklektikos,newsmast.social,Space,space,false -Eklektikos,newsmast.social,Sport,sport,false -Eklektikos,newsmast.social,Technology,technology,false -Eklektikos,newsmast.social,TV & Radio,tv_radio,false -Eklektikos,newsmast.social,US Politics,us_politics,false -Eklektikos,newsmast.social,Workers Rights,workers_rights,false -FamilyLawExpert,newsmast.social,Breaking News,breaking_news,false -FamilyLawExpert,newsmast.social,Democracy & Human Rights,democracy_human_rights,true -FamilyLawExpert,newsmast.social,Humanities,humanities,false -FamilyLawExpert,newsmast.social,Poverty & Inequality,poverty_inequality,false -FamilyLawExpert,newsmast.social,Social Media,social_media,false -FamilyLawExpert,newsmast.social,Social Sciences,social_sciences,false -OFMagazine,newsmast.social,Breaking News,breaking_news,false -OFMagazine,newsmast.social,History,history,false -OFMagazine,newsmast.social,Music,music,false -OFMagazine,newsmast.social,Journalism & Comment,news_comment_data,true -OFMagazine,newsmast.social,Social Media,social_media,false -OFMagazine,newsmast.social,Business,business,false -Startupradio,newsmast.social,AI,ai,false -Startupradio,newsmast.social,Business,business,false -Startupradio,newsmast.social,Engineering,engineering,false -Startupradio,newsmast.social,Markets & Finance,markets_finance,false -Startupradio,newsmast.social,Programming,programming,false -Startupradio,newsmast.social,Technology,technology,true -Startupradio,newsmast.social,Workers Rights,workers_rights,false -thejustinto,newsmast.social,AI,ai,false -thejustinto,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false -thejustinto,newsmast.social,Biology,biology,false -thejustinto,newsmast.social,Breaking News,breaking_news,false -thejustinto,newsmast.social,Chemistry,chemistry,false -thejustinto,newsmast.social,Climate change,climate_change,false -thejustinto,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -thejustinto,newsmast.social,Energy & Pollution,energy_pollution,false -thejustinto,newsmast.social,Engineering,engineering,true -thejustinto,newsmast.social,Environment,environment,false -thejustinto,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false -thejustinto,newsmast.social,Mathematics,mathematics,false -thejustinto,newsmast.social,Journalism & Comment,news_comment_data,false -thejustinto,newsmast.social,Physics,physics,false -thejustinto,newsmast.social,Poverty & Inequality,poverty_inequality,false -thejustinto,newsmast.social,Programming,programming,false -thejustinto,newsmast.social,Science,science,false -thejustinto,newsmast.social,Social Media,social_media,false -thejustinto,newsmast.social,Space,space,false -thejustinto,newsmast.social,Technology,technology,false -thejustinto,newsmast.social,Ukraine Invasion,ukraine_invasion,false -thejustinto,newsmast.social,Weather,weather,false -Toex,newsmast.social,Breaking News,breaking_news,false -Toex,newsmast.social,Science,science,true -Toex,newsmast.social,Social Media,social_media,false -Toex,newsmast.social,Space,space,false -Toex,newsmast.social,Weather,weather,false -vlp00,newsmast.social,Breaking News,breaking_news,false -vlp00,newsmast.social,Engineering,engineering,false -vlp00,newsmast.social,Journalism & Comment,news_comment_data,false -vlp00,newsmast.social,Programming,programming,false -vlp00,newsmast.social,Social Media,social_media,false -vlp00,newsmast.social,Technology,technology,false -vlp00,newsmast.social,Ukraine Invasion,ukraine_invasion,false -vlp00,newsmast.social,Weather,weather,false -vlp00,newsmast.social,AI,ai,true -vlp00,newsmast.social,US Politics,us_politics,false -vlp00,newsmast.social,Government & Policy,government_policy,false -vlp00,newsmast.social,Politics,politics,false -vlp00,newsmast.social,Academia & Research,academia_research,false -vlp00,newsmast.social,Healthcare,healthcare,false -vlp00,newsmast.social,Law & Justice,law_justice,false -vlp00,newsmast.social,Markets & Finance,markets_finance,false -vlp00,newsmast.social,Business,business,false -vlp00,newsmast.social,Workers Rights,workers_rights,false -mombian,newsmast.social,Government & Policy,government_policy,false -mombian,newsmast.social,Activism & Civil Rights,activism_civil_rights,false -mombian,newsmast.social,Books & Literature,books_literature,false -mombian,newsmast.social,Food & Drink,food_drink,false -mombian,newsmast.social,History,history,false -mombian,newsmast.social,LGBTQ+,lgbtq,true -mombian,newsmast.social,Women’s Voices,women_voices,false -mombian,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -exakat,newsmast.social,Engineering,engineering,false -exakat,newsmast.social,Mathematics,mathematics,false -exakat,newsmast.social,Physics,physics,false -exakat,newsmast.social,Programming,programming,true -exakat,newsmast.social,Space,space,false -sitothebo,newsmast.social,AI,ai,false -sitothebo,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -sitothebo,newsmast.social,Engineering,engineering,false -sitothebo,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false -sitothebo,newsmast.social,Journalism & Comment,news_comment_data,false -sitothebo,newsmast.social,Poverty & Inequality,poverty_inequality,false -sitothebo,newsmast.social,Programming,programming,false -sitothebo,newsmast.social,Social Media,social_media,false -sitothebo,newsmast.social,Technology,technology,false -sitothebo,newsmast.social,Ukraine Invasion,ukraine_invasion,false -sitothebo,newsmast.social,Weather,weather,false -sitothebo,newsmast.social,Breaking News,breaking_news,true -gospelsong,newsmast.social,Activism & Civil Rights,activism_civil_rights,false -gospelsong,newsmast.social,Black Voices,black_voices,false -gospelsong,newsmast.social,Breaking News,breaking_news,true -gospelsong,newsmast.social,Business,business,false -gospelsong,newsmast.social,Creative Arts,creative_arts,false -gospelsong,newsmast.social,Disabled Voices,disabled_voices,false -gospelsong,newsmast.social,Food & Drink,food_drink,false -gospelsong,newsmast.social,Football,football,false -gospelsong,newsmast.social,Humour,humour,false -gospelsong,newsmast.social,Immigrants Rights,immigrants_rights,false -gospelsong,newsmast.social,Indigenous Peoples,indigenous_peoples,false -gospelsong,newsmast.social,LGBTQ+,lgbtq,false -gospelsong,newsmast.social,Markets & Finance,markets_finance,false -gospelsong,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false -gospelsong,newsmast.social,Nature & Wildlife,nature_wildlife,false -gospelsong,newsmast.social,Journalism & Comment,news_comment_data,false -gospelsong,newsmast.social,Pets,pets,false -gospelsong,newsmast.social,Puzzles,puzzles,false -gospelsong,newsmast.social,Social Media,social_media,false -gospelsong,newsmast.social,Sport,sport,false -gospelsong,newsmast.social,Travel,travel,false -gospelsong,newsmast.social,Ukraine Invasion,ukraine_invasion,false -gospelsong,newsmast.social,US Sport,us_sport,false -gospelsong,newsmast.social,Weather,weather,false -gospelsong,newsmast.social,Women’s Voices,women_voices,false -gospelsong,newsmast.social,Workers Rights,workers_rights,false -msafaksari,newsmast.social,AI,ai,true -msafaksari,newsmast.social,History,history,false -msafaksari,newsmast.social,Movies,movies,false -msafaksari,newsmast.social,Photography,photography,false -msafaksari,newsmast.social,Social Sciences,social_sciences,false -VaniaG,newsmast.social,Breaking News,breaking_news,true -VaniaG,newsmast.social,Government & Policy,government_policy,false -VaniaG,newsmast.social,Healthcare,healthcare,false -VaniaG,newsmast.social,Science,science,false -VaniaG,newsmast.social,Ukraine Invasion,ukraine_invasion,false -DadeMutphy,newsmast.social,AI,ai,false -DadeMutphy,newsmast.social,Biology,biology,false -DadeMutphy,newsmast.social,Breaking News,breaking_news,true -DadeMutphy,newsmast.social,Chemistry,chemistry,false -DadeMutphy,newsmast.social,Engineering,engineering,false -DadeMutphy,newsmast.social,Mathematics,mathematics,false -DadeMutphy,newsmast.social,Journalism & Comment,news_comment_data,false -DadeMutphy,newsmast.social,Physics,physics,false -DadeMutphy,newsmast.social,Programming,programming,false -DadeMutphy,newsmast.social,Science,science,false -DadeMutphy,newsmast.social,Social Media,social_media,false -DadeMutphy,newsmast.social,Space,space,false -DadeMutphy,newsmast.social,Technology,technology,false -DadeMutphy,newsmast.social,Ukraine Invasion,ukraine_invasion,false -DadeMutphy,newsmast.social,Weather,weather,false -strayegg,newsmast.social,AI,ai,false -strayegg,newsmast.social,Biology,biology,false -strayegg,newsmast.social,Chemistry,chemistry,false -strayegg,newsmast.social,Creative Arts,creative_arts,false -strayegg,newsmast.social,Engineering,engineering,false -strayegg,newsmast.social,Food & Drink,food_drink,false -strayegg,newsmast.social,History,history,false -strayegg,newsmast.social,Humanities,humanities,false -strayegg,newsmast.social,Humour,humour,false -strayegg,newsmast.social,LGBTQ+,lgbtq,false -strayegg,newsmast.social,Mathematics,mathematics,false -strayegg,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false -strayegg,newsmast.social,Nature & Wildlife,nature_wildlife,false -strayegg,newsmast.social,Pets,pets,false -strayegg,newsmast.social,Philosophy,philosophy,false -strayegg,newsmast.social,Physics,physics,false -strayegg,newsmast.social,Programming,programming,true -strayegg,newsmast.social,Science,science,false -strayegg,newsmast.social,Social Sciences,social_sciences,false -strayegg,newsmast.social,Space,space,false -strayegg,newsmast.social,Technology,technology,false -strayegg,newsmast.social,Travel,travel,false -metilli,newsmast.social,AI,ai,false -metilli,newsmast.social,Architecture & Design,architecture_design,false -metilli,newsmast.social,Biology,biology,false -metilli,newsmast.social,Books & Literature,books_literature,false -metilli,newsmast.social,Breaking News,breaking_news,false -metilli,newsmast.social,Chemistry,chemistry,false -metilli,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -metilli,newsmast.social,Engineering,engineering,false -metilli,newsmast.social,Gaming,gaming,false -metilli,newsmast.social,Government & Policy,government_policy,false -metilli,newsmast.social,Healthcare,healthcare,false -metilli,newsmast.social,History,history,false -metilli,newsmast.social,Humanities,humanities,false -metilli,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false -metilli,newsmast.social,Law & Justice,law_justice,false -metilli,newsmast.social,Mathematics,mathematics,false -metilli,newsmast.social,Movies,movies,false -metilli,newsmast.social,Music,music,false -metilli,newsmast.social,Journalism & Comment,news_comment_data,false -metilli,newsmast.social,Performing Arts,performing_arts,false -metilli,newsmast.social,Philosophy,philosophy,false -metilli,newsmast.social,Photography,photography,false -metilli,newsmast.social,Physics,physics,false -metilli,newsmast.social,Politics,politics,false -metilli,newsmast.social,Poverty & Inequality,poverty_inequality,false -metilli,newsmast.social,Programming,programming,false -metilli,newsmast.social,Science,science,false -metilli,newsmast.social,Social Media,social_media,false -metilli,newsmast.social,Social Sciences,social_sciences,false -metilli,newsmast.social,Space,space,false -metilli,newsmast.social,Technology,technology,false -metilli,newsmast.social,TV & Radio,tv_radio,false -metilli,newsmast.social,Ukraine Invasion,ukraine_invasion,false -metilli,newsmast.social,US Politics,us_politics,false -metilli,newsmast.social,Visual Arts,visual_arts,false -metilli,newsmast.social,Weather,weather,false -metilli,newsmast.social,Academia & Research,academia_research,true -justinw,newsmast.social,Academia & Research,academia_research,false -justinw,newsmast.social,Activism & Civil Rights,activism_civil_rights,false -justinw,newsmast.social,AI,ai,false -justinw,newsmast.social,Black Voices,black_voices,false -justinw,newsmast.social,Books & Literature,books_literature,false -justinw,newsmast.social,Breaking News,breaking_news,false -justinw,newsmast.social,Climate change,climate_change,false -justinw,newsmast.social,Creative Arts,creative_arts,false -justinw,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -justinw,newsmast.social,Disabled Voices,disabled_voices,false -justinw,newsmast.social,Energy & Pollution,energy_pollution,false -justinw,newsmast.social,Environment,environment,false -justinw,newsmast.social,Food & Drink,food_drink,false -justinw,newsmast.social,Government & Policy,government_policy,false -justinw,newsmast.social,Healthcare,healthcare,false -justinw,newsmast.social,History,history,false -justinw,newsmast.social,Humanities,humanities,false -justinw,newsmast.social,Humour,humour,false -justinw,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false -justinw,newsmast.social,Immigrants Rights,immigrants_rights,false -justinw,newsmast.social,Indigenous Peoples,indigenous_peoples,false -justinw,newsmast.social,Law & Justice,law_justice,false -justinw,newsmast.social,LGBTQ+,lgbtq,false -justinw,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false -justinw,newsmast.social,Movies,movies,true -justinw,newsmast.social,Music,music,false -justinw,newsmast.social,Journalism & Comment,news_comment_data,false -justinw,newsmast.social,Performing Arts,performing_arts,false -justinw,newsmast.social,Pets,pets,false -justinw,newsmast.social,Philosophy,philosophy,false -justinw,newsmast.social,Photography,photography,false -justinw,newsmast.social,Politics,politics,false -justinw,newsmast.social,Poverty & Inequality,poverty_inequality,false -justinw,newsmast.social,Social Sciences,social_sciences,false -justinw,newsmast.social,Technology,technology,false -justinw,newsmast.social,Travel,travel,false -justinw,newsmast.social,TV & Radio,tv_radio,false -justinw,newsmast.social,US Politics,us_politics,false -justinw,newsmast.social,Visual Arts,visual_arts,false -justinw,newsmast.social,Weather,weather,false -justinw,newsmast.social,Women’s Voices,women_voices,false -qurquma,newsmast.social,Movies,movies,false -qurquma,newsmast.social,Science,science,false -qurquma,newsmast.social,Sport,sport,false -qurquma,newsmast.social,US Sport,us_sport,false -qurquma,newsmast.social,Football,football,true -kevinbugati,newsmast.social,Academia & Research,academia_research,false -kevinbugati,newsmast.social,Biology,biology,false -kevinbugati,newsmast.social,Breaking News,breaking_news,true -kevinbugati,newsmast.social,Chemistry,chemistry,false -kevinbugati,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -kevinbugati,newsmast.social,Government & Policy,government_policy,false -kevinbugati,newsmast.social,Healthcare,healthcare,false -kevinbugati,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false -kevinbugati,newsmast.social,Law & Justice,law_justice,false -kevinbugati,newsmast.social,Mathematics,mathematics,false -kevinbugati,newsmast.social,Journalism & Comment,news_comment_data,false -kevinbugati,newsmast.social,Physics,physics,false -kevinbugati,newsmast.social,Politics,politics,false -kevinbugati,newsmast.social,Poverty & Inequality,poverty_inequality,false -kevinbugati,newsmast.social,Science,science,false -kevinbugati,newsmast.social,Social Media,social_media,false -kevinbugati,newsmast.social,Space,space,false -kevinbugati,newsmast.social,Ukraine Invasion,ukraine_invasion,false -kevinbugati,newsmast.social,US Politics,us_politics,false -kevinbugati,newsmast.social,Weather,weather,false -doctorambient,newsmast.social,Academia & Research,academia_research,false -doctorambient,newsmast.social,Chemistry,chemistry,false -doctorambient,newsmast.social,History,history,false -doctorambient,newsmast.social,Physics,physics,false -doctorambient,newsmast.social,Science,science,false -doctorambient,newsmast.social,Social Sciences,social_sciences,false -doctorambient,newsmast.social,Mathematics,mathematics,true -atom,newsmast.social,Biology,biology,false -atom,newsmast.social,Chemistry,chemistry,false -atom,newsmast.social,Mathematics,mathematics,false -atom,newsmast.social,Physics,physics,false -atom,newsmast.social,Science,science,false -atom,newsmast.social,Space,space,false -atom,newsmast.social,Technology,technology,true -bartfaitamas,newsmast.social,AI,ai,false -bartfaitamas,newsmast.social,Biology,biology,false -bartfaitamas,newsmast.social,Chemistry,chemistry,false -bartfaitamas,newsmast.social,Climate change,climate_change,false -bartfaitamas,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -bartfaitamas,newsmast.social,Engineering,engineering,false -bartfaitamas,newsmast.social,Environment,environment,false -bartfaitamas,newsmast.social,Government & Policy,government_policy,false -bartfaitamas,newsmast.social,Mathematics,mathematics,false -bartfaitamas,newsmast.social,Physics,physics,false -bartfaitamas,newsmast.social,Politics,politics,false -bartfaitamas,newsmast.social,Poverty & Inequality,poverty_inequality,false -bartfaitamas,newsmast.social,Programming,programming,true -bartfaitamas,newsmast.social,Science,science,false -bartfaitamas,newsmast.social,Space,space,false -bartfaitamas,newsmast.social,Technology,technology,false -roggim,newsmast.social,Breaking News,breaking_news,true -roggim,newsmast.social,Football,football,false -roggim,newsmast.social,Humour,humour,false -roggim,newsmast.social,Social Media,social_media,false -roggim,newsmast.social,Travel,travel,false -yemyatthu_cs,newsmast.social,AI,ai,false -yemyatthu_cs,newsmast.social,Engineering,engineering,false -yemyatthu_cs,newsmast.social,Football,football,true -yemyatthu_cs,newsmast.social,Programming,programming,false -yemyatthu_cs,newsmast.social,Sport,sport,false -yemyatthu_cs,newsmast.social,Technology,technology,false -yemyatthu_cs,newsmast.social,US Sport,us_sport,false -realgnomidad,newsmast.social,Academia & Research,academia_research,false -realgnomidad,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -realgnomidad,newsmast.social,Government & Policy,government_policy,true -realgnomidad,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false -realgnomidad,newsmast.social,Law & Justice,law_justice,false -realgnomidad,newsmast.social,Politics,politics,false -realgnomidad,newsmast.social,Poverty & Inequality,poverty_inequality,false -realgnomidad,newsmast.social,US Politics,us_politics,false -niroran,newsmast.social,AI,ai,false -niroran,newsmast.social,Breaking News,breaking_news,true -niroran,newsmast.social,Business,business,false -niroran,newsmast.social,Climate change,climate_change,false -niroran,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -niroran,newsmast.social,Environment,environment,false -niroran,newsmast.social,Government & Policy,government_policy,false -niroran,newsmast.social,Markets & Finance,markets_finance,false -niroran,newsmast.social,Movies,movies,false -niroran,newsmast.social,Music,music,false -niroran,newsmast.social,Journalism & Comment,news_comment_data,false -niroran,newsmast.social,Politics,politics,false -niroran,newsmast.social,Science,science,false -niroran,newsmast.social,Social Media,social_media,false -niroran,newsmast.social,Space,space,false -niroran,newsmast.social,Technology,technology,false -niroran,newsmast.social,TV & Radio,tv_radio,false -niroran,newsmast.social,US Politics,us_politics,false -evil_k,newsmast.social,History,history,false -evil_k,newsmast.social,Philosophy,philosophy,false -evil_k,newsmast.social,Physics,physics,false -evil_k,newsmast.social,Science,science,false -evil_k,newsmast.social,Social Sciences,social_sciences,false -evil_k,newsmast.social,Space,space,true -group,newsmast.social,Breaking News,breaking_news,true -m0bi,newsmast.social,Breaking News,breaking_news,false -m0bi,newsmast.social,Journalism & Comment,news_comment_data,false -m0bi,newsmast.social,Programming,programming,true -m0bi,newsmast.social,Science,science,false -m0bi,newsmast.social,Space,space,false -m0bi,newsmast.social,Ukraine Invasion,ukraine_invasion,false -m0bi,newsmast.social,Engineering,engineering,false -m0bi,newsmast.social,AI,ai,false -emenikeng,newsmast.social,AI,ai,false -emenikeng,newsmast.social,Business,business,false -emenikeng,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -emenikeng,newsmast.social,Engineering,engineering,false -emenikeng,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false -emenikeng,newsmast.social,Markets & Finance,markets_finance,true -emenikeng,newsmast.social,Poverty & Inequality,poverty_inequality,false -emenikeng,newsmast.social,Programming,programming,false -emenikeng,newsmast.social,Technology,technology,false -emenikeng,newsmast.social,Workers Rights,workers_rights,false -frejusdabord,newsmast.social,Academia & Research,academia_research,false -frejusdabord,newsmast.social,Government & Policy,government_policy,false -frejusdabord,newsmast.social,Healthcare,healthcare,false -frejusdabord,newsmast.social,Law & Justice,law_justice,false -frejusdabord,newsmast.social,Politics,politics,true -frejusdabord,newsmast.social,US Politics,us_politics,false -ritesh,newsmast.social,Biology,biology,false -ritesh,newsmast.social,Food & Drink,food_drink,false -ritesh,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false -ritesh,newsmast.social,Social Media,social_media,false -ritesh,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,true -testpp34,newsmast.social,Academia & Research,academia_research,false -testpp34,newsmast.social,Government & Policy,government_policy,true -testpp34,newsmast.social,Healthcare,healthcare,false -testpp34,newsmast.social,Law & Justice,law_justice,false -testpp34,newsmast.social,Politics,politics,false -testpp34,newsmast.social,US Politics,us_politics,false -islandknabo,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false -islandknabo,newsmast.social,Biology,biology,false -islandknabo,newsmast.social,Breaking News,breaking_news,false -islandknabo,newsmast.social,Chemistry,chemistry,false -islandknabo,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,true -islandknabo,newsmast.social,Mathematics,mathematics,false -islandknabo,newsmast.social,Journalism & Comment,news_comment_data,false -islandknabo,newsmast.social,Physics,physics,false -islandknabo,newsmast.social,Science,science,false -islandknabo,newsmast.social,Space,space,false -Alex_Y,newsmast.social,Architecture & Design,architecture_design,false -Alex_Y,newsmast.social,Breaking News,breaking_news,false -Alex_Y,newsmast.social,Movies,movies,false -Alex_Y,newsmast.social,Physics,physics,false -Alex_Y,newsmast.social,Ukraine Invasion,ukraine_invasion,true -peterthepainter,newsmast.social,Activism & Civil Rights,activism_civil_rights,false -peterthepainter,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -peterthepainter,newsmast.social,History,history,false -peterthepainter,newsmast.social,Humanities,humanities,false -peterthepainter,newsmast.social,Journalism & Comment,news_comment_data,false -peterthepainter,newsmast.social,Philosophy,philosophy,false -peterthepainter,newsmast.social,Ukraine Invasion,ukraine_invasion,false -peterthepainter,newsmast.social,Breaking News,breaking_news,true -brasmus,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false -brasmus,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -brasmus,newsmast.social,Environment,environment,false -brasmus,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false -brasmus,newsmast.social,Journalism & Comment,news_comment_data,false -brasmus,newsmast.social,Physics,physics,false -brasmus,newsmast.social,Science,science,false -brasmus,newsmast.social,Weather,weather,false -brasmus,newsmast.social,Energy & Pollution,energy_pollution,false -brasmus,newsmast.social,Climate change,climate_change,true -marcelo,newsmast.social,Democracy & Human Rights,democracy_human_rights,true -marcelo,newsmast.social,History,history,false -marcelo,newsmast.social,Journalism & Comment,news_comment_data,false -marcelo,newsmast.social,Philosophy,philosophy,false -marcelo,newsmast.social,Politics,politics,false -marcelo,newsmast.social,Social Sciences,social_sciences,false -marcelo,newsmast.social,Ukraine Invasion,ukraine_invasion,false -ruslan,newsmast.social,AI,ai,false -ruslan,newsmast.social,Architecture & Design,architecture_design,false -ruslan,newsmast.social,Biology,biology,false -ruslan,newsmast.social,Books & Literature,books_literature,false -ruslan,newsmast.social,Business,business,false -ruslan,newsmast.social,Chemistry,chemistry,false -ruslan,newsmast.social,Creative Arts,creative_arts,false -ruslan,newsmast.social,Engineering,engineering,false -ruslan,newsmast.social,Food & Drink,food_drink,false -ruslan,newsmast.social,Gaming,gaming,false -ruslan,newsmast.social,History,history,false -ruslan,newsmast.social,Humanities,humanities,false -ruslan,newsmast.social,Humour,humour,false -ruslan,newsmast.social,Markets & Finance,markets_finance,false -ruslan,newsmast.social,Mathematics,mathematics,false -ruslan,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false -ruslan,newsmast.social,Movies,movies,false -ruslan,newsmast.social,Music,music,true -ruslan,newsmast.social,Nature & Wildlife,nature_wildlife,false -ruslan,newsmast.social,Performing Arts,performing_arts,false -ruslan,newsmast.social,Pets,pets,false -ruslan,newsmast.social,Philosophy,philosophy,false -ruslan,newsmast.social,Photography,photography,false -ruslan,newsmast.social,Physics,physics,false -ruslan,newsmast.social,Programming,programming,false -ruslan,newsmast.social,Puzzles,puzzles,false -ruslan,newsmast.social,Science,science,false -ruslan,newsmast.social,Social Sciences,social_sciences,false -ruslan,newsmast.social,Space,space,false -ruslan,newsmast.social,Technology,technology,false -ruslan,newsmast.social,Travel,travel,false -ruslan,newsmast.social,TV & Radio,tv_radio,false -ruslan,newsmast.social,Ukraine Invasion,ukraine_invasion,false -ruslan,newsmast.social,Visual Arts,visual_arts,false -ruslan,newsmast.social,Workers Rights,workers_rights,false -hermitary,newsmast.social,Breaking News,breaking_news,true -hermitary,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -hermitary,newsmast.social,Government & Policy,government_policy,false -hermitary,newsmast.social,Journalism & Comment,news_comment_data,false -hermitary,newsmast.social,Politics,politics,false -noisediver,newsmast.social,AI,ai,false -noisediver,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false -noisediver,newsmast.social,Biology,biology,false -noisediver,newsmast.social,Chemistry,chemistry,false -noisediver,newsmast.social,Climate change,climate_change,false -noisediver,newsmast.social,Energy & Pollution,energy_pollution,false -noisediver,newsmast.social,Engineering,engineering,false -noisediver,newsmast.social,Environment,environment,false -noisediver,newsmast.social,Mathematics,mathematics,false -noisediver,newsmast.social,Physics,physics,false -noisediver,newsmast.social,Programming,programming,false -noisediver,newsmast.social,Science,science,true -noisediver,newsmast.social,Space,space,false -noisediver,newsmast.social,Technology,technology,false -noisediver,newsmast.social,Ukraine Invasion,ukraine_invasion,false -noisediver,newsmast.social,Philosophy,philosophy,false -noisediver,newsmast.social,Academia & Research,academia_research,false -noisediver,newsmast.social,Social Sciences,social_sciences,false -noisediver,newsmast.social,Poverty & Inequality,poverty_inequality,false -noisediver,newsmast.social,Social Media,social_media,false -noisediver,newsmast.social,Disabled Voices,disabled_voices,false -noisediver,newsmast.social,Healthcare,healthcare,false -noisediver,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false -noisediver,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false -HC_History,newsmast.social,Activism & Civil Rights,activism_civil_rights,false -HC_History,newsmast.social,Black Voices,black_voices,false -HC_History,newsmast.social,History,history,true -HC_History,newsmast.social,Humanities,humanities,false -HC_History,newsmast.social,Philosophy,philosophy,false -HC_History,newsmast.social,Social Sciences,social_sciences,false -HC_History,newsmast.social,Women’s Voices,women_voices,false -HC_History,newsmast.social,Books & Literature,books_literature,false -HC_History,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false -HC_History,newsmast.social,Travel,travel,false -HC_History,newsmast.social,Markets & Finance,markets_finance,false -HC_History,newsmast.social,Business,business,false -HC_History,newsmast.social,Climate change,climate_change,false -Andy,newsmast.social,Weather,weather,false -Andy,newsmast.social,Politics,politics,false -Andy,newsmast.social,Ukraine Invasion,ukraine_invasion,false -Andy,newsmast.social,Journalism & Comment,news_comment_data,false -Andy,newsmast.social,Breaking News,breaking_news,true -Andy,newsmast.social,Business,business,false -Andy,newsmast.social,Environment,environment,false -Andy,newsmast.social,Football,football,false -Andy,newsmast.social,Science,science,false -Andy,newsmast.social,Sport,sport,false -bismillah345,newsmast.social,AI,ai,true -bismillah345,newsmast.social,Breaking News,breaking_news,false -bismillah345,newsmast.social,Engineering,engineering,false -bismillah345,newsmast.social,Journalism & Comment,news_comment_data,false -bismillah345,newsmast.social,Programming,programming,false -bismillah345,newsmast.social,Social Media,social_media,false -bismillah345,newsmast.social,Technology,technology,false -bismillah345,newsmast.social,Ukraine Invasion,ukraine_invasion,false -bismillah345,newsmast.social,Weather,weather,false -chidreams,newsmast.social,Gaming,gaming,false -chidreams,newsmast.social,AI,ai,false -chidreams,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -chidreams,newsmast.social,Engineering,engineering,false -chidreams,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false -chidreams,newsmast.social,Poverty & Inequality,poverty_inequality,false -chidreams,newsmast.social,Programming,programming,false -chidreams,newsmast.social,Technology,technology,true -wfryer,newsmast.social,AI,ai,false -wfryer,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -wfryer,newsmast.social,History,history,true -wfryer,newsmast.social,Philosophy,philosophy,false -wfryer,newsmast.social,Social Sciences,social_sciences,false -darkjamal,newsmast.social,Journalism & Comment,news_comment_data,true -darkjamal,newsmast.social,Social Media,social_media,false -darkjamal,newsmast.social,Ukraine Invasion,ukraine_invasion,false -darkjamal,newsmast.social,Weather,weather,false -darkjamal,newsmast.social,Photography,photography,false -darkjamal,newsmast.social,Travel,travel,false -darkjamal,newsmast.social,Science,science,false -Petinder,newsmast.social,Environment,environment,false -Petinder,newsmast.social,Humanities,humanities,false -Petinder,newsmast.social,Journalism & Comment,news_comment_data,false -Petinder,newsmast.social,Social Media,social_media,false -Petinder,newsmast.social,Social Sciences,social_sciences,true -ravi101,newsmast.social,AI,ai,false -ravi101,newsmast.social,Business,business,false -ravi101,newsmast.social,Markets & Finance,markets_finance,false -ravi101,newsmast.social,Science,science,false -ravi101,newsmast.social,Technology,technology,true -Kschroeder,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false -Kschroeder,newsmast.social,Climate change,climate_change,false -Kschroeder,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -Kschroeder,newsmast.social,Space,space,true -Kschroeder,newsmast.social,Technology,technology,false -mattmoehr,newsmast.social,Books & Literature,books_literature,false -mattmoehr,newsmast.social,Football,football,false -mattmoehr,newsmast.social,History,history,false -mattmoehr,newsmast.social,Humanities,humanities,false -mattmoehr,newsmast.social,Mathematics,mathematics,false -mattmoehr,newsmast.social,Philosophy,philosophy,false -mattmoehr,newsmast.social,Photography,photography,false -mattmoehr,newsmast.social,Physics,physics,false -mattmoehr,newsmast.social,Social Sciences,social_sciences,true -mattmoehr,newsmast.social,Space,space,false -mattmoehr,newsmast.social,Sport,sport,false -mattmoehr,newsmast.social,US Sport,us_sport,false -mattmoehr,newsmast.social,Visual Arts,visual_arts,false -travtasy,newsmast.social,Architecture & Design,architecture_design,false -travtasy,newsmast.social,Food & Drink,food_drink,false -travtasy,newsmast.social,Photography,photography,false -travtasy,newsmast.social,Travel,travel,true -travtasy,newsmast.social,Visual Arts,visual_arts,false -yethiha_codigo,newsmast.social,Breaking News,breaking_news,true -yethiha_codigo,newsmast.social,Journalism & Comment,news_comment_data,false -yethiha_codigo,newsmast.social,Social Media,social_media,false -yethiha_codigo,newsmast.social,Ukraine Invasion,ukraine_invasion,false -yethiha_codigo,newsmast.social,Weather,weather,false -chino,newsmast.social,AI,ai,false -chino,newsmast.social,Breaking News,breaking_news,true -chino,newsmast.social,Business,business,false -chino,newsmast.social,Markets & Finance,markets_finance,false -chino,newsmast.social,Science,science,false -chino,newsmast.social,Space,space,false -chino,newsmast.social,Technology,technology,false -Caramel,newsmast.social,AI,ai,false -Caramel,newsmast.social,Movies,movies,false -Caramel,newsmast.social,Music,music,false -Caramel,newsmast.social,Performing Arts,performing_arts,false -Caramel,newsmast.social,Photography,photography,false -Caramel,newsmast.social,Programming,programming,true -Caramel,newsmast.social,Technology,technology,false -Caramel,newsmast.social,TV & Radio,tv_radio,false -Caramel,newsmast.social,Visual Arts,visual_arts,false -catherinerhyde,newsmast.social,Energy & Pollution,energy_pollution,false -catherinerhyde,newsmast.social,Physics,physics,false -catherinerhyde,newsmast.social,Science,science,false -catherinerhyde,newsmast.social,Space,space,true -catherinerhyde,newsmast.social,Technology,technology,false -DarkAlomox,newsmast.social,Architecture & Design,architecture_design,true -DarkAlomox,newsmast.social,Books & Literature,books_literature,false -DarkAlomox,newsmast.social,Gaming,gaming,false -DarkAlomox,newsmast.social,Movies,movies,false -DarkAlomox,newsmast.social,Music,music,false -nexstepphysio,newsmast.social,Breaking News,breaking_news,true -nexstepphysio,newsmast.social,Business,business,false -nexstepphysio,newsmast.social,Markets & Finance,markets_finance,false -nexstepphysio,newsmast.social,Journalism & Comment,news_comment_data,false -nexstepphysio,newsmast.social,Social Media,social_media,false -nexstepphysio,newsmast.social,Ukraine Invasion,ukraine_invasion,false -nexstepphysio,newsmast.social,Weather,weather,false -nexstepphysio,newsmast.social,Workers Rights,workers_rights,false -minusgefuel,newsmast.social,AI,ai,false -minusgefuel,newsmast.social,Engineering,engineering,false -minusgefuel,newsmast.social,Humour,humour,false -minusgefuel,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false -minusgefuel,newsmast.social,Pets,pets,false -minusgefuel,newsmast.social,Programming,programming,false -minusgefuel,newsmast.social,Social Media,social_media,false -minusgefuel,newsmast.social,Technology,technology,true -Hayleyk1970,newsmast.social,Architecture & Design,architecture_design,false -Hayleyk1970,newsmast.social,Books & Literature,books_literature,false -Hayleyk1970,newsmast.social,Breaking News,breaking_news,false -Hayleyk1970,newsmast.social,Creative Arts,creative_arts,false -Hayleyk1970,newsmast.social,Food & Drink,food_drink,false -Hayleyk1970,newsmast.social,Gaming,gaming,false -Hayleyk1970,newsmast.social,Humour,humour,false -Hayleyk1970,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false -Hayleyk1970,newsmast.social,Movies,movies,false -Hayleyk1970,newsmast.social,Music,music,false -Hayleyk1970,newsmast.social,Nature & Wildlife,nature_wildlife,false -Hayleyk1970,newsmast.social,Performing Arts,performing_arts,false -Hayleyk1970,newsmast.social,Pets,pets,false -Hayleyk1970,newsmast.social,Photography,photography,false -Hayleyk1970,newsmast.social,Puzzles,puzzles,false -Hayleyk1970,newsmast.social,Social Media,social_media,false -Hayleyk1970,newsmast.social,Travel,travel,false -Hayleyk1970,newsmast.social,TV & Radio,tv_radio,false -Hayleyk1970,newsmast.social,Visual Arts,visual_arts,false -Hayleyk1970,newsmast.social,Weather,weather,true -Hayleyk1970,newsmast.social,Women’s Voices,women_voices,false -wbbdaily,newsmast.social,AI,ai,false -wbbdaily,newsmast.social,Architecture & Design,architecture_design,false -wbbdaily,newsmast.social,Books & Literature,books_literature,false -wbbdaily,newsmast.social,Creative Arts,creative_arts,false -wbbdaily,newsmast.social,Engineering,engineering,false -wbbdaily,newsmast.social,Food & Drink,food_drink,false -wbbdaily,newsmast.social,Football,football,false -wbbdaily,newsmast.social,Gaming,gaming,false -wbbdaily,newsmast.social,History,history,false -wbbdaily,newsmast.social,Humanities,humanities,false -wbbdaily,newsmast.social,Humour,humour,false -wbbdaily,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false -wbbdaily,newsmast.social,Movies,movies,false -wbbdaily,newsmast.social,Music,music,false -wbbdaily,newsmast.social,Nature & Wildlife,nature_wildlife,false -wbbdaily,newsmast.social,Performing Arts,performing_arts,false -wbbdaily,newsmast.social,Pets,pets,false -wbbdaily,newsmast.social,Philosophy,philosophy,false -wbbdaily,newsmast.social,Photography,photography,false -wbbdaily,newsmast.social,Programming,programming,false -wbbdaily,newsmast.social,Puzzles,puzzles,false -wbbdaily,newsmast.social,Social Sciences,social_sciences,false -wbbdaily,newsmast.social,Sport,sport,true -wbbdaily,newsmast.social,Technology,technology,false -wbbdaily,newsmast.social,Travel,travel,false -wbbdaily,newsmast.social,TV & Radio,tv_radio,false -wbbdaily,newsmast.social,US Sport,us_sport,false -wbbdaily,newsmast.social,Visual Arts,visual_arts,false -EiEi,newsmast.social,AI,ai,false -EiEi,newsmast.social,Biology,biology,false -EiEi,newsmast.social,Chemistry,chemistry,false -EiEi,newsmast.social,Engineering,engineering,false -EiEi,newsmast.social,Environment,environment,false -EiEi,newsmast.social,Mathematics,mathematics,false -EiEi,newsmast.social,Physics,physics,false -EiEi,newsmast.social,Programming,programming,false -EiEi,newsmast.social,Science,science,false -EiEi,newsmast.social,Space,space,false -EiEi,newsmast.social,Technology,technology,true -EngineerFinance,newsmast.social,Breaking News,breaking_news,false -EngineerFinance,newsmast.social,Creative Arts,creative_arts,false -EngineerFinance,newsmast.social,Food & Drink,food_drink,false -EngineerFinance,newsmast.social,Humour,humour,false -EngineerFinance,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false -EngineerFinance,newsmast.social,Nature & Wildlife,nature_wildlife,false -EngineerFinance,newsmast.social,Journalism & Comment,news_comment_data,true -EngineerFinance,newsmast.social,Pets,pets,false -EngineerFinance,newsmast.social,Puzzles,puzzles,false -EngineerFinance,newsmast.social,Social Media,social_media,false -EngineerFinance,newsmast.social,Travel,travel,false -EngineerFinance,newsmast.social,Ukraine Invasion,ukraine_invasion,false -EngineerFinance,newsmast.social,Weather,weather,false -spacealgae,newsmast.social,Academia & Research,academia_research,false -spacealgae,newsmast.social,AI,ai,false -spacealgae,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false -spacealgae,newsmast.social,Biology,biology,false -spacealgae,newsmast.social,Breaking News,breaking_news,false -spacealgae,newsmast.social,Chemistry,chemistry,false -spacealgae,newsmast.social,Climate change,climate_change,true -spacealgae,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -spacealgae,newsmast.social,Energy & Pollution,energy_pollution,false -spacealgae,newsmast.social,Engineering,engineering,false -spacealgae,newsmast.social,Environment,environment,false -spacealgae,newsmast.social,Government & Policy,government_policy,false -spacealgae,newsmast.social,Healthcare,healthcare,false -spacealgae,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false -spacealgae,newsmast.social,Law & Justice,law_justice,false -spacealgae,newsmast.social,Mathematics,mathematics,false -spacealgae,newsmast.social,Journalism & Comment,news_comment_data,false -spacealgae,newsmast.social,Physics,physics,false -spacealgae,newsmast.social,Politics,politics,false -spacealgae,newsmast.social,Poverty & Inequality,poverty_inequality,false -spacealgae,newsmast.social,Programming,programming,false -spacealgae,newsmast.social,Science,science,false -spacealgae,newsmast.social,Social Media,social_media,false -spacealgae,newsmast.social,Space,space,false -spacealgae,newsmast.social,Technology,technology,false -spacealgae,newsmast.social,Ukraine Invasion,ukraine_invasion,false -spacealgae,newsmast.social,US Politics,us_politics,false -spacealgae,newsmast.social,Weather,weather,false -SithuBo,newsmast.social,Biology,biology,false -SithuBo,newsmast.social,Chemistry,chemistry,false -SithuBo,newsmast.social,Football,football,false -SithuBo,newsmast.social,Mathematics,mathematics,false -SithuBo,newsmast.social,Journalism & Comment,news_comment_data,false -SithuBo,newsmast.social,Physics,physics,false -SithuBo,newsmast.social,Science,science,false -SithuBo,newsmast.social,Social Media,social_media,false -SithuBo,newsmast.social,Space,space,false -SithuBo,newsmast.social,Sport,sport,false -SithuBo,newsmast.social,Ukraine Invasion,ukraine_invasion,false -SithuBo,newsmast.social,US Sport,us_sport,false -SithuBo,newsmast.social,Weather,weather,false -SithuBo,newsmast.social,Breaking News,breaking_news,true -SithuBo,newsmast.social,AI,ai,false -SithuBo,newsmast.social,Programming,programming,false -SithuBo,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -SithuBo,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false -SithuBo,newsmast.social,Poverty & Inequality,poverty_inequality,false -SithuBo,newsmast.social,Government & Policy,government_policy,false -SithuBo,newsmast.social,Academia & Research,academia_research,false -SithuBo,newsmast.social,Healthcare,healthcare,false -SithuBo,newsmast.social,Law & Justice,law_justice,false -SithuBo,newsmast.social,Politics,politics,false -SithuBo,newsmast.social,US Politics,us_politics,false -SithuBo,newsmast.social,Environment,environment,false -SithuBo,newsmast.social,Climate change,climate_change,false -SithuBo,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false -SithuBo,newsmast.social,Energy & Pollution,energy_pollution,false -SithuBo,newsmast.social,Activism & Civil Rights,activism_civil_rights,false -SithuBo,newsmast.social,Black Voices,black_voices,false -SithuBo,newsmast.social,Disabled Voices,disabled_voices,false -SithuBo,newsmast.social,Immigrants Rights,immigrants_rights,false -SithuBo,newsmast.social,Indigenous Peoples,indigenous_peoples,false -SithuBo,newsmast.social,LGBTQ+,lgbtq,false -SithuBo,newsmast.social,Women’s Voices,women_voices,false -SithuBo,newsmast.social,Business,business,false -SithuBo,newsmast.social,Markets & Finance,markets_finance,false -SithuBo,newsmast.social,Workers Rights,workers_rights,false -SithuBo,newsmast.social,Technology,technology,false -SithuBo,newsmast.social,Engineering,engineering,false -SithuBo,newsmast.social,Humanities,humanities,false -SithuBo,newsmast.social,Social Sciences,social_sciences,false -SithuBo,newsmast.social,History,history,false -SithuBo,newsmast.social,Philosophy,philosophy,false -SithuBo,newsmast.social,Creative Arts,creative_arts,false -SithuBo,newsmast.social,Food & Drink,food_drink,false -SithuBo,newsmast.social,Humour,humour,false -SithuBo,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false -SithuBo,newsmast.social,Nature & Wildlife,nature_wildlife,false -SithuBo,newsmast.social,Pets,pets,false -SithuBo,newsmast.social,Puzzles,puzzles,false -SithuBo,newsmast.social,Travel,travel,false -SithuBo,newsmast.social,Architecture & Design,architecture_design,false -SithuBo,newsmast.social,Books & Literature,books_literature,false -SithuBo,newsmast.social,Gaming,gaming,false -SithuBo,newsmast.social,Movies,movies,false -SithuBo,newsmast.social,Music,music,false -SithuBo,newsmast.social,Performing Arts,performing_arts,false -SithuBo,newsmast.social,Photography,photography,false -SithuBo,newsmast.social,TV & Radio,tv_radio,false -SithuBo,newsmast.social,Visual Arts,visual_arts,false -SithuBo,newsmast.social,Private Community,private-community,false -djape11,newsmast.social,AI,ai,false -djape11,newsmast.social,Breaking News,breaking_news,false -djape11,newsmast.social,Climate change,climate_change,false -djape11,newsmast.social,Food & Drink,food_drink,false -djape11,newsmast.social,Markets & Finance,markets_finance,false -djape11,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false -djape11,newsmast.social,Technology,technology,true -djape11,newsmast.social,Travel,travel,false -babygirl,newsmast.social,Food & Drink,food_drink,false -babygirl,newsmast.social,Football,football,false -babygirl,newsmast.social,Humour,humour,false -babygirl,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false -babygirl,newsmast.social,Nature & Wildlife,nature_wildlife,false -babygirl,newsmast.social,Pets,pets,false -babygirl,newsmast.social,Puzzles,puzzles,false -babygirl,newsmast.social,Sport,sport,false -babygirl,newsmast.social,Travel,travel,false -babygirl,newsmast.social,US Sport,us_sport,false -babygirl,newsmast.social,Creative Arts,creative_arts,true -KyawZinLinn123,newsmast.social,AI,ai,false -KyawZinLinn123,newsmast.social,Biology,biology,false -KyawZinLinn123,newsmast.social,Chemistry,chemistry,false -KyawZinLinn123,newsmast.social,Engineering,engineering,false -KyawZinLinn123,newsmast.social,Mathematics,mathematics,false -KyawZinLinn123,newsmast.social,Physics,physics,false -KyawZinLinn123,newsmast.social,Programming,programming,true -KyawZinLinn123,newsmast.social,Science,science,false -KyawZinLinn123,newsmast.social,Space,space,false -KyawZinLinn123,newsmast.social,Technology,technology,false -hrbrmstr,newsmast.social,Academia & Research,academia_research,false -hrbrmstr,newsmast.social,AI,ai,false -hrbrmstr,newsmast.social,Breaking News,breaking_news,false -hrbrmstr,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -hrbrmstr,newsmast.social,Engineering,engineering,false -hrbrmstr,newsmast.social,Government & Policy,government_policy,false -hrbrmstr,newsmast.social,Healthcare,healthcare,false -hrbrmstr,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false -hrbrmstr,newsmast.social,Law & Justice,law_justice,false -hrbrmstr,newsmast.social,Journalism & Comment,news_comment_data,false -hrbrmstr,newsmast.social,Politics,politics,false -hrbrmstr,newsmast.social,Poverty & Inequality,poverty_inequality,false -hrbrmstr,newsmast.social,Programming,programming,false -hrbrmstr,newsmast.social,Social Media,social_media,false -hrbrmstr,newsmast.social,Technology,technology,true -hrbrmstr,newsmast.social,Ukraine Invasion,ukraine_invasion,false -hrbrmstr,newsmast.social,US Politics,us_politics,false -hrbrmstr,newsmast.social,Weather,weather,false -Downes,newsmast.social,Academia & Research,academia_research,false -Downes,newsmast.social,AI,ai,false -Downes,newsmast.social,Breaking News,breaking_news,false -Downes,newsmast.social,Journalism & Comment,news_comment_data,true -Downes,newsmast.social,Philosophy,philosophy,false -Downes,newsmast.social,Programming,programming,false -Downes,newsmast.social,Science,science,false -Downes,newsmast.social,Social Media,social_media,false -Downes,newsmast.social,Space,space,false -Downes,newsmast.social,Technology,technology,false -mgye,newsmast.social,Academia & Research,academia_research,true -mgye,newsmast.social,Activism & Civil Rights,activism_civil_rights,false -mgye,newsmast.social,AI,ai,false -mgye,newsmast.social,Biology,biology,false -mgye,newsmast.social,Black Voices,black_voices,false -mgye,newsmast.social,Business,business,false -mgye,newsmast.social,Chemistry,chemistry,false -mgye,newsmast.social,Disabled Voices,disabled_voices,false -mgye,newsmast.social,Engineering,engineering,false -mgye,newsmast.social,Government & Policy,government_policy,false -mgye,newsmast.social,Healthcare,healthcare,false -mgye,newsmast.social,Immigrants Rights,immigrants_rights,false -mgye,newsmast.social,Indigenous Peoples,indigenous_peoples,false -mgye,newsmast.social,Law & Justice,law_justice,false -mgye,newsmast.social,LGBTQ+,lgbtq,false -mgye,newsmast.social,Markets & Finance,markets_finance,false -mgye,newsmast.social,Mathematics,mathematics,false -mgye,newsmast.social,Physics,physics,false -mgye,newsmast.social,Politics,politics,false -mgye,newsmast.social,Programming,programming,false -mgye,newsmast.social,Science,science,false -mgye,newsmast.social,Space,space,false -mgye,newsmast.social,Technology,technology,false -mgye,newsmast.social,US Politics,us_politics,false -mgye,newsmast.social,Women’s Voices,women_voices,false -mgye,newsmast.social,Workers Rights,workers_rights,false -janrif,newsmast.social,Activism & Civil Rights,activism_civil_rights,false -janrif,newsmast.social,AI,ai,false -janrif,newsmast.social,Breaking News,breaking_news,false -janrif,newsmast.social,Business,business,false -janrif,newsmast.social,Government & Policy,government_policy,false -janrif,newsmast.social,Healthcare,healthcare,false -janrif,newsmast.social,History,history,false -janrif,newsmast.social,Humanities,humanities,false -janrif,newsmast.social,Immigrants Rights,immigrants_rights,false -janrif,newsmast.social,Indigenous Peoples,indigenous_peoples,false -janrif,newsmast.social,Law & Justice,law_justice,false -janrif,newsmast.social,Markets & Finance,markets_finance,false -janrif,newsmast.social,Journalism & Comment,news_comment_data,false -janrif,newsmast.social,Philosophy,philosophy,false -janrif,newsmast.social,Politics,politics,true -janrif,newsmast.social,Social Media,social_media,false -janrif,newsmast.social,Social Sciences,social_sciences,false -janrif,newsmast.social,Technology,technology,false -janrif,newsmast.social,Ukraine Invasion,ukraine_invasion,false -janrif,newsmast.social,US Politics,us_politics,false -janrif,newsmast.social,Weather,weather,false -janrif,newsmast.social,Women’s Voices,women_voices,false -janrif,newsmast.social,Workers Rights,workers_rights,false -DadeMurphy,newsmast.social,Breaking News,breaking_news,true -seehearpodcast,newsmast.social,Mathematics,mathematics,false -seehearpodcast,newsmast.social,Movies,movies,false -seehearpodcast,newsmast.social,Music,music,true -seehearpodcast,newsmast.social,Philosophy,philosophy,false -seehearpodcast,newsmast.social,Physics,physics,false -OhnMyint,newsmast.social,Academia & Research,academia_research,false -OhnMyint,newsmast.social,Breaking News,breaking_news,false -OhnMyint,newsmast.social,Government & Policy,government_policy,false -OhnMyint,newsmast.social,Healthcare,healthcare,true -OhnMyint,newsmast.social,Law & Justice,law_justice,false -OhnMyint,newsmast.social,Politics,politics,false -OhnMyint,newsmast.social,US Politics,us_politics,false -bridgeteam,newsmast.social,Academia & Research,academia_research,false -bridgeteam,newsmast.social,Architecture & Design,architecture_design,false -bridgeteam,newsmast.social,Biology,biology,false -bridgeteam,newsmast.social,Breaking News,breaking_news,false -bridgeteam,newsmast.social,Chemistry,chemistry,false -bridgeteam,newsmast.social,Creative Arts,creative_arts,false -bridgeteam,newsmast.social,Food & Drink,food_drink,false -bridgeteam,newsmast.social,Gaming,gaming,false -bridgeteam,newsmast.social,Government & Policy,government_policy,false -bridgeteam,newsmast.social,Healthcare,healthcare,false -bridgeteam,newsmast.social,History,history,false -bridgeteam,newsmast.social,Humanities,humanities,false -bridgeteam,newsmast.social,Humour,humour,false -bridgeteam,newsmast.social,Law & Justice,law_justice,false -bridgeteam,newsmast.social,Mathematics,mathematics,false -bridgeteam,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false -bridgeteam,newsmast.social,Movies,movies,false -bridgeteam,newsmast.social,Music,music,false -bridgeteam,newsmast.social,Nature & Wildlife,nature_wildlife,false -bridgeteam,newsmast.social,Journalism & Comment,news_comment_data,false -bridgeteam,newsmast.social,Performing Arts,performing_arts,false -bridgeteam,newsmast.social,Pets,pets,false -bridgeteam,newsmast.social,Philosophy,philosophy,false -bridgeteam,newsmast.social,Photography,photography,false -bridgeteam,newsmast.social,Physics,physics,false -bridgeteam,newsmast.social,Politics,politics,false -bridgeteam,newsmast.social,Puzzles,puzzles,false -bridgeteam,newsmast.social,Science,science,false -bridgeteam,newsmast.social,Social Media,social_media,false -bridgeteam,newsmast.social,Social Sciences,social_sciences,false -bridgeteam,newsmast.social,Space,space,false -bridgeteam,newsmast.social,Travel,travel,false -bridgeteam,newsmast.social,TV & Radio,tv_radio,false -bridgeteam,newsmast.social,Ukraine Invasion,ukraine_invasion,false -bridgeteam,newsmast.social,US Politics,us_politics,false -bridgeteam,newsmast.social,Visual Arts,visual_arts,false -bridgeteam,newsmast.social,Weather,weather,false -bridgeteam,newsmast.social,Books & Literature,books_literature,true -deadsuperhero,newsmast.social,Engineering,engineering,false -deadsuperhero,newsmast.social,LGBTQ+,lgbtq,false -deadsuperhero,newsmast.social,Programming,programming,false -deadsuperhero,newsmast.social,Technology,technology,true -deadsuperhero,newsmast.social,Workers Rights,workers_rights,false -berot3,newsmast.social,AI,ai,true -berot3,newsmast.social,Breaking News,breaking_news,false -berot3,newsmast.social,Journalism & Comment,news_comment_data,false -berot3,newsmast.social,Programming,programming,false -berot3,newsmast.social,Social Media,social_media,false -berot3,newsmast.social,Technology,technology,false -berot3,newsmast.social,Ukraine Invasion,ukraine_invasion,false -berot3,newsmast.social,Weather,weather,false -alzatari,newsmast.social,Academia & Research,academia_research,true -alzatari,newsmast.social,Activism & Civil Rights,activism_civil_rights,false -alzatari,newsmast.social,Architecture & Design,architecture_design,false -alzatari,newsmast.social,Books & Literature,books_literature,false -alzatari,newsmast.social,Breaking News,breaking_news,false -alzatari,newsmast.social,Creative Arts,creative_arts,false -alzatari,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -alzatari,newsmast.social,Food & Drink,food_drink,false -alzatari,newsmast.social,Government & Policy,government_policy,false -alzatari,newsmast.social,Healthcare,healthcare,false -alzatari,newsmast.social,History,history,false -alzatari,newsmast.social,Humanities,humanities,false -alzatari,newsmast.social,Humour,humour,false -alzatari,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false -alzatari,newsmast.social,Indigenous Peoples,indigenous_peoples,false -alzatari,newsmast.social,Law & Justice,law_justice,false -alzatari,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false -alzatari,newsmast.social,Nature & Wildlife,nature_wildlife,false -alzatari,newsmast.social,Journalism & Comment,news_comment_data,false -alzatari,newsmast.social,Pets,pets,false -alzatari,newsmast.social,Philosophy,philosophy,false -alzatari,newsmast.social,Photography,photography,false -alzatari,newsmast.social,Politics,politics,false -alzatari,newsmast.social,Poverty & Inequality,poverty_inequality,false -alzatari,newsmast.social,Puzzles,puzzles,false -alzatari,newsmast.social,Social Media,social_media,false -alzatari,newsmast.social,Social Sciences,social_sciences,false -alzatari,newsmast.social,Travel,travel,false -alzatari,newsmast.social,Ukraine Invasion,ukraine_invasion,false -alzatari,newsmast.social,US Politics,us_politics,false -alzatari,newsmast.social,Visual Arts,visual_arts,false -alzatari,newsmast.social,Weather,weather,false -textdump,newsmast.social,Ukraine Invasion,ukraine_invasion,true -textdump,newsmast.social,Academia & Research,academia_research,false -textdump,newsmast.social,Architecture & Design,architecture_design,false -textdump,newsmast.social,Biology,biology,false -textdump,newsmast.social,Books & Literature,books_literature,false -textdump,newsmast.social,Breaking News,breaking_news,false -textdump,newsmast.social,Chemistry,chemistry,false -textdump,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -textdump,newsmast.social,Gaming,gaming,false -textdump,newsmast.social,Government & Policy,government_policy,false -textdump,newsmast.social,Healthcare,healthcare,false -textdump,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false -textdump,newsmast.social,Law & Justice,law_justice,false -textdump,newsmast.social,Mathematics,mathematics,false -textdump,newsmast.social,Movies,movies,false -textdump,newsmast.social,Music,music,false -textdump,newsmast.social,Journalism & Comment,news_comment_data,false -textdump,newsmast.social,Performing Arts,performing_arts,false -textdump,newsmast.social,Photography,photography,false -textdump,newsmast.social,Physics,physics,false -textdump,newsmast.social,Politics,politics,false -textdump,newsmast.social,Poverty & Inequality,poverty_inequality,false -textdump,newsmast.social,Science,science,false -textdump,newsmast.social,Social Media,social_media,false -textdump,newsmast.social,Space,space,false -textdump,newsmast.social,TV & Radio,tv_radio,false -textdump,newsmast.social,US Politics,us_politics,false -textdump,newsmast.social,Visual Arts,visual_arts,false -textdump,newsmast.social,Weather,weather,false -dylan_thiam,newsmast.social,AI,ai,false -dylan_thiam,newsmast.social,Biology,biology,false -dylan_thiam,newsmast.social,Markets & Finance,markets_finance,true -dylan_thiam,newsmast.social,Space,space,false -dylan_thiam,newsmast.social,Technology,technology,false -sophia,newsmast.social,Activism & Civil Rights,activism_civil_rights,false -sophia,newsmast.social,AI,ai,false -sophia,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false -sophia,newsmast.social,Black Voices,black_voices,false -sophia,newsmast.social,Climate change,climate_change,false -sophia,newsmast.social,Disabled Voices,disabled_voices,false -sophia,newsmast.social,Energy & Pollution,energy_pollution,false -sophia,newsmast.social,Engineering,engineering,false -sophia,newsmast.social,Environment,environment,true -sophia,newsmast.social,Immigrants Rights,immigrants_rights,false -sophia,newsmast.social,Indigenous Peoples,indigenous_peoples,false -sophia,newsmast.social,LGBTQ+,lgbtq,false -sophia,newsmast.social,Programming,programming,false -sophia,newsmast.social,Technology,technology,false -sophia,newsmast.social,Women’s Voices,women_voices,false -zheka296,newsmast.social,Breaking News,breaking_news,false -zheka296,newsmast.social,Chemistry,chemistry,false -zheka296,newsmast.social,Immigrants Rights,immigrants_rights,false -zheka296,newsmast.social,Mathematics,mathematics,false -zheka296,newsmast.social,Weather,weather,true -MilitaryAfrica,newsmast.social,Academia & Research,academia_research,false -MilitaryAfrica,newsmast.social,Breaking News,breaking_news,false -MilitaryAfrica,newsmast.social,Business,business,false -MilitaryAfrica,newsmast.social,Government & Policy,government_policy,true -MilitaryAfrica,newsmast.social,Healthcare,healthcare,false -MilitaryAfrica,newsmast.social,Law & Justice,law_justice,false -MilitaryAfrica,newsmast.social,Markets & Finance,markets_finance,false -MilitaryAfrica,newsmast.social,Journalism & Comment,news_comment_data,false -MilitaryAfrica,newsmast.social,Politics,politics,false -MilitaryAfrica,newsmast.social,Social Media,social_media,false -MilitaryAfrica,newsmast.social,Ukraine Invasion,ukraine_invasion,false -MilitaryAfrica,newsmast.social,US Politics,us_politics,false -MilitaryAfrica,newsmast.social,Weather,weather,false -MilitaryAfrica,newsmast.social,Workers Rights,workers_rights,false -worldbyisa,newsmast.social,Architecture & Design,architecture_design,false -worldbyisa,newsmast.social,Books & Literature,books_literature,false -worldbyisa,newsmast.social,Creative Arts,creative_arts,false -worldbyisa,newsmast.social,Nature & Wildlife,nature_wildlife,false -worldbyisa,newsmast.social,Travel,travel,true -emeraldphysio,newsmast.social,Breaking News,breaking_news,false -emeraldphysio,newsmast.social,Journalism & Comment,news_comment_data,false -emeraldphysio,newsmast.social,Social Media,social_media,false -emeraldphysio,newsmast.social,Ukraine Invasion,ukraine_invasion,true -emeraldphysio,newsmast.social,Weather,weather,false -johnvoorhees,newsmast.social,Breaking News,breaking_news,false -johnvoorhees,newsmast.social,Gaming,gaming,false -johnvoorhees,newsmast.social,Movies,movies,false -johnvoorhees,newsmast.social,Music,music,false -johnvoorhees,newsmast.social,Technology,technology,true -johnvoorhees,newsmast.social,TV & Radio,tv_radio,false -mohammadromjan,newsmast.social,Breaking News,breaking_news,false -mohammadromjan,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false -mohammadromjan,newsmast.social,Nature & Wildlife,nature_wildlife,false -mohammadromjan,newsmast.social,Philosophy,philosophy,false -mohammadromjan,newsmast.social,Travel,travel,true -mohammadromjan,newsmast.social,Ukraine Invasion,ukraine_invasion,false -Loukas,newsmast.social,Activism & Civil Rights,activism_civil_rights,false -Loukas,newsmast.social,Breaking News,breaking_news,false -Loukas,newsmast.social,Journalism & Comment,news_comment_data,false -Loukas,newsmast.social,Politics,politics,false -Loukas,newsmast.social,Government & Policy,government_policy,true -tatkotel,newsmast.social,AI,ai,false -tatkotel,newsmast.social,Architecture & Design,architecture_design,false -tatkotel,newsmast.social,Books & Literature,books_literature,false -tatkotel,newsmast.social,Breaking News,breaking_news,true -tatkotel,newsmast.social,Engineering,engineering,false -tatkotel,newsmast.social,Gaming,gaming,false -tatkotel,newsmast.social,Movies,movies,false -tatkotel,newsmast.social,Music,music,false -tatkotel,newsmast.social,Journalism & Comment,news_comment_data,false -tatkotel,newsmast.social,Performing Arts,performing_arts,false -tatkotel,newsmast.social,Photography,photography,false -tatkotel,newsmast.social,Programming,programming,false -tatkotel,newsmast.social,Social Media,social_media,false -tatkotel,newsmast.social,Technology,technology,false -tatkotel,newsmast.social,TV & Radio,tv_radio,false -tatkotel,newsmast.social,Ukraine Invasion,ukraine_invasion,false -tatkotel,newsmast.social,Visual Arts,visual_arts,false -tatkotel,newsmast.social,Weather,weather,false -mattybob,newsmast.social,Biology,biology,true -mattybob,newsmast.social,Breaking News,breaking_news,false -mattybob,newsmast.social,Climate change,climate_change,false -mattybob,newsmast.social,Football,football,false -mattybob,newsmast.social,Government & Policy,government_policy,false -mattybob,newsmast.social,Politics,politics,false -mattybob,newsmast.social,Science,science,false -mattybob,newsmast.social,US Politics,us_politics,false -true,newsmast.social,AI,ai,false -true,newsmast.social,Biology,biology,false -true,newsmast.social,Humour,humour,false -true,newsmast.social,Programming,programming,false -true,newsmast.social,Science,science,false -true,newsmast.social,Space,space,false -true,newsmast.social,Technology,technology,true -true,newsmast.social,Travel,travel,false -multimodal,newsmast.social,Disabled Voices,disabled_voices,true -multimodal,newsmast.social,LGBTQ+,lgbtq,false -multimodal,newsmast.social,Philosophy,philosophy,false -multimodal,newsmast.social,Science,science,false -multimodal,newsmast.social,Social Sciences,social_sciences,false -khaled57,newsmast.social,Creative Arts,creative_arts,false -khaled57,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -khaled57,newsmast.social,Food & Drink,food_drink,false -khaled57,newsmast.social,Humour,humour,false -khaled57,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false -khaled57,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,true -khaled57,newsmast.social,Nature & Wildlife,nature_wildlife,false -khaled57,newsmast.social,Pets,pets,false -khaled57,newsmast.social,Poverty & Inequality,poverty_inequality,false -khaled57,newsmast.social,Puzzles,puzzles,false -khaled57,newsmast.social,Travel,travel,false -macelynne919,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false -macelynne919,newsmast.social,Business,business,false -macelynne919,newsmast.social,Climate change,climate_change,false -macelynne919,newsmast.social,Creative Arts,creative_arts,false -macelynne919,newsmast.social,Energy & Pollution,energy_pollution,false -macelynne919,newsmast.social,Environment,environment,false -macelynne919,newsmast.social,Food & Drink,food_drink,false -macelynne919,newsmast.social,Humour,humour,false -macelynne919,newsmast.social,Markets & Finance,markets_finance,false -macelynne919,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,true -macelynne919,newsmast.social,Nature & Wildlife,nature_wildlife,false -macelynne919,newsmast.social,Pets,pets,false -macelynne919,newsmast.social,Puzzles,puzzles,false -macelynne919,newsmast.social,Travel,travel,false -macelynne919,newsmast.social,Workers Rights,workers_rights,false -justwatch,newsmast.social,Academia & Research,academia_research,false -justwatch,newsmast.social,Activism & Civil Rights,activism_civil_rights,false -justwatch,newsmast.social,AI,ai,false -justwatch,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false -justwatch,newsmast.social,Black Voices,black_voices,false -justwatch,newsmast.social,Breaking News,breaking_news,true -justwatch,newsmast.social,Business,business,false -justwatch,newsmast.social,Climate change,climate_change,false -justwatch,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -justwatch,newsmast.social,Disabled Voices,disabled_voices,false -justwatch,newsmast.social,Energy & Pollution,energy_pollution,false -justwatch,newsmast.social,Engineering,engineering,false -justwatch,newsmast.social,Environment,environment,false -justwatch,newsmast.social,Government & Policy,government_policy,false -justwatch,newsmast.social,Healthcare,healthcare,false -justwatch,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false -justwatch,newsmast.social,Immigrants Rights,immigrants_rights,false -justwatch,newsmast.social,Indigenous Peoples,indigenous_peoples,false -justwatch,newsmast.social,Law & Justice,law_justice,false -justwatch,newsmast.social,LGBTQ+,lgbtq,false -justwatch,newsmast.social,Markets & Finance,markets_finance,false -justwatch,newsmast.social,Journalism & Comment,news_comment_data,false -justwatch,newsmast.social,Politics,politics,false -justwatch,newsmast.social,Poverty & Inequality,poverty_inequality,false -justwatch,newsmast.social,Programming,programming,false -justwatch,newsmast.social,Social Media,social_media,false -justwatch,newsmast.social,Technology,technology,false -justwatch,newsmast.social,Ukraine Invasion,ukraine_invasion,false -justwatch,newsmast.social,US Politics,us_politics,false -justwatch,newsmast.social,Weather,weather,false -justwatch,newsmast.social,Women’s Voices,women_voices,false -justwatch,newsmast.social,Workers Rights,workers_rights,false -fatemah,newsmast.social,Biology,biology,false -fatemah,newsmast.social,Chemistry,chemistry,false -fatemah,newsmast.social,Creative Arts,creative_arts,false -fatemah,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -fatemah,newsmast.social,Food & Drink,food_drink,false -fatemah,newsmast.social,Government & Policy,government_policy,false -fatemah,newsmast.social,Healthcare,healthcare,false -fatemah,newsmast.social,Humanities,humanities,false -fatemah,newsmast.social,Humour,humour,false -fatemah,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false -fatemah,newsmast.social,Law & Justice,law_justice,false -fatemah,newsmast.social,Mathematics,mathematics,false -fatemah,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,true -fatemah,newsmast.social,Nature & Wildlife,nature_wildlife,false -fatemah,newsmast.social,Pets,pets,false -fatemah,newsmast.social,Philosophy,philosophy,false -fatemah,newsmast.social,Physics,physics,false -fatemah,newsmast.social,Politics,politics,false -fatemah,newsmast.social,Poverty & Inequality,poverty_inequality,false -fatemah,newsmast.social,Puzzles,puzzles,false -fatemah,newsmast.social,Science,science,false -fatemah,newsmast.social,Space,space,false -fatemah,newsmast.social,Travel,travel,false -fatemah,newsmast.social,US Politics,us_politics,false -Abrikosoff,newsmast.social,AI,ai,false -Abrikosoff,newsmast.social,Climate change,climate_change,false -Abrikosoff,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -Abrikosoff,newsmast.social,Energy & Pollution,energy_pollution,false -Abrikosoff,newsmast.social,Engineering,engineering,false -Abrikosoff,newsmast.social,Environment,environment,false -Abrikosoff,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false -Abrikosoff,newsmast.social,Mathematics,mathematics,false -Abrikosoff,newsmast.social,Science,science,false -Abrikosoff,newsmast.social,Space,space,false -Abrikosoff,newsmast.social,Technology,technology,false -Abrikosoff,newsmast.social,Physics,physics,true -weblink,newsmast.social,Technology,technology,true -weblink,newsmast.social,AI,ai,false -weblink,newsmast.social,Disabled Voices,disabled_voices,false -weblink,newsmast.social,Energy & Pollution,energy_pollution,false -weblink,newsmast.social,Engineering,engineering,false -weblink,newsmast.social,Humanities,humanities,false -weblink,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false -weblink,newsmast.social,Programming,programming,false -weblink,newsmast.social,Science,science,false -weblink,newsmast.social,Space,space,false -weblink,newsmast.social,Humour,humour,false -xjxjxjx,newsmast.social,Gaming,gaming,false -xjxjxjx,newsmast.social,AI,ai,false -xjxjxjx,newsmast.social,Architecture & Design,architecture_design,false -xjxjxjx,newsmast.social,Books & Literature,books_literature,false -xjxjxjx,newsmast.social,Breaking News,breaking_news,false -xjxjxjx,newsmast.social,Engineering,engineering,false -xjxjxjx,newsmast.social,History,history,false -xjxjxjx,newsmast.social,Humanities,humanities,false -xjxjxjx,newsmast.social,Movies,movies,false -xjxjxjx,newsmast.social,Music,music,false -xjxjxjx,newsmast.social,Journalism & Comment,news_comment_data,false -xjxjxjx,newsmast.social,Performing Arts,performing_arts,false -xjxjxjx,newsmast.social,Philosophy,philosophy,false -xjxjxjx,newsmast.social,Photography,photography,true -xjxjxjx,newsmast.social,Programming,programming,false -xjxjxjx,newsmast.social,Social Media,social_media,false -xjxjxjx,newsmast.social,Social Sciences,social_sciences,false -xjxjxjx,newsmast.social,Technology,technology,false -xjxjxjx,newsmast.social,TV & Radio,tv_radio,false -xjxjxjx,newsmast.social,Ukraine Invasion,ukraine_invasion,false -xjxjxjx,newsmast.social,Visual Arts,visual_arts,false -xjxjxjx,newsmast.social,Weather,weather,false -Pavel,newsmast.social,AI,ai,false -Pavel,newsmast.social,Programming,programming,false -Pavel,newsmast.social,Social Media,social_media,false -Pavel,newsmast.social,Social Sciences,social_sciences,false -Pavel,newsmast.social,Philosophy,philosophy,true -natbas,newsmast.social,Academia & Research,academia_research,false -natbas,newsmast.social,Books & Literature,books_literature,true -natbas,newsmast.social,Breaking News,breaking_news,false -natbas,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -natbas,newsmast.social,Environment,environment,false -natbas,newsmast.social,Humanities,humanities,false -natbas,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false -natbas,newsmast.social,Journalism & Comment,news_comment_data,false -natbas,newsmast.social,Philosophy,philosophy,false -natbas,newsmast.social,Physics,physics,false -natbas,newsmast.social,Poverty & Inequality,poverty_inequality,false -natbas,newsmast.social,Science,science,false -natbas,newsmast.social,Social Sciences,social_sciences,false -natbas,newsmast.social,Weather,weather,false -natbas,newsmast.social,Politics,politics,false -nigelp,newsmast.social,AI,ai,false -nigelp,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false -nigelp,newsmast.social,Biology,biology,false -nigelp,newsmast.social,Breaking News,breaking_news,false -nigelp,newsmast.social,Chemistry,chemistry,false -nigelp,newsmast.social,Climate change,climate_change,false -nigelp,newsmast.social,Energy & Pollution,energy_pollution,false -nigelp,newsmast.social,Engineering,engineering,false -nigelp,newsmast.social,Environment,environment,false -nigelp,newsmast.social,Food & Drink,food_drink,false -nigelp,newsmast.social,Gaming,gaming,false -nigelp,newsmast.social,Humour,humour,false -nigelp,newsmast.social,Movies,movies,false -nigelp,newsmast.social,Music,music,false -nigelp,newsmast.social,Nature & Wildlife,nature_wildlife,false -nigelp,newsmast.social,Journalism & Comment,news_comment_data,false -nigelp,newsmast.social,Photography,photography,false -nigelp,newsmast.social,Physics,physics,false -nigelp,newsmast.social,Programming,programming,false -nigelp,newsmast.social,Science,science,false -nigelp,newsmast.social,Social Media,social_media,false -nigelp,newsmast.social,Technology,technology,true -nigelp,newsmast.social,Ukraine Invasion,ukraine_invasion,false -nigelp,newsmast.social,Weather,weather,false -satvika,newsmast.social,Technology,technology,true -sttanner,newsmast.social,Technology,technology,true -petri,newsmast.social,Breaking News,breaking_news,false -petri,newsmast.social,Engineering,engineering,false -petri,newsmast.social,Programming,programming,false -petri,newsmast.social,Science,science,false -petri,newsmast.social,Space,space,false -petri,newsmast.social,Technology,technology,true -petri,newsmast.social,Weather,weather,false -snoopy,newsmast.social,Architecture & Design,architecture_design,false -snoopy,newsmast.social,Biology,biology,false -snoopy,newsmast.social,Chemistry,chemistry,false -snoopy,newsmast.social,Humanities,humanities,false -snoopy,newsmast.social,Mathematics,mathematics,false -snoopy,newsmast.social,Movies,movies,false -snoopy,newsmast.social,Photography,photography,false -snoopy,newsmast.social,Physics,physics,false -snoopy,newsmast.social,Science,science,false -snoopy,newsmast.social,Social Sciences,social_sciences,false -snoopy,newsmast.social,Space,space,false -snoopy,newsmast.social,Visual Arts,visual_arts,false -snoopy,newsmast.social,Gaming,gaming,true -snoopy,newsmast.social,Disabled Voices,disabled_voices,false -lydiechen,newsmast.social,AI,ai,false -lydiechen,newsmast.social,Business,business,false -lydiechen,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -lydiechen,newsmast.social,Markets & Finance,markets_finance,true -lydiechen,newsmast.social,Technology,technology,false -kabtohin2020,newsmast.social,AI,ai,true -kabtohin2020,newsmast.social,Climate change,climate_change,false -kabtohin2020,newsmast.social,Energy & Pollution,energy_pollution,false -kabtohin2020,newsmast.social,Environment,environment,false -kabtohin2020,newsmast.social,Football,football,false -kabtohin2020,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false -kabtohin2020,newsmast.social,Technology,technology,false -NurseTed,newsmast.social,Breaking News,breaking_news,true -NurseTed,newsmast.social,Journalism & Comment,news_comment_data,false -NurseTed,newsmast.social,Social Media,social_media,false -NurseTed,newsmast.social,Ukraine Invasion,ukraine_invasion,false -NurseTed,newsmast.social,Weather,weather,false -donald13,newsmast.social,Academia & Research,academia_research,true -donald13,newsmast.social,Activism & Civil Rights,activism_civil_rights,false -donald13,newsmast.social,AI,ai,false -donald13,newsmast.social,Architecture & Design,architecture_design,false -donald13,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false -donald13,newsmast.social,Biology,biology,false -donald13,newsmast.social,Black Voices,black_voices,false -donald13,newsmast.social,Books & Literature,books_literature,false -donald13,newsmast.social,Breaking News,breaking_news,false -donald13,newsmast.social,Business,business,false -donald13,newsmast.social,Chemistry,chemistry,false -donald13,newsmast.social,Climate change,climate_change,false -donald13,newsmast.social,Creative Arts,creative_arts,false -donald13,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -donald13,newsmast.social,Disabled Voices,disabled_voices,false -donald13,newsmast.social,Energy & Pollution,energy_pollution,false -donald13,newsmast.social,Engineering,engineering,false -donald13,newsmast.social,Environment,environment,false -donald13,newsmast.social,Food & Drink,food_drink,false -donald13,newsmast.social,Football,football,false -donald13,newsmast.social,Gaming,gaming,false -donald13,newsmast.social,Government & Policy,government_policy,false -donald13,newsmast.social,Healthcare,healthcare,false -donald13,newsmast.social,History,history,false -donald13,newsmast.social,Humanities,humanities,false -donald13,newsmast.social,Humour,humour,false -donald13,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false -donald13,newsmast.social,Immigrants Rights,immigrants_rights,false -donald13,newsmast.social,Indigenous Peoples,indigenous_peoples,false -donald13,newsmast.social,Law & Justice,law_justice,false -donald13,newsmast.social,LGBTQ+,lgbtq,false -donald13,newsmast.social,Markets & Finance,markets_finance,false -donald13,newsmast.social,Mathematics,mathematics,false -donald13,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false -donald13,newsmast.social,Movies,movies,false -donald13,newsmast.social,Music,music,false -donald13,newsmast.social,Nature & Wildlife,nature_wildlife,false -donald13,newsmast.social,Journalism & Comment,news_comment_data,false -donald13,newsmast.social,Performing Arts,performing_arts,false -donald13,newsmast.social,Pets,pets,false -donald13,newsmast.social,Philosophy,philosophy,false -donald13,newsmast.social,Photography,photography,false -donald13,newsmast.social,Physics,physics,false -donald13,newsmast.social,Politics,politics,false -donald13,newsmast.social,Poverty & Inequality,poverty_inequality,false -donald13,newsmast.social,Programming,programming,false -donald13,newsmast.social,Puzzles,puzzles,false -donald13,newsmast.social,Science,science,false -donald13,newsmast.social,Social Media,social_media,false -donald13,newsmast.social,Social Sciences,social_sciences,false -donald13,newsmast.social,Space,space,false -donald13,newsmast.social,Sport,sport,false -donald13,newsmast.social,Technology,technology,false -donald13,newsmast.social,Travel,travel,false -donald13,newsmast.social,TV & Radio,tv_radio,false -donald13,newsmast.social,Ukraine Invasion,ukraine_invasion,false -donald13,newsmast.social,US Politics,us_politics,false -donald13,newsmast.social,US Sport,us_sport,false -donald13,newsmast.social,Visual Arts,visual_arts,false -donald13,newsmast.social,Weather,weather,false -donald13,newsmast.social,Women’s Voices,women_voices,false -donald13,newsmast.social,Workers Rights,workers_rights,false -joanathx,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false -joanathx,newsmast.social,Nature & Wildlife,nature_wildlife,false -joanathx,newsmast.social,Travel,travel,true -joanathx,newsmast.social,AI,ai,false -joanathx,newsmast.social,Technology,technology,false -joanathx,newsmast.social,Engineering,engineering,false -joanathx,newsmast.social,Programming,programming,false -dianirawan,newsmast.social,Academia & Research,academia_research,false -dianirawan,newsmast.social,Breaking News,breaking_news,false -dianirawan,newsmast.social,Government & Policy,government_policy,true -dianirawan,newsmast.social,Healthcare,healthcare,false -dianirawan,newsmast.social,Law & Justice,law_justice,false -dianirawan,newsmast.social,Journalism & Comment,news_comment_data,false -dianirawan,newsmast.social,Politics,politics,false -dianirawan,newsmast.social,Social Media,social_media,false -dianirawan,newsmast.social,Ukraine Invasion,ukraine_invasion,false -dianirawan,newsmast.social,US Politics,us_politics,false -dianirawan,newsmast.social,Weather,weather,false -shoqv4,newsmast.social,Breaking News,breaking_news,false -shoqv4,newsmast.social,Government & Policy,government_policy,false -shoqv4,newsmast.social,Journalism & Comment,news_comment_data,false -shoqv4,newsmast.social,Science,science,false -shoqv4,newsmast.social,Social Media,social_media,false -shoqv4,newsmast.social,Space,space,false -shoqv4,newsmast.social,US Politics,us_politics,true -rajudbg,newsmast.social,AI,ai,true -rajudbg,newsmast.social,Journalism & Comment,news_comment_data,false -rajudbg,newsmast.social,Social Media,social_media,false -rajudbg,newsmast.social,Ukraine Invasion,ukraine_invasion,false -rajudbg,newsmast.social,Weather,weather,false -m2knmst,newsmast.social,Activism & Civil Rights,activism_civil_rights,false -m2knmst,newsmast.social,Black Voices,black_voices,false -m2knmst,newsmast.social,Breaking News,breaking_news,true -m2knmst,newsmast.social,Disabled Voices,disabled_voices,false -m2knmst,newsmast.social,History,history,false -m2knmst,newsmast.social,Humanities,humanities,false -m2knmst,newsmast.social,Immigrants Rights,immigrants_rights,false -m2knmst,newsmast.social,Indigenous Peoples,indigenous_peoples,false -m2knmst,newsmast.social,LGBTQ+,lgbtq,false -m2knmst,newsmast.social,Journalism & Comment,news_comment_data,false -m2knmst,newsmast.social,Philosophy,philosophy,false -m2knmst,newsmast.social,Social Media,social_media,false -m2knmst,newsmast.social,Social Sciences,social_sciences,false -m2knmst,newsmast.social,Ukraine Invasion,ukraine_invasion,false -m2knmst,newsmast.social,Weather,weather,false -m2knmst,newsmast.social,Women’s Voices,women_voices,false -m2knewsmast,newsmast.social,Academia & Research,academia_research,false -m2knewsmast,newsmast.social,Breaking News,breaking_news,true -m2knewsmast,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -m2knewsmast,newsmast.social,Government & Policy,government_policy,false -m2knewsmast,newsmast.social,Healthcare,healthcare,false -m2knewsmast,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false -m2knewsmast,newsmast.social,Law & Justice,law_justice,false -m2knewsmast,newsmast.social,Journalism & Comment,news_comment_data,false -m2knewsmast,newsmast.social,Politics,politics,false -m2knewsmast,newsmast.social,Poverty & Inequality,poverty_inequality,false -m2knewsmast,newsmast.social,Social Media,social_media,false -m2knewsmast,newsmast.social,Ukraine Invasion,ukraine_invasion,false -m2knewsmast,newsmast.social,US Politics,us_politics,false -m2knewsmast,newsmast.social,Weather,weather,false -poke,newsmast.social,AI,ai,false -poke,newsmast.social,Architecture & Design,architecture_design,false -poke,newsmast.social,Breaking News,breaking_news,false -poke,newsmast.social,Business,business,false -poke,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -poke,newsmast.social,Engineering,engineering,false -poke,newsmast.social,Government & Policy,government_policy,false -poke,newsmast.social,Law & Justice,law_justice,false -poke,newsmast.social,Markets & Finance,markets_finance,false -poke,newsmast.social,Movies,movies,false -poke,newsmast.social,Music,music,false -poke,newsmast.social,Journalism & Comment,news_comment_data,false -poke,newsmast.social,Photography,photography,false -poke,newsmast.social,Programming,programming,false -poke,newsmast.social,Science,science,false -poke,newsmast.social,Technology,technology,true -poke,newsmast.social,US Politics,us_politics,false -poke,newsmast.social,Workers Rights,workers_rights,false -irlrefuge,newsmast.social,Technology,technology,true -cbattlegear,newsmast.social,AI,ai,false -cbattlegear,newsmast.social,Breaking News,breaking_news,false -cbattlegear,newsmast.social,Business,business,false -cbattlegear,newsmast.social,Engineering,engineering,false -cbattlegear,newsmast.social,Mathematics,mathematics,false -cbattlegear,newsmast.social,Journalism & Comment,news_comment_data,false -cbattlegear,newsmast.social,Physics,physics,false -cbattlegear,newsmast.social,Programming,programming,true -cbattlegear,newsmast.social,Science,science,false -cbattlegear,newsmast.social,Space,space,false -cbattlegear,newsmast.social,Technology,technology,false -heimoshuiyu,newsmast.social,Breaking News,breaking_news,true -heimoshuiyu,newsmast.social,Journalism & Comment,news_comment_data,false -heimoshuiyu,newsmast.social,Social Media,social_media,false -heimoshuiyu,newsmast.social,Ukraine Invasion,ukraine_invasion,false -heimoshuiyu,newsmast.social,Weather,weather,false -mttaggart,newsmast.social,Academia & Research,academia_research,false -mttaggart,newsmast.social,Activism & Civil Rights,activism_civil_rights,false -mttaggart,newsmast.social,AI,ai,false -mttaggart,newsmast.social,Architecture & Design,architecture_design,false -mttaggart,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false -mttaggart,newsmast.social,Biology,biology,false -mttaggart,newsmast.social,Black Voices,black_voices,false -mttaggart,newsmast.social,Books & Literature,books_literature,false -mttaggart,newsmast.social,Breaking News,breaking_news,false -mttaggart,newsmast.social,Business,business,false -mttaggart,newsmast.social,Chemistry,chemistry,false -mttaggart,newsmast.social,Climate change,climate_change,false -mttaggart,newsmast.social,Creative Arts,creative_arts,false -mttaggart,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -mttaggart,newsmast.social,Disabled Voices,disabled_voices,false -mttaggart,newsmast.social,Energy & Pollution,energy_pollution,false -mttaggart,newsmast.social,Engineering,engineering,false -mttaggart,newsmast.social,Environment,environment,false -mttaggart,newsmast.social,Food & Drink,food_drink,false -mttaggart,newsmast.social,Gaming,gaming,false -mttaggart,newsmast.social,Government & Policy,government_policy,false -mttaggart,newsmast.social,Healthcare,healthcare,false -mttaggart,newsmast.social,History,history,false -mttaggart,newsmast.social,Humanities,humanities,false -mttaggart,newsmast.social,Humour,humour,false -mttaggart,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false -mttaggart,newsmast.social,Immigrants Rights,immigrants_rights,false -mttaggart,newsmast.social,Indigenous Peoples,indigenous_peoples,false -mttaggart,newsmast.social,Law & Justice,law_justice,false -mttaggart,newsmast.social,LGBTQ+,lgbtq,false -mttaggart,newsmast.social,Markets & Finance,markets_finance,false -mttaggart,newsmast.social,Mathematics,mathematics,false -mttaggart,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false -mttaggart,newsmast.social,Movies,movies,false -mttaggart,newsmast.social,Music,music,false -mttaggart,newsmast.social,Nature & Wildlife,nature_wildlife,false -mttaggart,newsmast.social,Journalism & Comment,news_comment_data,false -mttaggart,newsmast.social,Performing Arts,performing_arts,false -mttaggart,newsmast.social,Pets,pets,false -mttaggart,newsmast.social,Philosophy,philosophy,false -mttaggart,newsmast.social,Photography,photography,false -mttaggart,newsmast.social,Physics,physics,false -mttaggart,newsmast.social,Politics,politics,false -mttaggart,newsmast.social,Poverty & Inequality,poverty_inequality,false -mttaggart,newsmast.social,Programming,programming,false -mttaggart,newsmast.social,Puzzles,puzzles,false -mttaggart,newsmast.social,Science,science,false -mttaggart,newsmast.social,Social Media,social_media,false -mttaggart,newsmast.social,Social Sciences,social_sciences,false -mttaggart,newsmast.social,Space,space,false -mttaggart,newsmast.social,Technology,technology,true -mttaggart,newsmast.social,Travel,travel,false -mttaggart,newsmast.social,TV & Radio,tv_radio,false -mttaggart,newsmast.social,Ukraine Invasion,ukraine_invasion,false -mttaggart,newsmast.social,US Politics,us_politics,false -mttaggart,newsmast.social,Visual Arts,visual_arts,false -mttaggart,newsmast.social,Weather,weather,false -mttaggart,newsmast.social,Women’s Voices,women_voices,false -mttaggart,newsmast.social,Workers Rights,workers_rights,false -LiveMessy2024,newsmast.social,AI,ai,false -LiveMessy2024,newsmast.social,Breaking News,breaking_news,false -LiveMessy2024,newsmast.social,Business,business,false -LiveMessy2024,newsmast.social,Creative Arts,creative_arts,false -LiveMessy2024,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -LiveMessy2024,newsmast.social,History,history,false -LiveMessy2024,newsmast.social,Humanities,humanities,false -LiveMessy2024,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false -LiveMessy2024,newsmast.social,LGBTQ+,lgbtq,false -LiveMessy2024,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false -LiveMessy2024,newsmast.social,Nature & Wildlife,nature_wildlife,false -LiveMessy2024,newsmast.social,Philosophy,philosophy,false -LiveMessy2024,newsmast.social,Poverty & Inequality,poverty_inequality,false -LiveMessy2024,newsmast.social,Social Sciences,social_sciences,false -LiveMessy2024,newsmast.social,Technology,technology,true -LiveMessy2024,newsmast.social,Weather,weather,false -LiveMessy2024,newsmast.social,Women’s Voices,women_voices,false -OpalTiger,newsmast.social,Activism & Civil Rights,activism_civil_rights,true -OpalTiger,newsmast.social,Architecture & Design,architecture_design,false -OpalTiger,newsmast.social,Books & Literature,books_literature,false -OpalTiger,newsmast.social,Breaking News,breaking_news,false -OpalTiger,newsmast.social,Creative Arts,creative_arts,false -OpalTiger,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -OpalTiger,newsmast.social,Disabled Voices,disabled_voices,false -OpalTiger,newsmast.social,History,history,false -OpalTiger,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false -OpalTiger,newsmast.social,Performing Arts,performing_arts,false -OpalTiger,newsmast.social,Politics,politics,false -OpalTiger,newsmast.social,Poverty & Inequality,poverty_inequality,false -OpalTiger,newsmast.social,Technology,technology,false -OpalTiger,newsmast.social,TV & Radio,tv_radio,false -OpalTiger,newsmast.social,Visual Arts,visual_arts,false -kakerlake,newsmast.social,Engineering,engineering,false -kakerlake,newsmast.social,Photography,photography,false -kakerlake,newsmast.social,Science,science,false -kakerlake,newsmast.social,Technology,technology,true -kakerlake,newsmast.social,Visual Arts,visual_arts,false -WhiteMode,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false -WhiteMode,newsmast.social,Climate change,climate_change,false -WhiteMode,newsmast.social,Energy & Pollution,energy_pollution,false -WhiteMode,newsmast.social,Environment,environment,false -WhiteMode,newsmast.social,Government & Policy,government_policy,false -WhiteMode,newsmast.social,Healthcare,healthcare,false -WhiteMode,newsmast.social,Law & Justice,law_justice,false -WhiteMode,newsmast.social,Politics,politics,false -WhiteMode,newsmast.social,US Politics,us_politics,false -WhiteMode,newsmast.social,Academia & Research,academia_research,true -WhiteMode,newsmast.social,Biology,biology,false -WhiteMode,newsmast.social,Journalism & Comment,news_comment_data,false -WhiteMode,newsmast.social,Nature & Wildlife,nature_wildlife,false -WhiteMode,newsmast.social,Photography,photography,false -WhiteMode,newsmast.social,Science,science,false -WhiteMode,newsmast.social,Chemistry,chemistry,false -WhiteMode,newsmast.social,Technology,technology,false -WhiteMode,newsmast.social,Programming,programming,false -WhiteMode,newsmast.social,Engineering,engineering,false -fwd7,newsmast.social,Academia & Research,academia_research,false -fwd7,newsmast.social,AI,ai,false -fwd7,newsmast.social,Books & Literature,books_literature,false -fwd7,newsmast.social,Breaking News,breaking_news,false -fwd7,newsmast.social,Football,football,false -fwd7,newsmast.social,Gaming,gaming,false -fwd7,newsmast.social,Government & Policy,government_policy,false -fwd7,newsmast.social,Music,music,false -fwd7,newsmast.social,Social Sciences,social_sciences,false -fwd7,newsmast.social,Sport,sport,false -fwd7,newsmast.social,Technology,technology,false -fwd7,newsmast.social,Law & Justice,law_justice,true -azizbnchikh,newsmast.social,Academia & Research,academia_research,true -azizbnchikh,newsmast.social,AI,ai,false -azizbnchikh,newsmast.social,Engineering,engineering,false -azizbnchikh,newsmast.social,Healthcare,healthcare,false -azizbnchikh,newsmast.social,Politics,politics,false -azizbnchikh,newsmast.social,US Politics,us_politics,false -markr,newsmast.social,AI,ai,false -markr,newsmast.social,Architecture & Design,architecture_design,false -markr,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false -markr,newsmast.social,Biology,biology,false -markr,newsmast.social,Books & Literature,books_literature,false -markr,newsmast.social,Chemistry,chemistry,false -markr,newsmast.social,Climate change,climate_change,false -markr,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -markr,newsmast.social,Energy & Pollution,energy_pollution,false -markr,newsmast.social,Engineering,engineering,false -markr,newsmast.social,Environment,environment,false -markr,newsmast.social,Gaming,gaming,false -markr,newsmast.social,History,history,false -markr,newsmast.social,Humanities,humanities,false -markr,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false -markr,newsmast.social,Mathematics,mathematics,false -markr,newsmast.social,Movies,movies,false -markr,newsmast.social,Music,music,false -markr,newsmast.social,Journalism & Comment,news_comment_data,false -markr,newsmast.social,Performing Arts,performing_arts,false -markr,newsmast.social,Philosophy,philosophy,false -markr,newsmast.social,Photography,photography,false -markr,newsmast.social,Physics,physics,false -markr,newsmast.social,Poverty & Inequality,poverty_inequality,false -markr,newsmast.social,Programming,programming,false -markr,newsmast.social,Science,science,false -markr,newsmast.social,Social Sciences,social_sciences,false -markr,newsmast.social,Space,space,false -markr,newsmast.social,Technology,technology,false -markr,newsmast.social,TV & Radio,tv_radio,false -markr,newsmast.social,Visual Arts,visual_arts,false -markr,newsmast.social,Breaking News,breaking_news,true -sebbz,newsmast.social,AI,ai,false -sebbz,newsmast.social,Breaking News,breaking_news,false -sebbz,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -sebbz,newsmast.social,Engineering,engineering,false -sebbz,newsmast.social,Humanities,humanities,false -sebbz,newsmast.social,Journalism & Comment,news_comment_data,false -sebbz,newsmast.social,Programming,programming,false -sebbz,newsmast.social,Social Sciences,social_sciences,false -sebbz,newsmast.social,Technology,technology,true -mkk001,newsmast.social,Activism & Civil Rights,activism_civil_rights,false -mkk001,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false -mkk001,newsmast.social,Black Voices,black_voices,false -mkk001,newsmast.social,Breaking News,breaking_news,true -mkk001,newsmast.social,Climate change,climate_change,false -mkk001,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -mkk001,newsmast.social,Disabled Voices,disabled_voices,false -mkk001,newsmast.social,Energy & Pollution,energy_pollution,false -mkk001,newsmast.social,Environment,environment,false -mkk001,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false -mkk001,newsmast.social,Immigrants Rights,immigrants_rights,false -mkk001,newsmast.social,Indigenous Peoples,indigenous_peoples,false -mkk001,newsmast.social,LGBTQ+,lgbtq,false -mkk001,newsmast.social,Journalism & Comment,news_comment_data,false -mkk001,newsmast.social,Poverty & Inequality,poverty_inequality,false -mkk001,newsmast.social,Social Media,social_media,false -mkk001,newsmast.social,Women’s Voices,women_voices,false -HariTulsidas,newsmast.social,AI,ai,false -HariTulsidas,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false -HariTulsidas,newsmast.social,Chemistry,chemistry,false -HariTulsidas,newsmast.social,Climate change,climate_change,false -HariTulsidas,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -HariTulsidas,newsmast.social,Energy & Pollution,energy_pollution,false -HariTulsidas,newsmast.social,Engineering,engineering,false -HariTulsidas,newsmast.social,Environment,environment,false -HariTulsidas,newsmast.social,History,history,false -HariTulsidas,newsmast.social,Humanities,humanities,false -HariTulsidas,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false -HariTulsidas,newsmast.social,Mathematics,mathematics,false -HariTulsidas,newsmast.social,Physics,physics,false -HariTulsidas,newsmast.social,Poverty & Inequality,poverty_inequality,false -HariTulsidas,newsmast.social,Programming,programming,false -HariTulsidas,newsmast.social,Science,science,true -HariTulsidas,newsmast.social,Social Sciences,social_sciences,false -HariTulsidas,newsmast.social,Space,space,false -HariTulsidas,newsmast.social,Technology,technology,false -HariTulsidas,newsmast.social,Philosophy,philosophy,false -HariTulsidas,newsmast.social,Journalism & Comment,news_comment_data,false -HariTulsidas,newsmast.social,Social Media,social_media,false -HariTulsidas,newsmast.social,Breaking News,breaking_news,false -HariTulsidas,newsmast.social,Government & Policy,government_policy,false -HariTulsidas,newsmast.social,Academia & Research,academia_research,false -HariTulsidas,newsmast.social,Healthcare,healthcare,false -HariTulsidas,newsmast.social,Law & Justice,law_justice,false -HariTulsidas,newsmast.social,Politics,politics,false -HariTulsidas,newsmast.social,US Politics,us_politics,false -HariTulsidas,newsmast.social,Business,business,false -HariTulsidas,newsmast.social,Markets & Finance,markets_finance,false -HariTulsidas,newsmast.social,Books & Literature,books_literature,false -HariTulsidas,newsmast.social,Movies,movies,false -HariTulsidas,newsmast.social,Creative Arts,creative_arts,false -HariTulsidas,newsmast.social,Humour,humour,false -HariTulsidas,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false -HariTulsidas,newsmast.social,Travel,travel,false -HariTulsidas,newsmast.social,Activism & Civil Rights,activism_civil_rights,false -HariTulsidas,newsmast.social,Indigenous Peoples,indigenous_peoples,false -HariTulsidas,newsmast.social,Photography,photography,false -HariTulsidas,newsmast.social,TV & Radio,tv_radio,false -HariTulsidas,newsmast.social,Performing Arts,performing_arts,false -HariTulsidas,newsmast.social,Music,music,false -HariTulsidas,newsmast.social,Architecture & Design,architecture_design,false -HariTulsidas,newsmast.social,Visual Arts,visual_arts,false -HariTulsidas,newsmast.social,Biology,biology,false -ThirdTime,newsmast.social,Journalism & Comment,news_comment_data,false -ThirdTime,newsmast.social,Social Media,social_media,false -ThirdTime,newsmast.social,Ukraine Invasion,ukraine_invasion,false -ThirdTime,newsmast.social,Weather,weather,false -ThirdTime,newsmast.social,Breaking News,breaking_news,true -ThirdTime,newsmast.social,Creative Arts,creative_arts,false -ThirdTime,newsmast.social,Programming,programming,false -ThirdTime,newsmast.social,Food & Drink,food_drink,false -ThirdTime,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -ThirdTime,newsmast.social,History,history,false -ThirdTime,newsmast.social,Social Sciences,social_sciences,false -ThirdTime,newsmast.social,Gaming,gaming,false -ThirdTime,newsmast.social,Photography,photography,false -ThirdTime,newsmast.social,US Sport,us_sport,false -ThirdTime,newsmast.social,Politics,politics,false -ThirdTime,newsmast.social,Poverty & Inequality,poverty_inequality,false -ThirdTime,newsmast.social,US Politics,us_politics,false -ThirdTime,newsmast.social,Environment,environment,false -ThirdTime,newsmast.social,Climate change,climate_change,false -ThirdTime,newsmast.social,LGBTQ+,lgbtq,false -ThirdTime,newsmast.social,Women’s Voices,women_voices,false -ThirdTime,newsmast.social,Business,business,false -ThirdTime,newsmast.social,Science,science,false -ThirdTime,newsmast.social,Space,space,false -ThirdTime,newsmast.social,Workers Rights,workers_rights,false -ThirdTime,newsmast.social,Technology,technology,false -ThirdTime,newsmast.social,Sport,sport,false -jcblautomoto,newsmast.social,AI,ai,false -jcblautomoto,newsmast.social,Architecture & Design,architecture_design,false -jcblautomoto,newsmast.social,Books & Literature,books_literature,false -jcblautomoto,newsmast.social,Creative Arts,creative_arts,false -jcblautomoto,newsmast.social,Engineering,engineering,false -jcblautomoto,newsmast.social,Food & Drink,food_drink,false -jcblautomoto,newsmast.social,Gaming,gaming,false -jcblautomoto,newsmast.social,Humour,humour,false -jcblautomoto,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false -jcblautomoto,newsmast.social,Movies,movies,false -jcblautomoto,newsmast.social,Music,music,false -jcblautomoto,newsmast.social,Nature & Wildlife,nature_wildlife,false -jcblautomoto,newsmast.social,Performing Arts,performing_arts,false -jcblautomoto,newsmast.social,Pets,pets,false -jcblautomoto,newsmast.social,Photography,photography,false -jcblautomoto,newsmast.social,Programming,programming,false -jcblautomoto,newsmast.social,Puzzles,puzzles,false -jcblautomoto,newsmast.social,Technology,technology,true -jcblautomoto,newsmast.social,Travel,travel,false -jcblautomoto,newsmast.social,TV & Radio,tv_radio,false -jcblautomoto,newsmast.social,Visual Arts,visual_arts,false -Stregabor,newsmast.social,Academia & Research,academia_research,false -Stregabor,newsmast.social,Activism & Civil Rights,activism_civil_rights,false -Stregabor,newsmast.social,AI,ai,false -Stregabor,newsmast.social,Black Voices,black_voices,false -Stregabor,newsmast.social,Breaking News,breaking_news,false -Stregabor,newsmast.social,Business,business,false -Stregabor,newsmast.social,Climate change,climate_change,true -Stregabor,newsmast.social,Disabled Voices,disabled_voices,false -Stregabor,newsmast.social,Engineering,engineering,false -Stregabor,newsmast.social,Environment,environment,false -Stregabor,newsmast.social,Government & Policy,government_policy,false -Stregabor,newsmast.social,Healthcare,healthcare,false -Stregabor,newsmast.social,Immigrants Rights,immigrants_rights,false -Stregabor,newsmast.social,Indigenous Peoples,indigenous_peoples,false -Stregabor,newsmast.social,Law & Justice,law_justice,false -Stregabor,newsmast.social,LGBTQ+,lgbtq,false -Stregabor,newsmast.social,Photography,photography,false -Stregabor,newsmast.social,Politics,politics,false -Stregabor,newsmast.social,Programming,programming,false -Stregabor,newsmast.social,Social Media,social_media,false -Stregabor,newsmast.social,Technology,technology,false -Stregabor,newsmast.social,US Politics,us_politics,false -Stregabor,newsmast.social,Women’s Voices,women_voices,false -Stregabor,newsmast.social,Workers Rights,workers_rights,false -yanmoenaing,newsmast.social,Business,business,false -yanmoenaing,newsmast.social,Chemistry,chemistry,false -yanmoenaing,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -yanmoenaing,newsmast.social,Engineering,engineering,false -yanmoenaing,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false -yanmoenaing,newsmast.social,Markets & Finance,markets_finance,false -yanmoenaing,newsmast.social,Mathematics,mathematics,false -yanmoenaing,newsmast.social,Physics,physics,false -yanmoenaing,newsmast.social,Poverty & Inequality,poverty_inequality,false -yanmoenaing,newsmast.social,Programming,programming,false -yanmoenaing,newsmast.social,Science,science,false -yanmoenaing,newsmast.social,Space,space,false -yanmoenaing,newsmast.social,Technology,technology,false -yanmoenaing,newsmast.social,Workers Rights,workers_rights,false -yanmoenaing,newsmast.social,AI,ai,true -yanmoenaing,newsmast.social,Biology,biology,false -min2k09,newsmast.social,Breaking News,breaking_news,true -min2k09,newsmast.social,Social Media,social_media,false -min2k09,newsmast.social,Ukraine Invasion,ukraine_invasion,false -min2k09,newsmast.social,Weather,weather,false -therfff,newsmast.social,AI,ai,true -therfff,newsmast.social,Biology,biology,false -therfff,newsmast.social,Business,business,false -therfff,newsmast.social,Chemistry,chemistry,false -therfff,newsmast.social,Engineering,engineering,false -therfff,newsmast.social,Markets & Finance,markets_finance,false -therfff,newsmast.social,Mathematics,mathematics,false -therfff,newsmast.social,Physics,physics,false -therfff,newsmast.social,Programming,programming,false -therfff,newsmast.social,Science,science,false -therfff,newsmast.social,Space,space,false -therfff,newsmast.social,Technology,technology,false -therfff,newsmast.social,Workers Rights,workers_rights,false -Magda,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false -Magda,newsmast.social,Books & Literature,books_literature,false -Magda,newsmast.social,Business,business,false -Magda,newsmast.social,Climate change,climate_change,false -Magda,newsmast.social,Creative Arts,creative_arts,false -Magda,newsmast.social,Energy & Pollution,energy_pollution,false -Magda,newsmast.social,Environment,environment,false -Magda,newsmast.social,Government & Policy,government_policy,false -Magda,newsmast.social,History,history,false -Magda,newsmast.social,Movies,movies,false -Magda,newsmast.social,Nature & Wildlife,nature_wildlife,false -Magda,newsmast.social,Journalism & Comment,news_comment_data,false -Magda,newsmast.social,Philosophy,philosophy,false -Magda,newsmast.social,Photography,photography,false -Magda,newsmast.social,Poverty & Inequality,poverty_inequality,false -Magda,newsmast.social,Technology,technology,false -Magda,newsmast.social,Travel,travel,false -Magda,newsmast.social,Workers Rights,workers_rights,false -Magda,newsmast.social,Architecture & Design,architecture_design,true -csu,newsmast.social,AI,ai,false -csu,newsmast.social,Breaking News,breaking_news,false -csu,newsmast.social,Engineering,engineering,false -csu,newsmast.social,Mathematics,mathematics,false -csu,newsmast.social,Journalism & Comment,news_comment_data,false -csu,newsmast.social,Programming,programming,true -csu,newsmast.social,Science,science,false -csu,newsmast.social,Social Media,social_media,false -csu,newsmast.social,Space,space,false -csu,newsmast.social,Technology,technology,false -clonnee,newsmast.social,AI,ai,true -clonnee,newsmast.social,Biology,biology,false -clonnee,newsmast.social,Chemistry,chemistry,false -clonnee,newsmast.social,Engineering,engineering,false -clonnee,newsmast.social,Mathematics,mathematics,false -clonnee,newsmast.social,Physics,physics,false -clonnee,newsmast.social,Programming,programming,false -clonnee,newsmast.social,Science,science,false -clonnee,newsmast.social,Space,space,false -clonnee,newsmast.social,Technology,technology,false -Johan,newsmast.social,Academia & Research,academia_research,false -Johan,newsmast.social,AI,ai,true -Johan,newsmast.social,Business,business,false -Johan,newsmast.social,Engineering,engineering,false -Johan,newsmast.social,Government & Policy,government_policy,false -Johan,newsmast.social,Healthcare,healthcare,false -Johan,newsmast.social,Law & Justice,law_justice,false -Johan,newsmast.social,Markets & Finance,markets_finance,false -Johan,newsmast.social,Politics,politics,false -Johan,newsmast.social,Programming,programming,false -Johan,newsmast.social,Technology,technology,false -Johan,newsmast.social,US Politics,us_politics,false -Johan,newsmast.social,Workers Rights,workers_rights,false -ShuaE,newsmast.social,AI,ai,false -ShuaE,newsmast.social,Engineering,engineering,true -ShuaE,newsmast.social,Pets,pets,false -ShuaE,newsmast.social,Programming,programming,false -ShuaE,newsmast.social,Technology,technology,false -daniellean,newsmast.social,Activism & Civil Rights,activism_civil_rights,false -daniellean,newsmast.social,Black Voices,black_voices,false -daniellean,newsmast.social,Breaking News,breaking_news,false -daniellean,newsmast.social,Climate change,climate_change,false -daniellean,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -daniellean,newsmast.social,Environment,environment,false -daniellean,newsmast.social,Government & Policy,government_policy,false -daniellean,newsmast.social,Humanities,humanities,false -daniellean,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false -daniellean,newsmast.social,Immigrants Rights,immigrants_rights,false -daniellean,newsmast.social,Indigenous Peoples,indigenous_peoples,false -daniellean,newsmast.social,LGBTQ+,lgbtq,true -daniellean,newsmast.social,Journalism & Comment,news_comment_data,false -daniellean,newsmast.social,Social Media,social_media,false -daniellean,newsmast.social,Social Sciences,social_sciences,false -daniellean,newsmast.social,Women’s Voices,women_voices,false -daniellean,newsmast.social,Ukraine Invasion,ukraine_invasion,false -daniellean,newsmast.social,Weather,weather,false -daniellean,newsmast.social,Academia & Research,academia_research,false -daniellean,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false -daniellean,newsmast.social,Disabled Voices,disabled_voices,false -daniellean,newsmast.social,Science,science,false -daniellean,newsmast.social,Poverty & Inequality,poverty_inequality,false -daniellean,newsmast.social,Politics,politics,false -daniellean,newsmast.social,US Politics,us_politics,false -daniellean,newsmast.social,Energy & Pollution,energy_pollution,false -PetRock,newsmast.social,Nature & Wildlife,nature_wildlife,true -PetRock,newsmast.social,Music,music,false -harrylyon,newsmast.social,Activism & Civil Rights,activism_civil_rights,false -harrylyon,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false -harrylyon,newsmast.social,Climate change,climate_change,false -harrylyon,newsmast.social,Disabled Voices,disabled_voices,false -harrylyon,newsmast.social,Energy & Pollution,energy_pollution,false -harrylyon,newsmast.social,Environment,environment,false -harrylyon,newsmast.social,Immigrants Rights,immigrants_rights,false -harrylyon,newsmast.social,Indigenous Peoples,indigenous_peoples,false -harrylyon,newsmast.social,LGBTQ+,lgbtq,false -harrylyon,newsmast.social,Black Voices,black_voices,true -Levicoisch,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false -Levicoisch,newsmast.social,Breaking News,breaking_news,true -Levicoisch,newsmast.social,Climate change,climate_change,false -Levicoisch,newsmast.social,Energy & Pollution,energy_pollution,false -Levicoisch,newsmast.social,Environment,environment,false -johnDaonld,newsmast.social,Architecture & Design,architecture_design,false -johnDaonld,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false -johnDaonld,newsmast.social,Books & Literature,books_literature,false -johnDaonld,newsmast.social,Climate change,climate_change,false -johnDaonld,newsmast.social,Energy & Pollution,energy_pollution,false -johnDaonld,newsmast.social,Gaming,gaming,false -johnDaonld,newsmast.social,History,history,false -johnDaonld,newsmast.social,Humanities,humanities,false -johnDaonld,newsmast.social,Movies,movies,false -johnDaonld,newsmast.social,Music,music,false -johnDaonld,newsmast.social,Performing Arts,performing_arts,false -johnDaonld,newsmast.social,Philosophy,philosophy,false -johnDaonld,newsmast.social,Photography,photography,false -johnDaonld,newsmast.social,Social Sciences,social_sciences,false -johnDaonld,newsmast.social,TV & Radio,tv_radio,false -johnDaonld,newsmast.social,Visual Arts,visual_arts,false -johnDaonld,newsmast.social,Environment,environment,true -jankjon,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,true -jankjon,newsmast.social,Breaking News,breaking_news,false -jankjon,newsmast.social,Climate change,climate_change,false -jankjon,newsmast.social,Energy & Pollution,energy_pollution,false -jankjon,newsmast.social,Environment,environment,false -jankjon,newsmast.social,Journalism & Comment,news_comment_data,false -jankjon,newsmast.social,Social Media,social_media,false -jankjon,newsmast.social,Ukraine Invasion,ukraine_invasion,false -instepphysio,newsmast.social,Academia & Research,academia_research,false -instepphysio,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false -instepphysio,newsmast.social,Climate change,climate_change,false -instepphysio,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -instepphysio,newsmast.social,Environment,environment,false -instepphysio,newsmast.social,Government & Policy,government_policy,false -instepphysio,newsmast.social,Healthcare,healthcare,false -instepphysio,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false -instepphysio,newsmast.social,Law & Justice,law_justice,false -instepphysio,newsmast.social,Politics,politics,false -instepphysio,newsmast.social,Poverty & Inequality,poverty_inequality,false -instepphysio,newsmast.social,US Politics,us_politics,false -instepphysio,newsmast.social,Energy & Pollution,energy_pollution,true -ToposInstitute,newsmast.social,AI,ai,false -ToposInstitute,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -ToposInstitute,newsmast.social,Engineering,engineering,false -ToposInstitute,newsmast.social,Mathematics,mathematics,true -ToposInstitute,newsmast.social,Poverty & Inequality,poverty_inequality,false -ToposInstitute,newsmast.social,Science,science,false -ToposInstitute,newsmast.social,Technology,technology,false -ToposInstitute,newsmast.social,Programming,programming,false -ToposInstitute,newsmast.social,Humanities,humanities,false -ToposInstitute,newsmast.social,Social Sciences,social_sciences,false -ToposInstitute,newsmast.social,Philosophy,philosophy,false -aaim,newsmast.social,Climate change,climate_change,false -aaim,newsmast.social,Energy & Pollution,energy_pollution,false -aaim,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,true -aaim,newsmast.social,Mathematics,mathematics,false -aaim,newsmast.social,Poverty & Inequality,poverty_inequality,false -aaim,newsmast.social,Science,science,false -Hwys2Railways,newsmast.social,Academia & Research,academia_research,false -Hwys2Railways,newsmast.social,Activism & Civil Rights,activism_civil_rights,false -Hwys2Railways,newsmast.social,AI,ai,false -Hwys2Railways,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false -Hwys2Railways,newsmast.social,Biology,biology,false -Hwys2Railways,newsmast.social,Black Voices,black_voices,false -Hwys2Railways,newsmast.social,Books & Literature,books_literature,false -Hwys2Railways,newsmast.social,Breaking News,breaking_news,false -Hwys2Railways,newsmast.social,Chemistry,chemistry,false -Hwys2Railways,newsmast.social,Climate change,climate_change,false -Hwys2Railways,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -Hwys2Railways,newsmast.social,Energy & Pollution,energy_pollution,false -Hwys2Railways,newsmast.social,Engineering,engineering,false -Hwys2Railways,newsmast.social,Environment,environment,true -Hwys2Railways,newsmast.social,Gaming,gaming,false -Hwys2Railways,newsmast.social,Government & Policy,government_policy,false -Hwys2Railways,newsmast.social,Healthcare,healthcare,false -Hwys2Railways,newsmast.social,History,history,false -Hwys2Railways,newsmast.social,Humanities,humanities,false -Hwys2Railways,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false -Hwys2Railways,newsmast.social,Immigrants Rights,immigrants_rights,false -Hwys2Railways,newsmast.social,Indigenous Peoples,indigenous_peoples,false -Hwys2Railways,newsmast.social,Law & Justice,law_justice,false -Hwys2Railways,newsmast.social,LGBTQ+,lgbtq,false -Hwys2Railways,newsmast.social,Mathematics,mathematics,false -Hwys2Railways,newsmast.social,Journalism & Comment,news_comment_data,false -Hwys2Railways,newsmast.social,Philosophy,philosophy,false -Hwys2Railways,newsmast.social,Physics,physics,false -Hwys2Railways,newsmast.social,Politics,politics,false -Hwys2Railways,newsmast.social,Poverty & Inequality,poverty_inequality,false -Hwys2Railways,newsmast.social,Programming,programming,false -Hwys2Railways,newsmast.social,Science,science,false -Hwys2Railways,newsmast.social,Social Sciences,social_sciences,false -Hwys2Railways,newsmast.social,Space,space,false -Hwys2Railways,newsmast.social,Technology,technology,false -Hwys2Railways,newsmast.social,Ukraine Invasion,ukraine_invasion,false -Hwys2Railways,newsmast.social,US Politics,us_politics,false -Hwys2Railways,newsmast.social,Visual Arts,visual_arts,false -Hwys2Railways,newsmast.social,Weather,weather,false -Hwys2Railways,newsmast.social,Women’s Voices,women_voices,false -valeriadepaiva,newsmast.social,AI,ai,false -valeriadepaiva,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false -valeriadepaiva,newsmast.social,Mathematics,mathematics,true -valeriadepaiva,newsmast.social,Poverty & Inequality,poverty_inequality,false -valeriadepaiva,newsmast.social,Programming,programming,false -Willow,newsmast.social,AI,ai,false -Willow,newsmast.social,Architecture & Design,architecture_design,false -Willow,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false -Willow,newsmast.social,Books & Literature,books_literature,false -Willow,newsmast.social,Business,business,false -Willow,newsmast.social,Climate change,climate_change,true -Willow,newsmast.social,Environment,environment,false -Willow,newsmast.social,Philosophy,philosophy,false -Willow,newsmast.social,Programming,programming,false -Willow,newsmast.social,Social Sciences,social_sciences,false -Willow,newsmast.social,Visual Arts,visual_arts,false -jcblhandtools,newsmast.social,Biology,biology,false -jcblhandtools,newsmast.social,Business,business,true -jcblhandtools,newsmast.social,Chemistry,chemistry,false -jcblhandtools,newsmast.social,Markets & Finance,markets_finance,false -jcblhandtools,newsmast.social,Mathematics,mathematics,false -jcblhandtools,newsmast.social,Physics,physics,false -jcblhandtools,newsmast.social,Science,science,false -jcblhandtools,newsmast.social,Space,space,false -jcblhandtools,newsmast.social,Workers Rights,workers_rights,false -47photography,newsmast.social,Photography,photography,true -47photography,newsmast.social,Creative Arts,creative_arts,false -47photography,newsmast.social,Social Media,social_media,false -47photography,newsmast.social,Breaking News,breaking_news,false -TechNieuws,newsmast.social,Breaking News,breaking_news,true -TechNieuws,newsmast.social,Business,business,false -TechNieuws,newsmast.social,Journalism & Comment,news_comment_data,false -TechNieuws,newsmast.social,Programming,programming,false -TechNieuws,newsmast.social,Social Media,social_media,false -TechNieuws,newsmast.social,Technology,technology,false -Natsurath,newsmast.social,Activism & Civil Rights,activism_civil_rights,false -Natsurath,newsmast.social,Biology,biology,false -Natsurath,newsmast.social,Black Voices,black_voices,false -Natsurath,newsmast.social,Chemistry,chemistry,false -Natsurath,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -Natsurath,newsmast.social,Engineering,engineering,false -Natsurath,newsmast.social,Food & Drink,food_drink,false -Natsurath,newsmast.social,Gaming,gaming,false -Natsurath,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false -Natsurath,newsmast.social,LGBTQ+,lgbtq,true -Natsurath,newsmast.social,Mathematics,mathematics,false -Natsurath,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false -Natsurath,newsmast.social,Movies,movies,false -Natsurath,newsmast.social,Nature & Wildlife,nature_wildlife,false -Natsurath,newsmast.social,Performing Arts,performing_arts,false -Natsurath,newsmast.social,Physics,physics,false -Natsurath,newsmast.social,Poverty & Inequality,poverty_inequality,false -Natsurath,newsmast.social,Programming,programming,false -Natsurath,newsmast.social,Science,science,false -Natsurath,newsmast.social,Social Media,social_media,false -Natsurath,newsmast.social,Space,space,false -Natsurath,newsmast.social,Technology,technology,false -Natsurath,newsmast.social,Travel,travel,false -Natsurath,newsmast.social,TV & Radio,tv_radio,false -Natsurath,newsmast.social,Ukraine Invasion,ukraine_invasion,false -Natsurath,newsmast.social,Weather,weather,false -Natsurath,newsmast.social,Women’s Voices,women_voices,false -JoeyJ0J0,newsmast.social,Academia & Research,academia_research,false -JoeyJ0J0,newsmast.social,Breaking News,breaking_news,false -JoeyJ0J0,newsmast.social,Healthcare,healthcare,false -JoeyJ0J0,newsmast.social,Journalism & Comment,news_comment_data,false -JoeyJ0J0,newsmast.social,Politics,politics,false -JoeyJ0J0,newsmast.social,Technology,technology,false -JoeyJ0J0,newsmast.social,Ukraine Invasion,ukraine_invasion,true -jamalpp,newsmast.social,Breaking News,breaking_news,true -jamalpp,newsmast.social,Journalism & Comment,news_comment_data,false -jamalpp,newsmast.social,Social Media,social_media,false -jamalpp,newsmast.social,Ukraine Invasion,ukraine_invasion,false -jamalpp,newsmast.social,Weather,weather,false -momentumphysio,newsmast.social,Breaking News,breaking_news,true -momentumphysio,newsmast.social,Journalism & Comment,news_comment_data,false -momentumphysio,newsmast.social,Social Media,social_media,false -momentumphysio,newsmast.social,Ukraine Invasion,ukraine_invasion,false -momentumphysio,newsmast.social,Weather,weather,false -harvinhentry,newsmast.social,Activism & Civil Rights,activism_civil_rights,false -harvinhentry,newsmast.social,AI,ai,false -harvinhentry,newsmast.social,Black Voices,black_voices,false -harvinhentry,newsmast.social,Disabled Voices,disabled_voices,false -harvinhentry,newsmast.social,Engineering,engineering,false -harvinhentry,newsmast.social,Immigrants Rights,immigrants_rights,false -harvinhentry,newsmast.social,Indigenous Peoples,indigenous_peoples,false -harvinhentry,newsmast.social,LGBTQ+,lgbtq,false -harvinhentry,newsmast.social,Programming,programming,false -harvinhentry,newsmast.social,Technology,technology,true -harvinhentry,newsmast.social,Women’s Voices,women_voices,false -Miaa,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false -Miaa,newsmast.social,Breaking News,breaking_news,true -Miaa,newsmast.social,Climate change,climate_change,false -Miaa,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -Miaa,newsmast.social,Environment,environment,false -han_smith,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false -han_smith,newsmast.social,Nature & Wildlife,nature_wildlife,false -han_smith,newsmast.social,Activism & Civil Rights,activism_civil_rights,false -han_smith,newsmast.social,Black Voices,black_voices,false -han_smith,newsmast.social,Breaking News,breaking_news,false -han_smith,newsmast.social,Climate change,climate_change,false -han_smith,newsmast.social,Disabled Voices,disabled_voices,false -han_smith,newsmast.social,Engineering,engineering,false -han_smith,newsmast.social,Environment,environment,false -han_smith,newsmast.social,Immigrants Rights,immigrants_rights,false -han_smith,newsmast.social,Indigenous Peoples,indigenous_peoples,false -han_smith,newsmast.social,LGBTQ+,lgbtq,true -han_smith,newsmast.social,Mathematics,mathematics,false -han_smith,newsmast.social,Journalism & Comment,news_comment_data,false -han_smith,newsmast.social,Physics,physics,false -han_smith,newsmast.social,Science,science,false -han_smith,newsmast.social,Social Sciences,social_sciences,false -han_smith,newsmast.social,Space,space,false -han_smith,newsmast.social,Weather,weather,false -han_smith,newsmast.social,Women’s Voices,women_voices,false -han_smith,newsmast.social,Workers Rights,workers_rights,false -notiska,newsmast.social,AI,ai,true -notiska,newsmast.social,Business,business,false -notiska,newsmast.social,Engineering,engineering,false -notiska,newsmast.social,Markets & Finance,markets_finance,false -notiska,newsmast.social,Programming,programming,false -notiska,newsmast.social,Technology,technology,false -notiska,newsmast.social,Workers Rights,workers_rights,false -neirda,newsmast.social,Football,football,false -neirda,newsmast.social,History,history,false -neirda,newsmast.social,Humanities,humanities,false -neirda,newsmast.social,Philosophy,philosophy,true -neirda,newsmast.social,Social Sciences,social_sciences,false -neirda,newsmast.social,Sport,sport,false -neirda,newsmast.social,US Sport,us_sport,false -michael,newsmast.social,Private Community,private-community,false -michael,newsmast.social,Visual Arts,visual_arts,false -michael,newsmast.social,Women’s Voices,women_voices,false -michael,newsmast.social,Social Media,social_media,true -michael,newsmast.social,Academia & Research,academia_research,false -michael,newsmast.social,Activism & Civil Rights,activism_civil_rights,false -michael,newsmast.social,Architecture & Design,architecture_design,false -michael,newsmast.social,Books & Literature,books_literature,false -michael,newsmast.social,Climate change,climate_change,false -michael,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -michael,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false -michael,newsmast.social,Indigenous Peoples,indigenous_peoples,false -michael,newsmast.social,Music,music,false -michael,newsmast.social,Nature & Wildlife,nature_wildlife,false -michael,newsmast.social,Journalism & Comment,news_comment_data,false -michael,newsmast.social,Photography,photography,false -michael,newsmast.social,Politics,politics,false -michael,newsmast.social,Poverty & Inequality,poverty_inequality,false -michael,newsmast.social,Space,space,false -michael,newsmast.social,US Politics,us_politics,false -michael,newsmast.social,Visual Arts,visual_arts,false -michael,newsmast.social,Women’s Voices,women_voices,false -Cappuccinogirl,newsmast.social,Activism & Civil Rights,activism_civil_rights,false -Cappuccinogirl,newsmast.social,Architecture & Design,architecture_design,false -Cappuccinogirl,newsmast.social,Books & Literature,books_literature,false -Cappuccinogirl,newsmast.social,History,history,true -Cappuccinogirl,newsmast.social,Humanities,humanities,false -Cappuccinogirl,newsmast.social,Philosophy,philosophy,false -Cappuccinogirl,newsmast.social,Photography,photography,false -Cappuccinogirl,newsmast.social,Politics,politics,false -Cappuccinogirl,newsmast.social,Social Sciences,social_sciences,false -Cappuccinogirl,newsmast.social,Women’s Voices,women_voices,false -Cappuccinogirl,newsmast.social,Workers Rights,workers_rights,false -Cappuccinogirl,newsmast.social,Music,music,false -Cappuccinogirl,newsmast.social,Travel,travel,false -Cappuccinogirl,newsmast.social,Academia & Research,academia_research,false -Cappuccinogirl,newsmast.social,Visual Arts,visual_arts,false -max,newsmast.social,Academia & Research,academia_research,false -max,newsmast.social,AI,ai,false -max,newsmast.social,Breaking News,breaking_news,false -max,newsmast.social,Environment,environment,false -max,newsmast.social,Government & Policy,government_policy,false -max,newsmast.social,Programming,programming,false -max,newsmast.social,Science,science,false -max,newsmast.social,Technology,technology,true -not_so_social,newsmast.social,AI,ai,false -not_so_social,newsmast.social,Biology,biology,false -not_so_social,newsmast.social,Chemistry,chemistry,false -not_so_social,newsmast.social,Engineering,engineering,false -not_so_social,newsmast.social,Humanities,humanities,false -not_so_social,newsmast.social,Mathematics,mathematics,false -not_so_social,newsmast.social,Physics,physics,false -not_so_social,newsmast.social,Programming,programming,false -not_so_social,newsmast.social,Science,science,false -not_so_social,newsmast.social,Social Sciences,social_sciences,false -not_so_social,newsmast.social,Space,space,false -not_so_social,newsmast.social,Technology,technology,true -tom2022,newsmast.social,Black Voices,black_voices,false -tom2022,newsmast.social,Indigenous Peoples,indigenous_peoples,false -tom2022,newsmast.social,LGBTQ+,lgbtq,true -tom2022,newsmast.social,Nature & Wildlife,nature_wildlife,false -tom2022,newsmast.social,Social Media,social_media,false -luked522,newsmast.social,Academia & Research,academia_research,false -luked522,newsmast.social,Architecture & Design,architecture_design,false -luked522,newsmast.social,Biology,biology,false -luked522,newsmast.social,Gaming,gaming,false -luked522,newsmast.social,Government & Policy,government_policy,false -luked522,newsmast.social,Humanities,humanities,false -luked522,newsmast.social,LGBTQ+,lgbtq,false -luked522,newsmast.social,Philosophy,philosophy,false -luked522,newsmast.social,Photography,photography,false -luked522,newsmast.social,Politics,politics,false -luked522,newsmast.social,Science,science,false -luked522,newsmast.social,Social Sciences,social_sciences,true -luked522,newsmast.social,Space,space,false -luked522,newsmast.social,TV & Radio,tv_radio,false -Tms12,newsmast.social,Creative Arts,creative_arts,false -Tms12,newsmast.social,Performing Arts,performing_arts,true -Tms12,newsmast.social,Science,science,false -Tms12,newsmast.social,Visual Arts,visual_arts,false -Tms12,newsmast.social,Markets & Finance,markets_finance,false -Tms12,newsmast.social,Workers Rights,workers_rights,false -miroslavglavic,newsmast.social,Breaking News,breaking_news,true -miroslavglavic,newsmast.social,Government & Policy,government_policy,false -miroslavglavic,newsmast.social,Law & Justice,law_justice,false -miroslavglavic,newsmast.social,Journalism & Comment,news_comment_data,false -miroslavglavic,newsmast.social,Weather,weather,false -physioemerald,newsmast.social,Biology,biology,false -physioemerald,newsmast.social,Chemistry,chemistry,true -physioemerald,newsmast.social,Creative Arts,creative_arts,false -physioemerald,newsmast.social,Food & Drink,food_drink,false -physioemerald,newsmast.social,Football,football,false -physioemerald,newsmast.social,History,history,false -physioemerald,newsmast.social,Humanities,humanities,false -physioemerald,newsmast.social,Humour,humour,false -physioemerald,newsmast.social,Mathematics,mathematics,false -physioemerald,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false -physioemerald,newsmast.social,Nature & Wildlife,nature_wildlife,false -physioemerald,newsmast.social,Pets,pets,false -physioemerald,newsmast.social,Philosophy,philosophy,false -physioemerald,newsmast.social,Physics,physics,false -physioemerald,newsmast.social,Puzzles,puzzles,false -physioemerald,newsmast.social,Science,science,false -physioemerald,newsmast.social,Social Sciences,social_sciences,false -physioemerald,newsmast.social,Space,space,false -physioemerald,newsmast.social,Sport,sport,false -physioemerald,newsmast.social,Travel,travel,false -physioemerald,newsmast.social,US Sport,us_sport,false -junctionpoint,newsmast.social,AI,ai,false -junctionpoint,newsmast.social,Business,business,true -junctionpoint,newsmast.social,Engineering,engineering,false -junctionpoint,newsmast.social,Football,football,false -junctionpoint,newsmast.social,Markets & Finance,markets_finance,false -junctionpoint,newsmast.social,Programming,programming,false -junctionpoint,newsmast.social,Sport,sport,false -junctionpoint,newsmast.social,Technology,technology,false -junctionpoint,newsmast.social,US Sport,us_sport,false -junctionpoint,newsmast.social,Workers Rights,workers_rights,false -yisem,newsmast.social,Breaking News,breaking_news,true -yisem,newsmast.social,Journalism & Comment,news_comment_data,false -yisem,newsmast.social,Social Media,social_media,false -yisem,newsmast.social,Ukraine Invasion,ukraine_invasion,false -yisem,newsmast.social,Weather,weather,false -stevebownan,newsmast.social,AI,ai,false -stevebownan,newsmast.social,Books & Literature,books_literature,false -stevebownan,newsmast.social,Breaking News,breaking_news,false -stevebownan,newsmast.social,Democracy & Human Rights,democracy_human_rights,true -stevebownan,newsmast.social,Food & Drink,food_drink,false -stevebownan,newsmast.social,Football,football,false -stevebownan,newsmast.social,Movies,movies,false -stevebownan,newsmast.social,Music,music,false -stevebownan,newsmast.social,Nature & Wildlife,nature_wildlife,false -stevebownan,newsmast.social,Journalism & Comment,news_comment_data,false -stevebownan,newsmast.social,Physics,physics,false -stevebownan,newsmast.social,Politics,politics,false -stevebownan,newsmast.social,Poverty & Inequality,poverty_inequality,false -stevebownan,newsmast.social,Programming,programming,false -stevebownan,newsmast.social,Science,science,false -stevebownan,newsmast.social,Space,space,false -stevebownan,newsmast.social,Technology,technology,false -stevebownan,newsmast.social,Travel,travel,false -ahmed90,newsmast.social,AI,ai,false -ahmed90,newsmast.social,Business,business,false -ahmed90,newsmast.social,Engineering,engineering,false -ahmed90,newsmast.social,Government & Policy,government_policy,false -ahmed90,newsmast.social,Healthcare,healthcare,false -ahmed90,newsmast.social,Markets & Finance,markets_finance,false -ahmed90,newsmast.social,Programming,programming,false -ahmed90,newsmast.social,Technology,technology,true -Jarhead2029,newsmast.social,AI,ai,false -Jarhead2029,newsmast.social,Biology,biology,false -Jarhead2029,newsmast.social,Breaking News,breaking_news,false -Jarhead2029,newsmast.social,Chemistry,chemistry,false -Jarhead2029,newsmast.social,Democracy & Human Rights,democracy_human_rights,true -Jarhead2029,newsmast.social,Government & Policy,government_policy,false -Jarhead2029,newsmast.social,Healthcare,healthcare,false -Jarhead2029,newsmast.social,Humanities,humanities,false -Jarhead2029,newsmast.social,Humour,humour,false -Jarhead2029,newsmast.social,Immigrants Rights,immigrants_rights,false -Jarhead2029,newsmast.social,Law & Justice,law_justice,false -Jarhead2029,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false -Jarhead2029,newsmast.social,Nature & Wildlife,nature_wildlife,false -Jarhead2029,newsmast.social,Pets,pets,false -Jarhead2029,newsmast.social,Philosophy,philosophy,false -Jarhead2029,newsmast.social,Physics,physics,false -Jarhead2029,newsmast.social,Politics,politics,false -Jarhead2029,newsmast.social,Poverty & Inequality,poverty_inequality,false -Jarhead2029,newsmast.social,Puzzles,puzzles,false -Jarhead2029,newsmast.social,Science,science,false -Jarhead2029,newsmast.social,Social Media,social_media,false -Jarhead2029,newsmast.social,Social Sciences,social_sciences,false -Jarhead2029,newsmast.social,Sport,sport,false -Jarhead2029,newsmast.social,Technology,technology,false -Jarhead2029,newsmast.social,Travel,travel,false -Jarhead2029,newsmast.social,Ukraine Invasion,ukraine_invasion,false -Jarhead2029,newsmast.social,US Politics,us_politics,false -Jarhead2029,newsmast.social,US Sport,us_sport,false -Jarhead2029,newsmast.social,Weather,weather,false -TuesdayReviewAU,newsmast.social,Books & Literature,books_literature,false -TuesdayReviewAU,newsmast.social,Breaking News,breaking_news,false -TuesdayReviewAU,newsmast.social,Gaming,gaming,false -TuesdayReviewAU,newsmast.social,Humanities,humanities,false -TuesdayReviewAU,newsmast.social,Movies,movies,true -TuesdayReviewAU,newsmast.social,Journalism & Comment,news_comment_data,false -TuesdayReviewAU,newsmast.social,Philosophy,philosophy,false -TuesdayReviewAU,newsmast.social,Social Media,social_media,false -TuesdayReviewAU,newsmast.social,Technology,technology,false -TuesdayReviewAU,newsmast.social,TV & Radio,tv_radio,false -TuesdayReviewAU,newsmast.social,Visual Arts,visual_arts,false -GlobalRewilding,newsmast.social,Academia & Research,academia_research,false -GlobalRewilding,newsmast.social,Climate change,climate_change,false -GlobalRewilding,newsmast.social,Environment,environment,false -GlobalRewilding,newsmast.social,Government & Policy,government_policy,false -GlobalRewilding,newsmast.social,Science,science,false -GlobalRewilding,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,true -Bubblefarts,newsmast.social,Biology,biology,false -Bubblefarts,newsmast.social,Creative Arts,creative_arts,false -Bubblefarts,newsmast.social,Physics,physics,false -Bubblefarts,newsmast.social,Puzzles,puzzles,false -Bubblefarts,newsmast.social,Activism & Civil Rights,activism_civil_rights,true -YNA,newsmast.social,Technology,technology,true -YNA,newsmast.social,Engineering,engineering,false -sev,newsmast.social,Philosophy,philosophy,false -sev,newsmast.social,Creative Arts,creative_arts,false -sev,newsmast.social,Journalism & Comment,news_comment_data,false -sev,newsmast.social,Breaking News,breaking_news,false -sev,newsmast.social,Weather,weather,false -sev,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false -sev,newsmast.social,Nature & Wildlife,nature_wildlife,false -sev,newsmast.social,Ukraine Invasion,ukraine_invasion,false -sev,newsmast.social,Social Media,social_media,false -sev,newsmast.social,Visual Arts,visual_arts,false -ommo,newsmast.social,Engineering,engineering,false -ommo,newsmast.social,Science,science,false -ommo,newsmast.social,Space,space,true -ommo,newsmast.social,Technology,technology,false -ommo,newsmast.social,Weather,weather,false -kaerypheur,newsmast.social,Academia & Research,academia_research,false -kaerypheur,newsmast.social,Activism & Civil Rights,activism_civil_rights,false -kaerypheur,newsmast.social,AI,ai,false -kaerypheur,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false -kaerypheur,newsmast.social,Biology,biology,false -kaerypheur,newsmast.social,Breaking News,breaking_news,false -kaerypheur,newsmast.social,Business,business,false -kaerypheur,newsmast.social,Climate change,climate_change,false -kaerypheur,newsmast.social,Creative Arts,creative_arts,false -kaerypheur,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -kaerypheur,newsmast.social,Disabled Voices,disabled_voices,false -kaerypheur,newsmast.social,Energy & Pollution,energy_pollution,false -kaerypheur,newsmast.social,Engineering,engineering,false -kaerypheur,newsmast.social,Environment,environment,false -kaerypheur,newsmast.social,Food & Drink,food_drink,false -kaerypheur,newsmast.social,Government & Policy,government_policy,false -kaerypheur,newsmast.social,Healthcare,healthcare,false -kaerypheur,newsmast.social,History,history,false -kaerypheur,newsmast.social,Humanities,humanities,false -kaerypheur,newsmast.social,Humour,humour,false -kaerypheur,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false -kaerypheur,newsmast.social,Immigrants Rights,immigrants_rights,false -kaerypheur,newsmast.social,Indigenous Peoples,indigenous_peoples,false -kaerypheur,newsmast.social,Law & Justice,law_justice,false -kaerypheur,newsmast.social,Markets & Finance,markets_finance,false -kaerypheur,newsmast.social,Mathematics,mathematics,false -kaerypheur,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,true -kaerypheur,newsmast.social,Nature & Wildlife,nature_wildlife,false -kaerypheur,newsmast.social,Journalism & Comment,news_comment_data,false -kaerypheur,newsmast.social,Pets,pets,false -kaerypheur,newsmast.social,Philosophy,philosophy,false -kaerypheur,newsmast.social,Politics,politics,false -kaerypheur,newsmast.social,Poverty & Inequality,poverty_inequality,false -kaerypheur,newsmast.social,Programming,programming,false -kaerypheur,newsmast.social,Puzzles,puzzles,false -kaerypheur,newsmast.social,Science,science,false -kaerypheur,newsmast.social,Social Media,social_media,false -kaerypheur,newsmast.social,Social Sciences,social_sciences,false -kaerypheur,newsmast.social,Space,space,false -kaerypheur,newsmast.social,Technology,technology,false -kaerypheur,newsmast.social,Travel,travel,false -kaerypheur,newsmast.social,Ukraine Invasion,ukraine_invasion,false -kaerypheur,newsmast.social,US Politics,us_politics,false -kaerypheur,newsmast.social,Weather,weather,false -kaerypheur,newsmast.social,Women’s Voices,women_voices,false -kaerypheur,newsmast.social,Workers Rights,workers_rights,false -channyeintun,newsmast.social,Academia & Research,academia_research,false -channyeintun,newsmast.social,AI,ai,false -channyeintun,newsmast.social,Creative Arts,creative_arts,false -channyeintun,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -channyeintun,newsmast.social,Engineering,engineering,false -channyeintun,newsmast.social,Food & Drink,food_drink,false -channyeintun,newsmast.social,Government & Policy,government_policy,false -channyeintun,newsmast.social,Healthcare,healthcare,false -channyeintun,newsmast.social,Humour,humour,false -channyeintun,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false -channyeintun,newsmast.social,Law & Justice,law_justice,false -channyeintun,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,true -channyeintun,newsmast.social,Nature & Wildlife,nature_wildlife,false -channyeintun,newsmast.social,Pets,pets,false -channyeintun,newsmast.social,Politics,politics,false -channyeintun,newsmast.social,Poverty & Inequality,poverty_inequality,false -channyeintun,newsmast.social,Programming,programming,false -channyeintun,newsmast.social,Puzzles,puzzles,false -channyeintun,newsmast.social,Technology,technology,false -channyeintun,newsmast.social,Travel,travel,false -channyeintun,newsmast.social,US Politics,us_politics,false -alemida44,newsmast.social,AI,ai,false -alemida44,newsmast.social,Breaking News,breaking_news,true -alemida44,newsmast.social,Engineering,engineering,false -alemida44,newsmast.social,Technology,technology,false -alemida44,newsmast.social,Ukraine Invasion,ukraine_invasion,false -Serious_Feather,newsmast.social,History,history,false -Serious_Feather,newsmast.social,Philosophy,philosophy,false -Serious_Feather,newsmast.social,Social Sciences,social_sciences,false -Serious_Feather,newsmast.social,Science,science,false -Serious_Feather,newsmast.social,Space,space,false -Serious_Feather,newsmast.social,Architecture & Design,architecture_design,false -Serious_Feather,newsmast.social,Law & Justice,law_justice,false -Serious_Feather,newsmast.social,Photography,photography,false -Serious_Feather,newsmast.social,Politics,politics,true -Serious_Feather,newsmast.social,Poverty & Inequality,poverty_inequality,false -Serious_Feather,newsmast.social,US Politics,us_politics,false -Serious_Feather,newsmast.social,Gaming,gaming,false -Serious_Feather,newsmast.social,Visual Arts,visual_arts,false -Serious_Feather,newsmast.social,Technology,technology,false -Serious_Feather,newsmast.social,Social Media,social_media,false -Serious_Feather,newsmast.social,Workers Rights,workers_rights,false -Serious_Feather,newsmast.social,Markets & Finance,markets_finance,false -Serious_Feather,newsmast.social,Business,business,false -Serious_Feather,newsmast.social,Movies,movies,false -Serious_Feather,newsmast.social,Music,music,false -Serious_Feather,newsmast.social,Performing Arts,performing_arts,false -Serious_Feather,newsmast.social,Books & Literature,books_literature,false -Serious_Feather,newsmast.social,Humanities,humanities,false -Serious_Feather,newsmast.social,Creative Arts,creative_arts,false -diamondlewis,newsmast.social,Breaking News,breaking_news,false -diamondlewis,newsmast.social,Journalism & Comment,news_comment_data,false -diamondlewis,newsmast.social,Ukraine Invasion,ukraine_invasion,false -diamondlewis,newsmast.social,Weather,weather,false -diamondlewis,newsmast.social,Social Media,social_media,true -familyphysio,newsmast.social,Academia & Research,academia_research,false -familyphysio,newsmast.social,Breaking News,breaking_news,false -familyphysio,newsmast.social,Government & Policy,government_policy,false -familyphysio,newsmast.social,Healthcare,healthcare,false -familyphysio,newsmast.social,Law & Justice,law_justice,true -familyphysio,newsmast.social,Journalism & Comment,news_comment_data,false -familyphysio,newsmast.social,Politics,politics,false -familyphysio,newsmast.social,Social Media,social_media,false -familyphysio,newsmast.social,Ukraine Invasion,ukraine_invasion,false -familyphysio,newsmast.social,US Politics,us_politics,false -familyphysio,newsmast.social,Weather,weather,false -John90,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,true -John90,newsmast.social,Breaking News,breaking_news,false -John90,newsmast.social,Climate change,climate_change,false -John90,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -John90,newsmast.social,Environment,environment,false -collected_cards,newsmast.social,History,history,false -collected_cards,newsmast.social,LGBTQ+,lgbtq,true -collected_cards,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false -collected_cards,newsmast.social,Music,music,false -collected_cards,newsmast.social,Nature & Wildlife,nature_wildlife,false -collected_cards,newsmast.social,Philosophy,philosophy,false -collected_cards,newsmast.social,Social Sciences,social_sciences,false -physioedmonton,newsmast.social,Journalism & Comment,news_comment_data,false -physioedmonton,newsmast.social,Social Media,social_media,false -physioedmonton,newsmast.social,Ukraine Invasion,ukraine_invasion,false -physioedmonton,newsmast.social,Weather,weather,false -physioedmonton,newsmast.social,Breaking News,breaking_news,true -ivan,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false -ivan,newsmast.social,Breaking News,breaking_news,true -ivan,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -ivan,newsmast.social,History,history,false -ivan,newsmast.social,Social Sciences,social_sciences,false -Clarke617,newsmast.social,Academia & Research,academia_research,false -Clarke617,newsmast.social,Breaking News,breaking_news,true -Clarke617,newsmast.social,Creative Arts,creative_arts,false -Clarke617,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -Clarke617,newsmast.social,Food & Drink,food_drink,false -Clarke617,newsmast.social,Government & Policy,government_policy,false -Clarke617,newsmast.social,Healthcare,healthcare,false -Clarke617,newsmast.social,Humour,humour,false -Clarke617,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false -Clarke617,newsmast.social,Law & Justice,law_justice,false -Clarke617,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false -Clarke617,newsmast.social,Nature & Wildlife,nature_wildlife,false -Clarke617,newsmast.social,Journalism & Comment,news_comment_data,false -Clarke617,newsmast.social,Pets,pets,false -Clarke617,newsmast.social,Politics,politics,false -Clarke617,newsmast.social,Poverty & Inequality,poverty_inequality,false -Clarke617,newsmast.social,Puzzles,puzzles,false -Clarke617,newsmast.social,Social Media,social_media,false -Clarke617,newsmast.social,Travel,travel,false -Clarke617,newsmast.social,Ukraine Invasion,ukraine_invasion,false -Clarke617,newsmast.social,US Politics,us_politics,false -Clarke617,newsmast.social,Weather,weather,false -Ypsilenna,newsmast.social,Gaming,gaming,false -Ypsilenna,newsmast.social,Music,music,false -Ypsilenna,newsmast.social,Performing Arts,performing_arts,false -Ypsilenna,newsmast.social,Photography,photography,false -Ypsilenna,newsmast.social,Visual Arts,visual_arts,true -martin3456,newsmast.social,Architecture & Design,architecture_design,false -martin3456,newsmast.social,Biology,biology,false -martin3456,newsmast.social,Books & Literature,books_literature,false -martin3456,newsmast.social,Breaking News,breaking_news,false -martin3456,newsmast.social,Business,business,false -martin3456,newsmast.social,Chemistry,chemistry,false -martin3456,newsmast.social,Creative Arts,creative_arts,false -martin3456,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -martin3456,newsmast.social,Food & Drink,food_drink,false -martin3456,newsmast.social,Football,football,false -martin3456,newsmast.social,Gaming,gaming,false -martin3456,newsmast.social,History,history,false -martin3456,newsmast.social,Humanities,humanities,false -martin3456,newsmast.social,Humour,humour,false -martin3456,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false -martin3456,newsmast.social,Markets & Finance,markets_finance,false -martin3456,newsmast.social,Mathematics,mathematics,false -martin3456,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false -martin3456,newsmast.social,Movies,movies,false -martin3456,newsmast.social,Music,music,false -martin3456,newsmast.social,Nature & Wildlife,nature_wildlife,false -martin3456,newsmast.social,Journalism & Comment,news_comment_data,false -martin3456,newsmast.social,Performing Arts,performing_arts,false -martin3456,newsmast.social,Pets,pets,false -martin3456,newsmast.social,Philosophy,philosophy,false -martin3456,newsmast.social,Photography,photography,false -martin3456,newsmast.social,Physics,physics,false -martin3456,newsmast.social,Poverty & Inequality,poverty_inequality,false -martin3456,newsmast.social,Puzzles,puzzles,false -martin3456,newsmast.social,Science,science,false -martin3456,newsmast.social,Social Media,social_media,false -martin3456,newsmast.social,Social Sciences,social_sciences,false -martin3456,newsmast.social,Space,space,false -martin3456,newsmast.social,Sport,sport,false -martin3456,newsmast.social,Travel,travel,false -martin3456,newsmast.social,TV & Radio,tv_radio,false -martin3456,newsmast.social,Ukraine Invasion,ukraine_invasion,false -martin3456,newsmast.social,US Sport,us_sport,false -martin3456,newsmast.social,Visual Arts,visual_arts,false -martin3456,newsmast.social,Weather,weather,false -martin3456,newsmast.social,Workers Rights,workers_rights,true -sylphrenetic,newsmast.social,Academia & Research,academia_research,false -sylphrenetic,newsmast.social,Philosophy,philosophy,false -sylphrenetic,newsmast.social,Programming,programming,true -sylphrenetic,newsmast.social,Science,science,false -sylphrenetic,newsmast.social,Social Sciences,social_sciences,false -sylphrenetic,newsmast.social,Technology,technology,false -sylphrenetic,newsmast.social,US Politics,us_politics,false -egc25,newsmast.social,Academia & Research,academia_research,false -egc25,newsmast.social,Activism & Civil Rights,activism_civil_rights,false -egc25,newsmast.social,Architecture & Design,architecture_design,false -egc25,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false -egc25,newsmast.social,Black Voices,black_voices,false -egc25,newsmast.social,Books & Literature,books_literature,false -egc25,newsmast.social,Breaking News,breaking_news,false -egc25,newsmast.social,Climate change,climate_change,false -egc25,newsmast.social,Disabled Voices,disabled_voices,false -egc25,newsmast.social,Energy & Pollution,energy_pollution,false -egc25,newsmast.social,Environment,environment,false -egc25,newsmast.social,Gaming,gaming,false -egc25,newsmast.social,Government & Policy,government_policy,false -egc25,newsmast.social,Healthcare,healthcare,false -egc25,newsmast.social,History,history,false -egc25,newsmast.social,Humanities,humanities,false -egc25,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false -egc25,newsmast.social,Immigrants Rights,immigrants_rights,false -egc25,newsmast.social,Indigenous Peoples,indigenous_peoples,false -egc25,newsmast.social,LGBTQ+,lgbtq,false -egc25,newsmast.social,Journalism & Comment,news_comment_data,false -egc25,newsmast.social,Philosophy,philosophy,false -egc25,newsmast.social,Photography,photography,false -egc25,newsmast.social,Poverty & Inequality,poverty_inequality,false -egc25,newsmast.social,Social Media,social_media,false -egc25,newsmast.social,Social Sciences,social_sciences,false -egc25,newsmast.social,Ukraine Invasion,ukraine_invasion,false -egc25,newsmast.social,Weather,weather,false -egc25,newsmast.social,Women’s Voices,women_voices,false -egc25,newsmast.social,Democracy & Human Rights,democracy_human_rights,true -Tyom,newsmast.social,Architecture & Design,architecture_design,false -Tyom,newsmast.social,Breaking News,breaking_news,false -Tyom,newsmast.social,Disabled Voices,disabled_voices,false -Tyom,newsmast.social,Humanities,humanities,false -Tyom,newsmast.social,Philosophy,philosophy,false -Tyom,newsmast.social,Social Sciences,social_sciences,true -emiliafilipowic,newsmast.social,Academia & Research,academia_research,false -emiliafilipowic,newsmast.social,Activism & Civil Rights,activism_civil_rights,false -emiliafilipowic,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false -emiliafilipowic,newsmast.social,Black Voices,black_voices,false -emiliafilipowic,newsmast.social,Breaking News,breaking_news,false -emiliafilipowic,newsmast.social,Business,business,true -emiliafilipowic,newsmast.social,Climate change,climate_change,false -emiliafilipowic,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -emiliafilipowic,newsmast.social,Disabled Voices,disabled_voices,false -emiliafilipowic,newsmast.social,Energy & Pollution,energy_pollution,false -emiliafilipowic,newsmast.social,Environment,environment,false -emiliafilipowic,newsmast.social,Government & Policy,government_policy,false -emiliafilipowic,newsmast.social,Healthcare,healthcare,false -emiliafilipowic,newsmast.social,History,history,false -emiliafilipowic,newsmast.social,Humanities,humanities,false -emiliafilipowic,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false -emiliafilipowic,newsmast.social,Immigrants Rights,immigrants_rights,false -emiliafilipowic,newsmast.social,Indigenous Peoples,indigenous_peoples,false -emiliafilipowic,newsmast.social,Law & Justice,law_justice,false -emiliafilipowic,newsmast.social,LGBTQ+,lgbtq,false -emiliafilipowic,newsmast.social,Markets & Finance,markets_finance,false -emiliafilipowic,newsmast.social,Journalism & Comment,news_comment_data,false -emiliafilipowic,newsmast.social,Philosophy,philosophy,false -emiliafilipowic,newsmast.social,Politics,politics,false -emiliafilipowic,newsmast.social,Poverty & Inequality,poverty_inequality,false -emiliafilipowic,newsmast.social,Social Media,social_media,false -emiliafilipowic,newsmast.social,Social Sciences,social_sciences,false -emiliafilipowic,newsmast.social,Ukraine Invasion,ukraine_invasion,false -emiliafilipowic,newsmast.social,US Politics,us_politics,false -emiliafilipowic,newsmast.social,Weather,weather,false -emiliafilipowic,newsmast.social,Women’s Voices,women_voices,false -emiliafilipowic,newsmast.social,Workers Rights,workers_rights,false -emiliafilipowic,newsmast.social,Gaming,gaming,false -0fj0,newsmast.social,Breaking News,breaking_news,true -0fj0,newsmast.social,Markets & Finance,markets_finance,false -0fj0,newsmast.social,Journalism & Comment,news_comment_data,false -0fj0,newsmast.social,Social Media,social_media,false -0fj0,newsmast.social,Technology,technology,false -0fj0,newsmast.social,Ukraine Invasion,ukraine_invasion,false -iop5,newsmast.social,Academia & Research,academia_research,false -iop5,newsmast.social,Democracy & Human Rights,democracy_human_rights,true -iop5,newsmast.social,Government & Policy,government_policy,false -iop5,newsmast.social,Healthcare,healthcare,false -iop5,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false -iop5,newsmast.social,Poverty & Inequality,poverty_inequality,false -sunrisephysio,newsmast.social,Business,business,true -sunrisephysio,newsmast.social,Football,football,false -sunrisephysio,newsmast.social,History,history,false -sunrisephysio,newsmast.social,Humanities,humanities,false -sunrisephysio,newsmast.social,Markets & Finance,markets_finance,false -sunrisephysio,newsmast.social,Philosophy,philosophy,false -sunrisephysio,newsmast.social,Social Sciences,social_sciences,false -sunrisephysio,newsmast.social,Sport,sport,false -sunrisephysio,newsmast.social,US Sport,us_sport,false -sunrisephysio,newsmast.social,Workers Rights,workers_rights,false -teowawki,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false -teowawki,newsmast.social,Biology,biology,false -teowawki,newsmast.social,Breaking News,breaking_news,true -teowawki,newsmast.social,Climate change,climate_change,false -teowawki,newsmast.social,Energy & Pollution,energy_pollution,false -teowawki,newsmast.social,Environment,environment,false -teowawki,newsmast.social,Government & Policy,government_policy,false -teowawki,newsmast.social,History,history,false -teowawki,newsmast.social,Philosophy,philosophy,false -teowawki,newsmast.social,Science,science,false -teowawki,newsmast.social,Social Sciences,social_sciences,false -teowawki,newsmast.social,Space,space,false -teowawki,newsmast.social,Technology,technology,false -teowawki,newsmast.social,US Politics,us_politics,false -tuckerm,newsmast.social,Pets,pets,false -tuckerm,newsmast.social,Biology,biology,false -tuckerm,newsmast.social,Breaking News,breaking_news,false -tuckerm,newsmast.social,Chemistry,chemistry,false -tuckerm,newsmast.social,History,history,false -tuckerm,newsmast.social,Humanities,humanities,false -tuckerm,newsmast.social,Mathematics,mathematics,false -tuckerm,newsmast.social,Journalism & Comment,news_comment_data,true -tuckerm,newsmast.social,Philosophy,philosophy,false -tuckerm,newsmast.social,Physics,physics,false -tuckerm,newsmast.social,Science,science,false -tuckerm,newsmast.social,Social Media,social_media,false -tuckerm,newsmast.social,Social Sciences,social_sciences,false -tuckerm,newsmast.social,Space,space,false -tuckerm,newsmast.social,Ukraine Invasion,ukraine_invasion,false -tuckerm,newsmast.social,US Sport,us_sport,false -tuckerm,newsmast.social,Weather,weather,false -tuckerm,newsmast.social,Puzzles,puzzles,false -BlesthThySoul,newsmast.social,Breaking News,breaking_news,true -BlesthThySoul,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -BlesthThySoul,newsmast.social,Government & Policy,government_policy,false -BlesthThySoul,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false -BlesthThySoul,newsmast.social,Law & Justice,law_justice,false -BlesthThySoul,newsmast.social,Journalism & Comment,news_comment_data,false -BlesthThySoul,newsmast.social,Politics,politics,false -BlesthThySoul,newsmast.social,Poverty & Inequality,poverty_inequality,false -BlesthThySoul,newsmast.social,Ukraine Invasion,ukraine_invasion,false -BlesthThySoul,newsmast.social,US Politics,us_politics,false -BlesthThySoul,newsmast.social,Programming,programming,false -keithramsey,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false -keithramsey,newsmast.social,Books & Literature,books_literature,false -keithramsey,newsmast.social,Climate change,climate_change,false -keithramsey,newsmast.social,Energy & Pollution,energy_pollution,false -keithramsey,newsmast.social,History,history,true -keithramsey,newsmast.social,Humanities,humanities,false -keithramsey,newsmast.social,Photography,photography,false -keithramsey,newsmast.social,Science,science,false -keithramsey,newsmast.social,Environment,environment,false -keithramsey,newsmast.social,Journalism & Comment,news_comment_data,false -keithramsey,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -keithramsey,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false -keithramsey,newsmast.social,Poverty & Inequality,poverty_inequality,false -keithramsey,newsmast.social,Activism & Civil Rights,activism_civil_rights,false -keithramsey,newsmast.social,Women’s Voices,women_voices,false -keithramsey,newsmast.social,LGBTQ+,lgbtq,false -keithramsey,newsmast.social,Indigenous Peoples,indigenous_peoples,false -keithramsey,newsmast.social,Immigrants Rights,immigrants_rights,false -keithramsey,newsmast.social,Disabled Voices,disabled_voices,false -keithramsey,newsmast.social,Black Voices,black_voices,false -keithramsey,newsmast.social,Architecture & Design,architecture_design,false -keithramsey,newsmast.social,Visual Arts,visual_arts,false -keithramsey,newsmast.social,Creative Arts,creative_arts,false -keithramsey,newsmast.social,Nature & Wildlife,nature_wildlife,false -Sahqon,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false -Sahqon,newsmast.social,Biology,biology,false -Sahqon,newsmast.social,Breaking News,breaking_news,false -Sahqon,newsmast.social,Climate change,climate_change,false -Sahqon,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -Sahqon,newsmast.social,Energy & Pollution,energy_pollution,false -Sahqon,newsmast.social,Environment,environment,false -Sahqon,newsmast.social,Government & Policy,government_policy,false -Sahqon,newsmast.social,Physics,physics,false -Sahqon,newsmast.social,Science,science,true -emuwasabi,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false -emuwasabi,newsmast.social,Climate change,climate_change,false -emuwasabi,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -emuwasabi,newsmast.social,Energy & Pollution,energy_pollution,false -emuwasabi,newsmast.social,Environment,environment,false -emuwasabi,newsmast.social,US Politics,us_politics,true -burnitdownpls,newsmast.social,Academia & Research,academia_research,true -burnitdownpls,newsmast.social,Architecture & Design,architecture_design,false -burnitdownpls,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false -burnitdownpls,newsmast.social,Biology,biology,false -burnitdownpls,newsmast.social,Books & Literature,books_literature,false -burnitdownpls,newsmast.social,Breaking News,breaking_news,false -burnitdownpls,newsmast.social,Chemistry,chemistry,false -burnitdownpls,newsmast.social,Climate change,climate_change,false -burnitdownpls,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -burnitdownpls,newsmast.social,Energy & Pollution,energy_pollution,false -burnitdownpls,newsmast.social,Environment,environment,false -burnitdownpls,newsmast.social,Gaming,gaming,false -burnitdownpls,newsmast.social,Government & Policy,government_policy,false -burnitdownpls,newsmast.social,Healthcare,healthcare,false -burnitdownpls,newsmast.social,History,history,false -burnitdownpls,newsmast.social,Humanities,humanities,false -burnitdownpls,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false -burnitdownpls,newsmast.social,Law & Justice,law_justice,false -burnitdownpls,newsmast.social,Mathematics,mathematics,false -burnitdownpls,newsmast.social,Movies,movies,false -burnitdownpls,newsmast.social,Music,music,false -burnitdownpls,newsmast.social,Journalism & Comment,news_comment_data,false -burnitdownpls,newsmast.social,Performing Arts,performing_arts,false -burnitdownpls,newsmast.social,Philosophy,philosophy,false -burnitdownpls,newsmast.social,Photography,photography,false -burnitdownpls,newsmast.social,Physics,physics,false -burnitdownpls,newsmast.social,Politics,politics,false -burnitdownpls,newsmast.social,Poverty & Inequality,poverty_inequality,false -burnitdownpls,newsmast.social,Science,science,false -burnitdownpls,newsmast.social,Social Media,social_media,false -burnitdownpls,newsmast.social,Social Sciences,social_sciences,false -burnitdownpls,newsmast.social,Space,space,false -burnitdownpls,newsmast.social,TV & Radio,tv_radio,false -burnitdownpls,newsmast.social,Ukraine Invasion,ukraine_invasion,false -burnitdownpls,newsmast.social,US Politics,us_politics,false -burnitdownpls,newsmast.social,Visual Arts,visual_arts,false -burnitdownpls,newsmast.social,Weather,weather,false -jtarde23,newsmast.social,Creative Arts,creative_arts,false -jtarde23,newsmast.social,Humour,humour,false -jtarde23,newsmast.social,Photography,photography,true -jtarde23,newsmast.social,Travel,travel,false -jtarde23,newsmast.social,Visual Arts,visual_arts,false -john_90,newsmast.social,Breaking News,breaking_news,false -john_90,newsmast.social,Journalism & Comment,news_comment_data,false -john_90,newsmast.social,Social Media,social_media,true -john_90,newsmast.social,Ukraine Invasion,ukraine_invasion,false -john_90,newsmast.social,Weather,weather,false -FreddieJ,newsmast.social,Movies,movies,false -FreddieJ,newsmast.social,Politics,politics,false -FreddieJ,newsmast.social,History,history,false -FreddieJ,newsmast.social,Indigenous Peoples,indigenous_peoples,false -FreddieJ,newsmast.social,Environment,environment,false -FreddieJ,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false -FreddieJ,newsmast.social,Climate change,climate_change,false -FreddieJ,newsmast.social,Disabled Voices,disabled_voices,false -FreddieJ,newsmast.social,Immigrants Rights,immigrants_rights,false -FreddieJ,newsmast.social,Workers Rights,workers_rights,false -FreddieJ,newsmast.social,Books & Literature,books_literature,false -FreddieJ,newsmast.social,Humanities,humanities,false -FreddieJ,newsmast.social,Visual Arts,visual_arts,false -FreddieJ,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -FreddieJ,newsmast.social,Poverty & Inequality,poverty_inequality,false -FreddieJ,newsmast.social,Activism & Civil Rights,activism_civil_rights,false -FreddieJ,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false -FreddieJ,newsmast.social,Government & Policy,government_policy,false -FreddieJ,newsmast.social,Energy & Pollution,energy_pollution,false -FreddieJ,newsmast.social,Black Voices,black_voices,false -FreddieJ,newsmast.social,Women’s Voices,women_voices,false -FreddieJ,newsmast.social,Social Sciences,social_sciences,false -FreddieJ,newsmast.social,AI,ai,false -FreddieJ,newsmast.social,Science,science,false -FreddieJ,newsmast.social,Nature & Wildlife,nature_wildlife,false -FreddieJ,newsmast.social,Journalism & Comment,news_comment_data,false -FreddieJ,newsmast.social,Social Media,social_media,false -FreddieJ,newsmast.social,Ukraine Invasion,ukraine_invasion,false -FreddieJ,newsmast.social,Photography,photography,true -FreddieJ,newsmast.social,Private Community,private-community,false -FreddieJ,newsmast.social,US Politics,us_politics,false -FreddieJ,newsmast.social,TV & Radio,tv_radio,false -FreddieJ,newsmast.social,Performing Arts,performing_arts,false -FreddieJ,newsmast.social,Music,music,false -FreddieJ,newsmast.social,Performing Arts,performing_arts,false -FreddieJ,newsmast.social,Gaming,gaming,false -FreddieJ,newsmast.social,Architecture & Design,architecture_design,false -FreddieJ,newsmast.social,Technology,technology,false -FreddieJ,newsmast.social,Programming,programming,false -FreddieJ,newsmast.social,Engineering,engineering,false -captnmnemo,newsmast.social,AI,ai,false -captnmnemo,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false -captnmnemo,newsmast.social,Books & Literature,books_literature,false -captnmnemo,newsmast.social,Disabled Voices,disabled_voices,true -captnmnemo,newsmast.social,Gaming,gaming,false -captnmnemo,newsmast.social,Journalism & Comment,news_comment_data,false -captnmnemo,newsmast.social,Programming,programming,false -captnmnemo,newsmast.social,Science,science,false -captnmnemo,newsmast.social,Visual Arts,visual_arts,false -captnmnemo,newsmast.social,Women’s Voices,women_voices,false -kevinflynn,newsmast.social,Breaking News,breaking_news,true -kevinflynn,newsmast.social,Government & Policy,government_policy,false -kevinflynn,newsmast.social,Science,science,false -kevinflynn,newsmast.social,Space,space,false -kevinflynn,newsmast.social,Technology,technology,false -kevinflynn,newsmast.social,Ukraine Invasion,ukraine_invasion,false -shelldoor,newsmast.social,AI,ai,false -shelldoor,newsmast.social,Breaking News,breaking_news,false -shelldoor,newsmast.social,Engineering,engineering,false -shelldoor,newsmast.social,Politics,politics,false -shelldoor,newsmast.social,Programming,programming,false -shelldoor,newsmast.social,Technology,technology,false -shelldoor,newsmast.social,Journalism & Comment,news_comment_data,true -tkruck6,newsmast.social,AI,ai,false -tkruck6,newsmast.social,Biology,biology,false -tkruck6,newsmast.social,Breaking News,breaking_news,false -tkruck6,newsmast.social,Chemistry,chemistry,false -tkruck6,newsmast.social,Engineering,engineering,false -tkruck6,newsmast.social,Healthcare,healthcare,false -tkruck6,newsmast.social,Mathematics,mathematics,false -tkruck6,newsmast.social,Physics,physics,false -tkruck6,newsmast.social,Politics,politics,false -tkruck6,newsmast.social,Programming,programming,false -tkruck6,newsmast.social,Science,science,false -tkruck6,newsmast.social,Social Media,social_media,true -tkruck6,newsmast.social,Space,space,false -tkruck6,newsmast.social,Technology,technology,false -tkruck6,newsmast.social,Weather,weather,false -Yunandar,newsmast.social,Climate change,climate_change,false -Yunandar,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -Yunandar,newsmast.social,Energy & Pollution,energy_pollution,false -Yunandar,newsmast.social,Environment,environment,false -Yunandar,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false -Yunandar,newsmast.social,Poverty & Inequality,poverty_inequality,false -Yunandar,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,true -Bassey_Ijomanta,newsmast.social,Academia & Research,academia_research,false -Bassey_Ijomanta,newsmast.social,Government & Policy,government_policy,false -Bassey_Ijomanta,newsmast.social,Politics,politics,false -Bassey_Ijomanta,newsmast.social,Social Sciences,social_sciences,true -Bassey_Ijomanta,newsmast.social,US Politics,us_politics,false -bbdjgfhjhhg,newsmast.social,AI,ai,false -bbdjgfhjhhg,newsmast.social,Technology,technology,false -bbdjgfhjhhg,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -bbdjgfhjhhg,newsmast.social,Engineering,engineering,false -bbdjgfhjhhg,newsmast.social,Breaking News,breaking_news,false -bbdjgfhjhhg,newsmast.social,Journalism & Comment,news_comment_data,false -bbdjgfhjhhg,newsmast.social,Social Media,social_media,true -bbdjgfhjhhg,newsmast.social,Ukraine Invasion,ukraine_invasion,false -bbdjgfhjhhg,newsmast.social,Weather,weather,false -bbdjgfhjhhg,newsmast.social,Programming,programming,false -bbdjgfhjhhg,newsmast.social,Poverty & Inequality,poverty_inequality,false -bbdjgfhjhhg,newsmast.social,Business,business,false -bbdjgfhjhhg,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false -2night,newsmast.social,Business,business,true -2night,newsmast.social,Social Media,social_media,false -goofy,newsmast.social,Breaking News,breaking_news,true -goofy,newsmast.social,Journalism & Comment,news_comment_data,false -goofy,newsmast.social,Social Media,social_media,false -goofy,newsmast.social,Ukraine Invasion,ukraine_invasion,false -goofy,newsmast.social,Weather,weather,false -saskia,newsmast.social,Pets,pets,false -saskia,newsmast.social,Humour,humour,false -saskia,newsmast.social,LGBTQ+,lgbtq,false -saskia,newsmast.social,Movies,movies,false -saskia,newsmast.social,Breaking News,breaking_news,false -saskia,newsmast.social,Photography,photography,false -saskia,newsmast.social,Gaming,gaming,false -saskia,newsmast.social,Space,space,false -saskia,newsmast.social,Sport,sport,false -saskia,newsmast.social,Books & Literature,books_literature,false -saskia,newsmast.social,Football,football,true -saskia,newsmast.social,Music,music,false -saskia,newsmast.social,History,history,false -saskia,newsmast.social,Nature & Wildlife,nature_wildlife,false -saskia,newsmast.social,Science,science,false -saskia,newsmast.social,Immigrants Rights,immigrants_rights,false -saskia,newsmast.social,Food & Drink,food_drink,false -saskia,newsmast.social,TV & Radio,tv_radio,false -saskia,newsmast.social,Social Media,social_media,false -saskia,newsmast.social,Energy & Pollution,energy_pollution,false -saskia,newsmast.social,Environment,environment,false -saskia,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false -saskia,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false -saskia,newsmast.social,Climate change,climate_change,false -saskia,newsmast.social,Journalism & Comment,news_comment_data,false -saskia,newsmast.social,Women’s Voices,women_voices,false -josaimaging,newsmast.social,AI,ai,false -josaimaging,newsmast.social,Business,business,true -josaimaging,newsmast.social,Engineering,engineering,false -josaimaging,newsmast.social,Markets & Finance,markets_finance,false -josaimaging,newsmast.social,Programming,programming,false -josaimaging,newsmast.social,Technology,technology,false -josaimaging,newsmast.social,Workers Rights,workers_rights,false -AlexiaPonchet,newsmast.social,Photography,photography,false -AlexiaPonchet,newsmast.social,Business,business,true -AlexiaPonchet,newsmast.social,History,history,false -AlexiaPonchet,newsmast.social,Movies,movies,false -AlexiaPonchet,newsmast.social,Markets & Finance,markets_finance,false -AlexiaPonchet,newsmast.social,Philosophy,philosophy,false -AlexiaPonchet,newsmast.social,Travel,travel,false -AlexiaPonchet,newsmast.social,Workers Rights,workers_rights,false -AlexiaPonchet,newsmast.social,Humanities,humanities,false -AlexiaPonchet,newsmast.social,Books & Literature,books_literature,false -AlexiaPonchet,newsmast.social,Visual Arts,visual_arts,false -AlexiaPonchet,newsmast.social,Humour,humour,false -AlexiaPonchet,newsmast.social,Nature & Wildlife,nature_wildlife,false -AlexiaPonchet,newsmast.social,Programming,programming,false -AlexiaPonchet,newsmast.social,Social Sciences,social_sciences,false -AlexiaPonchet,newsmast.social,Environment,environment,false -AlexiaPonchet,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false -AlexiaPonchet,newsmast.social,Poverty & Inequality,poverty_inequality,false -AlexiaPonchet,newsmast.social,Technology,technology,false -AlexiaPonchet,newsmast.social,Energy & Pollution,energy_pollution,false -AlexiaPonchet,newsmast.social,Architecture & Design,architecture_design,false -AlexiaPonchet,newsmast.social,TV & Radio,tv_radio,false -AlexiaPonchet,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false -AlexiaPonchet,newsmast.social,Puzzles,puzzles,false -AlexiaPonchet,newsmast.social,Gaming,gaming,false -AlexiaPonchet,newsmast.social,Music,music,false -AlexiaPonchet,newsmast.social,Creative Arts,creative_arts,false -AlexiaPonchet,newsmast.social,Pets,pets,false -AlexiaPonchet,newsmast.social,Engineering,engineering,false -AlexiaPonchet,newsmast.social,Performing Arts,performing_arts,false -AlexiaPonchet,newsmast.social,Sport,sport,false -AlexiaPonchet,newsmast.social,Food & Drink,food_drink,false -AlexiaPonchet,newsmast.social,AI,ai,false -AlexiaPonchet,newsmast.social,US Sport,us_sport,false -AlexiaPonchet,newsmast.social,Football,football,false -presidenttailor,newsmast.social,Breaking News,breaking_news,true -presidenttailor,newsmast.social,Business,business,false -presidenttailor,newsmast.social,Creative Arts,creative_arts,false -presidenttailor,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -presidenttailor,newsmast.social,Humanities,humanities,false -presidenttailor,newsmast.social,Markets & Finance,markets_finance,false -presidenttailor,newsmast.social,Journalism & Comment,news_comment_data,false -presidenttailor,newsmast.social,Social Media,social_media,false -presidenttailor,newsmast.social,Ukraine Invasion,ukraine_invasion,false -presidenttailor,newsmast.social,Weather,weather,false -presidenttailor,newsmast.social,Workers Rights,workers_rights,false -newsmast,newsmast.social,Activism & Civil Rights,activism_civil_rights,false -newsmast,newsmast.social,AI,ai,false -newsmast,newsmast.social,Architecture & Design,architecture_design,false -newsmast,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false -newsmast,newsmast.social,Biology,biology,false -newsmast,newsmast.social,Black Voices,black_voices,false -newsmast,newsmast.social,Books & Literature,books_literature,false -newsmast,newsmast.social,Breaking News,breaking_news,false -newsmast,newsmast.social,Business,business,false -newsmast,newsmast.social,Chemistry,chemistry,false -newsmast,newsmast.social,Climate change,climate_change,false -newsmast,newsmast.social,Creative Arts,creative_arts,false -newsmast,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -newsmast,newsmast.social,Disabled Voices,disabled_voices,false -newsmast,newsmast.social,Energy & Pollution,energy_pollution,false -newsmast,newsmast.social,Engineering,engineering,false -newsmast,newsmast.social,Environment,environment,false -newsmast,newsmast.social,Food & Drink,food_drink,false -newsmast,newsmast.social,Football,football,false -newsmast,newsmast.social,Gaming,gaming,false -newsmast,newsmast.social,Government & Policy,government_policy,false -newsmast,newsmast.social,Healthcare,healthcare,false -newsmast,newsmast.social,History,history,false -newsmast,newsmast.social,Humanities,humanities,false -newsmast,newsmast.social,Humour,humour,false -newsmast,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false -newsmast,newsmast.social,Immigrants Rights,immigrants_rights,false -newsmast,newsmast.social,Indigenous Peoples,indigenous_peoples,false -newsmast,newsmast.social,Poverty & Inequality,poverty_inequality,false -newsmast,newsmast.social,Law & Justice,law_justice,false -newsmast,newsmast.social,LGBTQ+,lgbtq,false -newsmast,newsmast.social,Markets & Finance,markets_finance,false -newsmast,newsmast.social,Mathematics,mathematics,false -newsmast,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false -newsmast,newsmast.social,Movies,movies,false -newsmast,newsmast.social,Music,music,false -newsmast,newsmast.social,Nature & Wildlife,nature_wildlife,false -newsmast,newsmast.social,Performing Arts,performing_arts,false -newsmast,newsmast.social,Pets,pets,false -newsmast,newsmast.social,Philosophy,philosophy,false -newsmast,newsmast.social,Photography,photography,false -newsmast,newsmast.social,Physics,physics,false -newsmast,newsmast.social,Politics,politics,false -newsmast,newsmast.social,Puzzles,puzzles,false -newsmast,newsmast.social,Science,science,false -newsmast,newsmast.social,Social Sciences,social_sciences,false -newsmast,newsmast.social,Space,space,false -newsmast,newsmast.social,Sport,sport,false -newsmast,newsmast.social,Technology,technology,false -newsmast,newsmast.social,Travel,travel,false -newsmast,newsmast.social,TV & Radio,tv_radio,false -newsmast,newsmast.social,Ukraine Invasion,ukraine_invasion,false -newsmast,newsmast.social,Visual Arts,visual_arts,false -newsmast,newsmast.social,Weather,weather,false -newsmast,newsmast.social,Women’s Voices,women_voices,false -newsmast,newsmast.social,Workers Rights,workers_rights,false -newsmast,newsmast.social,Journalism & Comment,news_comment_data,true -newsmast,newsmast.social,Social Media,social_media,false -newsmast,newsmast.social,Programming,programming,false -skk,newsmast.social,Activism & Civil Rights,activism_civil_rights,false -skk,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false -skk,newsmast.social,Biology,biology,false -skk,newsmast.social,Books & Literature,books_literature,false -skk,newsmast.social,Climate change,climate_change,false -skk,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -skk,newsmast.social,Energy & Pollution,energy_pollution,false -skk,newsmast.social,Environment,environment,false -skk,newsmast.social,Gaming,gaming,false -skk,newsmast.social,History,history,false -skk,newsmast.social,Humanities,humanities,false -skk,newsmast.social,Immigrants Rights,immigrants_rights,false -skk,newsmast.social,Indigenous Peoples,indigenous_peoples,false -skk,newsmast.social,Movies,movies,false -skk,newsmast.social,Music,music,false -skk,newsmast.social,Performing Arts,performing_arts,false -skk,newsmast.social,Photography,photography,false -skk,newsmast.social,Programming,programming,false -skk,newsmast.social,Science,science,false -skk,newsmast.social,Social Media,social_media,true -skk,newsmast.social,Space,space,false -skk,newsmast.social,Technology,technology,false -skk,newsmast.social,Visual Arts,visual_arts,false -skk,newsmast.social,Women’s Voices,women_voices,false -Blacktiger,newsmast.social,Food & Drink,food_drink,false -Blacktiger,newsmast.social,Photography,photography,false -Blacktiger,newsmast.social,Sport,sport,false -Blacktiger,newsmast.social,TV & Radio,tv_radio,false -Blacktiger,newsmast.social,Music,music,true -WestWifey,newsmast.social,Food & Drink,food_drink,true -WestWifey,newsmast.social,Humour,humour,false -WestWifey,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false -WestWifey,newsmast.social,Social Sciences,social_sciences,false -WestWifey,newsmast.social,Travel,travel,false -kaerisonic,newsmast.social,Academia & Research,academia_research,false -kaerisonic,newsmast.social,Activism & Civil Rights,activism_civil_rights,false -kaerisonic,newsmast.social,AI,ai,false -kaerisonic,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false -kaerisonic,newsmast.social,Biology,biology,false -kaerisonic,newsmast.social,Business,business,false -kaerisonic,newsmast.social,Climate change,climate_change,false -kaerisonic,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -kaerisonic,newsmast.social,Disabled Voices,disabled_voices,false -kaerisonic,newsmast.social,Energy & Pollution,energy_pollution,false -kaerisonic,newsmast.social,Environment,environment,false -kaerisonic,newsmast.social,Food & Drink,food_drink,false -kaerisonic,newsmast.social,Government & Policy,government_policy,false -kaerisonic,newsmast.social,History,history,false -kaerisonic,newsmast.social,Humanities,humanities,false -kaerisonic,newsmast.social,Humour,humour,false -kaerisonic,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false -kaerisonic,newsmast.social,Indigenous Peoples,indigenous_peoples,false -kaerisonic,newsmast.social,Law & Justice,law_justice,false -kaerisonic,newsmast.social,Markets & Finance,markets_finance,false -kaerisonic,newsmast.social,Mathematics,mathematics,false -kaerisonic,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,true -kaerisonic,newsmast.social,Nature & Wildlife,nature_wildlife,false -kaerisonic,newsmast.social,Journalism & Comment,news_comment_data,false -kaerisonic,newsmast.social,Pets,pets,false -kaerisonic,newsmast.social,Politics,politics,false -kaerisonic,newsmast.social,Poverty & Inequality,poverty_inequality,false -kaerisonic,newsmast.social,Programming,programming,false -kaerisonic,newsmast.social,Science,science,false -kaerisonic,newsmast.social,Social Media,social_media,false -kaerisonic,newsmast.social,Social Sciences,social_sciences,false -kaerisonic,newsmast.social,Space,space,false -kaerisonic,newsmast.social,Technology,technology,false -kaerisonic,newsmast.social,Travel,travel,false -kaerisonic,newsmast.social,Ukraine Invasion,ukraine_invasion,false -kaerisonic,newsmast.social,Weather,weather,false -kaerisonic,newsmast.social,Women’s Voices,women_voices,false -kaerisonic,newsmast.social,Workers Rights,workers_rights,false -Zahid11,newsmast.social,Academia & Research,academia_research,false -Zahid11,newsmast.social,Activism & Civil Rights,activism_civil_rights,false -Zahid11,newsmast.social,AI,ai,true -Zahid11,newsmast.social,Architecture & Design,architecture_design,false -Zahid11,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false -Zahid11,newsmast.social,Biology,biology,false -Zahid11,newsmast.social,Black Voices,black_voices,false -Zahid11,newsmast.social,Books & Literature,books_literature,false -Zahid11,newsmast.social,Breaking News,breaking_news,false -Zahid11,newsmast.social,Business,business,false -Zahid11,newsmast.social,Chemistry,chemistry,false -Zahid11,newsmast.social,Climate change,climate_change,false -Zahid11,newsmast.social,Creative Arts,creative_arts,false -Zahid11,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -Zahid11,newsmast.social,Disabled Voices,disabled_voices,false -Zahid11,newsmast.social,Energy & Pollution,energy_pollution,false -Zahid11,newsmast.social,Engineering,engineering,false -Zahid11,newsmast.social,Environment,environment,false -Zahid11,newsmast.social,Food & Drink,food_drink,false -Zahid11,newsmast.social,Gaming,gaming,false -Zahid11,newsmast.social,Government & Policy,government_policy,false -Zahid11,newsmast.social,Healthcare,healthcare,false -Zahid11,newsmast.social,History,history,false -Zahid11,newsmast.social,Humanities,humanities,false -Zahid11,newsmast.social,Humour,humour,false -Zahid11,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false -Zahid11,newsmast.social,Immigrants Rights,immigrants_rights,false -Zahid11,newsmast.social,Indigenous Peoples,indigenous_peoples,false -Zahid11,newsmast.social,Law & Justice,law_justice,false -Zahid11,newsmast.social,LGBTQ+,lgbtq,false -Zahid11,newsmast.social,Markets & Finance,markets_finance,false -Zahid11,newsmast.social,Mathematics,mathematics,false -Zahid11,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false -Zahid11,newsmast.social,Movies,movies,false -Zahid11,newsmast.social,Music,music,false -Zahid11,newsmast.social,Nature & Wildlife,nature_wildlife,false -Zahid11,newsmast.social,Journalism & Comment,news_comment_data,false -Zahid11,newsmast.social,Performing Arts,performing_arts,false -Zahid11,newsmast.social,Pets,pets,false -Zahid11,newsmast.social,Philosophy,philosophy,false -Zahid11,newsmast.social,Photography,photography,false -Zahid11,newsmast.social,Physics,physics,false -Zahid11,newsmast.social,Politics,politics,false -Zahid11,newsmast.social,Poverty & Inequality,poverty_inequality,false -Zahid11,newsmast.social,Programming,programming,false -Zahid11,newsmast.social,Puzzles,puzzles,false -Zahid11,newsmast.social,Science,science,false -Zahid11,newsmast.social,Social Media,social_media,false -Zahid11,newsmast.social,Social Sciences,social_sciences,false -Zahid11,newsmast.social,Space,space,false -Zahid11,newsmast.social,Technology,technology,false -Zahid11,newsmast.social,Travel,travel,false -Zahid11,newsmast.social,TV & Radio,tv_radio,false -Zahid11,newsmast.social,Ukraine Invasion,ukraine_invasion,false -Zahid11,newsmast.social,US Politics,us_politics,false -Zahid11,newsmast.social,Visual Arts,visual_arts,false -Zahid11,newsmast.social,Weather,weather,false -Zahid11,newsmast.social,Women’s Voices,women_voices,false -Zahid11,newsmast.social,Workers Rights,workers_rights,false -bernardjensen,newsmast.social,Academia & Research,academia_research,false -bernardjensen,newsmast.social,Activism & Civil Rights,activism_civil_rights,false -bernardjensen,newsmast.social,Architecture & Design,architecture_design,false -bernardjensen,newsmast.social,Books & Literature,books_literature,false -bernardjensen,newsmast.social,Breaking News,breaking_news,true -bernardjensen,newsmast.social,Business,business,false -bernardjensen,newsmast.social,Creative Arts,creative_arts,false -bernardjensen,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -bernardjensen,newsmast.social,Disabled Voices,disabled_voices,false -bernardjensen,newsmast.social,Food & Drink,food_drink,false -bernardjensen,newsmast.social,Gaming,gaming,false -bernardjensen,newsmast.social,Government & Policy,government_policy,false -bernardjensen,newsmast.social,Healthcare,healthcare,false -bernardjensen,newsmast.social,Humanities,humanities,false -bernardjensen,newsmast.social,Humour,humour,false -bernardjensen,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false -bernardjensen,newsmast.social,Law & Justice,law_justice,false -bernardjensen,newsmast.social,Markets & Finance,markets_finance,false -bernardjensen,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false -bernardjensen,newsmast.social,Movies,movies,false -bernardjensen,newsmast.social,Music,music,false -bernardjensen,newsmast.social,Nature & Wildlife,nature_wildlife,false -bernardjensen,newsmast.social,Journalism & Comment,news_comment_data,false -bernardjensen,newsmast.social,Performing Arts,performing_arts,false -bernardjensen,newsmast.social,Philosophy,philosophy,false -bernardjensen,newsmast.social,Photography,photography,false -bernardjensen,newsmast.social,Politics,politics,false -bernardjensen,newsmast.social,Social Media,social_media,false -bernardjensen,newsmast.social,Social Sciences,social_sciences,false -bernardjensen,newsmast.social,Travel,travel,false -bernardjensen,newsmast.social,TV & Radio,tv_radio,false -bernardjensen,newsmast.social,US Politics,us_politics,false -bernardjensen,newsmast.social,Visual Arts,visual_arts,false -bernardjensen,newsmast.social,Women’s Voices,women_voices,false -bernardjensen,newsmast.social,Workers Rights,workers_rights,false -JenniferLLawson,newsmast.social,Activism & Civil Rights,activism_civil_rights,false -JenniferLLawson,newsmast.social,AI,ai,false -JenniferLLawson,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false -JenniferLLawson,newsmast.social,Biology,biology,false -JenniferLLawson,newsmast.social,Black Voices,black_voices,false -JenniferLLawson,newsmast.social,Business,business,false -JenniferLLawson,newsmast.social,Chemistry,chemistry,false -JenniferLLawson,newsmast.social,Climate change,climate_change,false -JenniferLLawson,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -JenniferLLawson,newsmast.social,Disabled Voices,disabled_voices,false -JenniferLLawson,newsmast.social,Energy & Pollution,energy_pollution,false -JenniferLLawson,newsmast.social,Engineering,engineering,false -JenniferLLawson,newsmast.social,Environment,environment,false -JenniferLLawson,newsmast.social,Government & Policy,government_policy,false -JenniferLLawson,newsmast.social,Healthcare,healthcare,false -JenniferLLawson,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false -JenniferLLawson,newsmast.social,Immigrants Rights,immigrants_rights,false -JenniferLLawson,newsmast.social,Indigenous Peoples,indigenous_peoples,false -JenniferLLawson,newsmast.social,Law & Justice,law_justice,false -JenniferLLawson,newsmast.social,LGBTQ+,lgbtq,false -JenniferLLawson,newsmast.social,Markets & Finance,markets_finance,false -JenniferLLawson,newsmast.social,Mathematics,mathematics,true -JenniferLLawson,newsmast.social,Physics,physics,false -JenniferLLawson,newsmast.social,Politics,politics,false -JenniferLLawson,newsmast.social,Poverty & Inequality,poverty_inequality,false -JenniferLLawson,newsmast.social,Programming,programming,false -JenniferLLawson,newsmast.social,Science,science,false -JenniferLLawson,newsmast.social,Space,space,false -JenniferLLawson,newsmast.social,Technology,technology,false -JenniferLLawson,newsmast.social,US Politics,us_politics,false -JenniferLLawson,newsmast.social,Women’s Voices,women_voices,false -JenniferLLawson,newsmast.social,Workers Rights,workers_rights,false -minkhantkyaw,newsmast.social,Journalism & Comment,news_comment_data,false -minkhantkyaw,newsmast.social,Poverty & Inequality,poverty_inequality,false -minkhantkyaw,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -minkhantkyaw,newsmast.social,Environment,environment,false -minkhantkyaw,newsmast.social,AI,ai,false -minkhantkyaw,newsmast.social,Technology,technology,true -pjoter9,newsmast.social,Academia & Research,academia_research,false -pjoter9,newsmast.social,Activism & Civil Rights,activism_civil_rights,false -pjoter9,newsmast.social,Architecture & Design,architecture_design,false -pjoter9,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false -pjoter9,newsmast.social,Biology,biology,false -pjoter9,newsmast.social,Black Voices,black_voices,false -pjoter9,newsmast.social,Books & Literature,books_literature,true -pjoter9,newsmast.social,Breaking News,breaking_news,false -pjoter9,newsmast.social,Climate change,climate_change,false -pjoter9,newsmast.social,Creative Arts,creative_arts,false -pjoter9,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -pjoter9,newsmast.social,Disabled Voices,disabled_voices,false -pjoter9,newsmast.social,Energy & Pollution,energy_pollution,false -pjoter9,newsmast.social,Engineering,engineering,false -pjoter9,newsmast.social,Environment,environment,false -pjoter9,newsmast.social,Gaming,gaming,false -pjoter9,newsmast.social,Government & Policy,government_policy,false -pjoter9,newsmast.social,Healthcare,healthcare,false -pjoter9,newsmast.social,History,history,false -pjoter9,newsmast.social,Humanities,humanities,false -pjoter9,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false -pjoter9,newsmast.social,Immigrants Rights,immigrants_rights,false -pjoter9,newsmast.social,Indigenous Peoples,indigenous_peoples,false -pjoter9,newsmast.social,Law & Justice,law_justice,false -pjoter9,newsmast.social,LGBTQ+,lgbtq,false -pjoter9,newsmast.social,Movies,movies,false -pjoter9,newsmast.social,Music,music,false -pjoter9,newsmast.social,Nature & Wildlife,nature_wildlife,false -pjoter9,newsmast.social,Journalism & Comment,news_comment_data,false -pjoter9,newsmast.social,Performing Arts,performing_arts,false -pjoter9,newsmast.social,Pets,pets,false -pjoter9,newsmast.social,Philosophy,philosophy,false -pjoter9,newsmast.social,Photography,photography,false -pjoter9,newsmast.social,Politics,politics,false -pjoter9,newsmast.social,Poverty & Inequality,poverty_inequality,false -pjoter9,newsmast.social,Programming,programming,false -pjoter9,newsmast.social,Science,science,false -pjoter9,newsmast.social,Social Media,social_media,false -pjoter9,newsmast.social,Social Sciences,social_sciences,false -pjoter9,newsmast.social,Space,space,false -pjoter9,newsmast.social,Technology,technology,false -pjoter9,newsmast.social,TV & Radio,tv_radio,false -pjoter9,newsmast.social,Ukraine Invasion,ukraine_invasion,false -pjoter9,newsmast.social,US Politics,us_politics,false -pjoter9,newsmast.social,Visual Arts,visual_arts,false -pjoter9,newsmast.social,Weather,weather,false -pjoter9,newsmast.social,Women’s Voices,women_voices,false -anaslm10,newsmast.social,Science,science,false -anaslm10,newsmast.social,Space,space,false -anaslm10,newsmast.social,Sport,sport,false -anaslm10,newsmast.social,US Sport,us_sport,false -anaslm10,newsmast.social,Breaking News,breaking_news,true -KamalaHarrisWin,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false -KamalaHarrisWin,newsmast.social,Breaking News,breaking_news,true -KamalaHarrisWin,newsmast.social,Climate change,climate_change,false -KamalaHarrisWin,newsmast.social,Energy & Pollution,energy_pollution,false -KamalaHarrisWin,newsmast.social,Environment,environment,false -KamalaHarrisWin,newsmast.social,Journalism & Comment,news_comment_data,false -KamalaHarrisWin,newsmast.social,Social Media,social_media,false -KamalaHarrisWin,newsmast.social,Ukraine Invasion,ukraine_invasion,false -KamalaHarrisWin,newsmast.social,Weather,weather,false -dadonthemoveph,newsmast.social,Performing Arts,performing_arts,false -dadonthemoveph,newsmast.social,Humour,humour,false -dadonthemoveph,newsmast.social,"Hunger, Disease & Water",hunger_disease_water,false -dadonthemoveph,newsmast.social,Mental Health & Wellbeing,mental_health_wellbeing,false -dadonthemoveph,newsmast.social,Nature & Wildlife,nature_wildlife,false -dadonthemoveph,newsmast.social,Biodiversity & Rewilding,biodiversity_rewilding,false -dadonthemoveph,newsmast.social,Environment,environment,false -dadonthemoveph,newsmast.social,Food & Drink,food_drink,false -dadonthemoveph,newsmast.social,Movies,movies,false -dadonthemoveph,newsmast.social,Journalism & Comment,news_comment_data,false -dadonthemoveph,newsmast.social,Science,science,false -dadonthemoveph,newsmast.social,Travel,travel,true -dadonthemoveph,newsmast.social,Climate change,climate_change,false -dadonthemoveph,newsmast.social,Indigenous Peoples,indigenous_peoples,false -dadonthemoveph,newsmast.social,Philosophy,philosophy,false -dadonthemoveph,newsmast.social,Photography,photography,false -dadonthemoveph,newsmast.social,Biology,biology,false -dadonthemoveph,newsmast.social,Visual Arts,visual_arts,false -dadonthemoveph,newsmast.social,Space,space,false -dadonthemoveph,newsmast.social,Social Sciences,social_sciences,false -dadonthemoveph,newsmast.social,Creative Arts,creative_arts,false -dadonthemoveph,newsmast.social,Books & Literature,books_literature,false -dadonthemoveph,newsmast.social,History,history,false -dadonthemoveph,newsmast.social,Democracy & Human Rights,democracy_human_rights,false -arizpe,newsmast.social,Food & Drink,food_drink,false -arizpe,newsmast.social,Humour,humour,true -arizpe,newsmast.social,Nature & Wildlife,nature_wildlife,false -arizpe,newsmast.social,Pets,pets,false -arizpe,newsmast.social,Science,science,false -arizpe,newsmast.social,Social Media,social_media,false -arizpe,newsmast.social,Space,space,false -arizpe,newsmast.social,Sport,sport,false -arizpe,newsmast.social,Technology,technology,false -arizpe,newsmast.social,Breaking News,breaking_news,false +handle,communities +@kirukarki2@newsmast.social,"{""primary"":""ai"",""others"":[""breaking-news"",""technology"",""lgbtq"",""programming""]}" +@minkhantkyaw@newsmast.social,"{""primary"":""technology"",""others"":[""ai"",""news-comment-data"",""democracy-human-rights"",""poverty-inequality"",""environment""]}" \ No newline at end of file From 08a99f3c17d58e115953b969b72e316730fa742f Mon Sep 17 00:00:00 2001 From: Aung Kyaw Phyo Date: Tue, 8 Jul 2025 18:07:42 +0700 Subject: [PATCH 48/51] Add actual csv file --- app/jobs/migrate_newsmast_accounts_job.rb | 2 +- user_community_export.csv | 1124 ++++++++++++++++++++- 2 files changed, 1122 insertions(+), 4 deletions(-) diff --git a/app/jobs/migrate_newsmast_accounts_job.rb b/app/jobs/migrate_newsmast_accounts_job.rb index 60af6200..6f351afe 100644 --- a/app/jobs/migrate_newsmast_accounts_job.rb +++ b/app/jobs/migrate_newsmast_accounts_job.rb @@ -88,7 +88,7 @@ def output_missing_accounts end def search_target_account_id(query, owner_token) - retries = 5 + retries = 20 result = nil while retries >= 0 result = ContributorSearchService.new( diff --git a/user_community_export.csv b/user_community_export.csv index 5c4a7b39..3e5443b0 100644 --- a/user_community_export.csv +++ b/user_community_export.csv @@ -1,3 +1,1121 @@ -handle,communities -@kirukarki2@newsmast.social,"{""primary"":""ai"",""others"":[""breaking-news"",""technology"",""lgbtq"",""programming""]}" -@minkhantkyaw@newsmast.social,"{""primary"":""technology"",""others"":[""ai"",""news-comment-data"",""democracy-human-rights"",""poverty-inequality"",""environment""]}" \ No newline at end of file +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""]}" From 6ec8fb0ac20ce5abca8f3b16a73fe49e4b50761c Mon Sep 17 00:00:00 2001 From: Aung Kyaw Phyo Date: Tue, 8 Jul 2025 18:57:40 +0700 Subject: [PATCH 49/51] Add whitelisted accounts --- app/jobs/migrate_newsmast_accounts_job.rb | 308 ++++++++++++++++++++-- 1 file changed, 281 insertions(+), 27 deletions(-) diff --git a/app/jobs/migrate_newsmast_accounts_job.rb b/app/jobs/migrate_newsmast_accounts_job.rb index 6f351afe..57a7a1a1 100644 --- a/app/jobs/migrate_newsmast_accounts_job.rb +++ b/app/jobs/migrate_newsmast_accounts_job.rb @@ -5,6 +5,258 @@ class MigrateNewsmastAccountsJob < ApplicationJob def perform(csv_path = Rails.root.join('user_community_export.csv')) @missing_accounts = [] + + @whitelisted_accounts= [ + "@0fj0@newsmast.social", + "@09SHEEHANM@newsmast.social", + "@1000pages@newsmast.social", + "@2night@newsmast.social", + "@47photography@newsmast.social", + "@AFalcon@newsmast.social", + "@Abrikosoff@newsmast.social", + "@AlexShvartsman@newsmast.social", + "@AltonDrew@newsmast.social", + "@Anders_S@newsmast.social", + "@Andy@newsmast.social", + "@AnnaScott@newsmast.social", + "@Anneliese@newsmast.social", + "@Aysegul@newsmast.social", + "@Bassey_Ijomanta@newsmast.social", + "@Bell@newsmast.social", + "@BobGatty@newsmast.social", + "@Blacktiger@newsmast.social", + "@BlesthThySoul@newsmast.social", + "@Bubblefarts@newsmast.social", + "@CBhattacharji@newsmast.social", + "@Calmsage@newsmast.social", + "@Cam_Walker@newsmast.social", + "@Cappuccinogirl@newsmast.social", + "@Caramel@newsmast.social", + "@CanWCC@newsmast.social", + "@ChrisB100@newsmast.social", + "@Chourouk@newsmast.social", + "@Clarke617@newsmast.social", + "@Claudiademelo@newsmast.social", + "@Crof@newsmast.social", + "@DadeMurphy@newsmast.social", + "@DadeMutphy@newsmast.social", + "@Dailyscandi@newsmast.social", + "@DarkAlomox@newsmast.social", + "@Destiny@newsmast.social", + "@Diva_7057@newsmast.social", + "@Downes@newsmast.social", + "@DrCarpineti@newsmast.social", + "@DrGCrisp@newsmast.social", + "@DrHannahBB@newsmast.social", + "@DrKylieSoanes@newsmast.social", + "@DrMikeWatts@newsmast.social", + "@Drizzleanddip@newsmast.social", + "@Ed_Rempel@newsmast.social", + "@EiEi@newsmast.social", + "@Eklektikos@newsmast.social", + "@Empiricism@newsmast.social", + "@EngineerFinance@newsmast.social", + "@ErichWeikert@newsmast.social", + "@Emma_Samson@newsmast.social", + "@FamilyLawExpert@newsmast.social", + "@FemalesNFinance@newsmast.social", + "@FreddieJ@newsmast.social", + "@FrontSeatPhil@newsmast.social", + "@Gizmo42@newsmast.social", + "@GlobalRewilding@newsmast.social", + "@GraceReckers@newsmast.social", + "@Greg@newsmast.social", + "@Grinch@newsmast.social", + "@Gymbag4u@newsmast.social", + "@HC_History@newsmast.social", + "@HariTulsidas@newsmast.social", + "@Hayleyk1970@newsmast.social", + "@Hwys2Railways@newsmast.social", + "@Iyad_Abumoghli@newsmast.social", + "@JURISTnews@newsmast.social", + "@JenniferLLawson@newsmast.social", + "@JessJ@newsmast.social", + "@JimsPhotos@newsmast.social", + "@Johan@newsmast.social", + "@John90@newsmast.social", + "@JohnJVaccaro@newsmast.social", + "@JohnnieJae@newsmast.social", + "@Johnvink@newsmast.social", + "@JoeyJ0J0@newsmast.social", + "@JulieAtkinson@newsmast.social", + "@Jarhead2029@newsmast.social", + "@KieranRose@newsmast.social", + "@Kielingdegruen@newsmast.social", + "@KittyInTheMitty@newsmast.social", + "@Khomezturro@newsmast.social", + "@Kschroeder@newsmast.social", + "@Kyaw@newsmast.social", + "@KyawZinLinn123@newsmast.social", + "@Kyn@newsmast.social", + "@KevinWagar@newsmast.social", + "@LeanneKeddie@newsmast.social", + "@LeslieTay@newsmast.social", + "@Lessig@newsmast.social", + "@Levicoisch@newsmast.social", + "@LiveMessy2024@newsmast.social", + "@Loretta@newsmast.social", + "@Loukas@newsmast.social", + "@Laurairby@newsmast.social", + "@LynnNanos@newsmast.social", + "@MKandHerBC@newsmast.social", + "@MichaelCaines@newsmast.social", + "@MicheleA@newsmast.social", + "@Migis4991@newsmast.social", + "@MilitaryAfrica@newsmast.social", + "@Mie_astrup@newsmast.social", + "@Miaa@newsmast.social", + "@MotorcycleGuy@newsmast.social", + "@MummyMatters@newsmast.social", + "@Nancie@newsmast.social", + "@Natsurath@newsmast.social", + "@Nicolas@newsmast.social", + "@NurseTed@newsmast.social", + "@OFMagazine@newsmast.social", + "@OhnMyint@newsmast.social", + "@OmarSakr@newsmast.social", + "@OpalTiger@newsmast.social", + "@OpsMatters@newsmast.social", + "@Origami@newsmast.social", + "@Pavel@newsmast.social", + "@PetRock@newsmast.social", + "@Petinder@newsmast.social", + "@Pghlesbian@newsmast.social", + "@PhilPlait@newsmast.social", + "@PlantInitiative@newsmast.social", + "@PolGeoNow@newsmast.social", + "@Polotman@newsmast.social", + "@PriyankaJoshi@newsmast.social", + "@Pyae000@newsmast.social", + "@QasimRashid@newsmast.social", + "@RafiqulMontu@newsmast.social", + "@RachelBranson@newsmast.social", + "@Randee@newsmast.social", + "@Reuben@newsmast.social", + "@RewildScotland@newsmast.social", + "@RhondaAlbom@newsmast.social", + "@Riccardo@newsmast.social", + "@Roamancing@newsmast.social", + "@RonCharles@newsmast.social", + "@RossA@newsmast.social", + "@Rossoneroblog@newsmast.social", + "@SJC@newsmast.social", + "@SWCWomen@newsmast.social", + "@Sahqon@newsmast.social", + "@Salexkenyon@newsmast.social", + "@Sam@newsmast.social", + "@Sas99@newsmast.social", + "@Sascha_Feldmann@newsmast.social", + "@Serious_Feather@newsmast.social", + "@ShaggyShepherd@newsmast.social", + "@ShuaE@newsmast.social", + "@SilverRainbow@newsmast.social", + "@SithuBo@newsmast.social", + "@Startupradio@newsmast.social", + "@StephanHacker2@newsmast.social", + "@StephenScouted@newsmast.social", + "@Stregabor@newsmast.social", + "@SummerS@newsmast.social", + "@SuperScienceGrl@newsmast.social", + "@Superpolitics@newsmast.social", + "@SustMeme@newsmast.social", + "@TasmanianTimes@newsmast.social", + "@TestTest@newsmast.social", + "@TheCultofCalcio@newsmast.social", + "@TheEnglishLion@newsmast.social", + "@TheQueerBookish@newsmast.social", + "@ThirdTime@newsmast.social", + "@ThomasFoster@newsmast.social", + "@Tms12@newsmast.social", + "@Toex@newsmast.social", + "@ToposInstitute@newsmast.social", + "@Tricolor7788@newsmast.social", + "@TuesdayReviewAU@newsmast.social", + "@Tyom@newsmast.social", + "@VaniaG@newsmast.social", + "@WestWeather@newsmast.social", + "@WestWifey@newsmast.social", + "@WhiteMode@newsmast.social", + "@WildCard@newsmast.social", + "@Willow@newsmast.social", + "@WilmotsWay@newsmast.social", + "@YNA@newsmast.social", + "@Ypsilenna@newsmast.social", + "@Yunandar@newsmast.social", + "@Zahid11@newsmast.social", + "@_shannoncochran@newsmast.social", + "@alanwelch@newsmast.social", + "@alawriedejesus@newsmast.social", + "@alemida44@newsmast.social", + "@aliciahaydenart@newsmast.social", + "@allaroundoz@newsmast.social", + "@alzatari@newsmast.social", + "@anaslm10@newsmast.social", + "@arg02@newsmast.social", + "@arizpe@newsmast.social", + "@arlettecontrers@newsmast.social", + "@artbol@newsmast.social", + "@asausagehastwo@newsmast.social", + "@askchefdennis@newsmast.social", + "@atom@newsmast.social", + "@aung@newsmast.social", + "@aungmyatmoe@newsmast.social", + "@ausgeo@newsmast.social", + "@aydnkocek@newsmast.social", + "@azizbnchikh@newsmast.social", + "@babygirl@newsmast.social", + "@ballhaus@newsmast.social", + "@bartfaitamas@newsmast.social", + "@bbdjgfhjhhg@newsmast.social", + "@beck@newsmast.social", + "@benogeh@newsmast.social", + "@berot3@newsmast.social", + "@bismillah345@newsmast.social", + "@boroguide@newsmast.social", + "@brasmus@newsmast.social", + "@brettmirl@newsmast.social", + "@bridgeteam@newsmast.social", + "@bryantout@newsmast.social", + "@burnitdownpls@newsmast.social", + "@business@newsmast.social", + "@buyingseafood@newsmast.social", + "@candice_chirwa@newsmast.social", + "@captnmnemo@newsmast.social", + "@catcafesandiego@newsmast.social", + "@cate@newsmast.social", + "@catherinerhyde@newsmast.social", + "@cbattlegear@newsmast.social", + "@ccgh@newsmast.social", + "@chafafa@newsmast.social", + "@channyeintun@newsmast.social", + "@chatter@newsmast.social", + "@chidreams@newsmast.social", + "@chino@newsmast.social", + "@chloe_661@newsmast.social", + "@chloeariellle@newsmast.social", + "@christina88@newsmast.social", + "@chrysalismama@newsmast.social", + "@clairejuliaart@newsmast.social", + "@claudianatasha_@newsmast.social", + "@clonnee@newsmast.social", + "@collected_cards@newsmast.social", + "@contessalouise@newsmast.social", + "@crazyjane125@newsmast.social", + "@csu@newsmast.social", + "@dadonthemoveph@newsmast.social", + "@dannyweller@newsmast.social", + "@darkjamal@newsmast.social", + "@dave42w@newsmast.social", + "@deadsuperhero@newsmast.social", + "@debgod@newsmast.social", + "@denn@newsmast.social", + "@dennisfparker@newsmast.social", + "@deniseoberry@newsmast.social", + ] owner_role = UserRole.find_by(name: 'Owner') owner_user = User.find_by(role: owner_role) @@ -30,40 +282,42 @@ def process_batch(row) handle = row['handle'] communities_json = row['communities'] - communities_data = JSON.parse(communities_json) + if @whitelisted_accounts.include?(handle) + communities_data = JSON.parse(communities_json) - primary_slug = communities_data['primary'] - other_slugs = communities_data['others'] || [] + primary_slug = communities_data['primary'] + other_slugs = communities_data['others'] || [] - # Combine all community slugs - all_slugs = [primary_slug] + other_slugs + # 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') + # 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 + if account + JoinedCommunity.where(account_id: account.id).destroy_all - existing_communities.each do |community| + 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}." + 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 - else - @missing_accounts << handle end end @@ -80,7 +334,7 @@ def output_missing_accounts Rails.logger.info "-" * 80 @missing_accounts.each_with_index do |account, index| - Rails.logger.info "#{index + 1}. #{account}" + Rails.logger.info "#{account}" end end From bc135e02a111338afba0130996563a8519c6ac74 Mon Sep 17 00:00:00 2001 From: Aung Kyaw Phyo Date: Tue, 8 Jul 2025 19:13:03 +0700 Subject: [PATCH 50/51] Add more users --- app/jobs/migrate_newsmast_accounts_job.rb | 513 +++++++++++----------- 1 file changed, 264 insertions(+), 249 deletions(-) diff --git a/app/jobs/migrate_newsmast_accounts_job.rb b/app/jobs/migrate_newsmast_accounts_job.rb index 57a7a1a1..ba3f9c7f 100644 --- a/app/jobs/migrate_newsmast_accounts_job.rb +++ b/app/jobs/migrate_newsmast_accounts_job.rb @@ -7,255 +7,270 @@ def perform(csv_path = Rails.root.join('user_community_export.csv')) @missing_accounts = [] @whitelisted_accounts= [ - "@0fj0@newsmast.social", - "@09SHEEHANM@newsmast.social", - "@1000pages@newsmast.social", - "@2night@newsmast.social", - "@47photography@newsmast.social", - "@AFalcon@newsmast.social", - "@Abrikosoff@newsmast.social", - "@AlexShvartsman@newsmast.social", - "@AltonDrew@newsmast.social", - "@Anders_S@newsmast.social", - "@Andy@newsmast.social", - "@AnnaScott@newsmast.social", - "@Anneliese@newsmast.social", - "@Aysegul@newsmast.social", - "@Bassey_Ijomanta@newsmast.social", - "@Bell@newsmast.social", - "@BobGatty@newsmast.social", - "@Blacktiger@newsmast.social", - "@BlesthThySoul@newsmast.social", - "@Bubblefarts@newsmast.social", - "@CBhattacharji@newsmast.social", - "@Calmsage@newsmast.social", - "@Cam_Walker@newsmast.social", - "@Cappuccinogirl@newsmast.social", - "@Caramel@newsmast.social", - "@CanWCC@newsmast.social", - "@ChrisB100@newsmast.social", - "@Chourouk@newsmast.social", - "@Clarke617@newsmast.social", - "@Claudiademelo@newsmast.social", - "@Crof@newsmast.social", - "@DadeMurphy@newsmast.social", - "@DadeMutphy@newsmast.social", - "@Dailyscandi@newsmast.social", - "@DarkAlomox@newsmast.social", - "@Destiny@newsmast.social", - "@Diva_7057@newsmast.social", - "@Downes@newsmast.social", - "@DrCarpineti@newsmast.social", - "@DrGCrisp@newsmast.social", - "@DrHannahBB@newsmast.social", - "@DrKylieSoanes@newsmast.social", - "@DrMikeWatts@newsmast.social", - "@Drizzleanddip@newsmast.social", - "@Ed_Rempel@newsmast.social", - "@EiEi@newsmast.social", - "@Eklektikos@newsmast.social", - "@Empiricism@newsmast.social", - "@EngineerFinance@newsmast.social", - "@ErichWeikert@newsmast.social", - "@Emma_Samson@newsmast.social", - "@FamilyLawExpert@newsmast.social", - "@FemalesNFinance@newsmast.social", - "@FreddieJ@newsmast.social", - "@FrontSeatPhil@newsmast.social", - "@Gizmo42@newsmast.social", - "@GlobalRewilding@newsmast.social", - "@GraceReckers@newsmast.social", - "@Greg@newsmast.social", - "@Grinch@newsmast.social", - "@Gymbag4u@newsmast.social", - "@HC_History@newsmast.social", - "@HariTulsidas@newsmast.social", - "@Hayleyk1970@newsmast.social", - "@Hwys2Railways@newsmast.social", - "@Iyad_Abumoghli@newsmast.social", - "@JURISTnews@newsmast.social", - "@JenniferLLawson@newsmast.social", - "@JessJ@newsmast.social", - "@JimsPhotos@newsmast.social", - "@Johan@newsmast.social", - "@John90@newsmast.social", - "@JohnJVaccaro@newsmast.social", - "@JohnnieJae@newsmast.social", - "@Johnvink@newsmast.social", - "@JoeyJ0J0@newsmast.social", - "@JulieAtkinson@newsmast.social", - "@Jarhead2029@newsmast.social", - "@KieranRose@newsmast.social", - "@Kielingdegruen@newsmast.social", - "@KittyInTheMitty@newsmast.social", - "@Khomezturro@newsmast.social", - "@Kschroeder@newsmast.social", - "@Kyaw@newsmast.social", - "@KyawZinLinn123@newsmast.social", - "@Kyn@newsmast.social", - "@KevinWagar@newsmast.social", - "@LeanneKeddie@newsmast.social", - "@LeslieTay@newsmast.social", - "@Lessig@newsmast.social", - "@Levicoisch@newsmast.social", - "@LiveMessy2024@newsmast.social", - "@Loretta@newsmast.social", - "@Loukas@newsmast.social", - "@Laurairby@newsmast.social", - "@LynnNanos@newsmast.social", - "@MKandHerBC@newsmast.social", - "@MichaelCaines@newsmast.social", - "@MicheleA@newsmast.social", - "@Migis4991@newsmast.social", - "@MilitaryAfrica@newsmast.social", - "@Mie_astrup@newsmast.social", - "@Miaa@newsmast.social", - "@MotorcycleGuy@newsmast.social", - "@MummyMatters@newsmast.social", - "@Nancie@newsmast.social", - "@Natsurath@newsmast.social", - "@Nicolas@newsmast.social", - "@NurseTed@newsmast.social", - "@OFMagazine@newsmast.social", - "@OhnMyint@newsmast.social", - "@OmarSakr@newsmast.social", - "@OpalTiger@newsmast.social", - "@OpsMatters@newsmast.social", - "@Origami@newsmast.social", - "@Pavel@newsmast.social", - "@PetRock@newsmast.social", - "@Petinder@newsmast.social", - "@Pghlesbian@newsmast.social", - "@PhilPlait@newsmast.social", - "@PlantInitiative@newsmast.social", - "@PolGeoNow@newsmast.social", - "@Polotman@newsmast.social", - "@PriyankaJoshi@newsmast.social", - "@Pyae000@newsmast.social", - "@QasimRashid@newsmast.social", - "@RafiqulMontu@newsmast.social", - "@RachelBranson@newsmast.social", - "@Randee@newsmast.social", - "@Reuben@newsmast.social", - "@RewildScotland@newsmast.social", - "@RhondaAlbom@newsmast.social", - "@Riccardo@newsmast.social", - "@Roamancing@newsmast.social", - "@RonCharles@newsmast.social", - "@RossA@newsmast.social", - "@Rossoneroblog@newsmast.social", - "@SJC@newsmast.social", - "@SWCWomen@newsmast.social", - "@Sahqon@newsmast.social", - "@Salexkenyon@newsmast.social", - "@Sam@newsmast.social", - "@Sas99@newsmast.social", - "@Sascha_Feldmann@newsmast.social", - "@Serious_Feather@newsmast.social", - "@ShaggyShepherd@newsmast.social", - "@ShuaE@newsmast.social", - "@SilverRainbow@newsmast.social", - "@SithuBo@newsmast.social", - "@Startupradio@newsmast.social", - "@StephanHacker2@newsmast.social", - "@StephenScouted@newsmast.social", - "@Stregabor@newsmast.social", - "@SummerS@newsmast.social", - "@SuperScienceGrl@newsmast.social", - "@Superpolitics@newsmast.social", - "@SustMeme@newsmast.social", - "@TasmanianTimes@newsmast.social", - "@TestTest@newsmast.social", - "@TheCultofCalcio@newsmast.social", - "@TheEnglishLion@newsmast.social", - "@TheQueerBookish@newsmast.social", - "@ThirdTime@newsmast.social", - "@ThomasFoster@newsmast.social", - "@Tms12@newsmast.social", - "@Toex@newsmast.social", - "@ToposInstitute@newsmast.social", - "@Tricolor7788@newsmast.social", - "@TuesdayReviewAU@newsmast.social", - "@Tyom@newsmast.social", - "@VaniaG@newsmast.social", - "@WestWeather@newsmast.social", - "@WestWifey@newsmast.social", - "@WhiteMode@newsmast.social", - "@WildCard@newsmast.social", - "@Willow@newsmast.social", - "@WilmotsWay@newsmast.social", - "@YNA@newsmast.social", - "@Ypsilenna@newsmast.social", - "@Yunandar@newsmast.social", - "@Zahid11@newsmast.social", - "@_shannoncochran@newsmast.social", - "@alanwelch@newsmast.social", - "@alawriedejesus@newsmast.social", - "@alemida44@newsmast.social", - "@aliciahaydenart@newsmast.social", - "@allaroundoz@newsmast.social", - "@alzatari@newsmast.social", - "@anaslm10@newsmast.social", - "@arg02@newsmast.social", - "@arizpe@newsmast.social", - "@arlettecontrers@newsmast.social", - "@artbol@newsmast.social", - "@asausagehastwo@newsmast.social", - "@askchefdennis@newsmast.social", - "@atom@newsmast.social", - "@aung@newsmast.social", - "@aungmyatmoe@newsmast.social", - "@ausgeo@newsmast.social", - "@aydnkocek@newsmast.social", - "@azizbnchikh@newsmast.social", - "@babygirl@newsmast.social", - "@ballhaus@newsmast.social", - "@bartfaitamas@newsmast.social", - "@bbdjgfhjhhg@newsmast.social", - "@beck@newsmast.social", - "@benogeh@newsmast.social", - "@berot3@newsmast.social", - "@bismillah345@newsmast.social", - "@boroguide@newsmast.social", - "@brasmus@newsmast.social", - "@brettmirl@newsmast.social", - "@bridgeteam@newsmast.social", - "@bryantout@newsmast.social", - "@burnitdownpls@newsmast.social", - "@business@newsmast.social", - "@buyingseafood@newsmast.social", - "@candice_chirwa@newsmast.social", - "@captnmnemo@newsmast.social", - "@catcafesandiego@newsmast.social", - "@cate@newsmast.social", - "@catherinerhyde@newsmast.social", - "@cbattlegear@newsmast.social", - "@ccgh@newsmast.social", - "@chafafa@newsmast.social", - "@channyeintun@newsmast.social", - "@chatter@newsmast.social", - "@chidreams@newsmast.social", - "@chino@newsmast.social", - "@chloe_661@newsmast.social", - "@chloeariellle@newsmast.social", - "@christina88@newsmast.social", - "@chrysalismama@newsmast.social", - "@clairejuliaart@newsmast.social", - "@claudianatasha_@newsmast.social", - "@clonnee@newsmast.social", - "@collected_cards@newsmast.social", - "@contessalouise@newsmast.social", - "@crazyjane125@newsmast.social", - "@csu@newsmast.social", - "@dadonthemoveph@newsmast.social", - "@dannyweller@newsmast.social", - "@darkjamal@newsmast.social", - "@dave42w@newsmast.social", - "@deadsuperhero@newsmast.social", - "@debgod@newsmast.social", - "@denn@newsmast.social", - "@dennisfparker@newsmast.social", - "@deniseoberry@newsmast.social", + "@devenperez@newsmast.social", + "@diamondlewis@newsmast.social", + "@dianirawan@newsmast.social", + "@djape11@newsmast.social", + "@dleifohcs@newsmast.social", + "@doctorambient@newsmast.social", + "@docwinters@newsmast.social", + "@drshaunanderson@newsmast.social", + "@dylan_thiam@newsmast.social", + "@egc25@newsmast.social", + "@elisexavier@newsmast.social", + "@emenikeng@newsmast.social", + "@emeraldphysio@newsmast.social", + "@emuwasabi@newsmast.social", + "@enriqueanarte@newsmast.social", + "@erica@newsmast.social", + "@exakat@newsmast.social", + "@familyphysio@newsmast.social", + "@fatemah@newsmast.social", + "@fediverso@newsmast.social", + "@feuerkugel@newsmast.social", + "@fitinfounder@newsmast.social", + "@foong@newsmast.social", + "@francisco_blaha@newsmast.social", + "@frejusdabord@newsmast.social", + "@fwd7@newsmast.social", + "@gabrielblau@newsmast.social", + "@gavinjmaguire@newsmast.social", + "@ghutchis@newsmast.social", + "@glecko@newsmast.social", + "@gnasralla@newsmast.social", + "@goofy@newsmast.social", + "@gospelsong@newsmast.social", + "@group@newsmast.social", + "@guchengsnakee@newsmast.social", + "@hardindr@newsmast.social", + "@harvinhentry@newsmast.social", + "@healthcare@newsmast.social", + "@heimoshuiyu@newsmast.social", + "@hermitary@newsmast.social", + "@hrbrmstr@newsmast.social", + "@ianwalker@newsmast.social", + "@icey_mark@newsmast.social", + "@ifonlycom@newsmast.social", + "@ilovefilm@newsmast.social", + "@indiajade_68@newsmast.social", + "@infobl@newsmast.social", + "@instepphysio@newsmast.social", + "@iop5@newsmast.social", + "@ipub@newsmast.social", + "@irlrefuge@newsmast.social", + "@islandknabo@newsmast.social", + "@iostest@newsmast.social", + "@itsmarta101@newsmast.social", + "@itzme@newsmast.social", + "@ivan@newsmast.social", + "@jackiealpers@newsmast.social", + "@jaclynasiegel@newsmast.social", + "@jakeanders@newsmast.social", + "@jamalpp@newsmast.social", + "@janrif@newsmast.social", + "@jasonreiduk@newsmast.social", + "@jcblautomoto@newsmast.social", + "@jdp23@newsmast.social", + "@jeffreyguard@newsmast.social", + "@jenandreacchi@newsmast.social", + "@jeremygodwin@newsmast.social", + "@jessicanewmast@newsmast.social", + "@jessa@newsmast.social", + "@jetono@newsmast.social", + "@jimmy@newsmast.social", + "@jmenka@newsmast.social", + "@jncomas@newsmast.social", + "@joanathx@newsmast.social", + "@john_90@newsmast.social", + "@johnbreeze@newsmast.social", + "@johnhawks@newsmast.social", + "@johnvoorhees@newsmast.social", + "@jsit@newsmast.social", + "@jt1p5@newsmast.social", + "@jtarde23@newsmast.social", + "@junctionpoint@newsmast.social", + "@justinw@newsmast.social", + "@justwatch@newsmast.social", + "@k_rose@newsmast.social", + "@kabtohin2020@newsmast.social", + "@kaerisonic@newsmast.social", + "@kaerypheur@newsmast.social", + "@kakerlake@newsmast.social", + "@kalhan@newsmast.social", + "@keithramsey@newsmast.social", + "@kevinbugati@newsmast.social", + "@kevinflynn@newsmast.social", + "@khaled57@newsmast.social", + "@ksetiya@newsmast.social", + "@kylesinlynn@newsmast.social", + "@lgbtq@newsmast.social", + "@lgsmsec@newsmast.social", + "@luffy@newsmast.social", + "@luisaropio@newsmast.social", + "@luked522@newsmast.social", + "@lydiechen@newsmast.social", + "@m0bi@newsmast.social", + "@m2knewsmast@newsmast.social", + "@m2knmst@newsmast.social", + "@macelynne919@newsmast.social", + "@maketheswitchAU@newsmast.social", + "@marcelo@newsmast.social", + "@marianaborges@newsmast.social", + "@markr@newsmast.social", + "@martin3456@newsmast.social", + "@matt_cary@newsmast.social", + "@mattmoehr@newsmast.social", + "@mattybob@newsmast.social", + "@mattskal@newsmast.social", + "@max@newsmast.social", + "@max_chaudhary@newsmast.social", + "@mental_health@newsmast.social", + "@mervemervemerve@newsmast.social", + "@metilli@newsmast.social", + "@mgye@newsmast.social", + "@michael@newsmast.social", + "@michael_blogger@newsmast.social", + "@michaelcohen@newsmast.social", + "@mikea@newsmast.social", + "@mikesplaces@newsmast.social", + "@min2k09@newsmast.social", + "@minkhantBL@newsmast.social", + "@minkhantkyaw@newsmast.social", + "@minusgefuel@newsmast.social", + "@miroslavglavic@newsmast.social", + "@mkk001@newsmast.social", + "@mohammadromjan@newsmast.social", + "@mombian@newsmast.social", + "@momentumphysio@newsmast.social", + "@monicareinagel@newsmast.social", + "@mongabay@newsmast.social", + "@moragakd@newsmast.social", + "@msafaksari@newsmast.social", + "@mttaggart@newsmast.social", + "@multimodal@newsmast.social", + "@muzaffarab@newsmast.social", + "@mweinbach@newsmast.social", + "@nancymangano@newsmast.social", + "@natbas@newsmast.social", + "@neirda@newsmast.social", + "@newsmast@newsmast.social", + "@nexstepphysio@newsmast.social", + "@nigelp@newsmast.social", + "@nincodedo@newsmast.social", + "@niroran@newsmast.social", + "@nisemikol@newsmast.social", + "@noisediver@newsmast.social", + "@not_so_social@newsmast.social", + "@notiska@newsmast.social", + "@nowinaminute@newsmast.social", + "@nyeinBinarylab@newsmast.social", + "@nyeinygn@newsmast.social", + "@n0no123@newsmast.social", + "@oceanknigge@newsmast.social", + "@ommo@newsmast.social", + "@pam_palmater@newsmast.social", + "@pennywalker@newsmast.social", + "@peter@newsmast.social", + "@peterthepainter@newsmast.social", + "@petri@newsmast.social", + "@petenothing@newsmast.social", + "@physioemerald@newsmast.social", + "@physioedmonton@newsmast.social", + "@pikarl13@newsmast.social", + "@pjoter9@newsmast.social", + "@plus@newsmast.social", + "@poke@newsmast.social", + "@pot8um@newsmast.social", + "@ppttest456@newsmast.social", + "@prabhakar@newsmast.social", + "@putuu@newsmast.social", + "@qurquma@newsmast.social", + "@r0yaL@newsmast.social", + "@rach_garr@newsmast.social", + "@rajudbg@newsmast.social", + "@ravi101@newsmast.social", + "@realgnomidad@newsmast.social", + "@rebarkable@newsmast.social", + "@reverb@newsmast.social", + "@rewildingsam@newsmast.social", + "@ritesh@newsmast.social", + "@robbhoyy@newsmast.social", + "@robhoy@newsmast.social", + "@robpollice@newsmast.social", + "@roggim@newsmast.social", + "@rogerg44@newsmast.social", + "@rogergraf@newsmast.social", + "@ruslan@newsmast.social", + "@ryankhan@newsmast.social", + "@sallyhawkins@newsmast.social", + "@samf@newsmast.social", + "@saskia@newsmast.social", + "@satvika@newsmast.social", + "@sciencebase@newsmast.social", + "@sebbz@newsmast.social", + "@seema@newsmast.social", + "@seehearpodcast@newsmast.social", + "@sev@newsmast.social", + "@shelldoor@newsmast.social", + "@shoqv4@newsmast.social", + "@sintrenton@newsmast.social", + "@sitothebo@newsmast.social", + "@skk@newsmast.social", + "@snoopy@newsmast.social", + "@soccerhub@newsmast.social", + "@sophia@newsmast.social", + "@spacealgae@newsmast.social", + "@sport@newsmast.social", + "@steve116@newsmast.social", + "@stevebownan@newsmast.social", + "@strayegg@newsmast.social", + "@sttanner@newsmast.social", + "@sunrisephysio@newsmast.social", + "@sustainabilityx@newsmast.social", + "@suthit@newsmast.social", + "@sylphrenetic@newsmast.social", + "@tatkotel@newsmast.social", + "@tderyugina@newsmast.social", + "@teowawki@newsmast.social", + "@testmeme@newsmast.social", + "@testpp34@newsmast.social", + "@textdump@newsmast.social", + "@thelmzkitchen@newsmast.social", + "@thejustinto@newsmast.social", + "@thepetsnet@newsmast.social", + "@therfff@newsmast.social", + "@tillathenun@newsmast.social", + "@tkruck6@newsmast.social", + "@tom2022@newsmast.social", + "@tom_webler@newsmast.social", + "@tomy@newsmast.social", + "@travtasy@newsmast.social", + "@true@newsmast.social", + "@tuckerm@newsmast.social", + "@uthi@newsmast.social", + "@valeriadepaiva@newsmast.social", + "@vegannutrition@newsmast.social", + "@vijay@newsmast.social", + "@vlp00@newsmast.social", + "@wannely@newsmast.social", + "@wbbdaily@newsmast.social", + "@wdshow@newsmast.social", + "@weblink@newsmast.social", + "@wfryer@newsmast.social", + "@wildlife@newsmast.social", + "@willwinter@newsmast.social", + "@wjnewman@newsmast.social", + "@womens_voices@newsmast.social", + "@wootang71@newsmast.social", + "@worldbyisa@newsmast.social", + "@wytham_woods@newsmast.social", + "@xjxjxjx@newsmast.social", + "@yanmoenaing@newsmast.social", + "@yarzar@newsmast.social", + "@yemyatthu_cs@newsmast.social", + "@yethiha_codigo@newsmast.social", + "@yisem@newsmast.social", + "@zheka296@newsmast.social" ] owner_role = UserRole.find_by(name: 'Owner') From 22e69d673f44710b212099c1a75072972533a5fc Mon Sep 17 00:00:00 2001 From: Aung Kyaw Phyo Date: Tue, 8 Jul 2025 19:25:23 +0700 Subject: [PATCH 51/51] Remove accounts --- app/jobs/migrate_newsmast_accounts_job.rb | 320 ++-------------------- 1 file changed, 26 insertions(+), 294 deletions(-) diff --git a/app/jobs/migrate_newsmast_accounts_job.rb b/app/jobs/migrate_newsmast_accounts_job.rb index ba3f9c7f..9fd204ef 100644 --- a/app/jobs/migrate_newsmast_accounts_job.rb +++ b/app/jobs/migrate_newsmast_accounts_job.rb @@ -5,273 +5,6 @@ class MigrateNewsmastAccountsJob < ApplicationJob def perform(csv_path = Rails.root.join('user_community_export.csv')) @missing_accounts = [] - - @whitelisted_accounts= [ - "@devenperez@newsmast.social", - "@diamondlewis@newsmast.social", - "@dianirawan@newsmast.social", - "@djape11@newsmast.social", - "@dleifohcs@newsmast.social", - "@doctorambient@newsmast.social", - "@docwinters@newsmast.social", - "@drshaunanderson@newsmast.social", - "@dylan_thiam@newsmast.social", - "@egc25@newsmast.social", - "@elisexavier@newsmast.social", - "@emenikeng@newsmast.social", - "@emeraldphysio@newsmast.social", - "@emuwasabi@newsmast.social", - "@enriqueanarte@newsmast.social", - "@erica@newsmast.social", - "@exakat@newsmast.social", - "@familyphysio@newsmast.social", - "@fatemah@newsmast.social", - "@fediverso@newsmast.social", - "@feuerkugel@newsmast.social", - "@fitinfounder@newsmast.social", - "@foong@newsmast.social", - "@francisco_blaha@newsmast.social", - "@frejusdabord@newsmast.social", - "@fwd7@newsmast.social", - "@gabrielblau@newsmast.social", - "@gavinjmaguire@newsmast.social", - "@ghutchis@newsmast.social", - "@glecko@newsmast.social", - "@gnasralla@newsmast.social", - "@goofy@newsmast.social", - "@gospelsong@newsmast.social", - "@group@newsmast.social", - "@guchengsnakee@newsmast.social", - "@hardindr@newsmast.social", - "@harvinhentry@newsmast.social", - "@healthcare@newsmast.social", - "@heimoshuiyu@newsmast.social", - "@hermitary@newsmast.social", - "@hrbrmstr@newsmast.social", - "@ianwalker@newsmast.social", - "@icey_mark@newsmast.social", - "@ifonlycom@newsmast.social", - "@ilovefilm@newsmast.social", - "@indiajade_68@newsmast.social", - "@infobl@newsmast.social", - "@instepphysio@newsmast.social", - "@iop5@newsmast.social", - "@ipub@newsmast.social", - "@irlrefuge@newsmast.social", - "@islandknabo@newsmast.social", - "@iostest@newsmast.social", - "@itsmarta101@newsmast.social", - "@itzme@newsmast.social", - "@ivan@newsmast.social", - "@jackiealpers@newsmast.social", - "@jaclynasiegel@newsmast.social", - "@jakeanders@newsmast.social", - "@jamalpp@newsmast.social", - "@janrif@newsmast.social", - "@jasonreiduk@newsmast.social", - "@jcblautomoto@newsmast.social", - "@jdp23@newsmast.social", - "@jeffreyguard@newsmast.social", - "@jenandreacchi@newsmast.social", - "@jeremygodwin@newsmast.social", - "@jessicanewmast@newsmast.social", - "@jessa@newsmast.social", - "@jetono@newsmast.social", - "@jimmy@newsmast.social", - "@jmenka@newsmast.social", - "@jncomas@newsmast.social", - "@joanathx@newsmast.social", - "@john_90@newsmast.social", - "@johnbreeze@newsmast.social", - "@johnhawks@newsmast.social", - "@johnvoorhees@newsmast.social", - "@jsit@newsmast.social", - "@jt1p5@newsmast.social", - "@jtarde23@newsmast.social", - "@junctionpoint@newsmast.social", - "@justinw@newsmast.social", - "@justwatch@newsmast.social", - "@k_rose@newsmast.social", - "@kabtohin2020@newsmast.social", - "@kaerisonic@newsmast.social", - "@kaerypheur@newsmast.social", - "@kakerlake@newsmast.social", - "@kalhan@newsmast.social", - "@keithramsey@newsmast.social", - "@kevinbugati@newsmast.social", - "@kevinflynn@newsmast.social", - "@khaled57@newsmast.social", - "@ksetiya@newsmast.social", - "@kylesinlynn@newsmast.social", - "@lgbtq@newsmast.social", - "@lgsmsec@newsmast.social", - "@luffy@newsmast.social", - "@luisaropio@newsmast.social", - "@luked522@newsmast.social", - "@lydiechen@newsmast.social", - "@m0bi@newsmast.social", - "@m2knewsmast@newsmast.social", - "@m2knmst@newsmast.social", - "@macelynne919@newsmast.social", - "@maketheswitchAU@newsmast.social", - "@marcelo@newsmast.social", - "@marianaborges@newsmast.social", - "@markr@newsmast.social", - "@martin3456@newsmast.social", - "@matt_cary@newsmast.social", - "@mattmoehr@newsmast.social", - "@mattybob@newsmast.social", - "@mattskal@newsmast.social", - "@max@newsmast.social", - "@max_chaudhary@newsmast.social", - "@mental_health@newsmast.social", - "@mervemervemerve@newsmast.social", - "@metilli@newsmast.social", - "@mgye@newsmast.social", - "@michael@newsmast.social", - "@michael_blogger@newsmast.social", - "@michaelcohen@newsmast.social", - "@mikea@newsmast.social", - "@mikesplaces@newsmast.social", - "@min2k09@newsmast.social", - "@minkhantBL@newsmast.social", - "@minkhantkyaw@newsmast.social", - "@minusgefuel@newsmast.social", - "@miroslavglavic@newsmast.social", - "@mkk001@newsmast.social", - "@mohammadromjan@newsmast.social", - "@mombian@newsmast.social", - "@momentumphysio@newsmast.social", - "@monicareinagel@newsmast.social", - "@mongabay@newsmast.social", - "@moragakd@newsmast.social", - "@msafaksari@newsmast.social", - "@mttaggart@newsmast.social", - "@multimodal@newsmast.social", - "@muzaffarab@newsmast.social", - "@mweinbach@newsmast.social", - "@nancymangano@newsmast.social", - "@natbas@newsmast.social", - "@neirda@newsmast.social", - "@newsmast@newsmast.social", - "@nexstepphysio@newsmast.social", - "@nigelp@newsmast.social", - "@nincodedo@newsmast.social", - "@niroran@newsmast.social", - "@nisemikol@newsmast.social", - "@noisediver@newsmast.social", - "@not_so_social@newsmast.social", - "@notiska@newsmast.social", - "@nowinaminute@newsmast.social", - "@nyeinBinarylab@newsmast.social", - "@nyeinygn@newsmast.social", - "@n0no123@newsmast.social", - "@oceanknigge@newsmast.social", - "@ommo@newsmast.social", - "@pam_palmater@newsmast.social", - "@pennywalker@newsmast.social", - "@peter@newsmast.social", - "@peterthepainter@newsmast.social", - "@petri@newsmast.social", - "@petenothing@newsmast.social", - "@physioemerald@newsmast.social", - "@physioedmonton@newsmast.social", - "@pikarl13@newsmast.social", - "@pjoter9@newsmast.social", - "@plus@newsmast.social", - "@poke@newsmast.social", - "@pot8um@newsmast.social", - "@ppttest456@newsmast.social", - "@prabhakar@newsmast.social", - "@putuu@newsmast.social", - "@qurquma@newsmast.social", - "@r0yaL@newsmast.social", - "@rach_garr@newsmast.social", - "@rajudbg@newsmast.social", - "@ravi101@newsmast.social", - "@realgnomidad@newsmast.social", - "@rebarkable@newsmast.social", - "@reverb@newsmast.social", - "@rewildingsam@newsmast.social", - "@ritesh@newsmast.social", - "@robbhoyy@newsmast.social", - "@robhoy@newsmast.social", - "@robpollice@newsmast.social", - "@roggim@newsmast.social", - "@rogerg44@newsmast.social", - "@rogergraf@newsmast.social", - "@ruslan@newsmast.social", - "@ryankhan@newsmast.social", - "@sallyhawkins@newsmast.social", - "@samf@newsmast.social", - "@saskia@newsmast.social", - "@satvika@newsmast.social", - "@sciencebase@newsmast.social", - "@sebbz@newsmast.social", - "@seema@newsmast.social", - "@seehearpodcast@newsmast.social", - "@sev@newsmast.social", - "@shelldoor@newsmast.social", - "@shoqv4@newsmast.social", - "@sintrenton@newsmast.social", - "@sitothebo@newsmast.social", - "@skk@newsmast.social", - "@snoopy@newsmast.social", - "@soccerhub@newsmast.social", - "@sophia@newsmast.social", - "@spacealgae@newsmast.social", - "@sport@newsmast.social", - "@steve116@newsmast.social", - "@stevebownan@newsmast.social", - "@strayegg@newsmast.social", - "@sttanner@newsmast.social", - "@sunrisephysio@newsmast.social", - "@sustainabilityx@newsmast.social", - "@suthit@newsmast.social", - "@sylphrenetic@newsmast.social", - "@tatkotel@newsmast.social", - "@tderyugina@newsmast.social", - "@teowawki@newsmast.social", - "@testmeme@newsmast.social", - "@testpp34@newsmast.social", - "@textdump@newsmast.social", - "@thelmzkitchen@newsmast.social", - "@thejustinto@newsmast.social", - "@thepetsnet@newsmast.social", - "@therfff@newsmast.social", - "@tillathenun@newsmast.social", - "@tkruck6@newsmast.social", - "@tom2022@newsmast.social", - "@tom_webler@newsmast.social", - "@tomy@newsmast.social", - "@travtasy@newsmast.social", - "@true@newsmast.social", - "@tuckerm@newsmast.social", - "@uthi@newsmast.social", - "@valeriadepaiva@newsmast.social", - "@vegannutrition@newsmast.social", - "@vijay@newsmast.social", - "@vlp00@newsmast.social", - "@wannely@newsmast.social", - "@wbbdaily@newsmast.social", - "@wdshow@newsmast.social", - "@weblink@newsmast.social", - "@wfryer@newsmast.social", - "@wildlife@newsmast.social", - "@willwinter@newsmast.social", - "@wjnewman@newsmast.social", - "@womens_voices@newsmast.social", - "@wootang71@newsmast.social", - "@worldbyisa@newsmast.social", - "@wytham_woods@newsmast.social", - "@xjxjxjx@newsmast.social", - "@yanmoenaing@newsmast.social", - "@yarzar@newsmast.social", - "@yemyatthu_cs@newsmast.social", - "@yethiha_codigo@newsmast.social", - "@yisem@newsmast.social", - "@zheka296@newsmast.social" - ] owner_role = UserRole.find_by(name: 'Owner') owner_user = User.find_by(role: owner_role) @@ -297,42 +30,41 @@ def process_batch(row) handle = row['handle'] communities_json = row['communities'] - if @whitelisted_accounts.include?(handle) - communities_data = JSON.parse(communities_json) - primary_slug = communities_data['primary'] - other_slugs = communities_data['others'] || [] + communities_data = JSON.parse(communities_json) - # Combine all community slugs - all_slugs = [primary_slug] + other_slugs + primary_slug = communities_data['primary'] + other_slugs = communities_data['others'] || [] - # 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') + # Combine all community slugs + all_slugs = [primary_slug] + other_slugs - if account - JoinedCommunity.where(account_id: account.id).destroy_all + # 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') - existing_communities.each do |community| + if account + JoinedCommunity.where(account_id: account.id).destroy_all - 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}." + existing_communities.each do |community| + if primary_slug && (primary_slug == community.slug) + is_primary = true + else + is_primary = false end - else - @missing_accounts << handle + 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